/*
Theme Name: AIS Custom Theme
Theme URI: http://wordpress.org/themes/AIS-Custom-Theme
Author: Will Nahmens
Author URI: willnahmens.com
Description: Theme for AIS
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: AIS Salzburg Custom Theme

*/

/* Color Pallette 
	Red: #EB452F;
	Blue: #32567B;

*/



body {
	font-family: 'Roboto', sans-serif;
	color: black;
}

h1, h2, h3, h4, h5 {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

.mainContainer {
	min-height: 100vh; /* will cover the 100% of viewport */
	overflow: hidden;
	display: block;
	position: relative;
	padding-bottom: 240px; /* height of your footer */
	background-color: white;
}

body.admin-bar .mainContainer {
	top: 28px;
}


.pageContent {
	position: relative;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Header CSS */

#headerDiv {
	position: relative;
  	top: 0;
  	width: 100%;
	background-color: white;
	z-index: 16;
	height: auto;
}

/* Sticky Menu CSS */

/*#headerDiv.sticky .logoAndNav {
	width: 100%;
	height: 90px;
	position: fixed;
	background-color: white;
	transition: .3s all;
	box-shadow: 0 8px 8px -8px gray;
	-moz-box-shadow:0 8px 8px -8px gray;
	-webkit-box-shadow: 0 8px 8px -8px gray;
	-o-box-shadow: 0 8px 8px -8px gray;
	margin-bottom: 0;
}

#headerDiv.sticky .logoAndNav #logo {
	width: 150px;
	height: auto;
}

#headerDiv.sticky .logoAndNav .topMenu ul {
	margin-bottom: 0;
}
*/

/* End Sticky Menu CSS */

/* Menu CSS */

.clearDiv {
	clear: both;
}

.logoAndNav {
	position: relative;
	margin-bottom: 20px;
	height: auto;
}

#logo {
	position: relative;
	width: 250px;
	height: auto;
	margin-top: 20px;
	margin-left: 30px;
	float: left;
}

#menuDiv {
	position: relative;
	text-align: center;
	float: right;
	height: 100%;
	margin-top: 20px;
}

.header-menu {
	position: relative;
	display: inline-block;
	list-style: none;
	margin-right: 30px;
	float: right;
}

.header-menu li {
	display: inline-block;
	margin-left: 20px;
	height: 35px;
}

.header-menu li a {
	color:#3e3e3e;
}

.header-menu li:hover a {
	color:#EB452F;
}

.headerMenu .sub-menu {
	z-index: 11;
}

.topMenu, .bottomMenu {
	position: relative;
}

.bottomMenu {
	font-size: 1.2em;
}



@media(min-width:768px){
	
	.bottomMenu li:hover {
		box-shadow: inset 0 -5px 0 #EB452F;
	}
	
	.header-menu li:hover .sub-menu {
		display: block;
	}
}

.sub-menu li {
	display: inline-block;
	padding: 15px;
	transition: .2s linear;
	min-height: 60px;
	width: 100%;
	margin-left: 0;
	font-size: 0.8em;

}

.sub-menu ul {
	margin-left: 0;
}

.header-menu li:hover .sub-menu li a {
	color: #3e3e3e;
}

.sub-menu {
	display: none;
	position: absolute;
	top: 35px;
	left: 0;
	background-color: white;
	width: 100%;
	height: auto;
	padding: 10px;
	columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-count: 2;
    text-align: left;
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.6);
	-o-box-shadow: 0 0 10px rgba(0,0,0,0.6);
	z-index: 12;
}

.sub-menu li:hover {
	background-color: #EB452F;
	border: none;
}

.header-menu li:hover .sub-menu li:hover a {
	color: white;
}

.breadcrumbs {
	height: 60px;
	color: white;
	background-color: #32567B;
	width: 100%;
    font-size: 1.1em;
    letter-spacing: .08em;
    padding:20px;
    position: relative;
    z-index: 6;
}

.breadcrumbs a {
	color: white;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}



/* End Menu CSS */

/* Search Bar CSS */
.searchForm {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 60px;
	float: right;
}

.searchForm input {
	outline: none;
}
.searchForm input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
.searchForm input::-webkit-search-decoration,
.searchForm input::-webkit-search-cancel-button {
	display: none; 
}


.searchForm input[type=search] {
	background: #ededed url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
	border: solid 1px #ccc;
	padding: 9px 9px 9px 32px;
	width: 55px;
	
	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 10em;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.searchForm input[type=search]:focus {
	width: 130px;
	background-color: #fff;
	border-color: #3e3e3e;
	-webkit-box-shadow: 0 0 5px rgba(62,62,62,.5);
	-moz-box-shadow: 0 0 5px rgba(62,62,62,.5);
	box-shadow: 0 0 5px rgba(62,62,62,.5);
}


.searchForm input:-moz-placeholder {
	color: #999;
}
.searchForminput::-webkit-input-placeholder {
	color: #999;
}

/* Demo 2 */
#demo-2 {
	float: right;
}

#demo-2 input[type=search] {
	width: 30px;
	padding-left: 0px;
	color: transparent;
	cursor: pointer;
}
#demo-2 input[type=search]:hover {
	background-color: #fff;
}
#demo-2 input[type=search]:focus {
	width: 130px;
	padding-left: 32px;
	color: #000;
	background-color: #fff;
	cursor: auto;
}
#demo-2 input:-moz-placeholder {
	color: transparent;
}
#demo-2 input::-webkit-input-placeholder {
	color: transparent;
}

/* End Search Bar CSS */

/* Start Vid and Services CSS */

.vidAndServicesDiv {
	position: relative;
	z-index: 6;
	background-color: #212121;
}

#homeVideo {
	width: 100% !important;
	height: 415px !important;
}

.servicesContainer {
	background-color: white;
	color: #32567B;
	padding-bottom: 30px;
	position: relative;
	top: 0;
}

.servicesTitle {
	text-align: center;
	position: relative;
	padding-top: 20px;
}

.servicesTitle h1 {
	color: #32567B;
	position: relative;
}

.servicesTitle h1:after {
	content: '';
    width: 15%;
    height: 4px;
    border-top: 1px solid #EB452F;
    border-bottom: 1px solid #EB452F;
    position: absolute;
    top: 15px;
    left: 80%;
    margin-top: 10px;
}

.servicesTitle h1:before {
	content: '';
    width: 15%;
    height: 4px;
    border-top: 1px solid #EB452F;
    border-bottom: 1px solid #EB452F;
    position: absolute;
    top: 15px;
    right: 80%;
    margin-top: 10px;
}



.servicesDiv {
	display: flex;
  	justify-content: space-between;
  	padding-top: 30px;
  	padding-left: 20px;
  	padding-right: 20px;
}

.service {
	width: 140px;
	height: 140px;
	border-radius: 70px;
	border: none;
	transform: .4s linear;
	text-align: center;
	padding-top: 23px;
}

.service p {
	text-transform: uppercase;
	letter-spacing: .14em;
}

a .service {
	color: #32567B;
	text-decoration: none;
	border: 3px solid white;
}

.service i {
	width: 90%;
	margin-left: 0;
	color: #32567B;
}

a .service:hover {
	border: 3px solid #EB452F;
}





/* End Vid and Services CSS */

#main {
	position: relative;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}



/* Single Post CSS */
#singlePost {
	width: 700px;
	min-height: 800px;
	margin-left: 70px;
	padding-top: 20px;
	clear: both;
	position: relative;
	color: #7A7A7A;
}

.blogPostFeaturedImage {
	position: relative;
	height: auto;
	margin-top: 170px;
}

@media(max-width:767px){
	.blogPostFeaturedImage{
		margin-top: 80px;
	}
}

.blogPostFeaturedImage img {
	width: 100%;
	height: auto;
}

#singlePost h2 a {
	color: #32567B;
	letter-spacing: .08em;
}

#sidebar-primary {
	width: 200px;
	float: right;
	position: absolute;
	right: 15px;
	top: 210px;
}

.widget-title {
	font-weight: 300;
	color: #32567B;
}

.widget-title:after {
	content: '';
    border-bottom: 2px solid #EB452F;
    width: 90%;
    display: block;
    padding-top: 20px;
}

.sidebar ul {
	padding-left: 0;
}

#sidebar-primary ul li {
	height: auto;
}
.sidebar .post-date {
	color: white;
}

.post-date:before {
	content: ' | ';
	color: #EB452F;
}



/* Featured Blog Post CSS */

/* Blog post home display CSS */

.sixNewsAndEventsContainer {
	margin-top: 50px;
}


.blogPostsTitle, .newsAndEventsTitle {
	text-transform: uppercase;
	width: 100%;
	text-align: center;
	font-family: "Roboto";
	letter-spacing: .14em;
	font-size: 22px;
	color: #32567B;
}

.parent {
  width: 300px; 
  height: auto;
  overflow: hidden;
  position: relative;
  justify-content: space-between;
}

.blogImage {
  width: 300px;
  height: 200px;
  background-color: black; /* fallback color */
  background-position: center;
  background-size: cover;
  transition: all .5s;
  overflow: hidden;
}

.blogImageContainer {
	width: 300px;
	height: 200px;
	overflow: hidden;
}


.parent:hover .blogImage,
.parent:focus .blogImage {
  transform: scale(1.2);
}

.childContent {
  color: #32567B; /* Good thing we set a fallback color! */
  font-family: sans-serif;
  padding: 10px;
  position: relative;
  text-align: left;
}

.child::before {
  content: "";
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parent:hover .child:before,
.parent:focus .child:before {
  display: block;
}

.blogPostsContainer {
	width: 100%;
	height: auto;
	position: relative;
  	background-color: none;
  	text-align: center;
  	margin-bottom: 50px;
  	font-family: 'Roboto';
}


.blogPostRow {
	width: 80%;
	margin-left: 10%;
  	background-color: #fff;
  	padding: 10px;
  	margin: auto;
  	display: flex;
  	justify-content: space-between;
}

/* News and Events CSS */
.newsAndEventsContainer {
	width: 70%;
	float: left;
	padding: 20px;
}

.categoryList {
	width: 30%;
	float: right;
}

.newsAndEventsTitle {
	color: #32567B;
	font-weight: 300;
}

.nePostLeftContent {
	position: relative;
	float: left;
}
.nePostLeftContent img {
	width: 200px;
	height: auto;
}

.nePostRightContent {
	float: left;
	margin-left: 20px;
	position: relative;
	width: 70%;
}
.nePost {
	padding: 20px;
	border-radius: 5px;
	position: relative;
	width: 100%;
	height: auto;
	color: #32567B;
	transition: .2s linear;
}
.nePost:hover {
	background-color: #EB452F;
	color: white;
	cursor: pointer;
}

.nePost a {
	color: white;
}

.nePost a:hover {
	text-decoration: underline;
}

.nePostHidden {
	display: none;
}

.read-more {
	display: flex;
	color: white;
	background-color: #EB452F;
	border-radius: 5px;
	text-transform: uppercase;
	width: 200px;
	height: 50px;
	margin: auto;
	margin-top: 30px;
}

.read-more:hover {
	cursor: pointer;
}

.read-more p {
	margin: auto;
	text-align: center;
}

/* End News and Events CSS */

/* Alumni Interviews CSS */
.alumniInterviewsContainer {
	width: 100%;
}

/* End alumni interviews */

/* Category CSS */

.categoryContent {
	width: 80%;
	margin-left: 10%;
	margin-bottom: 20px;
}

.categoryContent h1 {
	font-weight: 300;
	color: #32567B;
}


/* End Category CSS */


/* Event CSS */


.featuredEventsContainer {
	width: 60%;
	margin-left: 20%;
	min-height: 300px;
	display: inline-flex;
	justify-content: space-between;
	color: white;
	text-align: center;
}

.featuredEventsContainer a {
	color: white;
}

.singleEventContainer {
	margin: auto;
	width: 150px;
}

.eventDateContainer {
	background-color: #EB452F;
	height: 140px;
	width: 140px;
	border-radius: 70px;
	color: white;
	margin: auto;
	margin-bottom: 30px;
	display: flex;
	transition: .2s all;
	position: relative;
}

.eventDateContainer div {
	position: absolute;
  	top: 5px;
  	left: 5px;
  	right: 5px;
  	bottom: 5px;
  	border: 2px solid white;
  	border-radius: 67.5px;
}

.eventDateContainer:hover {
	transform: scale(1.2);
}

.eventDateContainer:hover div {
	top: 10px;
  	left: 10px;
  	right: 10px;
  	bottom: 10px;
  	border: 3px solid white;
  	border-radius: 79px;
}


.eventInfoContainer {
	position: relative;
}

.eventDateContainer h2 {
	margin: auto;
	text-align: center;
	position: relative;
	font-size: 1.0em;
}

.eventName {
	font-size: 1.3em;
	position: relative;
}
/* End Event CSS */

/* 404 Page CSS */

.page-wrapper {
	position:relative;
}

.notFoundCol {
	width: 20%;
	float: left;
	text-align: center;
}

.notFoundCol .primary-page-menu li {
	width: 100% !important;
}

.notFoundContent {
	padding-left: 50px;
	padding-right: 50px;
}

.errorSearch {
	position: relative;
}

.errorSearch .searchForm {
	position: relative;
	float: none;
	top:0;
	left:0;
	margin-bottom: 0;
}

.errorSearch .searchForm #demo-2 {
	float: left;
}

/* Single Event CSS */

#tribe-events-content {
	padding: 20px;
	color: #7A7A7A;
}

.tribe-events-single {
	max-width: 800px;
	margin: auto;
	padding: 20px;
}

.tribe-events-single-event-title {
	font-weight: 30;
	color: #32567B;
}

.tribe-events-single-event-description {
	line-height: 1.8;
	font-size: 20px;
}

.tribe-events-content {
	padding-top: 10px;
	padding-bottom: 10px;
}

.tribe-events-content p:last-child {
	display: none;
}

.tribe-events-content p {
	padding-top: 20px;
	padding-bottom: 20px;
}

.tribe-events-single a {
	font-weight: 300;
}

ul.tribe-events-sub-nav a {
	font-weight: 400;
}

a.tribe-events-gcal, a.tribe-events-ical {
	color: #EB452F;
	background-color: white;
	font-size: 1.4em;
	float: left;

}

a.tribe-events-gcal:hover, a.tribe-events-ical:hover {
	color: #32567B;
	background-color: white;
}

.tribe-events-cal-links {
	display: flex;

}

.tribe-events-cal-links a {
	float: none;
}

.tribe-events-event-meta .tribe-events-meta-group {
	padding-left: 0;
	font-size: 20px;
}

.tribe-events-schedule h2 {
	font-weight: 300;
}


/* End Single Event CSS */


/* End 404 Page CSS */

/* carousel */

.carousel-container {
	width: 100%;
}

.carousel-inner{
	width: 900px;
	margin: auto;
}

.carousel-wrapper {
	width: 100%;
	margin-bottom: 30px;
}

.carousel-wrapper h3 {
	text-align: center;
	color:white;
}

#quote-carousel 
{
  padding: 0 10px 30px 10px;
  margin-top: 30px;
}

/* Control buttons  */
#quote-carousel .carousel-control
{
  background: none;
  color: white;
  font-size: 2.3em;
  text-shadow: none;
  width: 30px;
  margin-top: 210px;
}
/* Previous button  */
#quote-carousel .carousel-control.left 
{
  left: 80px;
}
/* Next button  */
#quote-carousel .carousel-control.right 
{
  right: 80px !important;
}
/* Changes the position of the indicators */
#quote-carousel .carousel-indicators 
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li 
{
  background: #c0c0c0;
  height: 5px;
  width: 30px;
  border-radius: 2px;
  border: none;
}
#quote-carousel .carousel-indicators .active 
{
  background: #EB452F;
}
#quote-carousel iframe {
	width: 100%;
	height: 400px;
	margin: auto;
}
/* End carousel */




/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    #quote-carousel 
    {
      margin-bottom: 0;
      padding: 0 40px 30px 40px;
    }
    
}

@media (max-width: 1130px) {
	/* Previous button  */
	#quote-carousel .carousel-control.left 
	{
  		left: 20px;
	}
	/* Next button  */
	#quote-carousel .carousel-control.right 
	{
  		right: 20px !important;
	}
}

@media (max-width: 1010px) {
	.carousel-inner {
		width: 600px;
	}

}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) { 
    
    /* Make the indicators larger for easier clicking with fingers/thumb on mobile */
    
    #quote-carousel .carousel-indicators {
        bottom: -20px !important;  
    }
    #quote-carousel .carousel-indicators li {
        display: inline-block;
        margin: 0px 5px;
        width: 15px;
        height: 15px;
    }
    #quote-carousel .carousel-indicators li.active {
        margin: 0px 5px;
        width: 20px;
        height: 20px;
    }
    .carousel-inner {
		width: 80%;
		height: 500px;
	}

}



/* Start Footer CSS */

footer {
	text-align: left;
	background-color: #32567B;
	position: absolute;
 	bottom: 0;
 	width: 100%;
	height: 240px;
	color: white;
	margin-top: 100px;
}

footer a {
	color: white;
}

footer a:hover {
	text-decoration: underline;
	color: white;
}

footer i {
	font-style: none;
}

footer ul {
	list-style: none;
}

footer h3 {
	color: white;
	border-bottom: 2px solid #EB452F;
}

.footerDivs {
	width: 50%;
	float: left;
	padding: 15px;
}
.footerDivs ul {
	width: 50%;
	padding-left: 10px;
	float: left;
}

#copyrightDiv {
	width: 100%;
	text-align: center;
	clear: both;
	background-color: #222222;
}

.nahmensTag {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 10px;
}

/* End Footer CSS */

a:hover {
	text-decoration: none;
	cursor: pointer;
}



#postNavContainer {
	height: 50px;
}

.postNavigation {
	width: 50%; 
	float: left;
}


#searchQuery {
	font-weight: bolder;
}


@media screen and (min-width: 1200px) {
	#singlePost {
		margin-left: 200px;
	}
}


@media screen and (max-width: 1200px) {
	.blogPostRow {
		display: block;
	}
	.parent {
		width: 100%;
		margin: auto;
	}
	.blogImageContainer {
		width: 450px;
		height: auto;
		margin: auto;
	}
	.blogImage {
		width: 100%;
	}
	.childContent {
		text-align: center;
	}
}

@media screen and (max-width: 990px) {
	#sidebar-primary {
		display: none;
	}
	#singlePost {
		margin: auto;
	}
}

@media screen and (max-width: 950px) {
	.featuredEventsContainer {
		display: block;
	}
	.singleEventContainer {
		width: 100%;
	}
}

@media screen and (max-width: 900px) {
	.newsAndEventsContainer {
		width: 100%;
	}
	.nePostRightContent {
		width: 60%;
	}
	.categoryList {
		display: none;
	}

	#singlePost {
		width: 600px;
	}

}



@media screen and (max-width: 890px) {
	.breadcrumbs {
		display: none;
	}
}


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

	.footerDivs {
		width: 100%;
	}
	footer {
		height: 420px;
	}
	.mainContainer {
		padding-bottom: 420px;
	}
	footer h3 {
		margin-top: 5px;
	}
	.footerDivs {
		padding-top: 0;
	}

	#singlePost {
		width: 500px;
	}
	.featuredEventsContainer {
		display: inline-block;
	}
	.singleEventContainer {
		width: 150px;
	}
}


@media screen and (max-width: 670px) {
	.nePostRightContent {
		width: 100%;
	}
	.servicesContainer {
		overflow: auto;
	}
	.servicesTitle h1 {
		font-size: 1.8em;
	}

	.servicesTitle h1:before, .servicesTitle h1:after {
		top: 5px;
	} 
	.servicesDiv {
		display: block;
		height: auto;
	}

	.servicesDiv a {
		width: 50%;
		float: left;
	}

	#news {
		width: 100%;
	}
	.service {
		margin: auto;
	}
	.blogPostRow {
		width: 100%;
	}
	.blogImageContainer {
		width: 100%;
	}
	.blogImage {
		width: 100%;
		height: 275px;
	}

}

@media screen and (max-width: 535px) {
	#singlePost {
		width: 90%;
	}
	#logo {
		width: 180px;
	}

}

@media screen and (max-width: 465px) {
	.servicesDiv a {
		width: 100%;
	}

	.servicesTitle h1:before, .servicesTitle h1:after {
		display: none;
	}
}

@media screen and (max-width: 485px) {
	.blogImage {
		height: 200px;
	}
}


/* JANAs Updates ======================================================= */
/* Menu ===================================== */
.menu-item-has-children > i,
#headerDiv .topMenu.mobile,
#headerDiv #menu-bars{
	display: none;
}


@media (max-width: 767px) { 
	#menuDiv{
		flex: 100%;
		margin-top: 0;
		padding-top: 20px;
	}
	
	#menuDiv.active{
		border-top: 1px solid rgba(0,0,0,0.1);
	}
	
	#menuDiv .bottomMenu{
		display: none;
	}
	
	#menuDiv .bottomMenu ul li{
		font-size: 14px;
	}
	
	#menuDiv.active .bottomMenu{
		display: block;
	}
	
	#headerDiv .logoAndNav{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 0;
		flex-wrap: wrap;
	}
	
	#headerDiv .logoAndNav #logo{
		margin: 16px;
	}
	
	#headerDiv .topMenu{
		display: none;
	}
	
	#headerDiv .topMenu.mobile{
		display: block;
		width: 100%;
		margin-top: 8px;
	}
	
	#headerDiv .topMenu.mobile ul li a{
		font-size: 10px;
		padding: 4px !important;
	}
	
	#headerDiv .topMenu.mobile ul li{
		margin: 0 8px !important;
		height: auto !important;
	}
	
	#headerDiv .topMenu.mobile ul.header-menu{
		padding: 0;
		margin: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	
	#headerDiv .topMenu.mobile ul li{
		position: static;
	}
	
	#headerDiv #menu-bars{
		display: block;
		margin-right: 32px;
    	font-size: 24px;
	}
	
	#headerDiv .bottomMenu ul.header-menu{
		flex-direction: column;
		width: 100%;
		display: flex;
	}
	
	#menu-bars .open{
		display: block;
	}
	
	#menu-bars .close{
		display: none;
		opacity: 1;
	}
	
	#menu-bars.active .open{
		display: none;
	}
	
	#menu-bars.active .close{
		display: block;
	}
	
	.menu-item-has-children{
		position: relative;
	}
	
	.menu-item-has-children > i{
		position: absolute;
		display: block;
   		right: 8px;
		top: 0;
	}
	
	.menu-item-has-children > i.fa-chevron-up,
	.menu-item-has-children.clicked > i.fa-chevron-down{
		display: none;
	}
	
	.menu-item-has-children.clicked > i.fa-chevron-up{
		display: block;
	}
	
	.menu-item-has-children .sub-menu{
		display: none;
	}
	
	.menu-item-has-children.clicked .sub-menu{
		display: flex;
		flex-direction: column;
		text-align: center;
		box-shadow: unset !important;
	}
	
	.menu-item-has-children.clicked .sub-menu li{
		padding: 0;
		height: auto;
		min-height: 0;
	}
	
	.menu-item-has-children.clicked .sub-menu li a{
		padding: 8px;
		width: 100%;
		display: block;
	}
	
	.bottomMenu .menu-item-has-children.clicked {
		box-shadow: inset 0 -5px 0 #EB452F;
	}
}

#headerDiv.fixed {
    position: fixed;
    top:0;
	left:0;
    width: 100%;
}

/* Jana */
.news-dark .blogPostRow{
	background-color: #32567B;
}

.news-dark .blogPostsTitle{
	color: #fff;
    font-size: 40px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: normal;
}

.news-dark .childContent{
	color: #fff;
}



