@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*font-family: 'Libre Franklin', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');
/*font-family: 'El Messiri', sans-serif;*/
body {
	font-family: 'Libre Franklin', sans-serif;
	animation: fadein 2s;
	-moz-animation: fadein 2s; /* Firefox */
	-webkit-animation: fadein 2s; /* Safari and Chrome */
	-o-animation: fadein 2s; /* Opera */
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow-x: hidden;
}
.video-style {
    width: 50%;
    float: right;
    border: 10px solid #efefef;
    padding: 0;
    margin: 0 0 15px 15px;
}
nav.pagenavigation .btn-secondary span.icon-chevron-left, nav.pagenavigation .btn-secondary span.icon-chevron-right, .fixed-header .menu-search, .container-header, .fixed-header, .menu-search .container-nav ul li ul li a:hover, .menu-search .container-nav ul li ul li.active > a, .container-section-a li, .container-section-c li, .container-section-a li:hover, .carousel-control-next, .carousel-control-prev, .carousel-control-next:hover, .carousel-control-prev:hover, .items-list-services:hover .services-content h2 a, .items-list-services:hover .services-content p, .blog .blog-item:hover h2 a, .blog .blog-item:hover p, .mod-articlesnews-horizontal li:hover a, .mod-articlesnews-horizontal li:hover p {
	-webkit-transition: all 0.3s ease 0.1s;
	-moz-transition: all 0.3s ease 0.1s;
	-ms-transition: all 0.3s ease 0.1s;
	-o-transition: all 0.3s ease 0.1s;
	transition: all 0.3s ease 0.1s;
}
#contact-form input::-webkit-input-placeholder {
font-weight: normal;
}
#contact-form input::-moz-placeholder {
font-weight: normal;
} /* FF 4-18 */
#contact-form input::-moz-placeholder {
font-weight: normal;
} /* FF 19+ */
#contact-form input::-ms-input-placeholder {
font-weight: normal;
} /* IE 10+ */
 input:focus::-webkit-input-placeholder {
color:transparent;
}
 input:focus:-moz-placeholder {
color:transparent;
} /* FF 4-18 */
 input:focus::-moz-placeholder {
color:transparent;
} /* FF 19+ */
 input:focus:-ms-input-placeholder {
color:transparent;
} /* IE 10+ */
 textarea:focus::-webkit-input-placeholder {
color:transparent;
}
 textarea:focus:-moz-placeholder {
color:transparent;
} /* FF 4-18 */
 textarea:focus::-moz-placeholder {
color:transparent;
} /* FF 19+ */
 textarea:focus:-ms-input-placeholder {
color:transparent;
}
/* IE 10+ */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Libre Franklin', sans-serif;
}
img.side, img.full-width {
	width: 25%;
	height: auto;
	float: right;
	margin: 0 0 15px 20px;
	border: 4px solid #0065b3;/* border-radius: 50%; */
}
p.space {
    height: 280px;
}
img.full-width {
	width: 100%;
}
p {
	margin: 0 0 10px;
	line-height: 32px;
	color: #5b5b5b;
}
p strong {
	color: #0065b3;
	font-weight: inherit;
}
 @keyframes fadein {
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-moz-keyframes fadein { /* Firefox */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-webkit-keyframes fadein { /* Safari and Chrome */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-o-keyframes fadein { /* Opera */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
/* Start preloader */

#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #34398a;
	z-index: 10000;
}
#preloader .whirlpool, #preloader .whirlpool::before, #preloader .whirlpool::after {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 4px solid #fff;
	border-left-color: #0065b3;
	border-radius: 974px;
	-o-border-radius: 974px;
	-ms-border-radius: 974px;
	-webkit-border-radius: 974px;
	-moz-border-radius: 974px;
}
#preloader .whirlpool {
	margin: -80px 0 0 -80px;
	height: 160px;
	width: 160px;
	animation: cssload-rotate 1150ms linear infinite;
	-o-animation: cssload-rotate 1150ms linear infinite;
	-ms-animation: cssload-rotate 1150ms linear infinite;
	-webkit-animation: cssload-rotate 1150ms linear infinite;
	-moz-animation: cssload-rotate 1150ms linear infinite;
}
#preloader .whirlpool::after {
	content: "";
	margin: -50px 0 0 -50px;
	height: 100px;
	width: 100px;
	animation: cssload-rotate 2300ms linear infinite;
	-o-animation: cssload-rotate 2300ms linear infinite;
	-ms-animation: cssload-rotate 2300ms linear infinite;
	-webkit-animation: cssload-rotate 2300ms linear infinite;
	-moz-animation: cssload-rotate 2300ms linear infinite;
}
#preloader .whirlpool::before {
	content: "";
	margin: -30px 0 0 -30px;
	height: 60px;
	width: 60px;
	animation: cssload-rotate 1150ms linear infinite;
	-o-animation: cssload-rotate 1150ms linear infinite;
	-ms-animation: cssload-rotate 1150ms linear infinite;
	-webkit-animation: cssload-rotate 1150ms linear infinite;
	-moz-animation: cssload-rotate 1150ms linear infinite;
}
 @keyframes cssload-rotate {
 100% {
 transform:rotate(360deg);
}
}
 @-o-keyframes cssload-rotate {
 100% {
 -o-transform:rotate(360deg);
}
}
 @-ms-keyframes cssload-rotate {
 100% {
 -ms-transform:rotate(360deg);
}
}
 @-webkit-keyframes cssload-rotate {
 100% {
 -webkit-transform:rotate(360deg);
}
}
 @-moz-keyframes cssload-rotate {
 100% {
 -moz-transform:rotate(360deg);
}
}
/* End preloader */

/* Start Style Coding Custom */
.top-info .grid-child, .menu-search .grid-child {
	padding: 0;
}
.container-header nav, .container-header .container-search {
	margin: 0;
}
.container-header .metismenu>li.active>a:after, .container-header .metismenu>li.active>button:before,  .container-header .metismenu>li>a:hover:after, .container-header .metismenu>li>button:hover:before,  body.itemid-109 #mod-custom122, .mod-breadcrumbs__wrapper .float-start,  body.itemid-109 .mod-breadcrumbs__wrapper, p.readmore span, body.itemid-109 .main_content,  .container-section-a, .container-section-b, .container-section-c, .container-section-d,  body.itemid-110 #mod-custom122, body.itemid-110 .mod-breadcrumbs__wrapper, body.itemid-110 .main_content, body.itemid-109 .breadcrumbs, body.itemid-110 .breadcrumbs, .carousel-caption a, p.readmore a {
	display: none;
}
body.itemid-109 .container-section-a, body.itemid-109 .container-section-b, body.itemid-109 .container-section-d, body.itemid-110 .container-section-a, body.itemid-110 .container-section-b, body.itemid-110 .container-section-d {
	display: block;
}
/* End Style Coding Custom */

/* Start Style Header  */
.top-info .grid-child {
	position: relative;
}
.top-info {
	display: block;
	background: #34398a;
	padding: 0;
	height: 50px;
}
.top-info em {
	padding-right: 6px;
	font-size: 14px;
}
.top-info #mod-custom115 {
	text-align: right;
	padding-right: 54px;
}
.top-info ul {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.top-info li {
	list-style: none;
	color: #fff;
	display: inline-block;
	line-height: 50px;
	font-size: 14px;/* margin-right: 15px; */
}
.top-info #mod-custom115 li a {
	display: inline-block;
	width: 30px;
	height: 40px;
	color: #fff;
	text-align: center;
	line-height: 40px;
}
.top-info #mod-custom115 li a em {
	font-size: 13px;
}
.top-info #mod-custom115 li a:hover {
	color: #0065b3
}
.mod-languages {
	position: absolute;
	top: 0;
	right: 0;
	padding-left: 0px;
	border-left: 1px solid #515155;
}
.mod-languages ul {
	display: inline-block;
	width: 50px;
	float: right;
}
.mod-languages a {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
}
.mod-languages a:after {
	font-family: 'FontAwesome';
	content: "\f0d7";
	position: absolute;
	top: 1px;
	right: 7px;
	width: 6px;
	height: 6px;
}
.mod-languages a:hover {
	color: #0065b3;
}
.container-header {
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #fff;
}
.fixed-header {
	top: -156px;
}
.top-logo ul {
	margin: 22px 0 8px 0;
}
.top-logo ul li {
	list-style: none;
	display: inline-block;
	margin-left: 22px;
	padding-left: 70px;
	font-size: 14px;
	color: #818181;
	line-height: 24px;
	height: 60px;
}
.top-logo ul li strong {
	font-weight: 400;
	font-size: 14px;
	color: #000;
}
.top-logo ul li.info {
	background: url(../images/phone_icon.png) 0 0px no-repeat;
}
.top-logo ul li.add {
	background: url(../images/location_icon.png) 0 0 no-repeat
}
.top-logo ul li.times {
	background: url(../images/time_icon.png) 0 0 no-repeat
}
.navbar-brand img {
	height: 80px;
	width: auto;
}
.menu-search {
	position: relative;
	display: block;
	background: none;
	padding: 0px 0;
	border-top: 1px solid #e4e4e4;
}
.fixed-header .menu-search {
	box-shadow: 0 0 16px -7px rgba(0,0,0,0.5);
}
.menu-search .container-search input {
	height: 36px;
	font-size: 12px;
	color: #b3b3b3;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 20px !important;
	padding: 0 10px;
	position: relative;
	width: 248px;
	top: 9px;
	box-shadow: 0 0 10px -1px rgba(0,0,0,.2);
}
.menu-search .container-search .btn {
	display: inherit;
	position: absolute;
	padding: 0;
	right: 4px;
	top: 10px;
	margin-bottom: 0;
	font-size: 16px;
	text-transform: capitalize;
	color: #fff;
	width: 34px;
	height: 34px;
	font-weight: 300;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border-radius: 0;
	text-indent: -200px;
	border: none;
	overflow: hidden;
	background: url(../images/search_icon.png) center center no-repeat !important;
}
/* Start menu  */
.menu-search .container-nav {
	padding: 0;
	position: relative;
}
.menu-search .container-nav li a {
	position: relative;
	display: block;
	padding: 14px 12px;
	color: #43474d;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	margin-right: 10px;
	border-top: 2px solid transparent;
}
.menu-search .container-nav li.item-194 a, .menu-search .container-nav li.item-221 a {
	background: #0065b3;
	margin: 0;
	color: #fff;
	border-radius: 50px;
	padding: 11px 30px;
	margin-top: 4px;
	animation: color-change 1s infinite;
	border: 0;
}
.menu-search .container-nav li.item-194 a:after, .menu-search .container-nav li.item-221 a:after {
	display: none;
}
.menu-search .container-nav li a:after {
	background: #0065b3;
	top: 16px;
	content: "";
	display: block;
	height: 20px;
	width: 1px;
	margin: inherit;
	opacity: 1;
	position: absolute;
	right: -14px;
	-webkit-transition: all .2s ease, background-color .2s ease;
	-o-transition: all .2s ease, background-color .2s ease;
	transition: all .2s ease, background-color .2s ease;
}
.container-header .mod-menu li {
	padding: 0;
	margin: 0 !important;
	position: relative;
	display: inline-block;
}
.menu-search .container-nav li.active>a, .menu-search .container-nav li:hover>a {
	text-decoration: none;
	color: #0065b3;
	border-top: 2px solid #0065b3;
	background: none;
}
.menu-search .container-nav li.item-194.active>a, .menu-search .container-nav li.item-194:hover>a, .menu-search .container-nav li.item-221:hover>a, .menu-search .container-nav li.item-221.active>a {
	color: #fff;
	border: 0;
}
@keyframes color-change {
 0% {
background: #0065b3;
}
 50% {
background: #222226;
}
 100% {
background: #0065b3;
}
}
 @keyframes fadein {
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-moz-keyframes fadein { /* Firefox */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-webkit-keyframes fadein { /* Safari and Chrome */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-o-keyframes fadein { /* Opera */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
.menu-search .container-nav ul li ul {
	background: #fff;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	-webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	border: none;
	min-width: 250px;
	display: block !important;
	opacity: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: opacity 0.5s 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 0.5s 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transform-origin: 0;
	transform-origin: 0 0;
}
.menu-search .container-nav ul li:hover>ul {
	display: block;
	opacity: 1;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	border-radius: 0;
}
.menu-search .container-nav ul li ul ul {
	top: 0;
	left: 220px;
}
.menu-search .container-nav ul li ul ul:before {
	background: none;
}
.menu-search .container-nav ul li ul li {
	list-style: none;
	float: none;
	border-top: 1px solid #dcdcdc;
	position: relative;
	display: block;
}
.menu-search .container-nav ul li ul li a {
	display: block;
	background: none;
	text-decoration: none;
	padding: 10px 10px;
	font-size: 14px;
	position: relative;
	border: none !important;
	padding-left: 20px;
}
.menu-search .container-nav ul li ul li a:after {
	display: none;
	width: 0;
}
.menu-search .container-nav ul li ul li a:hover:after, .menu-search .container-nav ul li ul li.active > a:after {
	/* position: absolute; */
    /* content: "//"; */
	left: 0;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 12px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	background: none;
	right: auto;
}
.menu-search .container-nav ul li ul li a:hover, .menu-search .container-nav ul li ul li.active > a {
	padding-left: 12px;
	background: none;
	border-top: 2px solid transparent;
	/* transform: translateX(10px); */
	background: #222226;
	margin: 0;
	color: #fff;
}
/* End Style menu */
/* End Style Headr */

/*start banner pages*/
.body-banner {
	margin-top: 195px;
}
#mod-custom122 {
	height: 300px;
	overflow: hidden;
	border-bottom: 4px solid #0065b3;
}
.main_content {
	padding: 30px 0 80px;
}
.main_content .com-content-article, .main_content, .com-content-category-blog {
	position: relative;
}
.main_content .com-content-article .page-header, .com-contact h1, .com-content-category-blog h1, div#visformcontainer h1 {
	color: #fff;
	position: absolute;
	top: -260px;
	left: 0;
	width: 100%;
	z-index: 10;
	padding-bottom: 0;
	margin: 0;
	border-bottom: none;
	display: block;
	text-transform: uppercase;
}
.main_content .com-content-article .page-header h1, .com-contact h1, .com-contact h1, .com-content-category-blog h1, div#visformcontainer h1 {
	margin: 0;
	padding: 0;
	background: none;
	color: #fff;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
}
.itemid-103 .com-contact h1, .itemid-220 .com-contact h1, div#visformcontainer h1 {
	top: -288px;
}
.com-contact h3 {
	/* margin: 0 auto 20px; */
	display: none;/* width: 100%; */
    /* text-align: center !important; */
    /* font-weight: 600; */
    /* font-size: 26px; */
}
.com-contact legend {
    display: none;
}
.mod-breadcrumbs__wrapper {
}
.breadcrumb-item a, .breadcrumb-item+.breadcrumb-item:before {
	color: #fff;
	text-decoration: none;
}
.breadcrumb-item.active {
	color: #0065b3;
}
/*end banner pages*/
.main_content main {
	margin: -60px 0 0 0 !important;
}
.main_content .com-content-article p {
	margin: 0 0 10px;
	line-height: 32px;
	color: #4e5164;
}
.main_content .com-content-article h3 {
	display: block;
	color: #0065b3;
	padding: 10px !important;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 10px !important;
	border-left: 4px solid #0065b3;
}
.main_content .com-content-article em {
	display: block;
	background: #f2f2f2;
	padding: 20px;
	border-left: 4px solid #0065b3;
	font-size: 16px;
	margin: 20px 0;
}
.main_content .com-content-article ul {

}
.main_content .com-content-article ul li, .main_content .com-content-article ol li {
    line-height: 30px;
    font-size: 16px;
}
.main_content .com-content-article p strong {
	color: #0065b3;
	font-weight: inherit;
}
/*Start Style Slider Home*/
.carousel-control-next, .carousel-control-prev {
	width: 50px;
	height: 50px;
	color: #fff;
	border-radius: 50%;
	top: 50%;
	opacity: 0;
	margin-top: -25px;
	background: #fff;
}
.carousel-control-next:hover, .carousel-control-prev:hover {
	background: #0065b3;
}
.carousel-control-prev {
	left: 3%;
}
.carousel-control-next {
	right: 3%;
}
.carousel-control-prev-icon {
	background : url(../images/prev-icon.png) center center no-repeat;
}
.carousel-control-next-icon {
	background : url(../images/next-icon.png) center center no-repeat;
}
div#carouselHeaderCaptions:hover .carousel-control-next, div#carouselHeaderCaptions:hover .carousel-control-prev {
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	-webkit-transform: translateZ(1000px);
	-webkit-transform-style: preserve-3d;
}
.carousel-caption {
	top: 20%;
	color: #fff;
	left: 7%;
	padding: 0;
	position: absolute;
	right: auto;
	text-align: left;
	width: 650px;
	height: 250px;
}
.carousel-caption h3 {
	text-transform: uppercase;
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: #0065b3;
	margin-bottom: 20px;
}
.carousel-caption h3 span {
	display: block;
}
.carousel-caption h3 span.big-style {
	color: #fff;
	font-size: 40px;
	margin-top: 20px;
	line-height: 60px;
	text-transform: capitalize;
}
.carousel-caption p {
	font-size: 18px !important;
	color: #fff;
	line-height: 30px !important;
	margin-bottom: 30px;
}
a.btn-style, .controls .btn-primary, .container-section-e a, .form-group .btn-primary {
	color: #fff !important;
	background: #0065b3;
	line-height: 64px;
	font-size: 14px;
	text-decoration: none;
	width: 190px;
	height: 60px;
	font-weight: 400;
	padding: 0px 0 0px 34px !important;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: inherit !important;
	position: relative;
	display: inline-block;
	z-index: 1;
	overflow: hidden;
	vertical-align: middle;
	border: none;
	border-radius: 60px;
	margin-top: 15px;
}
.form-group .btn-primary {
	margin-top: 0;
}
.form-group.row.justify-content-center {
    margin:0;
    display: inline-block;
    width: auto;
    position: relative;
}
.carousel-caption a:after, a.btn-style:after, .controls .btn-primary:after, .container-section-e a:after, .form-group.row.justify-content-center:after {
	content: "";
	top: 25px;
	right: 20%;
	background: url(../images/arrow-btn.png) 0 0 no-repeat;
	width: 20px;
	height: 16px;
	position: absolute;
	visibility: visible;
	z-index: 1;
}
.form-group .btn-primary:hover {
	background-color: #222226;    
}
.container-section-e a:after {
	background: url(../images/arrow-btn-red.png) 0 0 no-repeat;
}
.carousel-caption a:before, a.btn-style:before, .controls .btn-primary:before, .container-section-e a:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 100%;
	border-radius: 60px;
	background-color: #222226;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: 0.3s;
}
.carousel-caption a:hover:before, a.btn-style:hover:before, .controls .btn-primary:hover:before, .container-section-e a:hover:before {
	opacity: 1;
	visibility: visible;
	width: calc(100% - 0px);
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus, .btn-secondary:hover, a.btn-style:focus, a.btn-style:hover {
	background: #0065b3;
	color: #fff;
}
.container-banner {
	margin-bottom: 0;
}
/*End Style slier home*/
.article-info dd {
	display: inline-block;
	margin-right: 20px;
}
.article-info dt {
	font-weight: inherit;
	font-size: 20px;
	margin-bottom: 15px;
}
.article-info dd span {
	color: #0065b3;
}
.container-section-a, .container-section-b, .container-section-c, .container-section-d, .container-section-e {
	padding: 80px 0;
}
.container-section-a {
	padding: 70px 0 0;
}
.container-section-a h6, .container-section-b h6, .container-section-c h6 {
	display: block;
	text-align: center;
	color: #0065b3;
	font-size: 26px;
	margin: 0 0 20px;
	font-weight: 500;
}
.container-section-a h5, .container-section-b h5, .container-section-c h5 {
	display: block;
	text-align: center;
	color: #232230;
	font-size: 38px;
	font-weight: 500;
	margin: 0 0 20px;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
.container-section-a img.side {
	width: 100%;
	float: none;
	border: none;
	height: auto;
	margin: 0;
	border-radius: 0;
}
.container-section-a img.side:before {
}
.container-section-a img.side:after {
}
.container-section-a .message_left {
	position: relative;
	width: 50%;
	float: left;
}
.container-section-a .message_right {
	position: relative;
	width: 46%;
	float: right;
	padding-top: 77px;
}
.container-section-a h5, .container-section-a h6 {
	text-align: left;
	margin-bottom: 15px;
	padding: 0;
}
.container-section-a h6 {
	color: #0065b3;
}
.container-section-a .counter {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 2;
    background: #fff;
    width: 150px;
    height: 150px;
    display: block;
    text-align: center;
    padding: 35px 10px;
    border-radius: 50%;
    color: #000;
    box-shadow: 0 0 40px rgb(0 0 0 / 10%) !important;
  -webkit-animation: dance 2s alternate infinite;
          animation: dance 2s alternate infinite;
}
.container-section-a .counter:before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 2px solid #0065b3;
    border-radius: inherit;
}
.container-section-a .counter h2 {
	color: #0065b3;
	margin: 0;
}
.container-section-a .counter p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
* animation 15---------------------------------------- */

@-webkit-keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.container-section-b {
	background: url(../images/shap-bg.png) top right no-repeat fixed;
}
.items-list-services, .blog .blog-item, .mod-articlesnews-horizontal li {
	background: rgba(255,255,255,.5);
	position: relative;
	margin: 25px;
	text-align: center;
	overflow: hidden;
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 0 40px rgb(0 0 0 / 10%) !important;
}
.items-list-services:before, .blog .blog-item:before, .mod-articlesnews-horizontal li:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 0%;
	left: 0px;
	bottom: 0px;
	transition: all 500ms ease;
	background: #0065b3;
}
.items-list-services:hover:before, .blog .blog-item:hover:before, .mod-articlesnews-horizontal li:hover:before {
	height: 100%;
	top: 0px;
}
.services-content, .blog .blog-item .item-content, .mod-articlesnews-horizontal li a, .mod-articlesnews-horizontal li p {
	position: relative;
	z-index: 1;
}
.items-list-services .services-content h2 a, .blog .blog-item h2 a, .mod-articlesnews-horizontal li h4 a {
	font-size: 22px;
	font-weight: 600;
	line-height: inherit;
	margin: 0;
	color: #43474d;
	text-decoration: none;
	display: inline-block;
	text-transform: capitalize;
}
.items-list-services:hover .services-content h2 a, .items-list-services:hover .services-content p, .blog .blog-item:hover p, .blog .blog-item:hover h2 a, .mod-articlesnews-horizontal li:hover h4 a, .mod-articlesnews-horizontal li:hover p {
	color: #fff;
}
.blog .blog-item p img {
	width: 100%;
	height: auto;
	float: none;
	margin: 0;
	border: none;
}
@supports (display: grid) {
 .mod-articlesnews-horizontal {
 grid-gap: 3rem;
 display: flex;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}
 .mod-articlesnews-horizontal li:not(:last-child) {
 margin-right: 0
}
}
.mod-articlesnews-horizontal li {
	width: 33.33%;
	margin: 0;
}
.container-section-c {
	background: url(../images/banner.jpg) center center repeat fixed;
}
.container-section-c .grid-child.container {
	overflow: hidden;
}
.container-section-c .owl-carousel {
	padding-top: 0 !important;
}
.container-section-c div#npost155 {
	width: 100%;
}
.container-section-c h5 {
	color: #fff;
}
.container-section-c li:hover {
	margin-top: -5px;
	-webkit-transition: all 0.3s ease 0.1s;
	-moz-transition: all 0.3s ease 0.1s;
	-ms-transition: all 0.3s ease 0.1s;
	-o-transition: all 0.3s ease 0.1s;
	transition: all 0.3s ease 0.1s;
}
.container-section-c li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background-color: #1e3c77;
	transition: 0.3s;
}
.container-section-c li:hover:before {
	height: 100%;
}
.container-section-e {
	background: #0065b3;
	text-align: center;
	padding: 50px 0;
}
.container-section-e .grid-child.container {
	position: relative;
	width: 100%;
	display: block;
}
.container-section-e h2 {
	color: #fff;
	text-transform: capitalize;
	/* width: 50%; */
    /* padding-left: 90px; */
	text-align: center;
	font-size: 30px;
	line-height: 50px;/* background: url(../images/icon-link-footer.png) 0 13px no-repeat; */
}
.container-section-e a {
	background: #fff;
	color: #0065b3 !important;
}
.footer, [dir=rtl] .footer {
	background: url(../images/banner.jpg) center center no-repeat fixed;
	padding: 80px 0 0;
	margin: 0;
}
.footer .grid-child {
	padding: 0;
	align-items: flex-start;
}
.footer .card {
	background: none;
	border: none;
	width: 100%;
}
.footer .card-header {
	background: none;
	border: none;
}
.footer .card p {
	line-height: 32px;
	color: #c6c5c5;
	margin: 0;
	font-weight: 400;
	font-size: 14px;
}
.footer .footer-1 p {
	font-size: 16px;
	line-height: 34px;
}
.footer strong {
	color: #0065b3;
	font-weight: 600;
}
.footer p a {
	display: inline-block;
	color: #0065b3;
	font-weight: 600;
	text-decoration: none;
}
.footer .footer-2 li {
	display: block;
	border: 0;
	position: relative;
	padding: 0;
}
.footer .footer-2 li a {
	color: #c6c5c5;
	font-weight: 400;
	border-right: none;
	border-bottom: 1px dotted #999b9f;
	padding: 8px 15px;
	font-size: 14px;
	text-transform: capitalize;
	display: block;
	text-decoration: none;
}
.footer .footer-2 li a:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f105";
	position: absolute;
	top: 10px;
	left: 0;
	font-weight: 300;
}
.footer .footer-2 li a:hover, .footer .footer-2 li.active a {
	color: #0065b3;
	border-bottom: 1px dotted #0065b3;
}
.footer .footer-1 ul {
	padding: 0;
	margin: 20px 0 0 0;
}
.footer .footer-1 ul li {
	list-style: none;
	display: inline-block;
}
.footer .footer-1 ul li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	color: #999b9f;
	background: rgba(255,255,255,.1);
	text-align: center;
	line-height: 40px;
}
.footer .footer-1 ul li a:hover {
	background: #1e3c77;
}
.copyright {
	background: #34398a;
	text-align: center;
	margin-top: 60px;
}
.back-to-top-link {
	background: none;
	color: #fff;
	border: 1px solid #57585a;
	box-shadow: 0 0 8px 3px rgb(255 255 255 / 14%);
}
.back-to-top-link:focus, .back-to-top-link:hover {
	background: #0065b3;
	border: 1px solid #57585a;
	color: #fff;
}
.com-contact__form.contact-form {
	width: 500px;
	position: absolute;
	z-index: 100;
	left: 44%;
	background: #fff;
	padding: 20px;
	top: 40%;
	border-radius: 20px;
	box-shadow: 0 0 40px rgb(0 0 0 / 10%) !important;
}
.com-contact__container {
	display: block;/* width: 50%; */
    /* float: right; */
    /* padding-left: 50px; */
}
.com-contact__container img {
	width: 100%;
	height: auto;
}
dl.dl-horizontal dt {
	font-size: 23px;
	text-align: center;
	line-height: 36px;
	color: #0065b3;
	margin-bottom: 10px;
}
dl.dl-horizontal dd {
	margin-bottom: 10px;
}
.djslider-default img.dj-image {
	padding: 15px;
	width: auto;
	height: 80px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
	-webkit-transition: all 0.3s ease 0.1s;
	-moz-transition: all 0.3s ease 0.1s;
	-ms-transition: all 0.3s ease 0.1s;
	-o-transition: all 0.3s ease 0.1s;
	transition: all 0.3s ease 0.1s;
}
.djslider-default img.dj-image:hover {
	box-shadow: inherit;
	-webkit-transition: all 0.3s ease 0.1s;
	-moz-transition: all 0.3s ease 0.1s;
	-ms-transition: all 0.3s ease 0.1s;
	-o-transition: all 0.3s ease 0.1s;
	transition: all 0.3s ease 0.1s;
}
#contact-form label {
/*display: none;*/
}
#contact-form .form-control, .visforms-form input {
	padding: 10px;
	background: #f9f9f9;
	border: none;
	font-size: 14px;
	width: 100%;
	border-radius: 30px;
}
div.required .asterix-ancor:after {
    color: #353b41 !important;
    padding-left: 5px !important;
}
#contact-form textarea {
	height: 130px !important;
}
#contact-form .control-group {
	margin: 0 0 10px;
}
#contact-form .control-group .controls {
	position: relative;
}
#contact-form .control-group:nth-child(1) {
}
#contact-form .control-group:nth-child(2) {
}
#contact-form .control-group:nth-child(3) {
	width: 49%;
	display: inline-block;
}
#contact-form .control-group:nth-child(4) {
	display: inline-block;
	width: 49%;
	float: right;
}
.com-contact__info, #visformcontainer {
	width: 500px;
	display: block;
	margin: 50px auto;
	background: #fff;
	box-shadow: 0 0 40px rgb(0 0 0 / 10%) !important;
	padding: 20px;
	border-radius: 20px;
}
#visformcontainer .row, #visformcontainer .row .col-12 {
    margin: 0;
    padding: 0;
}
#visformcontainer .col-xxl-3, #visformcontainer .col-xxl-9 {
    width: 100%;
}
/*
#contact-form .control-group:nth-child(3) .controls:after, #contact-form .control-group:nth-child(4) .controls:after, #contact-form .control-group:nth-child(5) .controls:after, #contact-form .control-group:nth-child(6) .controls:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f007";
    position: absolute;
    top: 27px;
    left: 50px;
    color: #b5b5b5;
    font-size: 18px;
}
#contact-form .control-group:nth-child(4) .controls:after {
    content: "\f1fa";
}
#contact-form .control-group:nth-child(5) .controls:after {
    content: "\f3cd";
    font-size: 28px;
    top: 20px;
}
#contact-form .control-group:nth-child(6) .controls:after {
    content: "\f040";
    top: 20px;
}
*/
/*search style*/
li.result__item {
	display: inline-block;
	width: 100%;
	background: #f2f2f2;
	padding: 15px;
	margin-bottom: 30px;
	border: 2px solid #d6d6d6;
}
li.result__item .result__date:after {
	display: none;
}
li.result__item .result__date {
	display: inline-block;
	background: #0065b3;
	color: #fff;
	padding: 6px 20px;
	margin-top: 10px;
	font-size: 14px;
}
.blog .masonry-8 {
	width: 100%;
	float: none !important;
	display: flex;
}
/*
.blog .blog-item {
    padding: 15px;
    position: relative;
    background: #f2f6fa;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog .blog-items img {
    margin-bottom: 10px;
    padding: 0;
    height: auto;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #ddaa23;
    box-shadow: none !important;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
*/
.blog dl.article-info.text-muted {
	display: none;
}
.breadcrumbs {
	display: block;
	padding: 150px 0 100px;
	margin-bottom: 60px;
	text-align: left;
	border-bottom: 4px solid #0065b3;
	background: url(../images/banner.jpg) center bottom no-repeat fixed;
    background-size: cover;
}
.breadcrumbs .grid-child {
	display: block;
	width: 100%;
	text-align: center !important;
}
.breadcrumbs .grid-child ol {
	display: block;
}
.breadcrumbs .grid-child ol li {
	display: inline-block;
}
.breadcrumbs .grid-child ol li span.divider.icon-location.icon-fw {
    display: none;
}
.com-content-category-blog__child {
	display: block;
	background: #f2f2f2;
	padding: 20px;
	border-left: 4px solid #0065b3;
	font-size: 16px;
	margin: 20px 0;
}
.com-content-category-blog__child a {
	font-size: 18px;
}
nav.pagenavigation {
	border-top: 1px solid #e6e6e6;
	padding: 20px 0;
	margin-top: 50px;
}
nav.pagenavigation .btn-secondary {
	background: none;
	border: none !important;
	padding: 0;
	font-weight: bold;
	color: #000;
	box-shadow: none !important;
}
nav.pagenavigation .btn-secondary span.icon-chevron-left, nav.pagenavigation .btn-secondary span.icon-chevron-right {
	background-color: #0065b3;
	border-color: #ced4da;
	color: #fff;
	padding: 19px 0;
	margin-right: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
nav.pagenavigation .btn-secondary span.icon-chevron-right {
	margin: 0 0 0 10px;
}
nav.pagenavigation .btn-secondary:hover span.icon-chevron-left {
	margin-right: 20px;
}
nav.pagenavigation .btn-secondary:hover span.icon-chevron-right {
	margin: 0 0 0 20px;
}
.div-style-left {
	width: 40%;
	float: left;
}
.div-style-right {
	width: 60%;
	float: right;
	line-height: 34px;
	font-size: 18px;
}
.org-chart {
	display: block !important;
	clear: both;
	margin-bottom: 30px;
	position: relative;/**
  * For IE 6/7 only
  * Include this rule to trigger hasLayout and contain floats.
  */
  /* Box colors */
  /* 1 column */
  /* 2 column */
  /* 3 column */
  /* DEPARTMENTS COLUMNs */
}
.org-chart.cf:before, .org-chart.cf:after {
	content: " ";
	/* 1 */
	display: table;/* 2 */
}
.org-chart.cf:after {
	clear: both;
}
.org-chart.cf {
 *zoom: 1;
}
.org-chart ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.org-chart ul li {
	position: relative;
}
.org-chart ul li span {
	display: block;
	border: 3px solid #0065b3;
	text-align: center;
	overflow: hidden;
	text-decoration: none;
	color: black;
	height: 72px;
	font-size: 12px;
	box-shadow: 4px 4px 9px -4px rgba(0, 0, 0, 0.4);
	-webkit-transition: all linear 0.1s;
	-moz-transition: all linear 0.1s;
	transition: all linear 0.1s;
	background: #fff;
	padding: 4px;
	font-weight: bold;
}
.org-chart .columnOne li span {
	font-size: 18px;
}
.org-chart .lvl-b {
	background: #fff;
	color: #000;
}
.org-chart .board {
	width: 70%;
	margin: 0 auto;
	display: block;
	position: relative;
}
.org-chart .board:before {
	content: "";
	display: block;
	position: absolute;
	height: 76px;
	width: 0px;
	border-left: 2px solid #0065b3;
	margin-left: 50%;
	top: 15px;
}
.org-chart ul.columnOne {
	height: 90px;
	position: relative;
	width: 100%;
	display: block;
	clear: both;
}
.org-chart ul.columnOne li {
	width: 30%;
	margin: 0px auto;
	top: 0px;
	line-height: 63px;
}
.org-chart ul.columnTwo {
	position: relative;
	width: 100%;
	display: block;
	height: 90px;
	clear: both;
}
.org-chart ul.columnTwo li:first-child {
	width: 30%;
	float: left;
}
.org-chart ul.columnTwo li {
	width: 30%;
	float: right;
}
.org-chart ul.columnTwo:before {
	content: "";
	display: block;
	position: relative;
	width: 80%;
	height: 10px;
	border-top: 2px solid #0065b3;
	margin: 0 auto;
	top: 40px;
}
.org-chart ul.columnThree {
	position: relative;
	width: 100%;
	display: block;
	clear: both;
}
.org-chart ul.columnThree li:first-child {
	width: 30%;
	float: left;
	margin-left: 0;
}
.org-chart ul.columnThree li {
	width: 30%;
	margin-left: 5%;
	float: left;
}
.org-chart ul.columnThree li:last-child {
	width: 30%;
	float: right;
	margin-left: 0;
}
.org-chart ul.columnThree:before {
	content: "";
	display: block;
	position: relative;
	width: 80%;
	height: 10px;
	border-top: 2px solid #0065b3;
	margin: 0 auto;
	top: 40px;
}
.org-chart .departments {
	width: 100%;
	display: block;
	clear: both;
}
.org-chart .departments:before {
	content: "";
	display: block;
	width: 91%;
	height: 22px;
	border-top: 2px solid #0065b3;
	border-left: 2px solid #0065b3;
	border-right: 2px solid #0065b3;
	margin: 0 auto;
	top: 0px;
}
.org-chart .department {
	border-left: 2px solid #0065b3;
	width: 8.090%;
	float: left;
	margin: 0px 0.5%;
	vertical-align: middle;
}
.org-chart .department:after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 22px;
	border-left: 2px solid #0065b3;
	left: 50%;
	top: -22px;
}
.org-chart .department:first-child:after {
	display: none;
}
.org-chart .department:last-child:after {
	display: none;
}
.org-chart .department.central {
	background: #ccc;
}
.org-chart .department.central:after {
	display: none;
}
.org-chart .department span {
	border-left: 1px solid #0065b3;
}
.org-chart .department li {
	padding-left: 25px;
	border-bottom: 2px solid #0065b3;
	height: 80px;
}
.org-chart .department li span {
	background: #fff;
	top: 38px;
	position: absolute;
	z-index: 1;
	width: 95%;
	height: auto;
	vertical-align: middle;
	right: 0px;
	line-height: 14px;
	border: 3px solid #0065b3;
}
.org-chart .department .sections {
	margin-top: -20px;
}
.org-chart .department .sections .sections {
	margin-top: -20px;
}
/*--------- TO BE REMOVED FROM YOUR CSS --*/
/* this is just to display the behaviour of responsive on codepen */
.responsive-content {
	width: 767px;
	margin: 0px auto;
}
.responsive-content .org-chart .board {
	margin: 0px;
	width: 100%;
}
.responsive-content .org-chart .departments:before {
	border: none;
}
.responsive-content .org-chart .department {
	float: none;
	width: 100%;
	margin-left: 0;
	background: #F5EEC9;
	margin-bottom: 40px;
}
.responsive-content .org-chart .department:before {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	height: 60px;
	border-left: 2px solid orange;
	z-index: 1;
	top: -45px;
	left: 0%;
	margin-left: -2px;
}
.responsive-content .org-chart .department:after {
	display: none;
}
.responsive-content .org-chart .department:first-child:before {
	display: none;
}
.accordion-item {
	border: none;
	box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 8%);
	margin-bottom: 30px;
}
.accordion-button:not(.collapsed) {
	background-color: #0065b3;
	color: #fff;
}
.accordion-button {
	color: #0065b3;
}
.accordion-body li {
	line-height: 32px;
	font-size: 14px;
}
.accordion-body li strong {
	font-weight: 600;
	color: #0065b3;
}
.accordion-body li::marker {
 color: #0065b3;
}
.itemid-103 .site-grid.body-main_content, .itemid-220 .site-grid.body-main_content {
	display: block;
}
.itemid-103 #mod-custom131, .itemid-220 #mod-custom131 {
	background: url(../images/contact-map-bg.jpg) 0 0 repeat;
}
.itemid-103 #mod-custom131 p, .itemid-220 #mod-custom131 p {
	margin: 0;
	padding: 0;
	line-height: inherit;
}
.itemid-103 .main_content, .itemid-220 .main_content {
	padding: 30px 0 0;
}
.com-content-article__body .djslider-default {
	position: inherit !important;
	width: 100% !important;
	height: auto !important;
	display: inline-block;
}
.com-content-article__body .djslider-default .slider-container {
	position: inherit !important;
	overflow: inherit !important;
	left: auto !important;
	top: auto !important;
	height: 100%;
	width: 100%;
}
.com-content-article__body .djslider-default ul.djslider-in {
	position: inherit !important;
	width: 100% !important;
	left: auto !important;
	overflow: inherit !important;
	display: inline-block;
	column-count: 4;
}
.com-content-article__body .djslider-default ul.djslider-in > li {
	width: 100% !important;
	height: auto !important;
	float: none !important;
	padding-bottom: 20px !important;
}
.com-content-article__body .djslider-default ul.djslider-in > li img.dj-image {
	padding: 0;
border: 2px solid #0065b3 !important;
}
/* MEDIA QUERIES */
@media all and (max-width: 767px) {
.org-chart .board {
	margin: 0px;
	width: 100%;
}
.org-chart .departments:before {
	border: none;
}
.org-chart .department {
	float: none;
	width: 100%;
	margin-left: 0;
	background: #F5EEC9;
	margin-bottom: 40px;
}
.org-chart .department:before {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	height: 60px;
	border-left: 2px solid orange;
	z-index: 1;
	top: -45px;
	left: 0%;
	margin-left: -2px;
}
.org-chart .department:after {
	display: none;
}
.org-chart .department:first-child:before {
	display: none;
}
}
/*Responsive coding*/
@media (max-width:767px) {
.body-banner {
	margin-top: auto;
}
.top-info {
    height: inherit;
    text-align: center;
}
.top-info .grid-child {
    display: block;
}
.top-info #mod-custom115 {
    text-align: inherit;
    padding-right: 0;
}
.top-info ul {
	padding: 0 5px;
}
.top-info ul li {
    font-size: 12px;
    line-height: 20px;
}
.top-info em {
    font-size: 12px;
}
.container-header .navbar-toggler {
	border: 1px solid #0065b3;
	color: #0065b3;
	padding: 10px 15px;
}
.menu-search {
	padding: 0px 0;
}
.container-header .container-nav .container-search {
	position: absolute;
	top: 2px;
	right: 15px;
	margin: 0;
}
header #mod-custom116, .carousel-caption, .container-section-d, header #mod-custom167 {
	display: none !important;
}
.navbar-brand {
	margin: 0;
	width: 100%;
	text-align: center;
}
header nav {
	width: 100%;
}
.menu-search .container-nav ul li:hover>ul {
	position: relative;
	top: 0;
	float: none;
	min-width: 100%;
}
.container-header .container-nav nav {
	margin: 7px 15px;
}
.metismenu.mod-menu .metismenu-item {
	display: block;
}
.metismenu.mod-menu .metismenu-item>a {
	border: none;
	display: block;
	text-align: center;
	padding: 6px 0;
}
.menu-search .container-nav li a {
	text-align: center;
	padding: 10px 0px;
	margin-right: 0;
	border-top: 2px dotted #000;
}
.breadcrumbs {
	padding: 70px 0 40px;
}
.breadcrumbs .grid-child ol li {
	font-size: 12px;
}
.carousel-item {
	min-height: 200px !important;
}
.container-section-a, .container-section-b, .container-section-c, .container-section-d, .container-section-e {
	padding: 50px 0;
}
.container-section-a {
	padding: 30px 0 0;
}
.container-section-a h6, .container-section-b h6, .container-section-c h6 {
	font-size: 20px;
}
.container-section-a h5, .container-section-b h5, .container-section-c h5 {
	font-size: 28px;
}
.container-section-a .message_left, .container-section-a .message_right {
	width: 100%;
	padding: 0 15px;
}
.container-section-a span {
	bottom: 80px;
	right: 28px;
	font-size: 14px;
}
.container-section-a span strong.counter {
	font-size: 50px;
}
.main_content .com-content-article .page-header, .com-contact h1 {
	width: 100%;
	top: -140px;
	left: 0;
}
.itemid-103 .com-contact h1, .itemid-220 .com-contact h1 {
	top: -190px;
}
.main_content .com-content-article .page-header h1, .com-contact h1 {
	font-size: 18px;
}
.mod-breadcrumbs__wrapper {
	top: -230px;
}
.breadcrumb {
	padding: 0 !important;
}
.metismenu.mod-menu .metismenu-item>button {
	left: 22%;
	top: -18px;
}
.metismenu.mod-menu .metismenu-item>ul {
	position: relative;
}
img.side {
	width: 100%;
	float: none;
	margin: 0 0 15px 0;
}
.main_content {
	padding: 30px 0 20px;
}
.container-section-e h2 {
	font-size: 20px;
	line-height: 38px;
}
.footer, [dir=rtl] .footer {
	padding: 20px 0 0;
}
.copyright {
	margin-top: 20px;
}
.container-section-d .djslider-default .slider-container {
    position: inherit;
}
.menu-search .container-nav li a:after {
	display: none;
}
p.space {
    height: 0;
}
.video-style {
    width: 100%;
    float: none;
    margin: 0 0 15px 0;
}
}
