/*@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,600");*/

html,
body {
   margin:0;
   padding:0;
   height:100%;
}

/*font-family: 'Roboto', sans-serif;*/
body {
	background-color: #fff;
	color: #545e69;
	font-weight: 400;
	line-height: 1.7;
	font-size: 16px;
	word-wrap: break-word;
}

h1,h2,h3,h4 {
	/*font-family: 'Montserrat', sans-serif;*/
	font-weight: bold;
	margin-bottom: 0;
}
h1 {font-size: 24px;}
h2 {font-size: 22px;}
h3 {font-size: 20px;}
h4 {font-size: 18px;}

b, strong {
    font-weight: bold;
}
p {margin-bottom: 0;}
a:hover, a:focus {
	color: #043B6B;
	outline: none;
	text-decoration: none;
}
a {
	color: #3A6581;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}


.container-main {
	width: 100%;
	margin: 0 auto;
	min-height:100%;
	position:relative;
}
.wrapper {
	margin: 0 auto;
}

/* Height of the footer */
#body {
	/*padding-bottom:300px;*/
}
#footer {
	/*position:absolute;
	bottom:0;
	width:100%;
	height:300px;*/
}


.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}
@media (max-width: 767.98px) {
	.img-responsive {
		width: 100%;
	}
}


/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { }

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { }

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { }


@media (min-width: 767.98px) { 
	/*.cc-revoke.cc-bottom {
		left:0;
		right:3em;
	}*/
}



/*
*	HEADER
*/
.header-titlebar {
	position: relative;
	padding: 170px 0 130px 0;
	min-height: 30px;
	background-size: cover;
	background-position: center 0;
	z-index: 10;
}
.header-titlebar__inner {
	position: relative;
	display: table;
	table-layout: fixed;
	width: 100%;
	z-index: 20;
}
.header-titlebar__logo {
	max-width: 120px;
	display: table-cell;
	vertical-align: middle;
}
.header-titlebar__logo img {
	max-width: 100%;
}
.header-titlebar__text {
	padding-left: 30px;
	display: table-cell;
	vertical-align: middle;
}
.header-titlebar__title-link {
	color: #fff;
	text-shadow: 0 0 10px
	rgba(0,0,0,0.25);
	text-decoration: none;
}
.header-titlebar__title-link:hover {
	color: #fff;
}
.header-titlebar__title {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
}
.header-titlebar__background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	overflow: hidden;
}
.header-titlebar__background-image {
	background-position: center center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 10;
}
.header__nav {
	position: relative;
	margin-top: -50px;
	z-index: 20;
}
.header-topbar {
	position: relative;
	background-color:#3A6581;
	height: 50px;
}

.header-languages {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	max-width: 30%;
	z-index: 20;
	overflow: hidden;
	padding-left:20px;
}
.header-languages:before {
	background-color: rgba(0,0,0,0.2);
}
.header-languages:before {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 10px;
	width: 500px;
	height: 200px;
	z-index: 10;
}
.header-languages a {
	color:#fff;
}
.header-languages a:hover {
	text-decoration: underline;
}
.header-languages__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
	padding: 10px 30px 0 30px;
	z-index: 20;
	overflow: hidden;
}
.header-languages__item {
	list-style-type: none;
	margin: 0;
	padding: 0;
	line-height: normal;
	display: inline-block;
	margin: 0 0 0 25px;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	text-transform: uppercase;
}
.header-languages__item.selected {
	font-weight: bold;
}
.header-languages__item:first-child {
	margin:0;
}


.sticky.is-sticky {
	top: 0;
	position: fixed;
	width: 100%;
	z-index: 9;
	background-color: #fff;
	-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	-webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
	animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}
.sticky.is-sticky {
}
.sticky.is-sticky .logo-img img {
	width: 50px;
}

@keyframes fadeInDown {
  from {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
  } to {
	opacity: 1;
	transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}


/*
*	NAV
*/
.main-menu {
	*background-color:#3A6581;
}
.main-menu .navbar-ligh {
	background: none;
}
.main-menu .navbar {
	padding: 0 0px;
}
.main-menu .navbar-light .navbar-toggler {
	border: 0;
}
.main-menu .navbar-light .navbar-nav .nav-link {
    color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	border-radius:0;
	padding:0 10px;
	line-height: 50px;
}
.main-menu .navbar-light .navbar-nav .nav-item.selected .nav-link,
.main-menu .navbar-light .navbar-nav .nav-link:hover,
.main-menu .navbar-light .navbar-nav .show > .nav-link {
	color:#fff;
	text-decoration: underline;
}
.main-menu .nav-item.dropdown .nav-link {
	display: inline-block;
}
.main-menu .nav-item.dropdown span.dropdown-toggle {
	display: inline-block;
	padding: .5rem .2rem;
	cursor: pointer;
	color: #848079;
}
.main-menu .nav-item.dropdown span.dropdown-toggle:hover,
.main-menu .nav-item.dropdown.show span.dropdown-toggle {
	color:#043B6B;
}
.main-menu .dropdown-menu {
	font-size: 14px;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	min-width: 16rem;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	padding: 20px 0;
	border: 1px solid #e1e7ec;
}
.main-menu .dropdown-toggle::after {
    display: none;
}
.main-menu .dropdown-toggle i {
	padding-left: 6px;
}
.main-menu .dropdown:hover .dropdown-menu {
	display: block;
	margin-top:-6px;
	border-radius: 3px;
}
.main-menu .dropdown-item {
	color: #848079;
	font-weight: 400;
}
.main-menu .dropdown-item:focus,
.main-menu .dropdown-item:hover {
    color: #043B6B;
    text-decoration: none;
    background-color: transparent;
}

.main-menu .dropdown:hover .dropdown-menu:before{
	content: "";
	position: absolute;
	left: 17px;
	top: -6px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 6px 8px;
	border-color: transparent transparent #fff transparent;
	z-index: 1000;
}  
.main-menu .dropdown:hover .dropdown-menu:after{
	content: "";
	position: absolute;
	left: 17px;
	top: -7px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 6px 8px;
	border-color: transparent transparent #e1e7ec transparent;
	z-index: 999;
}

.lang-menu .selected {
	*border: 1px solid rgba(179, 175, 168, .8);
}
.lang-menu i {
	color: #fff;
	padding-left: 6px;
}
.lang-menu.dropdown:hover .dropdown-menu {
	display: block;
	margin-top:0;
}
.lang-menu.dropdown .dropdown-menu {
	background-color: #fff;
	border: 0;
	border-radius: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	border: 1px solid #e1e7ec;
	font-size: 12px;
}
.lang-menu.dropdown .dropdown-menu img {
	margin-right: 6px;
}
.lang-menu #langMenu i {
	color: #848079;
}
.lang-menu .dropdown-item {
	color: #848079;
}


/*
*	FOOTER
*/
#footer {
	color:#8a949b;
	background-color:#1e2427;
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 10;
}
#footer a {
	color: #e1e7ec;
}
#footer a:hover {
	text-decoration: underline;
}
.footer-bottom {
	padding: 20px 0;
}
@media (max-width: 767.98px) {
	.footer-bottom {
		padding-bottom: 50px;
	}
}

.footer-bottom .copyright-text {
}
.footer-bottom .poweredby-text {	
}

.footer-menu {}
.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu li {
	list-style: none;
}
.footer-menu .nav-link {
	padding: 8px 0;
	font-size: 14px;
}
.footer-menu .mtitle {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	margin-top: -4px;
	padding-bottom: 28px;
	text-transform: capitalize;
}
@media (max-width: 767.98px) {
	.footer-menu .mtitle {
		margin-top: 20px;
	}
}
.footer-menu .mtext {
	font-size: 14px;
	line-height: 1.4;
}

.footer-menu .footer-contact .mtext {
	display:flex;
	margin-bottom: 14px;
}
.footer-menu .footer-contact .mtext i {
    padding-top: 4px;
    margin-right: 20px;
}


/*
*	HOME
*/
.button__more-link {
	color: #3A6581;
	border: 2px solid transparent;
	border-color: rgb(58,101,129,0.6);
	border-radius: 20px;
	background-color: transparent;
	display: inline-block;
	padding: 5px 20px;
	line-height: normal;
	font-weight: bold;
	font-size: 0.8125em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
}
.button__more-link:hover {
	color: #3A6581;
	border-color: #3A6581;
}


.sitemap-section {
	position: relative;
	padding: 120px 0 30px 0;
}

.sitemap-section__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 330px;
	background-size: cover;
	background-position: center 0;
	z-index: 10;
}
.sitemap-section__content {	
	background-color:#FFF;
	-moz-box-shadow: 2px 0 40px rgba(0,0,0,0.15);
	-webkit-box-shadow: 2px 0 40px rgba(0,0,0,0.15);
	box-shadow: 2px 0 40px rgba(0,0,0,0.15);
	position: relative;
	padding: 40px 20px 10px 20px;
	border-radius: 3px;
	z-index: 20;
}

.sitemap-section ul.custom-menu {
	padding: 0 30px;
	margin: 0 0 30px 0;
	list-style: none;
}
.sitemap-section .custom-menu li {
	list-style: none;
}
.sitemap-section .custom-menu .mtext h3 {
	color: #3A6581;
	margin-bottom: 15px;
}
.sitemap-section .custom-menu .mtext p {
	margin-bottom: 15px;
}
.sitemap-section .custom-menu .nav-item {
	border-bottom: 1px solid #e1e7ec;
}
.sitemap-section .custom-menu .nav-item:last-child  {
	border-bottom: 0;
}
.sitemap-section .custom-menu .nav-item a {
	padding: 7px 15px;
}
.sitemap-section .custom-menu .nav-item a:hover {
	text-decoration: underline;
}


.latest-news-section__header {
	padding: 90px 0px 0 0px;
	position: relative;
	margin: 0 0 30px 0;
	z-index: 10;
}
.latest-news-section__header h2 {
	position: relative;
	z-index: 20;
}
.latest-news-section__header p {
	margin-top: 15px
}
.latest-news-section__header i {
	position: absolute;
	top: 0px;
	left: -50px;
	font-size: 160px;
	color: rgba(225,231,236,0.3);
	z-index: 10;
}


.events-section__header {
	margin: 0 0 -1em 0;
	position: relative;
	text-align: center;
	z-index: 10;
}
.events-section__header h2 {
	color: #e1e7ec;
	position: relative;
	margin: 0;
	line-height: 0.7em;
	font-size: 10em;
}
.events-section__list {
	position: relative;
	margin-top: -20px;
	z-index: 20;
}
.events-section__footer {
	text-align: center;
}


.latest-section {
	background-color: #F3F5F7;
}
.latest-section__header {
	position: relative;
}
.latest-section__header h3 {
	color: #1e2427;
	font-size: 1.5em;
	font-weight: normal;
}
.latest-section__footer {
	text-align: left;
}

.latest-section__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin: 0;
}

.latest-section__item {
	list-style-type: none;
	margin-top: 15px;
}
.latest-section__item:first-child {
	margin:0 !important;
}
.latest-section__item-thumb img {
    display: block;
    border-radius: 3px;
    max-width: 100%;
    height: auto;
}
.latest-section__item-title {
	font-size: 16px;
	color:#3A6581;
}
.latest-section__item-title a:hover {
	color:#3A6581;
	text-decoration: underline;
}
.latest-section__item-content {
	font-size: 0.875em;
}


.latest-section__item-doc {
	list-style-type: none;
	border-top: 1px solid #dedfe0;
}
.latest-section__item-doc:first-child {
	margin:0 !important;
	padding:0 !important;
	border: 0;
}
.latest-section__item-doc-icon {
	font-size: 20px;
}
.latest-section__item-doc-title {
	font-size: 14px;
	color:#3A6581;
}
.latest-section__item-doc-content {
	font-size: 12px;
	white-space: nowrap;
}


.post__post {
	background-size: cover;
	background-position: center 0;
	border-radius: 3px;
}
.post__post-inner {
	display: table;
	table-layout: fixed;
	position: relative;
	width: 100%;
	height: 255px;
	border-radius: 3px;
	*background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.85)));
	*background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.85));
	*background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.85));
	*background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.85));
	*background-image: linear-gradient(to bottom, rgba(0,0,0,0),rgba(0,0,0,0.85));
}
.post__post-bg {
	-webkit-transition: background-color,300ms;
	-moz-transition: background-color,300ms;
	-ms-transition: background-color,300ms;
	-o-transition: background-color,300ms;
	transition: background-color,300ms;
	display: table-cell;
	padding: 30px;
	vertical-align: bottom;
	border-radius: 3px;
}



/*
*	SLIDER
*/
.owl-carousel {
	position: relative;
}
.owl-theme .owl-nav {margin:0;}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 40%;
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 40px;
	background-color: #fff;
	color: #3A6581;
	border-radius: 50%;
	text-align: center;
	outline: none;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	-moz-box-shadow: 2px 0 40px rgba(0,0,0,0.25);
	-webkit-box-shadow: 2px 0 40px rgba(0,0,0,0.25);
	box-shadow: 2px 0 40px rgba(0,0,0,0.25);
	}
	.owl-carousel .owl-nav {
		*opacity: 0;
	}
	.owl-carousel:hover .owl-nav {
		*opacity: 1;
		-webkit-transition: 0.4s;
		-o-transition: 0.4s;
		transition: 0.4s;
	}
	.owl-carousel .owl-nav button.owl-prev:hover,
	.owl-carousel .owl-nav button.owl-next:hover {
		background-color: #fff;
		color: #3A6581;
	}
	.owl-carousel .owl-nav button.owl-next {
		right: -30px;
	}
	.owl-carousel .owl-nav button.owl-prev {
		left: -30px;
	}
	@media (max-width: 991.98px) {
		.owl-carousel .owl-nav {opacity: 1;}
	}
.owl-theme .owl-dots {
	position: absolute;
	bottom: 0;
	display: inline-block;
	text-align: center;
	width:100%;
}
	.owl-theme .owl-dots .owl-dot span {
		background: #fff;
		width:20px;
		height:4px;
		border-radius: 0px;
		outline: none;
	}

	.owl-theme .owl-dots .owl-dot.active span, 
	.owl-theme .owl-dots .owl-dot:hover span {
		background: #E25A23;
	}


/*
*	PRODUCT SLIDER
*/
.owl-carousel.slider-border .item {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	position: relative;
	text-align: center;
}
.owl-carousel.slider-border .item:hover {
    border-color: #043B6B;
}
.owl-carousel .slider-thumb {
	overflow: hidden;
	border-radius: 4px;
	margin: 0 auto;
	text-align: center;
}
.owl-carousel .slider-thumb img {
	margin-left: auto;
	margin-right: auto;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.owl-carousel .item:hover .slider-thumb img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.owl-carousel .slider-content {
    padding: 20px;
	min-height: 130px;
}
.owl-carousel .slider-content .slider-name {
    padding-bottom: 12px;
}
.owl-carousel .slider-name {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}
.owl-carousel .slider-name a {
	color: #848079;
}
.owl-carousel .slider-name a:hover {
	color: #043B6B;
}



/*
*	SCROLL
*/
.scroll-top {
    bottom: 50px;
    cursor: pointer;
    height: 40px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 40px;
    z-index: 9999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 4px;
    background-color: #3A6581;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
	.scroll-top.not-visible {
		bottom: -50px;
		visibility: hidden;
		opacity: 0;
	}
	.scroll-top i {
		line-height: 40px;
		color: #fff;
		font-size: 25px;
	}

	
/*
*	SECTION
*/	
.section-padding {
    padding: 80px 0;
}
.section-title {
    padding-bottom: 42px;
}
.section-title .title {
	color: #848079;
	font-size: 30px;
	line-height: 1.2;
	padding-bottom: 12px;
	margin-top: -8px;
	text-transform: capitalize;
}
.section-title .sub-title {
	font-size: 18px;
}
	

/*
*	PAGE & POST
*/

.page h1 {
	color: #848079;
	margin-bottom: 30px;
}

.page p,
.post p {
	margin-bottom: 1rem;
}

.post .post-title {
	color: #848079;
}
.post.post-detail .post-title {
}
.post.post-detail .post-content img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0px auto;
}
.post .post-title a {
	color: #848079;
}
.post .post-title a:hover {
	color: #043B6B;
}

.post .post-intro {
	text-align: justify;
	text-justify: inter-word;
}
.post .post-content {
	text-align: justify;
	text-justify: inter-word;
}


/*
*	CATEGORY
*/
.category a {
	color: #848079;
}
.category a:hover {
	color:#043B6B;
}
.category img {
	border: 1px solid #e5e5e5;
}



/*
*	POST GALLERY, SLICK
*/
.post-gallery {
	width: 100%;
}
.post-gallery img {
	width: 100%;
	height: auto;
	border: 0;
}
.post-gallery .gallery-image {
	margin-bottom: 10px;
}
.post-gallery .gallery-nav .slick-list {
	width: 100%;
}
.post-gallery .thumb {
	cursor: pointer;
}
.post-gallery .gallery-nav .slick-slide {
	padding: 0 5px 0 5px;
	text-align: center;
}
.post-gallery .slick-arrow {
	display: block;
	padding: 0px;
	border: 0px;
	width: auto;
	height: auto;
	line-height: 30px;
	position: absolute;
	background: none;
	z-index: 99;
	top: 50%;
	margin-top: -18px;
	outline: none;
	cursor: pointer;
	background-color: transparent;
	color: #fff;
	width: 30px;
	height: 30px;
	font-size: 24px;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.post-gallery .slick-arrow i {
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
.post-gallery .slick-arrow.slick-next {
	right: 10px;
}
.post-gallery .slick-arrow.slick-prev {
	left: 10px;
}



/*----- mobile menu start -----*/
.mobile-header .category-toggle {
  padding: 8px 15px; }

.mobile-header-top {
  border-bottom: 1px solid #e5e5e5; }
  .mobile-header-top .header-top-settings {
    float: none; }

.mobile-logo {
  max-width: 140px;
  width: 100%; }
.mobile-logo img {
	width: 50px;}

.mobile-main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .mobile-main-header .mobile-menu-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .mobile-main-header .mobile-menu-toggler .mini-cart-wrap {
      display: inline-block;
      font-size: 24px;
      line-height: 1;
      position: relative;
      margin-left: 30px; }
      .mobile-main-header .mobile-menu-toggler .mini-cart-wrap a {
        color: #848079; }
        .mobile-main-header .mobile-menu-toggler .mini-cart-wrap a:hover {
          color: #e3a51e; }
      .mobile-main-header .mobile-menu-toggler .mini-cart-wrap .notification {
        font-size: 13px;
        color: #fff;
        width: 16px;
        height: 16px;
        line-height: 16px;
        border-radius: 50%;
        text-align: center;
        font-weight: 600;
        right: -8px;
        top: 0;
        position: absolute;
        background-color: #e3a51e; }
    .mobile-main-header .mobile-menu-toggler .mobile-menu-btn {
      margin-left: 15px; }
      .mobile-main-header .mobile-menu-toggler .mobile-menu-btn .off-canvas-btn {
        font-size: 30px;
        cursor: pointer;
        padding: 15px 15px;
        line-height: 1;
        padding-right: 0; }
        .mobile-main-header .mobile-menu-toggler .mobile-menu-btn .off-canvas-btn:hover {
          color: #e3a51e; }

.mobile-navigation {
  overflow: hidden;
  *max-height: 250px; }
  .mobile-navigation nav {
    height: 100%; }
.mobile-navigation ul li {
    list-style: none;
}  
.mobile-navigation ul {
	padding-left: 0;
}

.mobile-menu {
  margin-top: 30px;
  height: 100%;
  overflow: auto;
  padding-right: 30px;
  margin-right: -30px; }
  @media only screen and (max-width: 479.98px) {
    .mobile-menu {
      margin-top: 15px; } }
  .mobile-menu li > a {
    font-size: 15px;
    color: #848079;
    text-transform: capitalize;
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding: 10px 0; }
    .mobile-menu li > a:hover {
      color: #e3a51e; }
  .mobile-menu li ul li {
    border: none;
    padding-left: 15px; }
    .mobile-menu li ul li a {
      font-size: 14px;
      text-transform: capitalize;
      padding: 8px 0; }
  .mobile-menu li.menu-item-has-children {
    display: block;
    position: relative; }
    .mobile-menu li.menu-item-has-children .menu-expand {
      line-height: 50;
      top: -5px;
      left: 95%;
      width: 30px;
      position: absolute;
      height: 50px;
      text-align: center;
      cursor: pointer; }
      .mobile-menu li.menu-item-has-children .menu-expand i {
        display: block;
        position: relative;
        width: 10px;
        margin-top: 25px;
        border-bottom: 1px solid #848079;
        -webkit-transition: all 250ms ease-out;
        -o-transition: all 250ms ease-out;
        transition: all 250ms ease-out; }
        .mobile-menu li.menu-item-has-children .menu-expand i:before {
          top: 0;
          width: 100%;
          content: "";
          display: block;
          position: absolute;
          -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          transform: rotate(90deg);
          border-bottom: 1px solid #848079;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
    .mobile-menu li.menu-item-has-children.active > .menu-expand i:before {
      -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
      transform: rotate(0); }

/*----- mobile menu end -----*/
.off-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 9999; }
  .off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible; }
    .off-canvas-wrapper.open .off-canvas-inner-content {
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }
  .off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: url("../images/cancel.png"), auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; }
  .off-canvas-wrapper .off-canvas-inner-content {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    @media only screen and (max-width: 479.98px) {
      .off-canvas-wrapper .off-canvas-inner-content {
        width: 260px;
        padding: 15px; } }
  .off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #e3a51e; }
    .off-canvas-wrapper .btn-close-off-canvas i {
      -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
      transform: rotate(0);
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      display: block;
      line-height: 40px; }
    .off-canvas-wrapper .btn-close-off-canvas:hover i {
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg); }
  .off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: 100%; }
  
/*------- mobile top bar settings start -------*/
.mobile-settings {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #e5e5e5; }

	.mobile-settings a {
		color:#848079;
	}
	.mobile-settings a:hover {
		color:#e3a51e;
	}
/*------- mobile top bar settings end -------*/


/*
*	PAGER
*/
.pager-box {
	font-size: 18px;
}
.pager-box a,
.pager-box span {
	display: inline-block;
	text-decoration: none;
	color: #fff; 
	background-color: #043B6B;
	font-weight: bold;
	margin-right: 6px; 
	width: 36px; 
	height: 36px; 
	line-height: 36px; 
	text-align: center; 
	border: none;
}
.pager-box .pager-sep{
	border:none;
}
.pager-box i {
	font-size: 18px;
	font-weight: normal;
}
.pager-box a:hover,
.pager-box span.current {
	color: #848079; 
	background: #e4e4e4;
}


/*
*	FORMS
*/
.form .input input {
	width:100%;
	border:0;
	padding:0;
	background-color: #fff;
	color: #848079;
}
.form .input textarea {
	width:100%;
	border:0;
	padding:0;
	background-color: #fff;
	color: #848079;
}
.form .input {
	padding: 10px;
	background-color: #fff;
	border: 1px solid #B3AFA8;
}
.form .box.error .input {
	border: 1px solid #dc3545;
}
.form .label {
	font-size: 14px;
}
.form .error-message {
	font-size: 12px;
	color: #dc3545;
	margin-top: 2px;
}
.form .box {
	margin-bottom: 24px;
}
.form .box.error {
	margin-bottom: 2px;
}
.form .button {
	margin-top: 20px;
}
.form .button button {
	border:0;
	padding: 4px 20px;
	background-color: #043B6B;
	color: #fff;
}
