
//Add CSS after this

/*
The colors
#4a9e3e
#5abc4b
#C8E6C9
#5abc4b
#9E9E9E
#212121
#5abc4b
#B6B6B6
*/

/* Variables as own colors, no inverted features */
.dark_primary_color {
	color: #4a9e3e;
}
.primary_color {
	color: #5abc4b;
}
.light_primary_color {
	color: #C8E6C9;
}
.icons {
	color: #5abc4b;
}
.accent_color {
	color: #9E9E9E;
}
.primary_text {
	color: #212121;
}
.secondary_text {
	color: #5abc4b;
}
.divider_color {
	color: #B6B6B6;
}

body {
	background-color: #ffffff;
	padding-bottom: 0px;
	/* font-family: 'Montserrat', sans-serif; */
	font-family: 'Roboto Slab', serif;
	font-weight: 300;
}

footer {
	background-color: #4a9e3e;
	padding: 50px 0px 30px 0px;
}

footer p,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer a {
	color: #fff;
}

footer a:hover {
	color: #5abc4b;
}

.navbar > .container {
	//background-color: inherit;
}

.container, .container-fluid {
	/*background-color: #C8E6C9;*/
	background-color: none;
}

.container.inverted, .container-fluid.inverted {
	background-color: #5abc4b;
}

.banner h1,
.banner h2,
.banner h3,
.banner h4,
.banner h5,
.banner h6,
.banner_full h1,
.banner_full h2,
.banner_full h3,
.banner_full h4,
.banner_full h5,
.banner_full h6 {
	color: #212121;
}

.fa {
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fa {
	color: #5abc4b;
}

.inverted h1,
.inverted h2,
.inverted h3,
.inverted h4,
.inverted h5,
.inverted h6,
.inverted .fa {
	color: #5abc4b;
}

p {
	color: #212121;
}

.inverted p {
	color: #5abc4b;
}

.element {
	width: 100%;
	display: block;
	position: relative;
    overflow: auto;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

.container {
	padding-left: 0px;
	padding-right: 0px;
}

@media (max-width: 767px) {
	.row > div > div {
		padding-right: 15px;
		padding-left: 15px;
	}

	.card {
		padding-left: 0px !important;
		padding-right: 0px !important;
		margin-left: 0px !important;
		margin-right: 0px !important;
	}
}

.row.cards > div > div {
	margin-bottom: 20px;
}

.column-img {
	margin-bottom: 15px;
}

a {
	color: #5abc4b;
	opacity: 1;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

a:hover,
a:active,
a:focus {
	color: #5abc4b;
	opacity: 0.7;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #4a9e3e;
}


.banner {
	/* background-attachment: fixed; */
	background-size: cover;
	background-position: center top;
	min-height: 300px;
	padding-top: 100px;
    /* text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.29); */
}

.banner_full {
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	min-height: 100%;
	padding-top: 30vh; /* This is for menu */
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.29);
}

.banner_full h1,
.banner_full h2,
.banner_full h3,
.banner_full h4,
.banner_full h5,
.banner_full h6,
.banner_full p {
	font-size: 1.5em;
}

.banner_full h1, .banner_full p.title {
    font-weight: 700!important;
    line-height: 1.1;
    //font-size: 10vw;
    line-height: 1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
}

.banner_full p.title,
.banner_full p.subtitle {
	color: #5abc4b;
}

@media (max-width: 996px) {
	.banner_full p.title {
		font-size: 10vw;
	}

	.banner_full p.subtitle {
		font-size: 7.5vw;
	}
}

@media (min-width: 997px) {
	.banner_full p.title {
		font-size: 100px;
	}

	.banner_full p.subtitle {
		font-size: 75px;
	}
}

.element > .banner {
	width: 100%;
}

.minibanner {
    height: 90px;
    overflow: hidden;
}

.bg {
	background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
}

.btn-theme {
	background-color: #5abc4b;
	color: #5abc4b;
	opacity: 1;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.btn-theme:hover {
	background-color: #5abc4b;
	color: #5abc4b;
	opacity: 0.7;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.btn {
	border-radius: 0px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
}

.inverted .btn-theme {
	background-color: #5abc4b;
	color: #4a9e3e;
}

.inverted .btn-theme:hover {
	background-color: #5abc4b;
	color: #4a9e3e;
}

.inverted_bg {
	background-color: #5abc4b;
}

.gray_bg {
	background-color: #f5f5f5;
}

.white_bg {
	background-color: #ffffff;
}

.align_left {
	float: left;
}

.align_right {
	float: right;
}

.align_center {
	width: auto;
    margin-right: auto;
    margin-left: auto;
    display: block;
    text-align: center;
}

.buttonmargin {
	margin-top: 15px;
}

.navbar-levelup {
    background-color: inherit;
	border-bottom: 0px;
}

/* Menu */

@media (min-width: 768px) {

	.navbar-nav {
		float: right;
		display: inline-flex;
		align-items: center;
	}

	.nav.navbar-nav > li > ul {
		overflow: hidden;
		position: absolute;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
		opacity: 0;
		list-style: none;
		height: 0px;
		translate3d(0, 0, 0);
	}

	.nav.navbar-nav > li.open > ul {
		overflow: visible;
		position: absolute;
		background-color: #ffffff;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
		opacity: 1;
		height: auto;
		translate3d(0, 0, 0);
	}

	.nav.navbar-nav > li.open > ul {
		background-color: #ffffff;
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
	}

	.nav.navbar-nav > li.open > ul:hover {
		background-color: #ffffff;
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
	}

	.nav.navbar-nav > li.open > ul > li.open {
		background-color: none;
	}

	.nav.navbar-nav > li.open > ul > li.open:hover {
		background-color: none;
	}

	.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
		background-color: inherit;
	}

	.nav > li.open > a, .nav > li.open > a:hover, .nav > li.open > a:focus {
		background-color: #eee;
		border-color: #337ab7;
	}

	li.open a:hover {
		text-decoration: none;
	}

	.nav.navbar-nav > li > ul > li > ul {
		list-style: none;
		padding-left: 0px;
	}

	.nav.navbar-nav > li > ul > li {
		padding: 20px;
	}

	/*
	.nav.navbar-nav > li > ul > li > a {
		font-size: 1.2em;
	}
	*/

	.nav.navbar-nav > li > ul {
		padding: 0;
	}

	.nav.navbar-nav > li.megamenu-2-col > ul {
		width: 450px;
		left: -100px;
	}

	.nav.navbar-nav > li.megamenu-3-col > ul {
		width: 750px;
		left: -200px;
	}

	.nav.navbar-nav > li.megamenu-4-col > ul {
		width: 767px;
		left: -350px;
	}

	.nav.navbar-nav > li.megamenu-2-col > ul > li {
		width: 50%;
		float: left;
	}

	.nav.navbar-nav > li.megamenu-3-col > ul > li {
		width: 33%;
		float: left;
	}

	.nav.navbar-nav > li.megamenu-4-col > ul > li {
		width: 33%;
		float: left;
	}

	.nav.navbar-nav > li > ul > li > a,
	.nav.navbar-nav > li > ul > li > ul > li > a {
		color: #212121;
		letter-spacing: 0px;
	}

	.nav.navbar-nav > li > ul > li > a:hover,
	.nav.navbar-nav > li > ul > li > ul > li > a:hover {
		color: #5abc4b;
		opacity: 1;
		-webkit-transition-duration: 0.1s;
		transition-duration: 0.1s;
	}

	/*
	.nav.navbar-nav > li > a {
		font-size: 1.1em;
	}
	*/

	.nav.navbar-nav > li {
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
	}

	.nav.navbar-nav > li:hover {
		background-color: #5abc4b;
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
	}

	.navbar-levelup .navbar-nav > li > a {
		text-shadow: none;
		color: #5abc4b;
		letter-spacing: 0.1em;
		font-weight: 600;
	}

	.nav.navbar-nav > li > a:hover,
	.nav.navbar-nav > li.open > a {
		color: #5abc4b;
		opacity: 1;
	}

	.navbar-levelup .navbar-nav > .open > a,
	.navbar-levelup .navbar-nav > .open > a:hover,
	.navbar-levelup .navbar-nav > .open > a:focus {
		background-color: #ffffff;
	}

}

@media (max-width: 767px) {
	.nav.navbar-nav {
		background-color: #5abc4b;
		margin-left: 0px;
		margin-right: 0px;
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-top: none;
		padding: 25px 15px;
		margin-bottom: 20px;
		border: 1px solid rgba(0, 0, 0, 0.2);
		transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
	}

	.nav.navbar-nav > li > a {

		font-size: 1.1em;
	}

	.nav.navbar-nav > li {
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
	}

	.nav.navbar-nav > li:hover {
		//background-color: #5abc4b;
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
	}

	.navbar-levelup .navbar-nav > li > a {
		text-shadow: none;
		color: #212121;
	}

	.nav.navbar-nav > li > a:hover,
	.nav.navbar-nav > li.open > a {
		color: #5abc4b;
		opacity: 1;
	}

	.navbar-levelup .navbar-nav > .open > a,
	.navbar-levelup .navbar-nav > .open > a:hover,
	.navbar-levelup .navbar-nav > .open > a:focus {
		background-color: rgba(255, 255, 255, 0);
	}

	li.open a:hover {
		text-decoration: none;
	}

	.nav.navbar-nav > li > ul {
		list-style: none;
	}

	.nav.navbar-nav > li > ul > li > ul {
		list-style: none;
	}

	.nav .open > a,
	.nav .open > a:hover,
	.nav .open > a:focus {
		//background-color: #ffffff;
		background-color: rgba(255, 255, 255, 0);
	}

}

@media screen and (orientation:landscape) and (max-width: 767px) {
	.nav.navbar-nav {
		box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
		transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
	}
}

.navbar-collapse {
    border-top: 0px solid transparent;
    -webkit-box-shadow: inset 0 0px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 0px 0 rgba(255, 255, 255, .1);
}

/* Menu END */


#logo_container > a > img {
    max-height: 27px;
	margin-top : 17px;
	margin-bottom: 10px;
}

#logo_container {
    max-width: 80%;
}

@media screen and (min-width:450px) {
	#logo_container > a > img {
		max-height: 50px;
		margin-top: 13px;
	}
}

@media screen and (min-width:768px) {
	#logo_container > a > img {
		max-height: 50px;
		margin: 0;
	}
	#logo_container {
		margin-left: 15px;
	}
}

.navbar-wrapper {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@media screen and (min-width:768px) {

}

@media (min-width: 768px) {
	.parentsize-r, .parentsize-l {
		position: absolute;
		top: 0;
		bottom: 0;
		z-index: 0;
	}

	.parentsize-r {
		width: 50%;
		right: 0;
	}

	.parentsize-l {
		width: 50%;
		left: 0;
	}

	.parentsize-l,
	.parentsize-r {
		background-color: #ffffff;
	}

	.parentsize-l.inverted,
	.parentsize-r.inverted {
		background-color: #5abc4b;
	}

	.parentsize-l.gray,
	.parentsize-r.gray {
		background-color: #f5f5f5;
	}


}

@media (max-width: 767px) {
	.parentsize-r, .parentsize-l {
		display: none;
	}

	.inverted {
		background-color: #5abc4b;
		display: block;
		//overflow: auto;
		//margin-left: -15px;
		//margin-right: -15px;
	}

	.gray {
		background-color: #f5f5f5;
		//display: block;
		//overflow: auto;
		//margin-left: -15px;
		//margin-right: -15px;
	}
}

.navbar-levelup .navbar-toggle {
    border-color: rgba(255, 255, 255, 0);
}

.icon-bar {
	background-color: #5abc4b;
	/*box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);*/
	opacity: 1;
	display: block;
}

.gform_wrapper ul.gfield_checkbox li, .gform_wrapper ul.gfield_radio li {
	overflow: visible !important;
}



.navbar-toggle .icon-bar {
   display: block;
   width: 25px;
   height: 3px;
   border-radius: 3px;
}

@media (min-width: 768px) {
	.animatedcross {
		display: none;
	}
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: 0px;
    margin-left: 0px;
}

.icon-bar {
		    transform: rotate(0deg);
	    	transform-origin: 0% 0%;
		-ms-transform: rotate(0deg);
		-ms-transform-origin: 0% 0%;
	-webkit-transform: rotate(0deg);
    -webkit-transform-origin: 0% 0%;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.animatedcross .icon-bar.icon-bar-1 {
		    transform: rotate(45deg);
	    	transform-origin: 20% 0%;
		-ms-transform: rotate(45deg);
		-ms-transform-origin: 20% 0%;
	-webkit-transform: rotate(45deg);
    -webkit-transform-origin: 20% 0%;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.animatedcross .icon-bar.icon-bar-2 {
		    transform: rotate(45deg);
	    	transform-origin: 55% -100%;
		-ms-transform: rotate(45deg);
		-ms-transform-origin: 55% -100%;
	-webkit-transform: rotate(45deg);
    -webkit-transform-origin: 55% -100%;
	opacity: 0;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.animatedcross .icon-bar.icon-bar-3 {
		    transform: rotate(-45deg);
	    	transform-origin: 0% 0%;
		-ms-transform: rotate(-45deg);
		-ms-transform-origin: 0% 0%;
	-webkit-transform: rotate(-45deg);
    -webkit-transform-origin: 0% 0%;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.fullvh {
	height: 100vh;
	min-height: 600px;
}

.newsimg {
	height: 100px;
    background-size: cover;
    width: 100%;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
	.newslink, .newstext {
		text-align: center;
	    margin-left: auto;
		margin-right: auto;
		display: block;
	}

	.newsimg {
		height: 200px;
		background-size: cover;
		width: 100%;
		background-position: center center;
		max-width: 300px;
	}
}

a.no_hover:hover {
	opacity: inherit;
}

a > .newsholder {
    width: 100%;
    float: left;
	padding: 10px;
    background: #fafafa;
    background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f5f5);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f5f5);
    margin: 10px 0px 10px 0px;
    -webkit-transition: backg 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

a > .newsholder .newstext{
    color: black;
}

a > .newsholder.sticky-news {
    width: 100%;
    float: left;
	padding: 10px;
    color: #fafafa;
    background: #5abc4b;
    /*background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #5abc4b);*/
    background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #5abc4b);
    /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #5abc4b);
    background: linear-gradient(to bottom, #5abc4b, #2a5d22);*/
    background: linear-gradient(to bottom, #aadda2, #5abc4b);
    margin: 10px 0px 10px 0px;
    -webkit-transition: backg 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.newsholder.sticky-news h4,
.newsholder.sticky-news .newstext
{
	/*color: #fafafa;*/
	color: #fff;
}

.newsholder.sticky-news .newslink::before{
	font-family: fontawesome;
	content: '\f08d';
	display: inline-block;
	position: absolute;
	font-size: 18px;
	left: -5px;
}

a > .newsholder:hover {
	background-color: #B6B6B6;
	background-color: #f5f5f5;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.centernews {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.newsdate
{
	margin-left: auto;
    margin-right: auto;
	margin-bottom: 5px;
    display: block;
	text-transform: capitalize;
	font-size: 12px;
	text-decoration: underline;
}

video {
	display: block;
}

video#bgvid {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url("https://www.oulunhansaapteekki.fi/wp-content/themes/LevelupThemeV6/video/video.jpg") no-repeat;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    #banner {
        background-image: url(https://www.oulunhansaapteekki.fi/wp-content/themes/LevelupThemeV6/video/video.jpg);
		background-color: #000;
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
    }
    #bgvid {
        display: none;
    }
}

/* Loader */

	#loader-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
	}
	#loader {
		display: block;
		position: relative;
		left: 50%;
		top: 50%;
		width: 150px;
		height: 150px;
		margin: -75px 0 0 -75px;
		border-radius: 50%;
		border: 3px solid transparent;
		border-top-color: #3498db;

		-webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
		animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

		z-index: 1001;
	}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        //background: #222222;
		background: #fafafa;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;
                transition: all 0.3s 1s ease-out;
    }

    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }

/* Loader END */

.screen-reader-text {
	display: none;
}

.page-numbers {
    padding: 2px 8px;
    background-color: #5abc4b;
    color: #5abc4b;
}

.page-numbers.current {
    padding: 1px 8px;
    background-color: #5abc4b;
    color: #5abc4b;
	border: 1px solid #5abc4b;
}

.blog-navigation a.page-numbers:hover {
	color: #5abc4b;
}

.blog-navigation > nav {
    text-align: center;
    width: 100%;
}

.blog-navigation nav-links {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.child-img img {
	max-width: 100%;
	height: auto;
	display: block;
}

.bloginfo {
	background-color: rgb(240, 240, 240);
	margin-bottom: 20px;
}

.blogtime {
    display: inline;
    margin-left: 10px;
}

.blogcontent {
	padding-bottom: 50px;
	display: block;
    overflow: auto;
}

.blog_page_padding {
	padding: 50px 0px;
}

.video_overlay {
    position: absolute;
    background: #212121;
    background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #000000);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #000000);
    opacity: 0.72;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* --------------- Gravity forms --------------- */

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 10px !important;
}

@media only screen and (min-width: 641px) {
	.gform_wrapper textarea.large {
		height: 160px !important;
		width: 100%;
	}
}

.gform_wrapper textarea.large {
    margin-top: 15px;
}

.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
    margin-bottom: 0px !important;
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input.button,
.gform_wrapper .gform_page_footer input[type=submit] {
    padding: 10px 20px;
	background-color: #5abc4b;
}

.inverted .gform_wrapper .gform_footer input.button,
.inverted .gform_wrapper .gform_footer input[type=submit],
.inverted .gform_wrapper .gform_page_footer input.button,
.inverted .gform_wrapper .gform_page_footer input[type=submit] {
    background-color: #5abc4b;
}

input[type="checkbox"], input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

input[type="checkbox"] + label:before, input[type="radio"] + label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

input[type="checkbox"] + label:before, input[type="radio"] + label:before {
    background: #5abc4b;
    border-radius: 3px;
    content: '';
    display: inline-block;
    height: 1.65em;
    left: 0;
    line-height: 1.58125em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 1.65em;
	border-radius: 10px;
}

input[type="checkbox"] + label, input[type="radio"] + label {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative;
}

input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before {
	color:#fff !important;
}

.gform_wrapper ul li.field_description_below div.ginput_container_checkbox, body .gform_wrapper ul li.field_description_below div.ginput_container_radio {
	margin-top:0 !important;
}

.gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html {
	margin-top:26px;
}

.gform_wrapper .gfield_checkbox li label,
.gform_wrapper .gfield_radio li label {
    padding-left: 2.4em !important;
    padding-right: 0.75em !important;
}

.gform_wrapper .gfield_checkbox li label,
.gform_wrapper .gfield_radio li label {
    margin-top: 0px !important;
    padding-bottom: 3px !important;
	margin-left: 0px !important;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
	background: #5abc4b;
    color: #fff;
    content: '\f00c';
}

input[type="checkbox"]:checked + label:before {
    content: '\f00c';
}

input[type="radio"]:checked + label:before {
    content: '\f111';
}

input[type="checkbox"] + label, input[type="radio"] + label {
    color: #4E4852;
}

/* --------------- Default color --------------- */

input,
textarea {
    border-width: 0px;
	background: rgba(0, 0, 0, 0.05);
}

input.gform_button {
	background-color: #5abc4b;
	color: #5abc4b;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #212121 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #212121 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #212121 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #212121 !important;
}

/* other default colors are in main gravityforms styling */

/* --------------- Inverted color --------------- */

.inverted input,
.inverted textarea {
    border-width: 0px;
	background: #5abc4b;
}

.inverted input.gform_button {
	background-color: #5abc4b;
	color: #212121;
}

.inverted input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #212121 !important;
}

.inverted input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #212121 !important;
}

.inverted input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #212121 !important;
}

.inverted input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #212121 !important;
}

.inverted input[type="checkbox"] + label,
.inverted input[type="radio"] + label {
    color: #5abc4b;
}

.inverted input[type="checkbox"]:checked + label:before,
.inverted input[type="radio"]:checked + label:before {
    background: #5abc4b;
    color: #212121;
}

.inverted input[type="checkbox"] + label:before,
.inverted input[type="radio"] + label:before {
    background: #5abc4b;
}

/* --------------- Gray color --------------- */

.gray input,
.gray textarea {
    border-width: 0px;
	background: #fff;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
    background: #5abc4b;
    color: #5abc4b;
}

/* --------------- Forms END --------------- */


/* CUSTOM CODE */

a:active {
	outline: 0px solid black;
}

input.search-field {
    border: 1px solid #e6e6e6;
    background: rgba(0, 0, 0, 0);
}

.navigation {
	background-color: #5abc4b;
	/* min-height: 50px; */
}

.topbar_container {
	margin-top: 10px;
}

@media (min-width: 768px) {
	.navbar-header {
		float: none;
	}

	#searchform {
		float: right;
	}

	#logo_container {
	    width: auto;
		display: inline-block;
		margin-top: 10px;
	}

	.topbar_container {
		display: inline-block;
		float: right;
		margin-top: 0;
	}

	.topbar_inner {
		display: inline-block;
	}

	.search-submit {
		-webkit-transform: translate(0px, -10px) rotate(-45deg);
		-moz-transform: translate(0px, -10px) rotate(-45deg);
		-o-transform: translate(0px, -10px) rotate(-45deg);
		font-size: 3em;
		font-weight: 900;
		background-color: rgba(255, 255, 255, 0);
	}

	.topbar_inner h5 {
		margin-bottom: 5px;
	}

	.inner_2 {
		margin-left: 20px;
	}

	.inner_2 > form > label {
		-ms-transform: translate(0px, -20px);
		-webkit-transform: translate(0px, -20px);
		transform: translate(0px, -20px);
	}

	.navbar-levelup .navbar-nav > li > a {
		color: #fff;
	}

	.nav.navbar-nav > li {
		display: block;
		-webkit-justify-content: center;
		align-items: center;
		white-space: nowrap;
		text-align: left;
	}

	.nav.navbar-nav > li > a:hover, .nav.navbar-nav > li.open > a {
		background-color: #4a9e3e;
		color: #fff
	}

	.navbar-levelup .navbar-nav > .open > a,
	.navbar-levelup .navbar-nav > .open > a:hover,
	.navbar-levelup .navbar-nav > .open > a:focus {
		background-color: #4a9e3e;
		color: #fafafa;
	}

	.nav.navbar-nav > li > ul {
		background-color: #4a9e3e;
		color: #fafafa;
	}

	.nav.navbar-nav > li.open > ul,
	.nav.navbar-nav > li.open > ul:hover,
	.nav.navbar-nav > li.open > ul:active {
		background-color: #4a9e3e;
		color: #fafafa;
	}

	.nav.navbar-nav > li > ul > li > a,
	.nav.navbar-nav > li > ul > li > a:hover,
	.nav.navbar-nav > li > ul > li > a:active
	.nav.navbar-nav > li.open > ul > li > a,
	.nav.navbar-nav > li.open > ul > li > a:hover,
	.nav.navbar-nav > li.open > ul > li > a:active {
		color: #fafafa;
	}

	.nav.navbar-nav > li > ul > li {
		padding: 7px 10px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.44);
		margin-left: 10px;
		margin-right: 5px;
		margin-right: 10px;
	}

	.nav.navbar-nav > li > ul > li:last-child {
		border-bottom: 0px solid rgba(255, 255, 255, 0.44);
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#logo_container {
		max-width: 40%;
	}
}

.navbar {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
	background-color: white;
}

.navbar-wrapper {
    position: static;
}

@media (min-width: 768px) {
	.center_line {
		margin-left: auto;
		margin-right: auto;
		display: inline-block;
	}
}


input.search-field {
    border: 1px solid #5abc4b;
    background: rgba(0, 0, 0, 0);
	color: #5abc4b;
}


@media (max-width: 767px) {
	.inner_1 {
		display: none;
	}

	.search-submit {
		-webkit-transform: translate(0px, 5px) rotate(-45deg);
		-moz-transform: translate(0px, 5px) rotate(-45deg);
		-o-transform: translate(0px, 5px) rotate(-45deg);
		font-size: 2em;
		font-weight: 900;
		background-color: rgba(255, 255, 255, 0);
	}

	.nav.navbar-nav {
		background-color: #fff;
		color: #5abc4b;
	}
}

.tickerbox {
	display: block;
}


.owl-carousel .tickerbox > img {
    max-height: 200px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.owl-carousel .tickerbox .img_overlay {
	position: absolute;
}

.image_holder {
	position: relative;
    width: 90%;
    height: 200px;
    margin: 5%;
    vertical-align: middle;
    text-align: center;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.img_container {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.img_container > .inner {
    position: relative;
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    line-height: 1.6;
    text-align: center;
}

.img_container > .inner > span {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
    background-color: #5abc4b;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

span.hinta {
	color: white;
	font-weight: 700;
    font-size: 1.1em;
}

span.oldprice {
	text-decoration: line-through;
	font-weight: 100;
}

div.outer_text {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

div.owl_button {
    height: 200px;
    line-height: 250px;
}

.owl_container {
	/* padding-top: 50px; */
	padding-top: 0px;
	padding-bottom: 50px;
}

.whitebox_bg {
    background-position: 50% 50%;
    background-size: cover;
}

.whitebox {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 40px 0px;
    padding: 20px;
}

.whitebox h1,
.whitebox h2,
.whitebox h3,
.whitebox h4,
.whitebox h5,
.whitebox h6 {
    font-weight: 700;
}

.whitebox a {
    color: #000000;
    font-weight: 900;
}

.whitebox hr {
	max-width: 100px;
	border-top: 2px solid  #5abc4b;
	margin-left: 0;
}

hr.hansahr  {
	max-width: 100px;
	border-top: 2px solid  #5abc4b;
}

footer hr.hansahr  {
	max-width: 100px;
	border-top: 2px solid  #fff;
	margin-left: 0px;
}

ul.rss-aggregator {
	padding-left: 0px;
}

.rss-aggregator li {
	list-style-type: none;
	color: #5abc4b;
	min-height: 50px;
}

.rss-aggregator li.feed-item > a {
	position: absolute;
	margin-top: 20px;
}

.styledlist ul {
	list-style: none;
	padding: 0;
}
.styledlist li {
	padding-left: 1.3em;
}
.styledlist li:before {
	content: "\f046"; /* FontAwesome Unicode */
	font-family: FontAwesome;
	display: inline-block;
	margin-left: -1.3em; /* same as padding-left set on li */
	width: 1.3em; /* same as padding-left set on li */
	color: #5abc4b;
}

footer {
    padding: 30px 0px 30px 0px;
}

footer p {
	display: inline-block;
	margin-right: 20px;
	float: left;
}

footer a {
	color: #fff;
	opacity: 1;
}

footer a:hover {
	color: #fff;
	opacity: 0.5;
}

.copyright_box {
	background-color: #3c3c3c;
}

.copyright_container,
.copyright_container a,
.copyright_container p {
	color: #fff;
	text-align: center;
    margin: 10px 0px;
}

.footer_logo_image {
    max-width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.pink_img_box {
	padding: 30px 0px;
	text-align: center;
    background-size: cover;
    background-position: 50% 50%;
    margin-bottom: 20px;
}

.tablepress .column-2 {
	text-align: right;
}

.pink .tablepress tfoot th, .tablepress thead th {
    background-color: #fdf6f0;
}

.pink .tablepress .odd td {
    background-color: #fcf0e9;
	color: #e89072;
}

.tablepress .row-hover tr.even:hover td {
    background-color: inherit;
}

.tablepress .row-hover tr.odd:hover td {
    background-color: #e89072;
	color: #fff;
   font-weight: 500;
}

.pink h1,
.pink h2,
.pink h3,
.pink h4,
.pink h5,
.pink h6 {
	color: #e89072;
}

.h_white h1,
.h_white h2,
.h_white h3,
.h_white h4,
.h_white h5,
.h_white h6 {
	color: #fff;
    text-shadow: 1px 1px 0px black;
}

.pink_box {
	background-color: #e89072;
}

.book_time h1,
.book_time h2,
.book_time h3,
.book_time h4,
.book_time h5,
.book_time h6 {
	display: inline-block;
	color: white;
}

.book_button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
	background-color: rgba(255,255,255,0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
	border: 1px solid white;
	color: white;
	text-align: center;
}

@media (min-width: 993px) {
	.book_button {
		margin-left: 20px;
	}
}

@media (max-width: 767px) {
	.navigation {
		height: 0px;
	}
}

.book_button > i {
	color: white;
}

.book_button:hover {
	background-color: rgba(255,255,255,0.1);
	opacity: 1;
	color: white;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.book_time {
	text-align: center;
	padding: 30px 0px;
}

.pink_container {
	margin-bottom: 20px;
}

.owl_button .btn {
	padding: 0px 0px;
}

.thumb-wrapper {
    width: 269px;
    max-width: 100%;
    height: auto;
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    margin: auto;
}

.base {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

.img_center {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.thumb-wrapper {
		padding-bottom: 30px;
	}

	.people_title {
		padding-bottom: 30px;
	}
}

.people_title {
	padding-bottom: 30px;
	display: block;
}

.tablepress thead th,
.tablepress tbody td,
.tablepress tfoot th {
    border-top: 0px solid #ddd;
    border-bottom: 0px solid #ddd;
}

.tablepress .odd td {
	color: #f2c3a7;
}

.navbar-levelup .navbar-nav > li > a {
    text-transform: none;
}

div.topbar_inner.inner_1 {
	text-align: right;
}

.element .styledlist ul {
    list-style: none;
    margin: 0 0 18px 18px;
    text-align: left;
    padding: 0 0 0 10px;
}

.element .styledlist ul > li:before {
	font-family: 'FontAwesome';
	content: '\f00c';
	margin:0 5px 0 -15px;
	color: #828282;
}
/*
.search_fontawesome {
    position: absolute;
    transform: translateY(-52px);
    margin-left: 190px;
}
*/

.search_fontawesome {
    position: absolute;
    transform: translateY(-52px);
	-ms-transform: translateY(-52px);
	-webkit-transform: translateY(-52px);
	-moz-transform: translateY(-52px);
	-o-transform: translateY(-52px);
    margin-left: 185px;
	height: 30px;
	width: 30px;
	background-size: cover;
	opacity: 1;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.search_fontawesome:hover {
	opacity: 0.6;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

input.search-field {
    color: #000000;
}

@media (min-width: 768px) {
	.topbar_container {
		margin-right: 40px;
	}
}

@media (max-width: 767px) {
	.search_fontawesome {
		position: absolute;
		transform: translateY(0px);
		-ms-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-o-transform: translateY(0px);
		margin-left: 0px;
		height: 30px;
		width: 30px;
		background-size: cover;
		opacity: 1;
		-webkit-transition-duration: 0.2s;
		transition-duration: 0.2s;
		display:none;
	}

	input.search-field {
		margin-top: 5px;
	}
}

.btn-theme,
.btn-theme:hover {
	color: #fff;
}

form input[type=submit] {
	padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 1.1em;
	background-color: #5abc4b;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

form input[type=submit]:hover {
	padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 1.1em;
	background-color: #5abc4b;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	opacity: 0.8;
}

form[role=search] input[type=submit] {
	padding: initial;
    color: initial;
    font-weight: initial;
    font-size: initial;
	background-color: initial;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

form[role=search] input[type=submit]:hover {
	padding: initial;
    color: initial;
    font-weight: initial;
    font-size: initial;
	background-color: initial;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	opacity: 0.8;
}

.current-menu-item,
.current-menu-ancestor
{
	background-color: #4a9e3e;
	/*border-bottom: 3px solid #fff !important;*/
}

.rss-aggregator li.feed-item > a {
    position: relative;
	color: #212121;
}

@media (max-width: 767px) {
	.nav.navbar-nav > li {
		text-align: left;
	}
}

.current-menu-item, .current-menu-ancestor {
    background-color: inherit;
    /*background-color: #4a9e3e;*/
}

.menu-item > ul {
    z-index: 999;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 700;
}

@media (min-width: 768px) {
	div.navigation > div {
		/*height: 50px;*/
	}
	.navbar-nav > li > a
	{
		padding-top: 12px;
		padding-bottom: 10px;
	}
}

@media (max-width: 767px) {
	div.navigation > div {
		height: 0px;
	}
}

.navbar-nav {
	margin: 0px 15px;
}

.shop-btn,
.shop-btn:hover
{
	border-radius: 3px;
    border: solid 2px rgb(90, 188, 75);
    padding: .5em 1em;
    font-weight: bold;
    text-decoration: none;
}

/* Blogi 2017 */

a > .newsholder.sticky-news {
    width: 100%;
    float: left;
	padding: 20px 10px;
    color: #fafafa;
    background: #5abc4b;
    /*background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #5abc4b);*/
    /*background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #5abc4b);*/
    /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #5abc4b);*/
    /*background: linear-gradient(to bottom, #5abc4b, #2a5d22);*/
    /*background: linear-gradient(to bottom, #aadda2, #5abc4b);*/
    margin: 20px 0px 10px 0px;
    -webkit-transition: backg 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

a > .newsholder {
    width: 100%;
    float: left;
	padding: 20px 10px 20px;
    background: #fff;
    /*background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f5f5);*/
    /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f5f5);*/
    margin: 0px 0px 10px 0px;
    -webkit-transition: backg 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
	border-bottom: 3px #5abc4b solid;
}

.newsholder.sticky-news .newslink::before{
	font-family: fontawesome;
	content: "\f005";
	display: inline-block;
	position: absolute;
	font-size: 24px;
    left: -20px;
}

@media screen and (max-width: 767px) {
	.newsholder.sticky-news .newslink::before{
		font-size: 16px;
	    left: -5px;
	}
}

.showmore {
	padding: 14px 40px;
	border: 1px #5abc4b solid;
	background-color: transparent;
	display: inline-block;
	font-weight: 700;
}

.showmore.white {
	border: 1px #fff solid;
	color: #fff;
}

.white, h1.white {
	color:#fff;
}

.blog-container {
	padding-bottom: 40px;
}

a > .news-blog {
	border-bottom: none;
}

.news-blog .newswrapper {
	padding-left: 0;
	padding-right: 0;
}

.blog-image {
	padding-left: 0;
	padding-right: 0;
}

.blog-image img {
	max-width: 100%;
}

.greenbox {
	width: 100%;
	height: 150px;
	background-color: #5abc4b;
}

.newslink {
	margin-top:0;
}

@media screen and (min-width: 992px) {
	.flex {
		display:flex;
	}
}

@media screen and (max-width: 767px) {
	.newslink, .newstext {
		text-align: left;
	    margin-left: auto;
		margin-right: auto;
		display: block;
		hyphens: auto;
	}

	.newsimg {
		height: 200px;
		background-size: cover;
		width: 100%;
		background-position: center center;
		max-width: 300px;
	}
}

.link-news {
	display: block;
	margin-top: 8px;
}

.newsdate {
	color: #5abc4b;
	margin-bottom: 10px;
}

.newsholder.sticky-news h3, .newsholder.sticky-news .newstext, .newsholder.sticky-news .newsdate {
	color: #fff;
}

/*.page-template-home .banner h1 {
	color: #fff;
}*/

.banner {
	padding-bottom: 40px;
}
