#preloader {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
	transition: 0.3s ease opacity;
	text-align: center;
	width: 100%;
	height: 100%;
}

#preloader:before {
	content: "";
	width: 80px;
	height: 80px;
	border: 3px solid #860000;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation-name: LoaderCicle;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

#preloader:after {
	content: "";
	width: 80px;
	height: 80px;
	border: 3px solid #860000;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation-name: LoaderCicle;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-delay: 1s;
}

@keyframes LoaderCicle {
	0% {
		width: 0;
		height: 0;
		opacity: 0;
	}

	10% {
		width: 10px;
		height: 10px;
		opacity: 1;
	}

	80% {
		width: 60px;
		height: 60px;
		opacity: 0.1;
	}

	100% {
		width: 70px;
		height: 70px;
		opacity: 0;
	}
}

a:hover,a:active {
	color: #860000;
	text-decoration: none;
}

.primary-overlay[data-overlay-dark]:before {
	background: #860000;
}

.secondary-overlay[data-overlay-dark]:before {
	background: #003a66;
}

.text-primary,.text-primary-hover:hover {
	color: #860000 !important;
}

.bg-primary {
	background-color: #860000 !important;
}

.border-primary {
	border-color: #860000 !important;
}

.text-secondary,.text-secondary-hover:hover {
	color: #003a66 !important;
}

.bg-secondary {
	background-color: #003a66 !important;
}

.bg-dark {
	background-color: #003055 !important;
}

.form-control {
	border-radius: 0;
}

.primary-shadow {
	box-shadow: 0 0 70px rgba(0,0,0,0.08);
}

.text-white-hover:hover {
	color: #fff !important;
}

.min-vh-100 {
	min-height: 100vh;
}

.h-30px {
	height: 30px;
}

.w-40px {
	width: 40px !important;
}

.scroll-to-top {
	font-size: 20px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	background: #860000;
	width: 40px;
	height: 40px;
	line-height: 40px;
	z-index: 9999;
	outline: 0;
	-webkit-transition: all .3s ease;
}

.scroll-to-top i {
	color: #fff;
}

.scroll-to-top:hover {
	color: #fff;
	background: #003a66;
}

.scroll-to-top:hover i {
	color: #fff;
}

.scroll-to-top:visited {
	color: #fff;
	text-decoration: none;
}

.list-style1 li {
	margin-bottom: 15px;
}

.list-style1 li:last-child {
	margin-bottom: 0;
}

.list-style1 li a {
	color: #fff;
}

.list-style1 li a:hover {
	color: #003a66;
}

.list-style2 li {
	position: relative;
	display: block;
	padding-left: 35px;
	margin-bottom: 12px;
}

.list-style2 li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.list-style2 li:before {
	position: absolute;
	top: -2px;
	left: 0;
	bottom: 0;
	font-family: FontAwesome;
	content: "\f046";
	color: #003a66;
	font-size: 20px;
}

.list-style3 li {
	border-bottom: 1px solid #dee2e6;
	padding-bottom: 12px;
	margin-bottom: 15px;
}

.list-style3 li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.list-style4 li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.list-style4 li:last-child {
	margin-bottom: 0;
}

.list-style4 li:before {
	content: "\f046";
	font-family: FontAwesome;
	position: absolute;
	color: #003a66;
	left: 0;
	top: -2px;
	font-size: 18px;
}

.butn {
	display: inline-block;
	background-color: #860000;
	color: #fff !important;
	padding: 16px 30px !important;
	border-radius: 0.25rem;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	line-height: normal;
	transition-duration: .3s;
}

.butn.secondary {
	background-color: #003a66;
}

.butn.secondary:hover {
	background-color: #860000;
}

.butn:hover {
	background-color: #003a66;
}

.butn.white {
	color: #860000 !important;
	background-color: #fff;
}

.butn.white:hover {
	background-color: #003a66;
	color: #fff !important;
}

.butn.white:hover span {
	color: #860000;
}

.butn.white-hover:hover,.butn.white-hover:active,.butn.white-hover:focus {
	background-color: #fff;
	color: #003a66 !important;
}

.butn.md {
	padding: 14px 26px !important;
	font-size: 15px;
}

.butn.sm {
	padding: 10px 18px !important;
	font-size: 14px;
}

.top-bar-info {
	display: inline-block;
	vertical-align: middle;
}

.top-bar-info ul {
	margin-bottom: 0;
}

.top-bar-info li {
	font-weight: 500;
	color: #fff;
	list-style-type: none;
	font-size: 14px;
	padding: 0 5px 0;
	display: inline-block;
	margin-bottom: 0;
}

.top-bar {
	display: block;
	position: relative;
	z-index: 999;
	padding: 7px 0;
}

.top-bar-info li i {
	font-size: 16px;
	color: #fff;
	margin-right: 8px;
	margin-top: 0;
	display: inline-block;
	vertical-align: text-bottom;
}

.top-social-icon {
	padding: 0;
	float: right;
	margin: 0;
}

.top-social-icon li {
	font-size: 14px;
	list-style-type: none;
	float: left;
	text-align: center;
	margin: 0;
	padding: 0 7px;
}

.top-social-icon li:last-child {
	padding-right: 0;
}

.top-social-icon li:last-child a {
	padding-right: 0;
}

.top-social-icon li a {
	color: #fff;
	line-height: 28px;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	padding: 0 3px;
}

.top-social-icon li a:hover {
	color: rgba(255,255,255,0.65);
}

.navbar-nav li.current>a,.navbar-nav li.active>a {
	color: #860000;
}

.attr-nav>ul>li>a.butn {
	color: #fff;
}

.navbar>ul>li.current>a:after {
	border-color: transparent #860000 #860000 transparent;
}

.menu_area-light .navbar-nav li.current>a,.menu_area-light .navbar-nav li.active>a {
	color: #003a66;
}

.menu_area-light .navbar>ul>li.current>a:after {
	border-color: transparent #003a66 #003a66 transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
	color: #860000;
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
	color: #860000;
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
	color: #860000;
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
	border-color: transparent #860000 #860000 transparent;
}

@media screen and (min-width: 992px) {
	.menu_area-light .navbar ul ul li.active>a,.menu_area-light .navbar-nav li.has-sub a:hover {
		color: #003a66;
	}

	.menu_area-light .navbar>ul>li.has-sub>a:hover:after {
		border-color: #003a66;
	}

	.menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
		color: #003a66;
	}

	.header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
		color: #860000;
	}

	.header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
		border-color: transparent #860000 #860000 transparent;
	}

	.header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
		border-color: transparent #860000 #860000 transparent;
	}

	.header-style2.scrollHeader .navbar-nav li.current>a {
		color: #860000;
	}

	.header-style2.scrollHeader .navbar-nav li.current>a:hover {
		color: #860000;
	}

	.header-style2.scrollHeader .navbar>ul>li.current>a:after {
		border-color: transparent #860000 #860000 transparent;
	}

	.header-style2 .navbar ul ul li.active>a {
		color: #860000;
	}

	.header-style2 .navbar-nav li.has-sub a:hover,.header-style2 .navbar-nav li.has-sub a:active,.header-style2 .navbar-nav li.has-sub a:focus {
		color: #860000;
	}

	.header-style2 .navbar-nav li.current>a,.header-style2 .navbar-nav li.active>a {
		color: #860000;
	}

	.header-style2 .navbar>ul>li.has-sub>a:hover:after,.header-style2 .navbar>ul>li.has-sub>a:active:after,.header-style2 .navbar>ul>li.has-sub>a:focus:after {
		border-color: transparent #860000 #860000 transparent;
	}
}

@media screen and (max-width: 991px) {
	.header-style1 .navbar-toggler {
		background: #860000;
	}

	.header-style1 .navbar-toggler:after {
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}

	.header-style1 .navbar-toggler:before {
		background: #fff;
	}

	.header-style1 .navbar-toggler.menu-opened:after,.header-style1 .navbar-toggler.menu-opened:before {
		background: #fff;
	}
}

.header-style2 .navbar-nav li.current>a {
	color: #860000;
}

.header-style2 .navbar>ul>li.current>a:after {
	border-color: transparent #860000 #860000 transparent;
}

.header-style2.scrollHeader .navbar-nav li.current>a {
	color: #860000;
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
	color: #860000;
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
	border-color: transparent #860000 #860000 transparent;
}

@media screen and (min-width: 992px) {
	.header-style2 .navbar ul ul li.active>a {
		color: #860000;
	}

	.header-style2 .butn.secondary:before {
		background: #ffffff;
	}

	.header-style2 .butn.secondary:hover,.header-style2 .butn.secondary:focus,.header-style2 .butn.secondary:active {
		color: #003a66 !important;
	}

	.header-style2.scrollHeader .butn.secondary:before {
		background: #860000;
	}

	.header-style2.scrollHeader .butn.secondary:hover,.header-style2.scrollHeader .butn.secondary:focus,.header-style2.scrollHeader .butn.secondary:active {
		color: #fff !important;
	}
}

.slider-fade1 .title {
	margin-bottom: 25px;
	animation-delay: 0.8s;
}

.slider-fade1 p {
	animation-delay: 1.2s;
}

.slider-fade1 a {
	animation-delay: 1.6s;
}

.slider-fade1 .sm-title {
	animation-delay: 0.5s;
	display: block;
	position: relative;
}

.slider-fade1.owl-theme .owl-nav {
	margin-top: 0;
}

.slider-fade1.owl-carousel.owl-theme .owl-dots {
	position: absolute;
	bottom: 80px;
	width: 100%;
	margin: 0;
	left: 0;
}

.slider-fade1.owl-theme .owl-nav [class*='owl-'] {
	position: absolute;
	right: inherit;
	top: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	border: none;
	background: #860000;
	border-radius: 60px;
	line-height: 65px;
	transition-duration: 500ms;
	left: 15px;
	text-align: center;
	margin: auto;
	opacity: 0.2;
}

.slider-fade1.owl-theme .owl-nav .owl-next {
	top: 0;
	bottom: 0;
	left: inherit;
	right: 15px;
}

.slider-fade1.owl-theme .owl-nav .owl-next:hover {
	opacity: 1;
	background: #860000;
}

.slider-fade1.owl-theme .owl-nav .owl-prev:hover {
	opacity: 1;
	background: #860000;
}

.slider-fade1 .owl-nav i,.slider-fade1 .owl-nav span {
	font-weight: 600;
	color: #fff;
	transition-duration: 500ms;
	font-size: 20px;
}

.slider-fade1 .owl-nav .owl-next:hover i,.slider-fade1 .owl-nav .owl-prev:hover i {
	color: #fff;
}

@media screen and (max-width: 767px) {
	.slider-fade1 .bg-img {
		background-position: -50% 0;
	}
}

.page-title-section {
	background-size: cover;
	background-position: center;
	padding: 90px 0;
}

.page-title-section .title-info {
	width: 100%;
	display: block;
	vertical-align: middle;
	margin-bottom: 10px;
}

.page-title-section .breadcrumbs-info {
	text-align: left;
	white-space: nowrap;
	width: 100%;
	display: block;
	vertical-align: middle;
}

.page-title-section h1 {
	font-weight: 900;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 0;
}

.page-title-section ul {
	margin-bottom: 0;
}

.page-title-section ul li {
	display: inline-block;
	font-weight: 700;
}

.page-title-section ul li:last-child a {
	color: #860000;
}

.page-title-section ul li:after {
	content: '\e649';
	font-weight: 700;
	vertical-align: middle;
	color: #616161;
	font-family: 'themify';
	padding: 0 6px 0 10px;
	font-size: 10px;
}

.page-title-section ul li:last-child:after {
	content: none;
}

.page-title-section ul li a {
	font-weight: 700;
}

.page-title-section .active a,.page-title-section li.active:last-child a {
	color: #fff;
}

@media screen and (max-width: 1199px) {
	.page-title-section {
		padding: 70px 0;
	}
}

@media screen and (max-width: 991px) {
	.page-title-section {
		padding: 50px 0;
	}
}

@media screen and (max-width: 767px) {
	.page-title-section .title-info {
		margin-bottom: 10px;
	}
}

.card-style01:hover .team-icon {
	transition: all ease-in-out .5s;
	opacity: 1;
	transform: translateY(-30px);
}

.card-style01 .team-icon {
	position: absolute;
	bottom: 2%;
	left: 0;
	right: 0;
	opacity: 0;
	transition: all ease-in-out .5s;
	background: #fff;
	padding: 8px 0;
	margin: 0 50px;
	text-align: center;
	display: inline-block;
}

.card-style01 .team-icon ul li {
	margin: 0 15px;
}

.card-style01 .team-icon ul li a {
	color: #860000;
	transition: all ease-in-out .3s;
}

.card-style01 .team-icon ul li a:hover {
	color: #003a66;
}

@media screen and (max-width: 1399px) {
	.card-style01 .team-icon {
		margin: 0 30px;
	}
}

.card-style02 .flag-img img {
	transition: all 300ms ease;
}

.card-style02:hover .flag-img img {
	transform: rotate(360deg);
	transition: .6s;
}

.card-style02 .country-img img {
	transition: all 500ms ease;
}

.card-style02:hover .country-img img {
	transform: scale(1.05);
}

.card-style03 .card-button {
	position: absolute;
	bottom: -12%;
	width: 40px;
	height: 40px;
	background-color: #003a66;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: .4s;
}

.card-style03 .card-button:hover {
	background-color: #860000;
}

.card-style03 .card-img {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.card-style03 .card-img img {
	transition: all 500ms ease;
}

.card-style03:hover .card-img>img {
	transform: scale(1.05);
	opacity: 0.5;
}

.card-style03 .card-icon-img {
	position: absolute;
	right: 30px;
	bottom: 40px;
	width: 70px;
	z-index: 1;
	font-size: 30px;
	line-height: 26px;
	color: #fff;
	font-weight: 800;
	text-align: center;
	padding: 12px 0px 6px 0px;
	background: #860000;
}

.card-style03 .card-icon-img:before {
	position: absolute;
	content: '';
	background: rgba(224,36,84,0.5);
	width: 60px;
	height: 5px;
	left: 5px;
	bottom: -5px;
}

.card-style03 .card-icon-img:after {
	position: absolute;
	content: '';
	background: rgba(224,36,84,0.5);
	width: 50px;
	height: 10px;
	left: 10px;
	bottom: -10px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot span {
	border-radius: 2px;
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #860000;
}

.owl-nav i,.owl-nav span {
	color: #232323;
	font-size: 28px;
}

.owl-carousel .owl-item img {
	width: auto;
	display: inline-block;
}

.accordion .card {
	background: transparent;
	box-shadow: none;
	margin-bottom: 20px;
	border: 0;
	border-radius: 0;
}

.accordion .card:last-child {
	margin-bottom: 0;
}

.accordion .card-header {
	border: 0;
	padding: 0;
	background: none;
}

.accordion .accordion-button {
	border-bottom: none;
	color: #ffffff;
	font-size: 18px;
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	white-space: normal;
	box-shadow: none;
	font-weight: 500;
	padding: 20px 60px 20px 20px;
	text-decoration: none;
	background: #860000;
	border: 1px solid #860000;
}

.accordion .accordion-button:after {
	background: #fff;
	border: none;
	content: "-";
	right: 20px;
	border-radius: 5px;
	left: inherit;
	font-size: 18px;
	border: 1px solid #fff;
	transform: none;
	width: 25px;
	height: 25px;
	line-height: 21px;
	top: 18px;
	position: absolute;
	color: #860000;
	text-align: center;
}

.accordion .accordion-collapse {
	border: none;
}

.accordion .card-body {
	font-size: 16px;
	padding: 20px 25px;
	line-height: 28px;
	text-align: left;
	border-top: 0;
	border-bottom: 1px solid #ededed;
	border-left: 1px solid #ededed;
	border-right: 1px solid #ededed;
}

.accordion .accordion-button:hover {
	text-decoration: none;
}

.accordion .accordion-button.collapsed {
	background: #ffffff;
	color: #282b2d;
	border: 1px solid #ededed;
}

.accordion .accordion-button.collapsed:after {
	background: #003a66;
	border: none;
	content: "+";
	right: 20px;
	left: inherit;
	font-size: 18px;
	transform: none;
	width: 25px;
	height: 25px;
	line-height: 24px;
	top: 18px;
	border-radius: 5px;
	text-align: center;
	color: #ffffff;
}

@media screen and (max-width: 991px) {
	.accordion .accordion-button {
		padding: 15px 50px 15px 15px;
		font-size: 16px;
	}

	.accordion .accordion-button.collapsed:after,.accordion .accordion-button:after {
		right: 15px;
		font-size: 16px;
		height: 22px;
		line-height: 22px;
		width: 22px;
		top: 13px;
	}

	.accordion .card-body {
		padding: 20px 15px;
	}
}

@media screen and (max-width: 575px) {
	.accordion .accordion-button {
		padding: 15px 50px 15px 15px;
	}
}

.sidebar .widget {
	position: relative;
	display: block;
	margin-bottom: 1.9rem;
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.sidebar .widget .category-list li {
	margin-bottom: 15px;
}

.sidebar .widget .category-list li:last-child {
	margin-bottom: 0px;
}

.sidebar .widget .category-list li:hover a,.sidebar .widget .category-list li.active a {
	background: #860000;
	color: #fff;
}

.sidebar .widget .category-list li a {
	padding: 12px 15px 12px 15px;
	border: 1px solid rgba(0,0,0,0.1);
	transition: .4s;
	font-weight: 600;
	display: block;
}

.sidebar .widget .category-list li a a {
	transition: all 0.3s ease-in-out;
	display: inline-block;
	position: relative;
}

.sidebar .widget .category-list li a a span {
	z-index: 9;
	position: relative;
}

.sidebar .widget .category-list li a:hover a {
	color: #860000;
}

.widget-title {
	margin-bottom: 1rem;
}

.widget-content {
	box-shadow: 0 0 70px rgba(0,0,0,0.08);
	position: relative;
	padding: 30px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 0.25rem;
	background: #fff;
}

.blog-tags a {
	background-color: transparent;
	padding: 7px 12px;
	font-size: 14px;
	line-height: 20px;
	margin: 0.6rem 5px 0 0;
	display: inline-block;
	vertical-align: top;
	border: 1px solid #dee2e6;
}

.blog-tags a:hover,.blog-tags a:active,.blog-tags a:focus {
	background-color: #860000;
	border-color: #860000;
	color: #fff;
}

.widget-tag-cloud ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.widget-tag-cloud ul li {
	display: inline-block;
}

.widget-tag-cloud ul li a {
	border: 1px solid #ededed;
	border-radius: 3px;
	padding: 8px 12px;
	font-size: 14px !important;
	line-height: 20px;
	margin: 0.6rem 10px 0 0;
	display: inline-block;
	background-color: #fff;
}

.widget-tag-cloud ul li a:hover {
	background-color: #003a66;
	color: #ffffff;
}

.comment-reply-link {
	color: #860000;
	background: rgba(224,36,84,0.1);
	padding: 5px 18px;
	font-weight: 500;
	border-radius: 4px;
	font-size: 14px;
}

.comment-reply-link:hover,.comment-reply-link:active,.comment-reply-link:focus {
	color: #fff;
	background: #860000;
}

@media screen and (max-width: 575px) {
	.widget-content {
		padding: 20px;
	}
}

.blog-main {
	position: relative;
	display: block;
}

.blog-main .blog-image-box .blog-image-01 img {
	width: 100%;
	transition: all 500ms ease;
}

.blog-main:hover .blog-image-box .blog-image-01 img {
	transform: scale(1.05);
	opacity: 0.5;
}

.blog-main .blog-image-box h2 {
	position: absolute;
	right: 30px;
	bottom: 40px;
	width: 70px;
	z-index: 1;
	font-size: 30px;
	line-height: 26px;
	color: #fff;
	font-weight: 800;
	text-align: center;
	padding: 12px 0px 6px 0px;
	background: #860000;
}

.blog-main .blog-image-box h2:before {
	position: absolute;
	content: '';
	background: rgba(224,36,84,0.5);
	width: 60px;
	height: 5px;
	left: 5px;
	bottom: -5px;
}

.blog-main .blog-image-box h2:after {
	position: absolute;
	content: '';
	background: rgba(224,36,84,0.5);
	width: 50px;
	height: 10px;
	left: 10px;
	bottom: -10px;
}

.blog-main .blog-content {
	padding: 35px;
}

.blog-main .blog-content .blog-author .author-img {
	position: absolute;
	top: 6px;
	right: 0px;
}

.blog-main .blog-content .blog-author h6:before {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	left: 0px;
	top: 8px;
	background: #003a66;
}

.blog-main .blog-content .blog-author h6 a:hover {
	color: #e74860;
}

.blog-main .blog-content .blog-link a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	color: #860000;
	font-weight: 800;
	text-transform: uppercase;
}

.blog-main .blog-content .blog-link a span {
	position: relative;
	padding-right: 21px;
	transition: all 500ms ease;
}

.blog-main .blog-content .blog-link a:hover span {
	padding-right: 42px;
}

.blog-main .blog-content .blog-link a span:before {
	position: absolute;
	content: "\e649";
	font-family: themify;
	top: -2px;
	right: 0px;
	font-size: 18px;
	font-weight: 400;
}

.blog-main .blog-content .blog-link a span:after {
	position: absolute;
	content: '\e6e2';
	font-family: 'themify';
	top: -2px;
	right: 16px;
	font-size: 16px;
	opacity: 0;
	transition: all 500ms ease;
}

.blog-main .blog-content .blog-link a:hover span:after {
	opacity: 1;
}

.blog-main .blog-content .blog-info li {
	position: relative;
	display: inline-block;
}

.blog-main .blog-content .blog-info li:last-child {
	margin: 0px !important;
}

.blog-main .blog-content .blog-info li i {
	position: absolute;
	left: 0px;
	top: 5px;
}

.blog-main .blog-content .blog-info li a:hover {
	color: #e74860;
}

@media only screen and (max-width: 575px) {
	.blog-main .blog-content {
		padding: 30px;
	}
}

.banner-wrapper img {
	margin-top: 0;
	clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%);
}

.banner-wrapper .icon-boxs {
	position: absolute;
	top: -60px;
	text-align: center;
	left: 0;
	right: 0;
	margin: auto;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.banner-wrapper .icon-boxs i {
	line-height: 80px;
}

.coaching-main {
	position: relative;
	display: block;
	overflow: hidden;
}

.coaching-main .coaching-static-content:before {
	position: absolute;
	content: '';
	background: linear-gradient(360deg, rgba(0,58,102,0.9) 0%, rgba(0,58,102,0) 100%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.coaching-main .coaching-image-1 img {
	width: 100%;
}

.coaching-main .coaching-content-box {
	position: absolute;
	left: 0px;
	bottom: 70px;
	width: 100%;
	padding-left: 50px;
	padding-right: 50px;
}

.coaching-main .coaching-content-box .coaching-icon-box {
	position: relative;
	display: block;
	color: #fff;
	margin-bottom: 30px;
}

.coaching-main .coaching-content-box h3 {
	display: block;
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 20px;
}

.coaching-main .coaching-content-box h3 a {
	display: inline-block;
	color: #fff;
}

.coaching-main .coaching-content-box h3 a:hover {
	color: #e74860;
}

.coaching-main .coaching-content-box p {
	color: #fff;
}

.coaching-main .coaching-overlay-content {
	position: absolute;
	left: 0px;
	top: 30px;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: all 500ms ease;
}

.coaching-main:hover .coaching-overlay-content {
	opacity: 1;
	top: 0px;
}

.coaching-main .coaching-overlay-content:before {
	position: absolute;
	content: '';
	background: linear-gradient(360deg, rgba(0,58,102,0.9) 0%, #003a66 100%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

@media only screen and (max-width: 1199px) {
	.coaching-main .coaching-content-box {
		bottom: 0px;
		padding-left: 30px;
		padding-right: 30px;
	}
}

.pricing-style01 .price-img {
	display: flex;
	width: 90px;
	height: 90px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	bottom: -16%;
	right: 10%;
	border: 5px solid #fff;
}

@media screen and (max-width: 1199px) {
	.pricing-style01 .price-img {
		width: 90px;
		height: 90px;
		bottom: -28%;
	}
}

.agent-detail-des {
	position: relative;
	z-index: 0;
	padding: 30px;
	border: 1px solid #e5e8ef;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.agent-detail-des .agent-social-links {
	padding: 0;
	margin: 0;
}

.agent-detail-des .agent-social-links li {
	margin-right: 5px;
	margin-bottom: 5px;
	display: inline-block;
	list-style-type: none;
}

.agent-detail-des .agent-social-links li a {
	color: #ffffff;
	padding: 6px 12px;
	display: inline-block;
	background-color: #860000;
}

.agent-detail-des .agent-social-links li a:hover {
	background-color: #003a66;
}

.why-choose-style01 .why-choose-area {
	padding: 65px 40px;
	transition: all .4s ease;
}

.why-choose-style01 .why-choose-area:hover {
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	transform: translateY(-10px);
}

@media screen and (max-width: 1399px) {
	.why-choose-style01 .why-choose-area {
		padding: 50px 30px;
	}
}

@media screen and (max-width: 767px) {
	.why-choose-style01 .why-choose-area {
		padding: 30px 10px;
	}
}

.why-choose-style1 .why-choose-box {
	position: absolute;
	background-color: #860000;
	width: 300px;
	text-align: start;
	padding: 30px;
	bottom: 50px;
}

@media screen and (max-width: 1199px) {
	.why-choose-style1 .why-choose-box {
		padding: 15px 30px;
		bottom: 0;
	}
}

.about-left {
	position: relative;
	display: block;
	margin-left: 130px;
	margin-right: 40px;
}

.about-shape-2 {
	position: absolute;
	left: -355px;
	top: 190px;
	z-index: 1;
}

.about-left .about-img-1 {
	position: relative;
	display: block;
	z-index: 1;
}

.about-left .about-img-1 img {
	width: 100%;
}

.about-left .about-img-1 .about-shape-1 {
	position: absolute;
	bottom: -93px;
	right: 90px;
	z-index: -1;
}

.about-left .about-img-2 {
	position: absolute;
	left: -130px;
	bottom: -137px;
	z-index: 1;
}

.about-left .about-experience {
	position: absolute;
	bottom: -64px;
	left: 87px;
	background-color: #fff;
	padding: 22px 40px 23px;
	max-width: 239px;
	width: 100%;
	z-index: 1;
}

.about-left .about-experience::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
	background-color: #860000;
	z-index: 1;
}

.about-experience::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	border-top: 10px solid transparent;
	border-left: 7px solid #860000;
	border-bottom: 10px solid transparent;
	z-index: 1;
	transform: translateY(-50%);
}

.about-left .about-icon {
	position: absolute;
	top: 40px;
	left: -205px;
}

.about-mission .about-icon-box {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 77px;
	height: 76px;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
	padding: 20px;
}

.about-mission img {
	display: block;
	transition: all 0.6s ease;
}

.ani-top-bottom {
	-webkit-animation-name: top-bottom;
	animation-name: top-bottom;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@keyframes top-bottom {
	0% {
		transform: translateY(-20px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(-20px);
	}
}

@media screen and (max-width: 575px) {
	.about-style-01 .about-left .about-experience {
		bottom: -164px;
		left: 14px;
	}
}

.about-style-02 {
	position: relative;
	display: block;
}

.about-style-02 ul li {
	position: relative;
	display: block;
	padding-left: 35px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	line-height: 2;
}

.about-style-02 ul li:last-child {
	margin-bottom: 0;
}

.about-style-02 ul li:before {
	position: absolute;
	top: -2px;
	left: 0;
	bottom: 0;
	font-family: FontAwesome;
	content: "\f046";
	color: #860000;
	font-size: 20px;
}

.about-style-02 .right .icon {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border: 1px dashed #ababab;
	border-radius: 50%;
	font-size: 30px;
	line-height: 58px;
	text-align: center;
	padding: 14px;
}

.about-style-02 .about-img {
	position: absolute;
	right: 0;
	display: inline-block;
	top: 50%;
	transform: translateY(-50%);
}

.about-style-02 .about-img:before {
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	border: 2px solid #860000;
	width: 184px;
	height: 428px;
	z-index: -1;
	content: '';
}

.read-more {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	color: #860000;
	font-weight: 800;
	text-transform: uppercase;
}

.read-more span {
	position: relative;
	padding-right: 21px;
	transition: all 500ms ease;
}

.read-more:hover span {
	padding-right: 42px;
}

.read-more span:before {
	position: absolute;
	content: "\e649";
	font-family: themify;
	top: -2px;
	right: 0px;
	font-size: 15px;
	font-weight: 400;
}

.read-more span:after {
	position: absolute;
	content: '\e6e2';
	font-family: 'themify';
	top: -2px;
	right: 16px;
	font-size: 16px;
	opacity: 0;
	transition: all 500ms ease;
}

.read-more:hover span:after {
	opacity: 1;
}

.client-area {
	margin-top: -90px;
}

.countries-block .countries-inner-box {
	padding: 20px 10px;
	position: relative;
	text-align: center;
}

.countries-block .countries-inner-box:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../img/content/shape-04.jpg);
	border-radius: 10px;
	content: "";
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease;
}

.countries-block .countries-inner-box:hover:before {
	opacity: 1;
	visibility: visible;
}

.countries-block .countries-inner-box:hover .flag {
	transform: rotate(360deg);
}

.countries-block .flag {
	position: relative;
	display: block;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	overflow: hidden;
	transition: all 300ms ease;
	margin: 20px auto;
	z-index: 2;
}

.pagination {
	border-radius: 0;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}

.pagination ul {
	display: inline-block;
	margin: 0 auto;
	padding: 0;
}

.pagination li {
	display: inline;
	margin-right: 10px;
}

.pagination li:last-child {
	margin-right: 0;
}

.pagination a {
	background: transparent;
	font-weight: 700;
	text-align: center;
	padding: 12px 16px;
	color: #42545e;
	border: 1px solid #dddddd;
	line-height: 25px;
}

.pagination a:hover,.pagination a:active,.pagination a:focus {
	background-color: #003a66;
	color: #ffffff;
	box-shadow: none;
}

.pagination .active a {
	background-color: #f7f7f7;
	color: #002147;
	border: 1px solid #dbdbdb;
	cursor: default;
}

@media screen and (max-width: 575px) {
	.pagination li {
		margin-right: 8px;
	}
}

.process-style-02 .progress-text {
	font-size: 15px;
	margin-bottom: 8px;
}

.process-style-02 .custom-progress {
	height: 8px;
	border-radius: 50px;
	box-shadow: none;
	margin-bottom: 2rem;
}

.process-style-02 .custom-bar {
	height: 100%;
	background-color: #860000;
	box-shadow: none;
}

.process-style3 .process-icon {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	background: #003a66;
	border-radius: 50% / 10%;
	color: white;
	text-align: center;
	line-height: 130px;
	font-size: 50px;
}
.process-style4 .process-icon {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	background: #860000;
	border-radius: 50% / 10%;
	color: white;
	text-align: center;
	line-height: 130px;
	font-size: 50px;
}

.process-style3 .process-icon:before {
	content: '';
	position: absolute;
	top: 10%;
	bottom: 10%;
	right: -5%;
	left: -5%;
	background: inherit;
	border-radius: 5% / 50%;
	z-index: 0;
}
.process-style4 .process-icon:before {
	content: '';
	position: absolute;
	top: 10%;
	bottom: 10%;
	right: -5%;
	left: -5%;
	background: inherit;
	border-radius: 5% / 50%;
	z-index: 0;
}

.process-style3 .process-icon img {
	position: relative;
	z-index: 2;
	width: 70px;
	top: 25px;
}
.process-style4 .process-icon img {
	position: relative;
	z-index: 2;
	width: 70px;
	top: 25px;
}

.process-style3 .process-number {
	position: absolute;
	right: -20px;
	font-size: 18px;
	line-height: 45px;
	top: -20px;
	color: #ffffff;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	font-weight: 700;
	z-index: 9;
	background: #860000;
}
.process-style4 .process-number {
	position: absolute;
	right: -20px;
	font-size: 18px;
	line-height: 45px;
	top: -20px;
	color: #ffffff;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	font-weight: 700;
	z-index: 9;
	background: #003a66;
}
.process-style3:after {
	position: absolute;
	content: "";
	width: 55px;
	height: 66px;
	background-image: url(../img/icons/process-arrow.png);
	top: 50px;
	right: -45px;
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: .2;
}
.process-style4:after {
	position: absolute;
	content: "";
	width: 55px;
	height: 66px;
	background-image: url(../img/icons/process-arrow.png);
	top: 50px;
	right: -45px;
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: .2;
}
.process-style3.last:after {
	content: none;
}
.process-style4.last:after {
	content: none;
}
@media screen and (max-width: 767px) {
	.process-style3:after {
		content: none;
	}
}
@media screen and (max-width: 767px) {
	.process-style4:after {
		content: none;
	}
}

.testimonial-quote {
	-webkit-text-stroke-width: 1px;
	color: #FFFFFF00;
	-webkit-text-stroke-color: #FFFFFF1A;
	font-size: 810px;
	line-height: 0px;
	position: absolute;
	left: 55%;
	top: 19%;
	transform: translate(-50%, -50%);
}

.testimonial-carousel1.owl-carousel.owl-theme .owl-nav button.owl-next {
	top: 50%;
	right: -20%;
	position: absolute;
	background: #fff;
	padding: 10px !important;
	line-height: normal;
	transition: all 0.5s ease-in-out;
}

.testimonial-carousel1.owl-carousel.owl-theme .owl-nav button:hover.owl-next {
	background-color: #e74860;
}

.testimonial-carousel1.owl-carousel.owl-theme .owl-nav i {
	color: #003a66;
}

.owl-nav span {
	color: #003a66;
}

.testimonial-carousel1.owl-carousel.owl-theme .owl-nav button.owl-prev {
	top: 50%;
	left: -20%;
	position: absolute;
	background: #fff;
	padding: 10px !important;
	line-height: normal;
	transition: all 0.5s ease-in-out;
}

.testimonial-carousel1.owl-carousel.owl-theme .owl-nav button:hover.owl-prev {
	background-color: #e74860;
}

@media only screen and (max-width: 991px) {
	.testimonial-carousel1.owl-carousel.owl-theme .owl-nav button.owl-prev,.testimonial-carousel1.owl-carousel.owl-theme .owl-nav button.owl-next {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.testimonial-quote {
		left: 59%;
	}
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	margin-bottom: .5rem;
}

.form-control:focus {
	border-color: #860000;
}

.form-check-input:checked {
	border-color: #860000;
	background-color: #860000;
}

.quform-input {
	position: relative;
}

.quform-input .quform-errors-wrap {
	position: absolute;
	right: 8px;
	top: 0;
	line-height: normal;
	z-index: 1;
}

.quform-element>label {
	font-weight: 600;
	padding-bottom: 5px;
	margin-bottom: 0;
	color: #6a747b;
	font-size: 15px;
}

.quform-element>label .quform-required {
	color: #cc0101;
	font-size: 10px;
}

.quform-inner input {
	width: 100%;
}

.quform-elements .quform-element textarea {
	margin-bottom: 0;
	padding: 8px 15px;
	vertical-align: top;
}

.quform-elements .quform-element select {
	margin-bottom: 0;
	padding: 8px 35px 8px 15px;
}

.quform-errors {
	padding: 0;
	margin: 0;
	line-height: normal;
}

.quform-errors>.quform-error {
	padding: 0;
	background: none;
	border: none;
	float: none;
	color: #f5543f;
	font-size: 11px;
	line-height: normal;
	letter-spacing: normal;
}

.quform-outer-no-js .quform-error {
	padding: 0;
	background: none;
	border: none;
	float: none;
	color: #f5543f;
	font-size: 11px;
	line-height: normal;
	letter-spacing: normal;
}

.quform-outer-no-js .quform-success-message {
	padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-has-error input,.quform-has-error textarea,.quform-has-error select,.quform-has-error input[type=file],.quform-has-error .custom-file-label {
	border-color: #f5543f;
}

.quform-success-message {
	padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-submit-inner {
	float: none;
}

.quform-loading-wrap {
	float: none;
}

.quform-loading-wrap .quform-loading {
	display: inline-block;
}

.quform-element {
	margin-bottom: 1rem;
}

.ani-top-bottom {
	-webkit-animation-name: top-bottom;
	animation-name: top-bottom;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@keyframes top-bottom {
	0% {
		transform: translateY(-20px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(-20px);
	}
}

.social-icon-style2 {
	margin-bottom: 0;
	display: inline-block;
	padding-left: 10px;
	list-style: none;
}

.social-icon-style2 li {
	vertical-align: middle;
	display: inline-block;
}

.social-icon-style2 li a {
	display: inline-block;
	font-size: 14px;
	text-align: center;
	color: #fff;
	background: #860000;
	height: 41px;
	line-height: 41px;
	width: 41px;
}

.social-icon-style2 li a:hover,.social-icon-style2 li a:active,.social-icon-style2 li a:focus {
	background: #003a66;
	color: #fff;
}

.social-icon-style2 li:last-child {
	margin-right: 0;
	margin-right: 0;
}

.social-icon-style2 li a.small {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 11px;
}

.social-icon-style2.small li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
}

@media screen and (max-width: 991px) {
	.social-icon-style2.small li a {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
}

.social-icon-style3 {
	margin-bottom: 0;
	display: inline-block;
	padding-left: 0px;
	list-style: none;
}

.social-icon-style3 li {
	vertical-align: middle;
	display: inline-block;
	margin-right: 5px;
}

.social-icon-style3 li a {
	display: inline-block;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	background: #003a66;
	height: 41px;
	line-height: 41px;
	width: 41px;
}

.social-icon-style3 li a:hover {
	background: #860000;
}

.social-icon-style3 li:last-child {
	margin-right: 0;
}

.search-form_input {
	color: #860000;
}

.search-frame h4 a:hover {
	color: #860000;
}

.search-frame .search_list .match {
	color: #860000;
}

.search-frame .search_list li:before {
	color: #860000;
}

.search-frame .search_list li+li {
	border-top: 3px solid #860000;
}

.search-frame .search {
	color: #860000;
}

.contact-map {
	width: 100%;
	height: 400px;
	vertical-align: top;
	border: 0;
}

.contact-info-block {
	position: relative;
	text-align: center;
}

.contact-info-block .contact-img {
	width: 100%;
	padding: 50px 30px;
	position: relative;
	background-size: cover;
	background-position: 50%;
	overflow: hidden;
	box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
	transition: all 300ms ease-in-out;
	height: 100%;
}

.contact-info-block .bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transition: background-color 0.4s ease;
}

.contact-info-block:hover .bg-overlay:before {
	opacity: 0;
	transform: translate(-100%, -100%);
}

.contact-info-block .bg-overlay:before {
	content: "";
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 1;
	transform: translate(0, 0);
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.contact-info-block:hover .bg-overlay:after {
	opacity: 1;
	transform: translate(0, 0);
}

.contact-info-block .bg-overlay:after {
	content: "";
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	transform: translate(100%, 100%);
	transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.contact-info-block .content-text {
	position: relative;
	padding: 0 50px;
}

.contact-info-block i {
	color: #860000;
}

.contact-info-block:hover p,.contact-info-block:hover h3,.contact-info-block:hover i {
	color: #fff;
}

@media screen and (max-width: 1199px) {
	.contact-info-block .content-text {
		padding: 0;
	}
}

.page-navigation {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	box-shadow: 0 10px 60px 0 rgba(0,0,0,0.05);
	border-radius: 8px;
}

.prev-page,.next-page {
	position: relative;
	width: 50%;
	max-width: 350px;
	margin: 10px;
}

.prev-page:before,.next-page:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 8px;
	background-color: rgba(255,255,255,0);
	box-shadow: 0 0 0 0 rgba(34,35,40,0);
	transform: scale(1.04, 1.12);
	transition: .3s ease-in-out;
	pointer-events: none;
}

.prev-page .page-info>a,.next-page .page-info>a {
	display: flex;
	align-items: center;
	position: relative;
	padding: 16px 20px;
	min-height: 110px;
	transition: 0.8s;
}

.prev-page .page-info .image-prev,.prev-page .page-info .image-next {
	position: relative;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	vertical-align: middle;
	transition: inherit;
	overflow: hidden;
}

.next-page .page-info .image-prev,.next-page .page-info .image-next {
	position: relative;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	vertical-align: middle;
	transition: inherit;
	overflow: hidden;
}

.prev-page .page-info .prev-title,.prev-page .page-info .next-title {
	display: inline-block;
	position: relative;
	max-width: 220px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	word-wrap: break-word;
	vertical-align: middle;
	transition: 0.45s;
}

.next-page .page-info .prev-title,.next-page .page-info .next-title {
	display: inline-block;
	position: relative;
	max-width: 220px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	word-wrap: break-word;
	vertical-align: middle;
	transition: 0.45s;
}

.prev-page .page-info .prev-title:empty,.prev-page .page-info .next-title:empty {
	display: none;
}

.next-page .page-info .prev-title:empty,.next-page .page-info .next-title:empty {
	display: none;
}

.prev-page:hover:before,.next-page:hover:before {
	background-color: white;
	transform: scale(1);
	box-shadow: 0 10px 30px 0 rgba(34,35,40,0.1);
}

.prev-page a {
	justify-content: flex-start;
	text-align: left;
}

.prev-page a:hover .image-prev:after {
	visibility: visible;
	opacity: 1;
}

.prev-page a:hover .image-prev:before {
	visibility: visible;
	opacity: 1;
	margin-left: 0;
}

.prev-page .image-prev {
	margin-right: 20px;
}

.prev-page .image-prev:after {
	background-color: #860000;
}

.next-page .image-next:after {
	background-color: #860000;
}

.prev-page .image-prev:before {
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	margin-left: 20px;
	content: "\e64a";
	font-family: 'themify';
	font-size: 21px;
	line-height: 70px;
	color: #fff;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out;
}

.prev-page .image-prev:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out;
}

.next-page {
	margin-left: auto;
}

.next-page a {
	justify-content: flex-end;
	text-align: right;
}

.next-page a:hover .image-next:after {
	visibility: visible;
	opacity: 1;
}

.next-page a:hover .image-next:before {
	visibility: visible;
	opacity: 1;
	margin-right: 0;
}

.next-page .image-next {
	margin-left: 20px;
}

.next-page .image-next:before {
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	margin-right: 20px;
	content: "\e64a";
	font-family: 'themify';
	font-size: 21px;
	line-height: 70px;
	color: #fff;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out;
	transform: scaleX(-1);
}

.next-page .image-next:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out;
}

.next-page .next-title {
	text-align: right;
}

.prev-link-page-info>span,.next-link-page-info>span {
	display: block;
}

.prev-link-page-info .date-details,.next-link-page-info .date-details {
	font-size: 14px;
	letter-spacing: .025em;
	line-height: 20px;
	margin-bottom: -2px;
}

.prev-link-page-info .date-details>div,.prev-link-page-info .date-details>span {
	line-height: inherit;
	transition: 0.45s;
	font-weight: 500;
}

.next-link-page-info .date-details>div,.next-link-page-info .date-details>span {
	line-height: inherit;
	transition: 0.45s;
	font-weight: 500;
}

.prev-link-page-info .date-details:only-child,.next-link-page-info .date-details:only-child {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.prev-page,.next-page {
		width: calc(100% - 20px);
		max-width: unset;
	}

	.prev-page+.next-page {
		margin-top: 0;
	}

	.page-navigation {
		flex-direction: column;
	}
}

@media screen and (max-width: 575px) {
	.prev-page .page-info>a,.next-page .page-info>a {
		padding: 10px;
	}

	.prev-page .page-info .prev-title,.prev-page .page-info .next-title {
		max-width: 168px;
	}

	.next-page .page-info .prev-title,.next-page .page-info .next-title {
		max-width: 168px;
	}
}

footer {
	background: #1e2022;
	word-break: break-word;
}

.footer-logo {
	max-width: 214px;
	width: 100%;
	display: inline-block;
}

.footer-logo>a {
	display: inline-block;
}

.footer-style1>.container {
	padding-top: 90px;
	padding-bottom: 90px;
}

.footer-style1 h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	line-height: 1;
	position: relative;
}

.footer-style1 h3:after {
	content: none;
}

.footer-style1 .footer-bar {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 0;
	border-top: 1px solid rgba(255,255,255,0.075);
	color: rgba(255,255,255,0.85);
}

.footer-style1 .footer-bar p {
	margin-top: 5px;
	margin-bottom: 0;
}

.footer-style1 ul {
	margin-bottom: 0;
}

.footer-style1 li {
	margin-bottom: 10px;
	list-style: none;
}

.footer-style1 li:last-child {
	margin-bottom: 0;
}

.footer-style1 li a {
	color: rgba(255,255,255,0.85);
}

.footer-style1 li a:hover {
	color: #fff;
}

.footer-style1 .social-icons ul {
	margin: 0;
	padding: 0;
}

.footer-style1 .social-icons li {
	display: inline-block;
	margin-right: 1px;
	margin-bottom: 0;
}

.footer-style1 .social-icons li:last-child {
	margin-right: 0;
}

.footer-style1 .social-icons li a {
	font-size: 14px;
	height: 35px;
	line-height: 36px;
	width: 35px;
	background: #f5f5f5;
	color: rgba(0,0,0,0.65);
	border-radius: 3px;
	display: inline-block;
	text-align: center;
}

.footer-style1 .social-icons li a:hover {
	background: #860000;
	color: #fff;
}

@media screen and (max-width: 1199px) {
	.footer-style1>.container {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}

@media screen and (max-width: 767px) {
	.footer-style1>.container {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.footer-style1 h3 {
		margin-bottom: 20px;
	}
}

.footer-style1 .social-icons2 ul {
	margin: 0;
	padding: 0;
}

.footer-style1 .social-icons2 li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 0;
}

.footer-style1 .social-icons2 li:last-child {
	margin-right: 0;
}

.footer-style1 .social-icons2 li a {
	font-size: 14px;
	height: 35px;
	line-height: 36px;
	width: 35px;
	background: rgba(255,255,255,0.1);
	color: #fff;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
}

.footer-style1 .social-icons2 li a:hover {
	background: #fff;
	color: #003a66;
}

.buy-theme {
	transition-timing-function: ease-in-out;
	transition-duration: .2s;
	position: fixed;
	top: 150px;
	right: -61px;
	background: #860000;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	z-index: 9999;
}

.buy-theme i {
	font-size: 16px;
	vertical-align: middle;
	position: relative;
	top: -1px;
	color: #fff;
}

.all-demo i {
	font-size: 15px;
	vertical-align: middle;
	position: relative;
	top: -1px;
	color: #fff;
}

.buy-theme:hover,.all-demo:hover {
	transition-timing-function: ease-in-out;
	transition-duration: .2s;
	right: 0px;
	background: #003a66;
}

.all-demo:hover {
	background: #860000;
}

.buy-theme span,.all-demo span {
	padding: 0 9px;
	position: relative;
	top: 0;
	opacity: 0;
}

.buy-theme:hover span,.all-demo:hover span {
	opacity: 1;
	color: #fff;
}

.buy-theme:hover i,.all-demo:hover i {
	color: #fff;
}

.buy-theme a,.all-demo a {
	color: #232323;
	font-size: 10px;
	text-transform: uppercase;
	padding: 5px 10px;
	display: block;
	text-decoration: none;
	font-weight: 500;
}

.all-demo {
	transition-timing-function: ease-in-out;
	transition-duration: .2s;
	position: fixed;
	top: 185px;
	right: -81px;
	background: #003a66;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	z-index: 9999;
}