html {
	position: relative;
    min-height: 100%;
}
body {
	font-family: 'Saira', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
	color: #1b1b1b;
	text-align: left;
	background-color: #fff;
	overflow-x: hidden;
	margin-top: 100px;
	margin-bottom: 84px;
}
a {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	color: #ea1f33;
}
a:hover {
    text-decoration: none;
	color: #ea1f33;
}
h1 {
	font-size: 100px;
	line-height: 100px;
	font-weight: 600;
	margin-bottom: 30px;
}
h2 {	
	font-size: 48px;
    line-height: 58px;
    font-weight: 600;
    margin-bottom: 20px;
}
h3 {
	font-size: 38px;
    line-height: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}
h4 {
	font-size: 26px;
	line-height: 34px;
	font-weight: 400;
	margin-bottom: 8px;
}
h5 {
	font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 6px;
}
h6 {
	font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}
p {
    color: #4c4e4e;
	line-height: 26px;
}
button:focus {
    outline: 0;
}
.btn {
    font-size: 16px;
    line-height: 16px;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 500;
}
.btn-primary {
	color: #fff;
    background-color: #ea1f33;
    border-color: #ea1f33;
}
.btn-primary:hover {
	color: #fff;
	background-color: #d8172a;
	border-color: #d8172a;
}
.btn-primary:focus, .btn-primary.focus {
	color: #fff;
	background-color: #ea1f33;
	border-color: #ea1f33;
	box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ea1f33;
    border-color: #ea1f33;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: none;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-dark {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.btn-dark:hover {
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.btn-dark:focus, .btn-dark.focus {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: none;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: none;
}

input[type="radio"]:checked, input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
input[type="radio"]:checked + label, input[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    line-height: 14px;
    display: inline-block;
}
input[type="radio"]:checked + label:before, input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #8b8b8b;
    border-radius: 100%;
    background: #fff;
}
input[type="radio"]:checked + label:after, input[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #ea1f33;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
input[type="radio"]:checked + label:before {
	border-color: #ea1f33;
}
input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

input[type="checkbox"]:checked, input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
input[type="checkbox"]:checked + label, input[type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    line-height: 14px;
    display: inline-block;
}
input[type="checkbox"]:checked + label:before, input[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    background: #fff;
}
input[type="checkbox"]:checked + label:after, input[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #ea1f33;
	background-image: url(../img/checkbox-tick.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
input[type="checkbox"]:checked + label:before {
	border-color: #ea1f33;
}
input[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
select {
    padding-right: 25px;
    padding-left: 15px;
    -webkit-appearance: none;
    background-image: url(../img/select-arrow.png);
    background-repeat: no-repeat;
    background-size: 10px 5px;
    background-position: calc(100% - 10px) center;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}
label {
    margin-bottom: 6px;
    color: #15314a;
    font-weight: 600;
    line-height: 24px;
}
form label span {
    color: #ea1f33;
}
.form-check-label {
    font-weight: 500;
    margin-bottom: 0;
    line-height: 16px;
    font-size: 15px;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ea1f33;
}
.pageTitile h2 {
	margin-bottom: 46px;
}
.contentArea {
	padding: 70px 0;
	width: 100%;
}

@media (max-width: 991px) {
	body {
		margin-top: 74px;
	}	
}

@media (max-width: 767px) {
	body {
		margin-bottom: 156px;
	}
	h2 {
		font-size: 40px;
		line-height: 48px;
	}
}

/*---Header----------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	z-index: 99;
	width: 100%;
	background: #fff;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
header  .menu-bar {
	padding: 0;
}
header .navbar-brand {
	width: 270px;
	padding: 8px 0px;
    margin: 0;
}
header .navbar-brand img {
	max-width: 100%;
}
header .menu {
	margin-right: 16px;
}
.menu-bar .nav-link {
	font-size: 16px;
	color: #353535;
	padding: 2px;
	font-weight: 600;
}
.menu-bar .active .nav-link, .menu-bar .nav-link:hover {
	color: #ea1f33;
}
.menu.navbar-nav .nav-link {
	margin: 0;
    padding: 0px 13px;
	height: 100px;
	line-height: 100px;
}
.menu-toggler {
	width: 25px;
    height: 22px;
    background: no-repeat center center;
    background-size: 100% 100%;
}
.menu-toggler {
	background-image: url(../img/menu-icon.png);
}
.sticky-header {
	-webkit-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
	box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
}
.sticky-header .navbar-brand {
	width: 210px;
}
.sticky-header .menu .nav-link  {
	height: 50px;
	line-height: 50px;
}
header .after-login {
    background-color: #ea1f33;
    color: #fff;
	font-size: 16px;
    line-height: 16px;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 500;
	display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
header .after-login:hover {
	background-color: #ea1f33;
	color: #fff;
}

@media (max-width: 991px) {
	header .navbar-brand {
		width: 210px;
	}
	.nav-rgt {
		position: absolute;
		right: 50px;
		top: 20px;
	}
	.navbar-toggler {
		height: 74px;
		padding: 0;
	}
	header .menu {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.menu.navbar-nav .nav-link {
		margin: 4px 0;
		padding: 0;
		height: inherit;
		line-height: inherit;
		text-align: center;
	}
}

@media (max-width: 767px) {
	header .navbar-brand, .sticky-header .navbar-brand {
		width: 180px;
	}
	.nav-rgt .btn {
		font-size: 0;
		line-height: 0;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		padding: 8px;
	}
	.nav-rgt .btn:before {
		content: "\f234";
		font-size: 18px;
		line-height: 18px;
	}
}

/*---Banner----------------------------------------------------------*/
/* home-slider */
#home-slider .carousel-caption {
	text-align: left;
	right: 0;
    left: 0;
    top: 0;
    bottom: 0;
	color: #1b1b1b;
	text-transform: uppercase;
}
#home-slider .carousel-caption h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
	margin-bottom: 10px;
}
#home-slider .carousel-caption h3 {
	font-size: 48px;
	line-height: 48px;
	margin-bottom: 28px;
}
#home-slider .carousel-caption h1 {
	font-size: 130px;
	margin-bottom: 0;
}
#home-slider .carousel-control-prev, #home-slider .carousel-control-next {
	background-color: #1b1b1b;
	border-radius: 2px;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
	padding: 0;
	margin-top: -25px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
	border-radius: 50%;
	visibility: hidden;
}
#home-slider .carousel-control-prev {
	left: 20px;
}
#home-slider .carousel-control-next {
	right: 20px;
}
#home-slider .carousel-control-prev-icon, #home-slider .carousel-control-next-icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: no-repeat 50% / 100% 100%;
}
#home-slider .carousel-control-prev-icon {
	background-image: url('../img/prev-icon.svg');
}
#home-slider .carousel-control-next-icon {
    background-image: url('../img/next-icon.svg');
}
#home-slider:hover .carousel-control-prev, #home-slider:hover  .carousel-control-next {
	visibility: visible;
}
#home-slider .carousel-indicators li {
	width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
	background: transparent;
	opacity: 0.5;
	cursor: pointer;
}
#home-slider .carousel-indicators {
	visibility: hidden;
}
#home-slider:hover .carousel-indicators {
	visibility: visible;
}
#home-slider .carousel-indicators .active {
	background: #ea1f33;
	border-color: #ea1f33;
	opacity: 1;
}
#home-slider .carousel-item {
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity;
}
#home-slider  .carousel-item.active,
#home-slider  .carousel-item-next.carousel-item-left,
#home-slider  .carousel-item-prev.carousel-item-right {
	opacity: 1;
}
#home-slider .active.carousel-item-left,
#home-slider  .active.carousel-item-right {
	opacity: 0;
}
#home-slider  .carousel-item-next,
#home-slider .carousel-item-prev,
#home-slider .carousel-item.active,
#home-slider .active.carousel-item-left,
#home-slider  .active.carousel-item-prev {
	transform: translateX(0);
	transform: translate3d(0, 0, 0);
}
@-webkit-keyframes sliderUp {
	from {
	  	opacity: 0;
	  	-webkit-transform: translate3d(0, 100%, 0);
	  	transform: translate3d(0, 100%, 0);
	}
  
	to {
	  	opacity: 1;
	  	-webkit-transform: translate3d(0, 0, 0);
	  	transform: translate3d(0, 0, 0);
	}
}
  
@keyframes sliderUp {
	from {
	  	opacity: 0;
	  	-webkit-transform: translate3d(0, 100%, 0);
	  	transform: translate3d(0, 100%, 0);
	}
  
	to {
	  	opacity: 1;
	  	-webkit-transform: translate3d(0, 0, 0);
	  	transform: translate3d(0, 0, 0);
	}
}
.sliderUp {
	-webkit-animation-name: sliderUp;
	animation-name: sliderUp;
}   
#home-slider .carousel-caption h2 {
	animation-name: sliderUp;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: .7s;
	animation-delay: .7s;
}
#home-slider .carousel-caption h3 {
	animation-name: sliderUp;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
#home-slider .carousel-caption h1 {
	animation-name: sliderUp;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}
#home-slider  .slider-img {
	height: 800px;
	filter: blur(3px);
	transform: scale(1.01);
}

/* inner-slider */
#inner-slider .slider-img {
	height: 240px;
}
#inner-slider .carousel-caption {
	right: 0;
    left: 0;
    top: 0;
    bottom: 0;
	-ms-flex-align: center;
    align-items: center;
	display: -ms-flexbox;
    display: flex;
	-ms-flex-pack: center;
    justify-content: center;
}
#inner-slider .carousel-caption h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
	margin-bottom: 0;
	color: #1b1b1b;
	text-align: left;
}
#inner-slider .carousel-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, .4), rgba(255, 255, 255, .4));
}
#inner-slider .slider-img {
	height: 260px;
}
.slider-img {
	width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 1400px) {
	#home-slider .slider-img {
		height: 600px;
	}
}
@media (max-width: 991px) {
	#home-slider .slider-img {
		height: 500px;
	}
	#home-slider .carousel-caption h2 {
		font-size: 40px;
		font-weight: 700;
		line-height: 40px;
		margin-bottom: 10px;
	}
	#home-slider .carousel-caption h3 {
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 10px;
	}
	#home-slider .carousel-caption h1 {
		font-size: 90px;
		line-height: 90px;
	}
	#inner-slider .slider-img {
		height: 160px;
	}
}
@media (max-width: 767px) {
	#home-slider .slider-img {
		height: 400px;
	}
	#home-slider .carousel-caption {
		padding: 0 20px;
	}
	#home-slider .carousel-caption h2 {
		font-size: 24px;
		font-weight: 700;
		line-height: 24px;
		margin-bottom: 10px;
	}
	#home-slider .carousel-caption h3 {
		font-size: 24px;
		line-height: 24px;
		margin-bottom: 4px;
	}
	#home-slider .carousel-caption h1 {
		font-size: 50px;
		line-height: 60px;
	}
	#inner-slider .carousel-caption h2 {
		font-size: 30px;
		line-height: 30px;
	}		
}

/*---Footer----------------------------------------------------------*/
footer {
	position: absolute;
    bottom: 0;
	width: 100%;
	font-size: 13px;
    line-height: 20px;
	background: #033b4a;
	color: #fff;
	padding: 30px 0;
	height: 84px;
}
.footer-nav .nav-link {
	padding: 0 0 0 18px;
    color: #fff;
}
footer .nav-link:hover {
	color: #ea1f33;
}
.social-nav .nav-link {
	padding: 0 8px;
    color: #fff;
	font-size: 24px;
}

@media (max-width: 767px) {
	footer {
		text-align: center;
		font-size: 13px;
		height: 156px;
	}
	.social-nav {
		padding: 16px 0;
	}
	.footerTop {
		padding-top: 10px;
		padding-bottom: 45px;
	}
}

/*---Content area----------------------------------------------------------*/
.content-area-block {
	padding: 120px 0;
	width: 100%;
}
.content-area-block.dark {
	background-color: #033b4a;
}
.content-area-block.dark p {
	color: #becacd;
}
.content-area-block.dark  h1,
.content-area-block.dark  h2,
.content-area-block.dark  h3,
.content-area-block.dark  h4,
.content-area-block.dark  h5,
.content-area-block.dark  h6 {
	color: #fff;
}
.content-area-block.light-bg-img {
    background-position: center;
    background-size: cover;
	position: relative;
	background-attachment: fixed;
}
.content-area-block.light-bg-img:before {
	content: '';
	background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}
.img-rounded {
	border-radius: 16px;
}
.img-with-100 {
	width: 100%
}

@media (max-width: 767px) {
	.content-area-block.dark .list-group-horizontal {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.content-area-block {
		padding: 60px 0;
	}
}

/*---Slick slider----------------------------------------------------------*/
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide:focus {
	outline: -webkit-focus-ring-color auto 0;
	outline: 0;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-prev, .slick-next {
	color: #fff;
	background-color: #ea1f33;
	border-radius: 50%;
	font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
	margin-top: -19px;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
	z-index: 99;
	font-family: "Font Awesome 5 Pro";
    font-weight: 900;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
	opacity: 0;
}
.slick-prev {
    left: -4px;
}
.slick-next {
    right: -4px;
}
.slick-prev:before, .slick-next:before {
    opacity: 1;
    color: #fff;
	content: '';
	width: 38px;
    height: 38px;
    display: block;
}
.slick-prev:before {
	background-image: url('../img/prev-icon.svg');
}
.slick-next:before {
    background-image: url('../img/next-icon.svg');
}
.slick-dots {
	position: absolute;
    bottom: -38px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
	position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
	background: transparent;
	border: 1px solid #ea1f33;
	border-radius: 10px;	
}
.slick-dots li.slick-active {
	background: #ea1f33;
}
.slick-dots li button {
    display: none;
}

/*---Home----------------------------------------------------------*/

.h-about {
	background-image: url(../img/bg01.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
}
.h-about-img {
	position: relative;
}
.h-about-icon {
	width: 100px;
    height: 100px;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 6px 24px 0px rgb(0,0,0,0.25);
    -moz-box-shadow: 0px 6px 24px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 6px 24px 0px rgb(0,0,0,0.25);
	position: absolute;
	right: -35px;
	top: 50%;
	margin-top: -50px;
}
.h-about-content {
	padding-left: 50px;
	padding-bottom: 100px;
}
.about-count {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid #cccccc;
	display: inline-block;
	width: calc(100% - 66px);
	padding-top: 20px;
	position: absolute;
	bottom: 0;
	right: 15px;
}
.about-count li {
	width: 33.3%;
	float: left;
}
.about-count h5 {
	line-height: 22px;
	margin-bottom: 0;
}
.list-group, .list-group-horizontal > .list-group-item:first-child, .list-group-horizontal > .list-group-item:last-child  {
	border-radius: 0;
}
.list-group-horizontal .list-group-item {
	width: 100%;
}
.content-area-block.dark .list-group-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 40px 25px 20px 25px;
	border-right: 0;
	position: relative;
	overflow: hidden;
}
.content-area-block.dark .list-group-item > div {
	position: relative;
	z-index: 2;
}
.content-area-block.dark .list-group-item:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.list-group-horizontal .list-group-item:before {
    position: absolute;
    content: '';
    bottom: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
	background: #ea1f33;
    -webkit-transition: .55s cubic-bezier(.68,1.55,.265,0.55);
    -moz-transition: .55s cubic-bezier(.68,1.55,.265,0.55);
    -ms-transition: .55s cubic-bezier(.68,1.55,.265,0.55);
    -o-transition: .55s cubic-bezier(.68,1.55,.265,0.55);
    transition: .55s cubic-bezier(.68,1.55,.265,0.55);
}
.list-group-horizontal .list-group-item:hover:before {
    z-index: 1;
    bottom: 0;
}
.list-group-item .icon {
	width: 55px;
	height: 60px;
    background-repeat: no-repeat;
    background-position: center;
	margin-bottom: 10px;
    margin-left: 6px;	
}
.list-group-item .step1 .icon {
	background-image: url(../img/step1-d.svg);
}
.list-group-item:hover .step1 .icon {
	background-image: url(../img/step1-l.svg);
}
.list-group-item .step2 .icon {
	background-image: url(../img/step2-d.svg);
}
.list-group-item:hover .step2 .icon {
	background-image: url(../img/step2-l.svg);
}
.list-group-item .step3 .icon {
	background-image: url(../img/step3-d.svg);
}
.list-group-item:hover .step3 .icon {
	background-image: url(../img/step3-l.svg);
}
.list-group-item .step4 .icon {
	background-image: url(../img/step4-d.svg);
}
.list-group-item:hover .step4 .icon {
	background-image: url(../img/step4-l.svg);
}
.content-area-block.dark .list-group-item:hover p {
	color: #fff;
}
.h-mission-icon {
	width: 150px;
    height: 150px;
    padding: 15px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 6px 24px 0px rgb(0,0,0,0.25);
    -moz-box-shadow: 0px 6px 24px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 6px 24px 0px rgb(0,0,0,0.25);
}
.h-members {
	text-align: center;
	margin-top: 46px;
}
.h-members .slick-slide {
	margin: 0px 15px;
}
.h-members  img {
	width: 100%;
    margin: auto;
    margin-bottom: 20px;
}
.h-members h5 {
	margin-bottom: 2px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}
.h-members p {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.h-about-img {
		display: none;
	}
	.h-about-icon {
		bottom: -35px;
		top: initial;
		right: 50%;
		margin-right: -50px;
		margin-top: 0;
	}
	.h-about-content {
		padding-left: 15px;
		padding-bottom: 0;
	}
	.about-count {
		position: initial;
		width: 100%;
		text-align: center;
	}
	.about-count li {
		width: 100%;
		padding: 12px 0;
	}
	.content-area-block.dark .list-group-item {
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 0;
	}
	.content-area-block.dark .list-group-item:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	.h-members {
		margin-bottom: 30px;
	}	
}

/*---Mobile app----------------------------------------------------------*/

.app-screen-list {
	padding: 0;
	list-style: none;
}
.app-screen-list img {
	-webkit-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    -moz-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.app-screen-list li:hover img {
	-webkit-box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
	-moz-box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
	box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
}
.img-border {
	border: 1px solid #ea1f33;
}
.items-list {
	list-style: none;
    padding-left: 24px;
	line-height: 24px;
	position: relative;
}
.items-list li {
	margin-top: 8px;
	padding-left: 0;
	padding-right: 4px;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}
.items-list li:before {
	content: "\f14a";
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Free";
    color: #ea1f33;
    font-weight: 900;
    font-size: 16px;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}
.app-btn {
	display: flex;
}
.app-btn a {
	display: inline-block;
	margin-right: 10px;
	width: 200px;
}
.app-btn img {
	max-width: 100%
}

@media (max-width: 576px) {
	.app-screen-list {
		text-align: center;
	}
	.app-screen-list img {
		max-width: 320px;
	}
}

/*---Announcement----------------------------------------------------------*/

.list-group-item {
	padding: 40px 0 0 0
}
.list-group-item:first-child {
	padding-top: 0;
}
.list-thump  span {
	background: #ea1f33;
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 15px;
    color: #fff;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 20px;
	font-size: 40px;
    font-weight: 600;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.list-group-item:hover p {
	color: #4c4e4e;
}
.list-group-item:hover .list-thump  span {
	background: #1b1b1b;
}
.list-details h4 {
	color: #ea1f33;
	font-weight: 700;
	font-size: 30px;
    line-height: 30px;
	margin-bottom: 0px;
}
.list-details h5 {
	font-weight: 500;
    margin-bottom: 0px;
}
.list-details p {
	margin-bottom: 12px;
}

@media (max-width: 767px) {
	.list-group-item {
		padding: 24px 0 0 0;
	}
	.list-thump span {
		width: 50px;
		height: 50px;
		border-radius: 10px;
		font-size: 24px;
	}
	.list-details h4 {
		font-size: 24px;
		line-height: 26px;
	}
}

/*---Contact us----------------------------------------------------------*/

.contact-details {
	background: #033b4a;
	color: #fff;
	padding: 50px;
}
.contact-list {
	padding: 0 0 80px 0;
	list-style: none;
}
.contact-list li {
	padding: 15px 0;
}
.contact-list .list-icon  span {
	background: #ea1f33;
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 6px;
	margin-right: 10px;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;

	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.contact-list .list-icon img {
	width: 35px;
	height: 35px;
}
.contact-list h5 {
	font-size: 18px;
    line-height: 26px;
}
.contact-list p {
	color: #becacd;
	margin-bottom: 0;
}
.contact-details .social-nav {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    position: absolute;
    width: calc(100% - 100px);
    bottom: 50px;
    left: 50px;
}
.contact-details .social-nav .nav-link:hover {
	color: #ea1f33;
}
.contact-form {
	padding: 50px;	
}
.contact-form form {
	padding-top: 30px;
}
.form-group {
    margin-bottom: 24px;
	position: relative;
}
.form-control {
	border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}
.form-control:focus  {
	border-color: #ea1f33;
}
.form-icon:before {
	content: '';
	position: absolute;
    left: 0;
    right: 0;
    width: 22px;
    height: calc(1.5em + 0.75rem + 2px);
	background-size: 100%;
    background-position: center;
	background-repeat: no-repeat;
}
.form-icon .form-control {
	padding-left: 35px;
}
.form-user:before  {
	background-image: url(../img/user-icon.svg);
}
.form-phome:before  {
	background-image: url(../img/phone-icon.svg);
}
.form-email:before  {
	background-image: url(../img/email-icon.svg);
}
.form-subject:before  {
	background-image: url(../img/subject-icon.svg);
}
.form-message:before  {
	background-image: url(../img/message-icon.svg);
}
.map-block {
	display: flex;
    height: 500px;
    width: 100%;
}

@media (max-width: 991px) {
	.contact-form {
		padding-bottom: 0;
	}	
}
@media (max-width: 767px) {
	.contact-list li {
		padding: 10px 0;
	}
	.contact-list .list-icon span {
		width: 48px;
		height: 48px;
	}
	.contact-list .list-icon img {
		width: 24px;
		height: 24px;
	}	
}
@media (max-width: 576px) {
	.contact-details {
		margin-top: -60px;
		padding: 30px;
	}
	.contact-form {
		padding: 30px 30px 0 30px;
	}
}

/*---Login register----------------------------------------------------------*/

.login-register-area {
	background: #f2f2f2;
	min-height: 100%;
	width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.login-block {
	background: #fff;
    max-width: 460px;
    padding: 34px;
	margin-top: 100px;
    margin-right: auto;
	margin-left: auto;
    border-radius: 8px;
	-webkit-box-shadow: 2px 4px 8px 0px rgb(0,0,0,0.1);
    -moz-box-shadow: 2px 4px 8px 0px rgb(0,0,0,0.1);
    box-shadow: 2px 4px 8px 0px rgb(0,0,0,0.1);
}
.login-block .logo {
	text-align: center;
    margin-bottom: 30px;
    margin-top: -90px;
}
.login-block .logo img {
    margin: auto;
    border-radius: 10px;
	width: 110px;
}
.login-register-area label {
    font-weight: 500;
}
.login-register-area .form-group {
    margin-bottom: 1rem;
}
.login-register-area .form-control {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    color: #495057;
	border: 1px solid #ced4da;
    border-radius: 0.25rem;
	background: #fafafa;
}
.login-register-area .form-control:focus {
	border-color: #ea1f33;
}
.login-register-title {
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: flex;
	margin-bottom: 30px;
}
.login-register-title h5 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}
.login-register-title p {
	line-height: 24px;
    margin-bottom: 0;
}
.login-register-title a {
	font-weight: 600;
}
.login-register-bottom {
	font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 26px;
}
.login-register-area .footer-nav {
	margin-top: 20px;
	margin-bottom: 60px;
}
.login-register-area .footer-nav .nav-link {
    padding: 0 10px;
    color: #4c4e4e;
	font-weight: 500;
}
.login-register-area .footer-nav .nav-link:hover {
    color: #ea1f33;
}
.login-register-footer {
	position: absolute;
    bottom: 0;
    width: 100%;
	text-align: center;
	padding-bottom: 20px;
}
.register-block {
	background: #fff;
    max-width: 760px;
    padding: 34px;
	margin-top: 100px;
    margin-right: auto;
	margin-left: auto;
    border-radius: 8px;
	-webkit-box-shadow: 2px 4px 8px 0px rgb(0,0,0,0.1);
    -moz-box-shadow: 2px 4px 8px 0px rgb(0,0,0,0.1);
    box-shadow: 2px 4px 8px 0px rgb(0,0,0,0.1);
}
.register-block .lft {
	padding: 0 60px 0 0;
}
.register-block .rgt {
	padding-right: 0;
}
.register-block .logo {
    margin-bottom: 0;
}
.register-block .logo img {
    margin: auto;
    border-radius: 10px;
	width: 110px;
}
.register-block .banner img {
	width: 100%;
}

@media (max-width: 767px) {
	.register-block {
		margin-top: 15px;
		margin-left: 15px;
		margin-right: 15px;
		padding: 24px;
	}
	.register-block .banner {
		text-align: center;
	}
	.register-block .banner img {
		max-width: 250px;
		margin-bottom: 16px;
	}
	.register-block .logo img {
		width: 90px;
	}
	.register-block .lft, .register-block .rgt {
		padding: 0;
	}
}
@media (max-width: 576px) {
	.login-block {
		margin-top: 80px;
	}
	.login-register-title {
		display: block;
		text-align: center;
	}
	.login-block .logo {
		margin-bottom: 16px;
		margin-top: -70px;
	}
	.login-block .logo img {
		width: 90px;
	}
	.login-register-footer {
		font-size: 12px;
	}
	.form-check-inline {
		display: inherit;
	}
}
@media (max-width: 490px) {
	.login-block {
		margin-left: 15px;
		margin-right: 15px;
		padding: 24px;
	}	
}

/*---Gallery----------------------------------------------------------*/

.gallery-category {
	position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.gallery-category h5 {
	margin-bottom: 24px;
}
.gallery-category .nav-link {
    border-radius: 0.25rem;
    background: #033b4a;
    margin-bottom: 10px;
    color: #fff;
	display: block;
    padding: 0.5rem 1rem;
	width: 100%;
}
.gallery-category .nav-link.active, .gallery-category .show > .nav-link, .gallery-category .nav-link:hover {
    color: #fff;
    background-color: #ea1f33;
}
.gallery {
    margin-bottom: -30px;
}
.gallery li {
	margin-bottom: 30px;
	cursor: pointer;
}
.gallery-img {
	border-radius: 15px;
	overflow: hidden;
	-webkit-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    -moz-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    box-shadow: 4px 4px 5px 0px rgb(0,0,0,0.05);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.gallery li:hover .gallery-img {
	-webkit-box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
	-moz-box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
	box-shadow: 15px 15px 20px 0px rgb(0,0,0,0.1);
}
.gallery-img img {
	-webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}
.gallery li:hover .gallery-img img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}
.gallery-img-title {
	font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 28px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.gallery li:hover .gallery-img-title {
	color: #ea1f33;
}

@media (max-width: 991px) {
	.gallery-category-nav {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		display: inline-block;
		height: 50px;
		margin-bottom: 20px;
		width: 100%;
		-webkit-overflow-scrolling: touch;
	}
	.gallery-category-nav::-webkit-scrollbar {
		display: none;
	}
	.gallery-category-nav .nav-link {
		display: inline-block;
		padding: 0 20px;
		height: 50px;
		line-height: 50px;
		width: initial;
	}
}


/*---Dashboard----------------------------------------------------------*/

.left-side-navbar {
    width: 220px;
    z-index: 98;
    bottom: 0;
    position: fixed;
	background: #1d262d;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: 0;
    -webkit-box-shadow: 0 0 35px 0 rgba(154,161,171,.15);
    box-shadow: 0 0 35px 0 rgba(154,161,171,.15);
}
.left-side-header {
	background: #222c33;
    padding: 40px 20px 20px 20px;
    color: #222c33;
    /* text-align: center; */
}
.left-side-header .user-avatar {
	overflow: hidden;
	border-radius: 10px;
	width: 90px;
    /* margin: auto; */
}
.left-side-header .user-avatar img {
	width: 100%;
}
.left-side-header h5 {
    font-size: 18px;
    line-height: 18px;
	font-weight: 600;
    margin-top: 14px;
    margin-bottom: 2px;
}
.left-side-header p {
	margin-bottom: 0;
    color: #939598;
    font-size: 14px;
}
.side-scroll {
	height: 100%;
    overflow-y: auto;
}
.left-side-menu {
	margin-top: 20px;
	margin-bottom: 50px;
}
.left-side-menu .nav-link {
	font-size: 16px;
	padding: 10px 20px;
	line-height: 22px;
	color: #939598;
	font-weight: 500;
}
.left-side-menu .nav-link i {
	margin-right: 8px;
	width: 18px;
}
.left-side-menu .nav-link:hover, .left-side-menu .nav-link.active {
	color: #ea1f33;
}
.left-side-footer {
	background: #222c33;
	padding: 10px 20px;
	text-align: center;
}
.left-side-footer a {
	text-transform: uppercase;
	color: #939598;
}
.left-side-footer a:hover {
	color: #ea1f33;
}
.user-content-area {
    margin-left: 220px;
    overflow: hidden;
    padding: 20px 60px 0;
}
.back-to {
	font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 500;
}
.user-content-header  {
    margin-left: 220px;
    padding: 0 60px 0;
    margin-top: -100px;
    position: fixed;
    width: calc(100% - 220px);
    background: #fff;
    z-index: 97;
}
.user-content-header > div {
	height: 100px;
	-webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.user-content-header.sticky-header > div {
	height: 70px;
}
.user-content-header h5 {
	font-weight: 700;
    margin-bottom: 0;
}
.user-content-header i {
    color: #939598;
    font-size: 18px;
    margin-right: 4px;
}
.user-content-footer {
	position: absolute;
    width: calc(100% - 220px);
	bottom: 0;
	margin-left: 220px;
	padding: 30px 60px 0;	
    font-size: 13px;
    line-height: 20px;
    height: 84px;
}
.user-content-area .form-control {
    height: calc(1.5em + 0.75rem + 8px);
    padding: 0.375rem 0.75rem;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.user-content-area textarea.form-control {
    height: auto;
}
.user-content-area .form-control:focus {
	border-color: #ea1f33;
}
.user-content-area .input-group-text {
    font-weight: 500;
    color: #fff;
    background-color: #1b1b1b;
    border: 1px solid #1b1b1b;
}
.user-content-area .btn {
	padding: 13px 20px;
}
.form-control-file:focus {
    border: 0;
	outline: 0;
}
.user-content-header .navbar-toggler {
	display: none;
}
.user-content-area .input-group select {
	width: 76px;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
    color: #fff;
	font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 500;
}
.user-content-area .input-group select:focus {
	border-color: #1b1b1b;
}
.user-content-area .input-group input {
    width: calc(100% - 76px);
}
.input-file {
	visibility: hidden;
	position: absolute;
}
.custom-input-file > div {
	display: inline-block;
	position: relative;
}
.custom-input-file input {
	border: none;
    background: transparent;
}
.upload-btn {
	margin-right: 10px;
}
.membership-status {
	background: #1b1b1b;
	color: #fff;
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 10px;
}
.membership-status p {
	margin-bottom: 0;
    color: #ccc;
}
.membership-status h3 {
	margin-bottom: 0;
}
.otp {
	text-align: center;
}
.otp input {
	width: 40px;
    height: 60px;
    line-height: 50px;
    text-align: center;
    font-size: 50px;
    margin: 0 6px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    outline: 0;
}

@media (max-width: 991px) {
	.user-content-header {
		margin-top: -74px;
	}
}
@media (max-width: 767px) {
	.left-side-navbar {
		left: -100%;
		width: 100%;
		-webkit-box-shadow: none;
		box-shadow: none;
		padding-top: 70px;
	}
	.user-content-header {
		margin-top: -74px;
		z-index: 999;
		margin-left: 0;
		width: 100%;
		padding: 0 30px 0;
	}
	.open-menu .user-content-header > div {
		height: 70px;
	}
	.user-content-header .navbar-toggler {
		display: block;
		margin-right: 18px;
	}
	.user-content-area {
		margin-left: 0;
		padding: 20px 30px 0;
	}
	.open-menu .left-side-navbar {
		left: 0;
	}
	.user-content-footer {
		width: 100%;
		margin-left: 0;
		padding: 0 60px 0;
		height: 40px;
	}
	.back-to {
		font-size: 0;
		line-height: 0;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		padding: 8px;
	}
	.back-to:before {
		content: "\f060";
		font-size: 18px;
		line-height: 18px;
	}
	.user-content-area .form-group {
		margin-bottom: 16px;
	}	
}
@media (max-width: 576px) {
	.user-content-header, .user-content-footer {
		padding: 0 10px 0;
	}
	.user-content-area {
		padding: 20px 10px 0;
	}	
}

/*---About us----------------------------------------------------------*/

.hover-img {
	border-radius: 15px;
	overflow: hidden;
	-webkit-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    -moz-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    box-shadow: 4px 4px 5px 0px rgb(0,0,0,0.05);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.hover-img:hover {
	-webkit-box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
	-moz-box-shadow: 10px 12px 40px 0px rgb(0,0,0,0.3);
	box-shadow: 15px 15px 20px 0px rgb(0,0,0,0.1);
}
.hover-img img {
	-webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}
.hover-img:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

/*--11-12-2021-----*/

.package-price {
    background: #1b1b1b;
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 10px;
	max-width: 460px;
	margin-right: auto;
	margin-left: auto;
}
.package-header {
	margin-bottom: 24px;
}
.package-header h4 {
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.package-header h5 {
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 0;
}
.package-header h5 span {
	font-size: 60px;
	font-weight: 600;
	line-height: 60px;
}
.package-header p {
    margin-bottom: 0;
    color: #ccc;
}
.package-body {
	margin: 0;
	padding-left: 0 !important;
	border-top: 1px solid #494949;
}
.package-body li {
	list-style: none;
	border-bottom: 1px solid #494949;
	line-height: 26px;
	padding: 14px 0;
	color: #919191;
}
.package-footer {
	padding-top: 40px;
}
.package-price.active {
	background: #ea1f33;
}
.package-price.active .package-body li {
	color: #fff;
}
.package-price.active .package-body, .package-price.active .package-body li {
	border-color: #f06371;
}
.package-price.active .btn-primary {
    background-color: #1b1b1b;
	border-color: #1b1b1b;
}
.package-price.active .btn-primary:hover {
    background-color: #000;
    border-color: #000;
}
.package-price.active .btn-primary:focus {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
    box-shadow: none;
}

/*--16-12-2021-----*/

.custom-input-file a {
	margin-right: 6px;
}
.upload-btn.loading {
	position: relative;
	color: #1b1b1b !important;
	pointer-events: none;
}
.upload-btn.success {
	position: relative;
	color: #1b1b1b !important;
	margin-right: 52px;
}
.upload-btn.loading:after {
	content: "";
	border: 3px solid rgb(234, 31, 51);
	border-left-color: rgba(234, 31, 51, 0.3);
	animation: loader-animation 1.2s infinite linear;
	position: absolute;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	left: 50%;
	right: 0;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
}
.upload-btn.success:before {
	content: "Change";
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
}
.upload-btn.success:after {
	content: "";
    animation: tick-animation 800ms ease;
    transform: scaleX(-1) rotate(135deg);
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    transform-origin: left top;
    height: 22px;
    width: 12px;
    right: -30px;
    top: 50%;
    position: absolute;
    margin-top: 0px;
}

@-webkit-keyframes loader-animation {
  0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
  }
  100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
  }
}
@keyframes loader-animation {
  0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
  }
  100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
  }
}
@-webkit-keyframes tick-animation {
  0% {
    height: 0;
    width: 0;
  }
  20% {
    height: 0;
    width: 12px;
    opacity: 1;
  }
  40% {
    height: 22px;
    width: 12px;
  }
  100% {
    height: 22px;
    width: 12px;
  }
}
@keyframes tick-animation {
  0% {
    height: 0;
    width: 0;
  }
  20% {
    height: 0;
    width: 12px;
    opacity: 1;
  }
  40% {
    height: 22px;
    width: 12px;
  }
  100% {
    height: 22px;
    width: 12px;
  }
}

@media (max-width: 1199px) {
	body {
		margin-top: 74px;
	}
	header .navbar-brand {
		width: 210px;
	}
	.nav-rgt {
		position: absolute;
		right: 50px;
		top: 20px;
	}
	.navbar-toggler {
		height: 74px;
		padding: 0;
	}
	header .menu {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.menu.navbar-nav .nav-link {
		margin: 4px 0;
		padding: 0;
		height: inherit;
		line-height: inherit;
		text-align: center;
	}
}

.verified-box {
	text-align: center;
}
.verified-box h4 {
	color: #014073;
    font-weight: 600;
    margin-top: 4px;
    font-size: 24px;
    margin-bottom: 30px;
	text-transform: uppercase;
}
.verified-alert {
	background-color: #23af23;
    font-size: 24px;
    color: #fff;
    padding: 14px 22px;
    text-transform: uppercase;
    font-weight: 500;
	display: inline-flex;
    align-items: center;
	border-radius: 4px;
}
.verified-alert i {
    font-size: 36px;
    margin-right: 6px;
}
.verified-box h5 {
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 20px;
}
.imprt-msg {
	border: 1px solid #c9c9c9;
	padding: 22px;
}
.imprt-msg h6 {
	font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
	text-transform: uppercase;
}
.imprt-msg p {
	margin-bottom: 0;
}

/*--07-01-2022-----*/

.no-package {
	text-align: center;
	background-color: #f2f2f2;
	padding: 70px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 10px;
}
.no-package i {
	font-size: 60px;
	color: #ea1f33;
}
.no-package h4 {
	margin-top: 20px;
	margin-bottom: 0;


}

/*--12-01-2022-----*/

.membership-status, .package-price {
    background: #1d262d;
}
.tab {
	display: none;
}
.tab-active {
	display: block;
	-webkit-animation: fadein 0.5s linear;
    animation: fadein 0.5s linear;
}

@-webkit-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadein {
  0%{ opacity: 0; }
  100% { opacity: 1; }
}

/*--13-01-2022-----*/

.membership-card {
    padding: 40px 30px 30px 50px;
    border-radius: 15px;
    display: inline-block;
	width: 100%;
	border: 1px solid #ddd;
	position: relative;
	margin-bottom: 30px;
	-webkit-box-shadow: 8px 10px 25px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 8px 10px 25px 0px rgb(0,0,0,0.1);
    box-shadow: 8px 10px 25px 0px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.membership-card h3 {
	margin-bottom: 18px;
	text-transform: uppercase;
}
.membership-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
}
/* .membership-card ul span {
	display: inline-block;
	width: 100px;
} */
.membership-card-footer {
    text-align: right;
	margin-top: 22px;
}
.membership-card-icon {
	position: absolute;
    right: 30px;
    top: 30px;
    width: 60px;
}
.download-link {
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.user-content-area {
		padding: 30px 10px 0;
	}
	.membership-card {
		padding: 25px 20px 20px 30px;
	}
}
@media (max-width: 576px) {
	.membership-card-icon {
		right: 20px;
		top: 20px;
		width: 53px;
	}
	.membership-card h3 {
		font-size: 26px;
	}
	.membership-card ul {
		font-size: 14px;
		line-height: 24px;
	}
}