


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
  --bg-white: #fff;
  --cl-dark: #303030
}




body,html{
	margin:0px;
	padding:0px;
	width:100%;
	min-height:100%;
	height:100%;
	background:var(--bg-white);
	font-weight:400;
	color: #303030;
   scroll-behavior: smooth;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}


ul,li ,ol{
  list-style:none;
  padding:0;
  margin:0;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.overFlowXHidden{
 overflow-x:hidden;
}


/*****************
LOADING PAGE
***********************/
.noscroll {
  position: fixed;
  overflow: hidden;
}

#overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #FFF;
}

#spinner {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 999999999999999999;
  background-color: #336699;
  background-color: #fff;
  background-color: #fff;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 11.2s infinite ease-in-out;
  opacity:1
}

@-webkit-keyframes sk-rotateplane {
  0% { opacity:0 }
  100% {  opacity:1 }
}

@keyframes sk-rotateplane {
  0% { opacity:0 }
  100% {  opacity:1 }
}


/*********
FONTS 
**************/
h1,h2,h3,h4,h5,h6,div,span,article,p,a,ul,li,nav,button,#cssmenu ul li a{
	padding:0px;
	margin:0px;
	text-decoration:none;
	color: #303030;
	font-family: 'Open Sans', sans-serif;
	font-family: 'Ubuntu', sans-serif;
	font-family: 'Roboto', sans-serif;
	font-size:100%;
}

a{
  color:var(--cl-dark);
  transition:color ease 0.3s
}	

a:hover{
  color:#3679BE;
  transition:color ease 0.3s
}	

h1 {
    font-size: 220%;
    line-height: 32px;
}

h2{
	font-size:18px;
	font-size: 200%;
	line-height:26px;
	line-height:130%;
}


h2 a:hover{
	color:#3679BE;
}
	
h3,
h3 a{
	font-size:18px;
	line-height:150%;
	line-height:26px;
}

p{
  font-size:16px;
  line-height:170%;
}





.title-link{
	color:#303030;
	line-height:150%;
	font-size: 100%;
}

.title-link:hover{
	color:#3679BE;
}


.introtext p a{
	color: #3679BE;
}

.introtext p a:hover{
	text-decoration:underline
}

.category-title-link {
    padding: 4px 10px;
    text-align: center;
    font-size: 12px;
    display: table;
    font-weight: normal;
}

.category-title-link.anakinosis{
    background: #5F7ECC;
	color:#fff;
}

.category-title-link.deltio-tipou{
    background: #003E7D;
	color:#fff;
}


.category-title-link:hover{
    background: #000;
	color:#fff;
}

.date{
	font-size:14px;
	color:#656565;
	font-weight:normal
}

.page-title{
	font-size:26px;
	color:#fff
}

.article .artice-title{
	font-size:20px;
	line-height:26px;
}

.footer-text li, 
.footer-text a, 
.footer-text h3{
	color:#E1E1E1;
}

.footer-text .menu-title{
	font-size:20px;
	border-bottom:1px solid #E1E1E1;
	padding-bottom:20px;
	margin-bottom:20px;
	display:table
}

.small-fonts-12{
	font-size:12px
}


/************************
TEXT COLORS
*************************/
.clr-1{
	color:#fff;
}


/************************
UL STYLES
*************************/
.ul-style-1 li{
	margin-bottom:10px
}

/************************
Main designs
*************************/
hr{
	padding:0;
	margin:0;
	border:0;
}

.hr{
	margin-top:15px;
	margin-bottom:15px;
	height:2px;
	width:100px;
	display:block;
}

.hr.line-blue{
	background:#3679BE
}

.hr.center{
	margin-left:auto;
	margin-right:auto;
}

.image-border{
	padding:10px;
	border:1px solid #CFCFCF
}
 
/************************
Main components
*************************/
.wrp{
  max-width:1480px;
  width:90%;
  margin:auto;
  position:relative
}

.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background:var(--bg-white);
  z-index: 2;
  padding-top: 0px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-280px);
  -moz-transform: translateX(-280px);
  -ms-transform: translateX(-280px);
  -o-transform: translateX(-280px);
  transform: translateX(-280px);
}

.right-slidebar{
	min-width: 260px;
    height: 100%; 
}


@media screen and (max-width: 768px) {
	.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
	}
}




/*****
HEADER
*******/
header.header-v1{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	display:block;
	background:var(--bg-white);
	z-index:99999999;
	transition:top ease 0.2s;
	transition:all ease 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}


header.lateral-menu-is-open{
	
	transition:all ease 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}	

header.header-scroll.shrink{
	top:-40px;
	transition:all ease 0.4s;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


header.header-v1 .header-top-row {
	width:100%;
	height:40px;
	display:block;
}

header.header-v1 .header-menu-row {
	width:100%;
	height:60px;
	display:block;
}

header.header-v1 .logo-pos{
	position:absolute;
	left:0;
	width:224px;
	height:44px;
	display:block;
	top: 30px;
	top: 20px;
	transition:top ease 0.2s
}

header.header-v1 .logo-ctn img{
	width:224px;
	height:auto;
	transition:width ease 0.2s
}

header.header-scroll.shrink .logo-pos{
	top: 55px;
	top: 44px;
	transition:top ease 0.2s;
}

header.header-scroll.shrink .logo-ctn img{
	width: 164px;
	height: auto;
	transition:width ease 0.2s
}

header.header-v1 .secondary-menu-top-pos {
	position:absolute;
	right:0;
	top:16px;
	height:30px;
	display:flex;
}

header.header-v1 .secondary-menu-top-pos .col{
	margin-right:40px;
	position:relative
}

header.header-v1 .secondary-menu-top-pos .col:last-child{
	margin-right:0px;
}


header.header-v1 .secondary-menu-fonts a{
	font-size:12px;
	font-weight:bold
}

header.header-v1 .secondary-menu-links a{
	color:#303030;
	color:#747474
}

header.header-v1 .secondary-menu-links a:hover{
	color:#3679BE
}



.commisioner-logo{
	display: block;
   
}
 
.commisioner-logo.gr{
    background: url(../background/svg/commisioner-black-logo-gr.svg) center no-repeat;
	background-size: auto 60px;
	width: 324px;
    height: 60px;
	transition:width ease 0.2s
 }
 
.commisioner-logo.en{
   background: url(../background/svg/commisioner-black-logo-en.svg) center no-repeat;
    background-size: auto 60px;
    width: 404px;
    height: 60px;

}


header.header-scroll.shrink .commisioner-logo.gr{
    background-size: auto 45px;
    width: 254px;
    height: 50px;
	transition:width ease 0.2s
 }
 
header.header-scroll.shrink .commisioner-logo.en {
    background-size: auto 50px;
    width: 332px;
    height: 50px;
}
 
 
 
 
.secondary-menu-icons .icon-phone{
	width:12px;
	height:12px;
	display:block;
	background:url(../background/temp-img/icons/icon-phone.png) no-repeat;
	position: absolute;
	left: -17px;
    top: 3px;
}

.secondary-menu-icons .icon-email{
	width:16px;
	height:12px;
	display:block;
	background:url(../background/temp-img/icons/icon-email.png) no-repeat;
	position: absolute;
	left: -24px;
    top: 3px;
}

.secondary-menu-icons .icon-language{
	width:12px;
	height:12px;
	display:block;
	background:url(../background/temp-img/icons/icon-language.png) no-repeat;
	position: absolute;
	left: -17px;
    top: 3px;
}

.secondary-menu-icons .icon-search{
	width:12px;
	height:12px;
	display:block;
	background:url(../background/temp-img/icons/icon-search.png) no-repeat;
	position: absolute;
	left: -17px;
    top: 3px;
}

@media screen and (max-width: 1279px) {
	header.header-v1 .secondary-menu-top-pos{
		display:none;
	}
	
	header.header-v1 .secondary-menu-top-pos {
		display:none;
	}
	
	header.header-v1{
	top:-40px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	}
	
	header.header-scroll .logo-ctn img {
    width: 164px;
    height: auto;
	}
	
	header.header-scroll .logo-pos {
    top: 55px;
    top: 50px;
	}
	
	.language-mobile{
	display: block;
    width: 30px;
    height: 28px;
    position: absolute;
    right: 70px;
    top: 54px;
    left: auto;
	}
	
	.language-mobile  a{
    width: 100%;
    height: 28px;
    display: block;
    text-align: center;
    line-height: 28px;
    color: #fff;
    background: #3679be;
	}
	
	.language-mobile .icon-language{
		width:12px;
		height:12px;
		display:block;
		background:url(../background/temp-img/icons/icon-language.png) no-repeat;
		position: absolute;
		left: -17px;
		top: 5px;
	}
	
	.search-top-mobile{
		display: block;
		width: 34px;
		height: 34px;
		position: absolute;
		right: 110px;
		top: 54px;
		left: auto;
	}
	
	.mobile-menu-icons .icon-search-mobile{
	width:34px;
	height:34px;
	display:block;
	background:url(../background/temp-img/icons/mobile-search-icon.png) no-repeat;
	background-size: 28px auto;
	}
	
	
	.commisioner-logo.gr,
	header.header-scroll.shrink .commisioner-logo.gr	{
		background-size: auto 40px;
		width: 214px;
		height: 40px;
	}

	.commisioner-logo.en,
	header.header-scroll.shrink .commisioner-logo.en {
		background-size: auto 38px;
		width: 254px;
		height: 38px;
	}
	
	

}


@media screen and (max-width: 680px) {

	.commisioner-logo.en {
		background-size: auto 28px;
		width: 194px;
		height: 38px;
	}
	
	.commisioner-logo.gr {
		background-size: auto 22px;
        width: 122px;
        height: 40px;
	}
	
	header.header-scroll.shrink .logo-pos {
    top: 55px;
    top: 50px;
    transition: top ease 0.2s;
}

	.commisioner-logo.gr,
	header.header-scroll.shrink .commisioner-logo.gr	{
			background-size: auto 22px;
        width: 122px;
        height: 40px;
	}

	.commisioner-logo.en,
	header.header-scroll.shrink .commisioner-logo.en {
		background-size: auto 20px;
        width: 140px;
        height: 38px;
	}
}



@media screen and (max-width: 480px) {
	header.header-scroll .logo-ctn img {
    width: 144px;
    height: auto;
	}
}


.contact-footer-icons .icon-phone{
    width: 18px;
    height: 20px;
	display:block;
	background:url(../background/temp-img/icons/icon-phone-white.png) no-repeat;
	margin-right: 10px;
    float: left;
    background-size: auto;
}

.contact-footer-icons .icon-email{
    width: 18px;
    height: 20px;
	display:block;
	background:url(../background/temp-img/icons/icon-email-white.png) no-repeat;
	margin-right: 10px;
    float: left;
    background-size: auto;
    position: relative;
    top: 5px;
}

/*******
FOOTER
**********/
footer{
	margin-top:100px;
	background:#0d0d0d;
	padding:80px 0 0 0;
}

footer .footer_bottom{
	padding:5px 0;
	background:#343434;
	margin-top:60px;
}




footer.footer-top-border{
	border-top:20px solid #E1E1E1
}

/*******
SLIDER
**********/
.slider{
	width:100%;
	position:relative;
}

@media screen and (max-width: 1280px) {
	.slider{
	margin-top:0
	}
}

/*******
ABOUTS HOME PAGE
**********/
 .image-full-width img{
	width:100%;
	object-fit: cover;
}


/*******
MAIN NEWS CTN
**********/
.main-news-ctn{
	padding:20px;
	background:#FAFAFA;
	border:1px solid #EEEEEE
}

/*******
ROW NEWS
**********/
.row-news{
	margin-bottom:30px;
	padding-bottom:30px;
	border-bottom:1px solid #EBEBEB
}

.row-news:last-child{
	margin-bottom:0px;
	padding-bottom:0px;
	border-bottom:0px solid #EBEBEB
}

/*********
INSIDE INTRO
*************/
.inside-intro{
	background:#003E7D;
	padding:50px 0;
	display:block;
	width:100%;
	margin-top:100px
}

@media screen and (max-width: 1280px) {
	.inside-intro{
		margin-top:50px
	}	
	
}



/*********
BREADCRUMBS
*************/
.breadcrumb {
	display:table;
}

.breadcrumb li{
	margin-right:10px;
	float:left;
}

.breadcrumb .divider {
    margin-left: 5px;
}

.breadcrumb span,
.breadcrumb span a{
	color:#2881dc;
	font-size:14px;
}

.breadcrumb  a span:hover{
	text-decoration:underline
}

/*******
BLOG PAGE ARTICLES
************/
.blog .row-articles-sep{
	margin-bottom:50px;
	border-bottom:1px solid #d8d8d8;
	background:#fff;
	padding-bottom:50px;
}

.blog-row-articles .image-introtext{
	 display: table;
}


.blog-row-articles .image-introtext .image{
    margin-right: 20px;
    width: 200px;
    float: left;
    display: table;
}

.blog-row-articles .image-introtext .image img{
	width:100%;
}


@media screen and (max-width: 680px) {
	.blog .row-articles-sep{
 		padding: 0 0 20px 0;
 		border-top:0px solid #d8d8d8;
		border-left:0px solid #d8d8d8;
		border-right:0px solid #d8d8d8;
		border-bottom:1px solid #d8d8d8;
		background:#fff;
		box-shadow: rgba(0, 0, 0, 0.0) 0px 1px 3px 0px, rgba(0, 0, 0, 0.0) 0px 1px 2px 0px;
	}
	
	.blog .row-articles-sep:last-child{
		border-bottom:0px solid #d8d8d8;
	}
	
	
	.blog-row-articles .image-introtext{
		display:table
	}
	
	.blog-row-articles .image-introtext .image {
		margin-right: 0;
		width: 100%;
		float: left;
		display: table;
		margin-bottom: 20px;
	}


}	
	
 
/*******
TAGS
************/
ul.tags {
	display:flex;
	margin-top:20px;
	flex-direction: row;
	flex-wrap:wrap;
	width: 100%;
}

ul.tags li{
	margin-right:10px;
	margin-bottom:20px;
}

ul.tags li a{
    background: #3679be;
    padding: 6px 9px;
    font-size: 12px;
    border-radius: 0 7px;
    box-shadow: rgb(0 0 0 / 10%) 1.95px 1.95px 2.6px;
    font-weight: bold;
    color: #fff;
}

ul.tags-footer {
	display:table;
}

ul.tags-footer  li{
	margin-right:10px;
	margin-bottom: 20px;
	float:left;
}

ul.tags-footer  li a{
    background: #3679be;
    padding: 6px 9px;
    font-size: 14px;
    border-radius: 0 7px;
    box-shadow: rgb(0 0 0 / 10%) 1.95px 1.95px 2.6px;
    color: #fff;
}

ul.tags-footer  li a:hover{
	background:#55A0ED;
}


/*******************
PAGES PAGINATION
*********************/
.pagination .counter{
  margin-bottom:20px;
  border-bottom:1px solid #d8d8d8;
  width:100%;
  display:Table;
  font-size: 12px;
}

.pagination .pagenav {
    display: unset;
}

.pagination .pagination-list li{
  float:left;
  margin-right:10px;
}

.pagination .pagination-list li:last-child{
  margin-right:0px;
}

.pagination .pagination-list li a{
background: #f1f1f1;
    border: 1px solid #d8d8d8;
    padding: 5px 10px;
}

.pagination .pagination-list li.active  a{
  background: #f1f1f1;
  border: 1px solid #d8d8d8;
  padding: 5px 10px;
}

.pagination .pagination-list li.active  a,
.pagination .pagination-list li a:hover{
  background: #003E7D;
  color:#fff;
}

.pagination .pagination-list li.disabled{
  display:none
}




/*******************
RIGHT-SIDE-ROW-NEWS
*********************/
.right-side-elements{
	margin-bottom: 30px;
    padding: 20px;
    background: #FAFAFA;
    border: 1px solid #d6d6d6;
    box-shadow: 0px 7px 5px rgb(0 0 0 / 8%);
}
.right-side-row-news{
	margin-bottom:20px;
	display:table;
	width:100%;
	padding-bottom:20px;
	border-bottom:1px solid #d8d8d8
}

.right-side-row-news:last-child{
	margin-bottom:0px;
	padding-bottom:0px;
	border-bottom:0px solid #d8d8d8
}

.right-side-elements .image{
	max-width: 120px;
    float: left;
    display: table;
    margin-right: 10px;
}

.right-side-elements .image img{
	width:100%;
	object-fit:cover
}



@media screen and (min-width: 769px) and (max-width: 1280px){
	.right-side-elements .image{
	max-width: 100%;
	width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
	}
}

@media screen and (max-width: 480px){
	.right-side-elements .image{
	max-width: 100%;
	width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
	}
}


/**********
BACK TO TOP BUTTON
***********/
#back-to-top-button {
  display: block;
  position: fixed;
  bottom: 50px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 9999999;
  	background:url(../background/temp-img/icons/back-to-top-button.png) no-repeat;
	width: 40px;
	height: 40px;
	background-size:40px 40px;
}

#back-to-top-button.show {
  opacity: 1;
  visibility: visible;
}


/**********
SOCIAL FOOTER
****************/
.social-ctn li{
	margin-right:10px;
}
.social-ctn li:last-child{
	margin-right:0px;
}


.social-icon-footer {
	display:block;
	width:34px;
	height:34px;
}


.social-icon-footer.icon-facebook{
	background:url(../background/svg/facebook.svg) no-repeat;
	background-size:34px auto;
	position: relative;
    top: 6px;
}


.social-icon-footer.icon-twitter{
	background:url(../background/svg/twitter.svg) no-repeat;
	background-size:34px auto;
	position: relative;
    top: 6px;
}


.social-icon-footer.icon-linkedin{
	background:url(../background/svg/linkedin.svg) no-repeat;
	background-size:34px auto;
	position: relative;
    top: 6px;
}

.social-icon-footer.icon-rss{
	background:url(../background/svg/rss.svg) no-repeat;
	background-size:34px auto;
	position: relative;
    top: 6px;
}


/**
MODAL SEARCH
 */
 /**********************
MODAL SEARCH
**************************/
.modal-search {
    position: fixed;
    z-index: 999999999999; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal-toggle{
	cursor:pointer;
}

.modal-search.is-visible {
    visibility: visible;
}

.modal-search .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal-search.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-search .modal-wrapper {
position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    width: 90%;
    max-width: 400px;
    z-index: 9999999999;
    background: #fff;
    box-shadow: rgb(0 0 0 / 45%) 0px 5px 15px;
    border-radius: 10px;
    -webkit-animation: popupAlertMoveToTop 1s;
    -moz-animation: popupAlertMoveToTop 1s;
    -o-animation: popupAlertMoveToTop 1s;
    animation: popupAlertMoveToTop 1s;
    display: table;
    padding: 40px 15px 30px 15px;
    height:150px;
}

.modal-search .modal-transition {
  transition: all 0.3s 0.4s;
  transform: translateY(-15%);
  opacity: 0;
}

.modal-search.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s 0.12s;
}

.modal-search .modal-header,
.modal-search .modal-content {
  padding: 1em;
}

.modal-search .modal-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;
}

.modal-search .modal-close {
	position: absolute;
    top: 13px;
    right: 10px;
    padding: 0px;
    color: #aaa;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    line-height: 22px;
}

.modal-search .modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-search .modal-content > *:first-child {
  margin-top: 0;
}

.modal-search .modal-content > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .modal-search .modal-wrapper {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 90%;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 35%);
    margin: auto;
  }
}

.finder input {
    border: 1px solid #d8d8d8;
    padding: 5px 10px;
    height: 42px;
    border-radius: 0;
    width: 100%;
}



/****************************
SEARCH PAGES RESULTS
******************************/
.search-pages-reults .input-word {
    border: 1px solid #D1D1D1;
    background: #f9f9f9;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
}

.search-pages-reults .input-word  .inputCol{
  max-width:660px;
  width:100%;
  margin-right:20px
}

.search-pages-reults .result-title a{
  font-weight:bold;
}

.search-pages-reults .search-results li{
  margin-bottom:20px;
  padding-bottom:20px;
  border-bottom:1px solid #d8d8d8
}
 
.search-pages-reults .search-results li:last-child{
  border-bottom:0px solid #d8d8d8
}
 
 
@media screen and (min-width: 1px) and (max-width: 1024px) {
  .search-pages-reults .input-word {
      display: table;
  }

.search-pages-reults .input-word .inputCol {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  
}

.search-pages-reults input,
.search-pages-reults input#q {
    width: 100%;
	padding: 10px;
}


#search-query-explained {
    padding: 10px;
    border: 1px solid #f8f8f8;
    margin-bottom: 20px;
    font-size: 13px;
    background: #003e7d;
    color: #fff;
}

#search-query-explained p{
	color:#fff;
}

#search-query-explained span.query-required,
#search-query-explained span.term {
    font-weight: bold;
	color:#fff;
}

#search-query-explained a {
    color: #fff;
    font-weight: bold;
}


/****************
AGENDA 
**********************/
.ic-list-event{
background: none;
    border-radius: 0;
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #d8d8d8;
	}
	
.ic-list-event .ic-box{
	display:flex;
}

.ic-list-event .ic-box .ic-box-date{
display: block;
    text-transform: capitalize;
    min-width: 110px;
    /* height: 60px; */
    /* padding: 10px; */
    color: #fff;
    margin: 8px 28px 2px 8px;
    border-radius: 6px;
    box-sizing: content-box !important;
}


.ic-list-event .ic-date{
	line-height: 0px !important;
    font-size: 30px;
    background: #003e7d;
    padding: 10px;
    width: 100%;
    display: table;
    border-radius: 10px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}


.ic-list-event .ic-day {
    line-height: 30px !important;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.ic-list-event .ic-month {
    line-height: 16px !important;
    font-size: 10px;
    letter-spacing: 0px;
    margin-bottom: 5px;
    font-weight: normal;
    color: #fff;
	text-align: center;
}

.ic-list-event .ic-year {
    line-height: 11px !important;
    font-size: 11px;
    letter-spacing: 2px;
    margin-left: 2px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.ic-list-event .ic-time {
    line-height: 10px !important;
    font-size: 10px;
    letter-spacing: 2px;
    margin-left: 2px;
    font-weight: bold;
    text-align: center;
}

.ic-list-event .ic-place{
	margin: 10px 0;
    font-size: 12px;
}

.ic-event .ic-event-header h1{
	    font-size: 20px;
    line-height: 26px;
}

.ic-event .ic-details {
	background:#fafafa;
	padding:20px;
	margin:10px 0;
}

.articleBody p img {
	width:100%;
}

.articleBody p  {
	margin-bottom:20px
}



/****************
REQUEST-FORM 
**********************/
.request-form {
  max-width:400px;
  width:90%;
  display:block;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding:20px;
}

.request-form .title{
  display: table;
  font-weight: 700;
  text-align: center;
  width: 100%;
  font-size: 18px;
  margin-bottom:10px;
}

.request-form .text{
  display:table;
  font-weight: 400;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height:22px
}


/****************
REQUEST-CONTACT-FORM 
**********************/
.request-contact-form .col{
  margin-bottom:15px;
}

.request-contact-form .col:last-child{
  margin-bottom:00px;
}

.request-contact-form input{
  width:100%;
}

.form-layout-design-1 input{
  height: 40px;
  background: #F8F8F8;
  border: 1px solid #EDEDED;
  box-sizing: border-box;
  border-radius: 8px;
  padding:0 10px;
}

.sendEmailAnimate{
  transition:ease all .3s;
  opacity:0
}



/********************
CHECKBOX DESIGNS
*******************/
.checkbox {
  display: inline-block;
}

.checkbox.checkbox-margin-bottom .col{
  margin-bottom:20px;
}
.checkbox label {
  cursor: pointer;
  padding-left: 0;
  display:flex;
}

.checkbox .text{
  margin-left: 10px;
  position: relative;
  top: 0px;
  font-size: 12px;
  line-height:24px;
}


.checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  left: 0;
  pointer-events: none;
}

.checkbox .checkbox-material {
  vertical-align: middle;
  position: relative;
  top: 3px;
}
.checkbox .checkbox-material:before {
  position: absolute;
  left: 8px;
  top: 8px;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  height: 4px;
  width: 4px;
  border-radius: 100%;
  z-index: 1;
  opacity: 0;
  margin: 0;
}

.checkbox .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
}

.checkbox .checkbox-material .check:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  display: block;
  margin-top: -4px;
  margin-left: 6px;
  width: 0;
  height: 0;
  box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
  -webkit-animation: checkbox-off 0.3s forwards ease-out;
          animation: checkbox-off 0.3s forwards ease-out;
}
.checkbox input[type=checkbox]:focus + .checkbox-material .check:after {
  opacity: 0.2;
}
.checkbox input[type=checkbox]:checked + .checkbox-material .check:before {
  box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  -webkit-animation: checkbox-on 0.3s forwards ease-out;
          animation: checkbox-on 0.3s forwards ease-out;
}
.checkbox input[type=checkbox]:not(:checked) + .checkbox-material:before {
  -webkit-animation: rippleOff 700ms forwards ease-out;
          animation: rippleOff 700ms forwards ease-out;
}
.checkbox input[type=checkbox]:checked + .checkbox-material:before {
  -webkit-animation: rippleOn 700ms forwards ease-out;
          animation: rippleOn 700ms forwards ease-out;
}
.checkbox input[type=checkbox]:not(:checked) + .checkbox-material .check:after {
  -webkit-animation: rippleOff 700ms forwards ease-out;
          animation: rippleOff 700ms forwards ease-out;
}
.checkbox input[type=checkbox]:checked + .checkbox-material .check:after {
  -webkit-animation: rippleOn 700ms forwards ease-out;
          animation: rippleOn 700ms forwards ease-out;
}
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .checkbox-material .check:before,
.checkbox input[type=checkbox][disabled] + .circle {
  opacity: 0.5;
}
.checkbox input[type=checkbox][disabled] + .checkbox-material .check:after {
  background-color: rgba(0, 0, 0, 0.84);
  transform: rotate(-45deg);
}

@-webkit-keyframes checkbox-on {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
  }
  50% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
  }
  100% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  }
}
@keyframes checkbox-on {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
  }
  50% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
  }
  100% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  }
}
@-webkit-keyframes checkbox-off {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
  }
  25% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
  }
  50% {
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 6px;
    width: 0px;
    height: 0px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
  }
  51% {
    transform: rotate(0deg);
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 10px inset;
  }
  100% {
    transform: rotate(0deg);
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 0px inset;
  }
}
@keyframes checkbox-off {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
  }
  25% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
  }
  50% {
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 6px;
    width: 0px;
    height: 0px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
  }
  51% {
    transform: rotate(0deg);
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 10px inset;
  }
  100% {
    transform: rotate(0deg);
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 0px inset;
  }
}
@-webkit-keyframes rippleOn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}
@keyframes rippleOn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}
@-webkit-keyframes rippleOff {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}
@keyframes rippleOff {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}

.checkbox.checkbox-material-color-black .checkbox-material  .check{
  background:#ffffff;
  border-color:#000;
}

.checkbox.checkbox-material-color-black .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
  color:#000;
}

.checkbox.checkbox-material-color-green .checkbox-material  .check{
  background:white;
  border-color:green;
}

.checkbox.checkbox-material-color-green .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
  color:green;
  opacity:1
}


.checkbox.checkbox-material-color-black .checkbox-material  .check{
  background:white;
  border-color:black;
}

.checkbox.checkbox-material-color-black .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
  color:black;
  opacity:1
}









/*********************
CONTACT FORM PAGE
**********************/
#contactus .contact-form h2 {
    font-weight: 400;
    margin-bottom: 20px;
    width: 100%;
   float: left;
}

.input-forms-style-1 h5{
  font-size:14px;
  margin-bottom:10px;
}

.input-forms-style-1.two-columns .col:nth-child(2n+2) {
 margin-right:0;
}


.input-forms-style-1 .pos-relative{
  position:relative;
}

.input-forms-style-1.vertical .col{
margin-bottom:10px;
} 


.input-forms-style-1 input{
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #d8d8d8;
  font-size: 16px;
  border-radius: 16px;
  border-radius: 0;
  background: #fbfbfb;
  background: #fff;
  outline: none !important;
  position:relative;
}

.input-forms-style-1.style-2 input{
  border-radius:0px;
}

.input-forms-style-1 input:focus{
  background:#FBFBFB;
}

.input-forms-style-1 .row{
  display:table;
  width:100%;
  margin-bottom: 40px;
}

.input-forms-style-1 .form_field-title {
    font-size: 16px;
    margin-bottom:5px;
    display:table;
    font-weight: bold;
}

.input-forms-style-1 .form_field-empty_box {
    display:block;
    height:23px;
}

@media screen and (max-width: 768px) {
  .input-forms-style-1 .form_field-empty_box {
    height:0;
  }
}

.input-forms-style-1 input:selected{
  border:4px solid #ff0000;
}

.input-forms-style-1 input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F
}
.input-forms-style-1 input::-moz-placeholder { /* Firefox 19+ */
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F
}
.input-forms-style-1 input:-ms-input-placeholder { /* IE 10+ */
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F
}
.input-forms-style-1 input:-moz-placeholder { /* Firefox 18- */
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F
}

.input-forms-style-1 input:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  position:absolute;
  top:-20px;
  left:0;
  z-index:3;
}
.input-forms-style-1 input:focus::-moz-placeholder { /* Firefox 19+ */
  position:absolute;
  top:-20px;
  left:0;
  z-index:3;
}
.input-forms-style-1 input:focus:-ms-input-placeholder { /* IE 10+ */
  position:absolute;
  top:-20px;
  left:0;
  z-index:3;
}
.input-forms-style-1 input:focus:-moz-placeholder { /* Firefox 18- */
  position:absolute;
  top:-20px;
  left:0;
  z-index:3;
}


.input-forms-style-1 textarea{
  max-width:100%;
  min-width:100%;
  width:100%;
  height:120px;
  padding:12px 10px;
  border:1px solid #d8d8d8;
  resize: horizontal;
  font-size: 16px;
   border-radius: 16px;
   border-radius: 0px;
   background: #fbfbfb;
   outline:none;
  -moz-appearance:none;
  outline:0px none transparent;
}


.input-forms-style-1 textarea::-webkit-input-placeholder {
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F;
}

.input-forms-style-1 textarea::-webkit-input-placeholder {
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F;
}

.input-forms-style-1 textarea:-moz-placeholder { /* Firefox 18- */
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F;
}

.input-forms-style-1 textarea::-moz-placeholder {  /* Firefox 19+ */
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F;
}

.input-forms-style-1 textarea:-ms-input-placeholder {
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F;
}

.input-forms-style-1 textarea::placeholder {
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
  color:#9F9F9F;
}


.input-forms-style-1 textarea:focus::-webkit-input-placeholder {
  font-size:0px;
}

.input-forms-style-1 textare:focusa::-webkit-input-placeholder {
  font-size:0px;
}

.input-forms-style-1 textarea:focus:-moz-placeholder { /* Firefox 18- */
  font-size:0px;
}

.input-forms-style-1 textarea:focus::-moz-placeholder {  /* Firefox 19+ */
  font-size:0px;
}

.input-forms-style-1 textarea:focus:-ms-input-placeholder {
  font-size:0px;
}

.input-forms-style-1 textarea:focus::placeholder {
  font-size:0px;
}

.email_warning_alert{
  position:absolute;
}

.input-forms-style-1 .error_email{
  font-size: 10px;
  line-height: 10px;
  font-weight: bold;
  color: #fff;
  background: #c41d1c;
  padding: 5px 15px;
  width: 100%;
  display: table;
  position: relative;
  top: 2px;
}


/*****
EMAIL WARNING ALERT
*******/
.email_warning_alert{
  font-size: 10px;
  position: absolute;
  bottom: -18px;
  font-weight: bold;
}

#emailSuccessConfirm.email_warning_alert{
  color:green;
  display:none!important;
}

#emailAlertConfirm.email_warning_alert{
  color:red
}


.contact-page-details{
background: #fdfdfd;
    padding: 20px;
    border: 1px solid #d8d8d8;
}

.contact-page-details.text-pos .text-align{
	text-align:center;
}

.contact-page-details.text-pos h3{
	margin-bottom:10px
}

 
/*****
EMAILS ALERT
*******/
#emails-alert.alert-overlay {
    width: 100%;
    min-height: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9;
}

#emails-alert.alert-overlay.display_none{
  display:none;
}

#emails-alert .emails-alert {
  position: fixed;
  bottom: 0;
  z-index: 9999999999999;
  width: 100%;
  -webkit-animation: alert-in 0.5s;
  -moz-animation: alert-in 0.5s;
  -o-animation: alert-in 0.5s;
  animation: alert-in 0.5s;
  width: 100%;
  max-width: 400px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 400px;
  padding: 20px;
  border-radius: 0;
}

#emails-alert .emails-alert .top-row{
    display: block;
    width: 100%;
    padding: 20px 5% 10px 5%;
    border-radius: 0;
}

#emails-alert .emails-alert .top-row.success{
  background:#7b9e42;
}
 
#emails-alert .emails-alert .top-row.error{
  background:#e75e60;
}

#emails-alert .emails-alert .top-row .image-icon{
  width:66px;
  height:66px;
  margin:0 auto 25px auto;
}


#emails-alert .emails-alert .top-row .image-icon img{
  width:66px;
  height:66px;
  margin:auto;
}

#emails-alert .emails-alert .top-row h3{
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

#emails-alert .emails-alert .top-row h4{
  color:#fff;
  text-align:center;
  font-size:12px;
  line-height:20px
}

#emails-alert .emails-alert .top-row h4 a{
  color:#fff;
  font-weight:700
}

#emails-alert .emails-alert .top-row h4 a:hover{
  color:#000;
}

#emails-alert .emails-alert .top-row hr{
  margin:10px 0;
  border:0px solid #fff;
  height:1px;
  width:100%;
  background:#fff;
  
}

#emails-alert .emails-alert .bottom-row{
  background:#fff;
  height:90px;
  display:block;
  width:100%;
   border-radius:0;
  padding:20px 0 20px 0;
  text-align:center;
}



@-webkit-keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}

@-moz-keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}

@-o-keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}

@keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}
 
#emails-alert .alert.alert-success-ctn,
#emails-alert .alert.alert-error {
margin:auto;
height:auto;
text-align:center
}

#emails-alert .alert.alert-error {
background:#c73537
}


#emails-alert .close-button  {
    line-height: 40px;
    transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    width: 100%;
    border-width: 2px;
    border-style: solid;
    position: relative;
    display: block;
    height: 40px;
    font-size: 16px;
    position: relative;
    font-weight: normal;
    border-radius: 0;
    line-height: 36px;
    letter-spacing: 1px;
    max-width: 260px;
    margin:auto;
}

#emails-alert .alert.alert-error h4,
#emails-alert .alert.alert-success-ctn h4 {
color: #fff;
font-weight: 400;
line-height: 20px;
font-size: 14px;
width: 90%;
margin: auto;
}

#emails-alert .alert.alert-success-ctn a {
color:#fff;
border-color:#23282b;
font-weight:700;
background:#000;
box-shadow: 0px 5px 10px #2d2d2d;
}

#emails-alert .alert.alert-error-ctn a {
color:#fff;
border-color:#e75e60;
font-weight:700
}


#emails-alert .close-button.error{
  background:#23282b;
}

#emails-alert .close-button.success{
  background:#23282b;
}
