/*
Theme Name: UN Women
Author: Aubergine 262
Author URI: https://aubergine262.com/
Description: A custom theme for UN Women
Version: 2.0
*/



/**
 * --------------------------------------------------------------------------------------------------------------------
 * Reset, headings, general defaults
 * @see http://git.io/normalize
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Reset and default heading tags  */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	outline: none !important;
}

::-moz-selection {
	background: #00a0dd;
	color: #fff;
}
::selection {
	background: #00a0dd;
	color: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

article {
	margin-top: 20px;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
body,
button,
input,
select,
textarea {
	font-family: tahoma, verdana, "sans-serif";
}

body {
	color: #4D4D4D;
	line-height: 1.5;
	margin: 0;
	font-size: 18px;
	font-family: 'Alergia Regular',sans-serif;
	overflow-x: hidden;
}

#page {
	max-width: 1700px;
	margin: 0 auto;
}

a {
	color: #00a0dd;
	text-decoration: none;
}

a:focus {
	outline: none;
}

a:active,
a:hover {
	color: #00a0dd;
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'Alergia Bold',sans-serif;
	line-height: 1;
	padding: 0;
	text-transform: uppercase;
	font-weight: normal;
}

h1 {
	font-size: 55px;
	margin: 0;
}

h2 {
	font-size: 55px;
	margin: 0;
}

h3 {
	font-size: 35px;
	margin: 0;
}

h4 {
	font-size: 30px;
	margin: 0;
}

h5 {
	font-size: 25px;
	margin: 0;
}

h6 {
	font-size: 20px;
	margin: 0;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-family: 'Alergia SemiBold';
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

p {
	margin: 0 0 25px;
}
p:last-child {
	margin-bottom: 0;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-style: italic;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-weight: 600;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 40px;
}

ul {
	list-style-type: circle;
}

nav ul,
nav ol {
	list-style: none;
}

li > ul,
li > ol {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	outline: 0;
}

embed,
iframe,
object,
video {
	max-width: 100%;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

form {
	margin: 0;
}

button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

table {
	border-bottom: 1px solid #00a0dd;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 20px;
	width: 100%;
}


th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-bottom: 1px solid #ededed;
	padding: 5px 10px 5px 0;
}

del {
	color: #333;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

hr {
	background: url(images/dotted-line.png) repeat center top;
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}

.screen-reader-text{
	display: none;
}
@media only screen and (max-width: 1000px){
	body, p {
		font-size: 18px;
	}
	h3 {
		font-size: 24px;
	}
}
/*#endregion*/


/**
 * --------------------------------------------------------------------------------------------------------------------
 * Form fields, and general form classes checkbox, radio
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region  Form fields, and general form classes  */
button,
input,
textarea {
	border: 1px solid #00a0dd;
	font-family: inherit;
}
input,
textarea{
	padding: 12px 10px 11px;
}
input[type="checkbox"],
input[type="radio"]{
	padding: 0;
}

/* Fix the autofill bug where it changes the line height */
input:-webkit-autofill{
	line-height: 1.4;
}

button:focus,
input:focus,
textarea:focus {
	outline: 0;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: none;
	background-color: #00a0dd;
	border: none;
	border-radius: 0;
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	line-height: 1;
	font: inherit;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #00a0dd;
	color: #ddd;
	outline: none;
	text-decoration: none;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}

:-moz-placeholder {
	color: #7d7b6d;
}

::-moz-placeholder {
	color: #7d7b6d;
}

:-ms-input-placeholder {
	color: #7d7b6d;
}

/* Styled checkboxes */
input.fancy-chk  {
	background: transparent;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	position: relative;
}
input.fancy-chk:after {
	font: normal normal normal 18px/1 FontAwesome;
	color: #00a0dd;
	content: "\f096";
	position: absolute;
	top: -1px;
	left: -1px;
}
input.fancy-chk:checked:after {
	font: normal normal normal 18px/1 FontAwesome;
	color: #00a0dd;
	content: "\f046";
	position: absolute;
	top: -1px;
	left: -1px;
}
input.fancy-rdo  {
	background: transparent;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	position: relative;
}
input.fancy-rdo:after {
	font: normal normal normal 18px/1 FontAwesome;
	color: #00a0dd;
	content: "\f10c";
	position: absolute;
	top: -1px;
	left: -1px;
}
input.fancy-rdo:checked:after {
	font: normal normal normal 18px/1 FontAwesome;
	color: #00a0dd;
	content: "\f05d";
	position: absolute;
	top: -1px;
	left: -1px;
}
/*#endregion*/


/**
 * --------------------------------------------------------------------------------------------------------------------
 * WP embeds - images alignment and gallery
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Images Alignment for wp embeds  */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

/* Style wp gallery */
.gallery{
	margin-bottom: 15px;
}
.gallery:after{
	content: "";
	clear: both;
	display: table;
}
.gallery-item{
	float: left;
	width: 100%;
}
.gallery-item img{
	max-width: 100%;
	border: solid 1px #00a0dd;
}
.gallery-columns-1 .gallery-item{
	width: 98%;
	margin: 0 auto 10px;
}
.gallery-columns-2 .gallery-item{
	width: 49%;
	margin: 0 1% 10px 0;
}
.gallery-columns-3 .gallery-item{
	width: 32%;
	margin: 0 1% 10px 0;
}
.gallery-columns-4 .gallery-item{
	width: 23%;
	margin: 0 2% 10px 0;
}
.gallery-columns-5 .gallery-item{
	width: 18%;
	margin: 0 2% 10px 0;
}
.gallery-columns-6 .gallery-item{
	width: 14%;
	margin: 0 2% 10px 0;
}
.gallery-columns-7 .gallery-item{
	width: 12%;
	margin: 0 2% 10px 0;
}
.gallery-columns-8 .gallery-item{
	width: 10%;
	margin: 0 2% 10px 0;
}
.gallery-columns-9 .gallery-item{
	width: 8%;
	margin: 0 2% 10px 0;
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Content Colours and List Styles
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Content Colours and List Styles  */
/* Lists */
#main ol{
	counter-reset: ol-counter;
	list-style-type: none;
	padding: 0 0 0 22px;
}
#main ol li{
	position: relative;
	margin-bottom: 10px;
}
#main ol li:last-child{
	margin-bottom: 0;
}
#main .inner-content ol li:before {
	content: counter(ol-counter) '.';
	counter-increment: ol-counter;
	position: absolute;
	top: 0;
	left: -18px;
	color: #00a0dd;
	font-weight: 400;
}
#main ul{
	list-style-type: none;
	padding: 0 0 0 22px;
}
#main ul li {
	position: relative;
	margin-bottom: 10px;
}
#main ul li:last-child{
	margin-bottom: 0;
}
#main .inner-content ul li:before {
	content: '';
	width: 12px;
	height: 12px;
	display: block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #00a0dd;
	top: 8px;
	left: -18px;
	position: absolute;
}
#main .content-align-center .inner-content ul li {
    display: inline-block;
    clear: both;
    width: auto;
}


/* Errors */
.notice {
	background: #fff;
	border-left: 4px solid #4752ff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
	margin: 6px 15px 7px 0;
	padding: 6px 12px 5px;
}
.notice-success {
	border-left-color: #46b450;
}
.notice-error {
	border-left-color: #b4322f;
}

/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Columns and layouts
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Columns and layouts */
/* Main content width */
.site-width{
	max-width:1280px;
	margin:0 auto;
	width: 95%;
}
.content-width-half {
	width:47.5%;
	max-width: 640px;
}
.clear{
	clear: both;
	width:100%;
	display: block;
}

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

.right{
	float: right;
	width:50%;
}

.one-third {
	width: 30%;
}

.two-third {
	width: 70%;
}

/* Half content */
.text-half {
	padding-top: 20px;
	padding-bottom: 20px;
}
.left.text-half.content-width-half{
	float:right;
	padding-right: 2.5%;
}
.right.text-half.content-width-half{
	float:left;
	padding-left: 2.5%;
}

@media screen and (max-width: 1360px) {
	.left.text-half.content-width-half{
		float:left;
		padding-left: 2.5%;
	}
	.right.text-half.content-width-half{
		float:right;
		padding-right: 2.5%;
	}
}
@media screen and (max-width: 600px) {
	.left, .right {
		width: 100%;
	}
}

/* Basic Columns - 2,3,4,5 */
.columns-1,
.columns-2,
.columns-3,
.columns-4,
.columns-5{
	position: relative;
}
.columns-1:after,
.columns-2:after,
.columns-3:after,
.columns-4:after,
.columns-5:after{
	content: "";
	clear: both;
	display: table;
}
.columns-1 .item,
.columns-2 .item,
.columns-3 .item,
.columns-4 .item,
.columns-5 .item{
	float: left;
	display: block;
}
/*1*/
.columns-1 .item{
	width: 98%;
	margin: 0 auto 10px;
}
/*2*/
.columns-2 .item{
	width: 49%;
	margin: 0 2% 2% 0;
}
.columns-2 .item:nth-child(2n){
	margin-right: 0;
}
/*3*/
.columns-3 .item{
	width: 32%;
	margin: 0 2% 2% 0;
}
.columns-3 .item:nth-child(3n){
	margin-right: 0;
}
/*4*/
.columns-4 .item{
	width: 23.5%;
	margin: 0 2% 2% 0;
}
.columns-4 .item:nth-child(4n){
	margin-right: 0;
}
/*5*/
.columns-5 .item{
	width: 18.4%;
	margin: 0 2% 2% 0;
}
.columns-5 .item:nth-child(5n){
	margin-right: 0;
}

@media screen and (max-width: 1000px) {
	/* All columns into 3 column mode */
	/*4*/
	.columns-4 .item{
		width: 32%;
		margin: 0 2% 2% 0;
	}
	.columns-4 .item:nth-child(4n){
		margin-right: 2%;
	}
	.columns-4 .item:nth-child(3n){
		margin-right: 0;
	}
	/*5*/
	.columns-5 .item{
		width: 32%;
		margin: 0 2% 2% 0;
	}
	.columns-5 .item:nth-child(5n){
		margin-right: 2%;
	}
	.columns-5 .item:nth-child(3n){
		margin-right: 0;
	}
}
@media screen and (max-width: 850px) {
	/* All columns into 2 column mode */
	/*3*/
	.columns-3 .item{
		width: 49%;
		margin: 0 2% 25px 0;
	}
	.columns-3 .item:nth-child(3n){
		margin-right: 2%;
	}
	.columns-3 .item:nth-child(2n){
		margin-right: 0;
	}
	/*4*/
	.columns-4 .item{
		width: 49%;
		margin: 0 2% 2% 0;
	}
	.columns-4 .item:nth-child(4n){
		margin-right: 2%;
	}
	.columns-4 .item:nth-child(3n){
		margin-right: 2%;
	}
	.columns-4 .item:nth-child(2n){
		margin-right: 0;
	}
	/*5*/
	.columns-5 .item{
		width: 49%;
		margin: 0 2% 10px 0;
	}
	.columns-5 .item:nth-child(5n){
		margin-right: 2%;
	}
	.columns-5 .item:nth-child(3n){
		margin-right: 2%;
	}
	.columns-5 .item:nth-child(2n){
		margin-right: 0;
	}
}
@media screen and (max-width: 550px) {
	/* All columns into 1 column mode */

	/*2*/
	.columns-2 .item{
		width: 98%;
		margin: 0 2% 2% 0;
	}
	.columns-2 .item:nth-child(2n){
		margin-right: 2%;
	}
	/*3*/
	.columns-3 .item{
		width: 98%;
		margin: 0px 0px 25px 0px;
	}
	.columns-3 .item:last-child {
		margin: 0px;
	}
	/*4*/
	.columns-4 .item{
		width: 98%;
		margin: 0px 0px 25px 0px;
	}
	.columns-4 .item:last-child {
		margin: 0px;
	}
	/*5*/
	.columns-5 .item{
		width: 98%;
		margin: 0 2% 10px 0;
	}
	.columns-5 .item:nth-child(5n){
		margin-right: 2%;
	}
	.columns-5 .item:nth-child(3n){
		margin-right: 2%;
	}
	.columns-5 .item:nth-child(2n){
		margin-right: 2%;
	}
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Header - logo, nav, super-header
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Main Navigation, hamburger*/
#masthead .left{
	width: 220px;
}
#masthead .right{
	width: calc(100% - 230px);
	text-align: right;
}
.site-logo{
	width: 100%;
	display: inline-block;
	margin-top: 20px;
}
.site-logo img{
	width: 100%
}
#super-header{
	display: inline-block;
	width: 100%;
	text-align: right;
}
#super-header .head-donate-button{
	display: inline-block;
}
#super-header .head-donate-button a {
	background-image: url(images/Become-a-doner-top-nav.svg);
	background-repeat: no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	color: #fff;
	padding: 10px 20px 20px 60px;
	display: block;
	font-weight: 600;
	-webkit-transition: background-image 300ms;
	-moz-transition: background-image 300ms;
	-ms-transition: background-image 300ms;
	-o-transition: background-image 300ms;
	transition: background-image 300ms;
	font-size: 15px;
}
#super-header .head-donate-button a:hover{
	text-decoration: none;
	background-image: url(images/Become-a-doner-top-nav-blue.svg);
	-webkit-transition: background-image 300ms;
	-moz-transition: background-image 300ms;
	-ms-transition: background-image 300ms;
	-o-transition: background-image 300ms;
	transition: background-image 300ms;

}
#super-header .head-social{
	display: inline-block;
}
#super-header .head-social > div{
	display: inline-block;
	padding: 5px;
}
#super-header .head-social > div a{
	color: #d80052;
	padding: 5px;
	-webkit-transition: color 300ms;
	-moz-transition: color 300ms;
	-ms-transition: color 300ms;
	-o-transition: color 300ms;
	transition: color 300ms;
}
#super-header .head-social > div a:hover{
	color:#00a0dd;
	padding: 5px;
	-webkit-transition: color 300ms;
	-moz-transition: color 300ms;
	-ms-transition: color 300ms;
	-o-transition: color 300ms;
	transition: color 300ms;
}
#navbar{
	display: inline-block;
	width: 100%;
	margin-top: 12px;
}
#navbar a:hover {
    text-decoration: none;
}
#navbar #primary-menu{
	margin: 0;
	padding: 0;
}
#navbar li.draw-a-line > a, #navbar li.draw-a-line.current-menu-item > a {
	color: #e15127;
}
#navbar #primary-menu > li{
	display: inline-block;
	margin-right: 4%;
	position: relative;
}
#navbar #primary-menu > li:last-child{
	margin-right: 0;
}
#navbar #primary-menu > li a{
	padding: 3px 5px;
	font-family: 'BUKA','Alergia Regular',sans-serif;
	font-size: 43px;
	-webkit-transition: color 300ms;
	-moz-transition: color 300ms;
	-ms-transition: color 300ms;
	-o-transition: color 300ms;
	transition: color 300ms;
	text-align: left;
}
#navbar li.current-menu-item > a {
    color: #d80052;
}
#navbar li > a:hover{
	color: #d80052;
	-webkit-transition: color 300ms;
	-moz-transition: color 300ms;
	-ms-transition: color 300ms;
	-o-transition: color 300ms;
	transition: color 300ms;
}
/** Navigation Sub Menu **/
#navbar ul.sub-menu {
	margin: 0;
	position: absolute;
	display: none;
	z-index: 9999999999;
	background: #fff;
	-webkit-box-shadow: 0 2px 6px -2px rgba(0,0,0,0.75);
	-moz-box-shadow: 	0 2px 6px -2px rgba(0,0,0,0.75);
	box-shadow: 		0 2px 6px -2px rgba(0,0,0,0.75);
	padding:0;
	top:55px;
	left:0px;
	min-width: 140px;
}
/* Show Sub Menu on hover */
#navbar li.menu-item-has-children:hover ul.sub-menu {
	display: block;
	padding:20px 0 0;
}
/* Sub Menu links */
#navbar ul.sub-menu li {
	margin: 0;
	width: 100%;
	line-height:1.8em;
	margin-bottom: 10px;
}
#navbar ul.sub-menu li a {
	width: 100%;
	padding: 10px 10px;
	display:block;
}
/* Mobile Navigation Burger */
.hamburger {
	display: none;
	float: right;
	cursor: pointer;
}
.hamburger .line {
	width: 50px;
	height: 5px;
	background-color: #00a0dd;
	display: block;
	margin: 8px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#hamburger-1.is-active .line:nth-child(1) {
	-webkit-transform: translateY(13px) rotate(45deg);
	-ms-transform: translateY(13px) rotate(45deg);
	-o-transform: translateY(13px) rotate(45deg);
	transform: translateY(13px) rotate(45deg);
}
#hamburger-1.is-active .line:nth-child(2) {
	opacity: 0;
}
#hamburger-1.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-13px) rotate(-45deg);
	-ms-transform: translateY(-13px) rotate(-45deg);
	-o-transform: translateY(-13px) rotate(-45deg);
	transform: translateY(-13px) rotate(-45deg);
}

@media only screen and (max-width: 1250px){
	#navbar #primary-menu > li{
		margin-right: 1%;
	}
}
@media only screen and (max-width: 1060px){
	#masthead .left{
		width: 190px;
	}
	#masthead .right{
		width: calc(100% - 200px);
		text-align: right;
	}
	#navbar #primary-menu > li a{
		font-size: 39px;
	}
	.site-logo {
		margin-top: 30px;
	}
}
@media only screen and (max-width: 970px){
	.hamburger {
		display: block;
		margin-top: 10px;
		margin-bottom: 5px;
	}
	#masthead .right{
		text-align: center;
	}

	#navbar {
		display:none;
		clear: both;
	}
	#navbar ul {
		padding:0;
	}
	#navbar li {
		width: 100%;
	}
	#navbar a {
		padding: 10px;
		width:100%;
		display:block;
	}
	#navbar #primary-menu > li {
		padding: 0;
		display: block;
		width: 100%;
		margin-right: 0;
		border-bottom: 1px solid #33383F;
	}
	#navbar #primary-menu > li:last-child {
		border-bottom: none;
	}
	#navbar #primary-menu > li > a {
		padding: 15px 20px;
		width:100%;
		display:block;
	}
	.menu-item-has-children > a:after {
		content: "\f107";
		font: normal normal normal 14px/1 FontAwesome;
		display: inline-block;
		margin-left: 15px;
		transition: all 0.25s ease-in-out;
	}
	.menu-item-has-children > a.children-visible:after {
		transform: rotate(-90deg);
	}
	#navbar li.menu-item-has-children:hover ul.sub-menu {
		display: none;
	}
	#navbar ul.sub-menu {
		position: inherit;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		top: 0px;
		left: 2.5%;
	}
	#navbar ul.sub-menu li a {
		padding-left:30px;
	}
}
@media only screen and (max-width: 740px){
	.hamburger {
		display: block;
		margin-top: 0px;
	}
	#super-header .head-social {
		display: block;
	}
	#navbar {
		width: calc(100% + 200px);
		margin-top: 30px;
		margin-left: -200px;
	}
	.site-logo {
		margin-top: 55px;
	}
}
@media only screen and (max-width: 615px){
	#super-header .head-donate-button a{
		font-size: 16px;
	}
}
@media only screen and (max-width: 550px){
	#super-header .head-donate-button a {
		font-size: 11px;
		padding: 5px 15px 15px;
	}
	.site-logo {
		margin-top: 43px;
	}
}
@media only screen and (max-width: 404px) {
	.site-logo {
		margin-top: 59px;
	}
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * All Page Builders, Styles used by several row types
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region All PageBuilders */
.page-row,
.page-row-inner{
	width: 100%;
	display: block;
}
.page-row-remove-overlap {
    margin-top: 75px;
}
.page-row-mt{
	margin-top: 0;
}
.page-row-mb{
	margin-bottom: 0;
}
.page-row-pt{
	padding-top: 56px;
}
.page-row-pb{
	padding-bottom: 56px;
}
.page-row-rough-top,
.page-row-rough-bottom {
	position: relative;
}
.page-row-rough-top:before,
.page-row-rough-bottom:after {
	content: '';
	background-size: 100%;
	position: absolute;
	left: 0;
	right: 0;
	height: 25px;
}
.page-row-rough-top:before {
	bottom: 99%;
}
.page-row-rough-bottom:after {
	top: 99%;
}
.content-align-center{
	text-align: center;
}
.content-align-right{
	text-align: right;
}
.content-align-left{
	text-align: left;
}
.main-title{
	margin-bottom: 25px;
}
.main-title.Styled {
    font-family: "BUKA", sans-serif;
    font-size: 127px;
}
.archive-title,#reply-title{
	font-weight: 400;
	font-size: 17px;
	line-height: 23px;
}
.bold-title{
	margin-bottom: 26px;
	font-size: 26px;
	line-height: 36px;
	font-weight: 400;
}
.bold-body{
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
}
.btn-padding{
	padding: 4px 11px;
}
.lbl{
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.015em;
}
.lbl-lower{
	font-size: 12px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.015em;
}
.btn{
	font-size: 13.5px;
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
}
.row-buttons.button-align-center {
	text-align: center;
}
.row-buttons.button-align-left {
	text-align: left;
}
.row-buttons.button-align-right {
	text-align: right;
}
.row-buttons .builder_button{
	display: inline-block;
	margin: 30px 30px 0;
	background-repeat: no-repeat;
    text-decoration: none;
}
.row-buttons .builder_button:first-child {
	margin-left: 0;
}
.row-buttons .builder_button:last-child {
	margin-right: 0;
}
.builder_button.btn-style-Unstyled {
	padding: 15px 31px 22px 23px;
	font-size: 22px;
	font-family: 'Alergia Bold';
}
.builder_button.btn-style-Styled {
	padding: 16px 63px 31px 30px;
	font-size: 25px;
    color: #fff;
	font-family: 'Alergia Bold';
}
@media only screen and (max-width: 1400px) {
	.main-title.Styled {
		font-size: 90px;
	}
}
@media only screen and (max-width: 1000px) {
	.main-title.Styled {
		font-size: 64px;
	}
	.main-title.Unstyled {
		font-size: 28px;
	}
	.builder_button.btn-style-Styled,
	.builder_button.btn-style-Unstyled {
		font-size: 20px;
	}
}
@media only screen and (max-width: 600px) {
	.page-row-pt {
		padding-top: 40px;
	}
	.page-row-pb {
		padding-bottom: 40px;
	}
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: One Column
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region One Column */
.one-column-image{
	margin-bottom: 15px;
	max-height: 300px;
	width: auto;
}
.one-column-image img{
	max-height: 300px;
	width: auto;
}
.content-width-full{

}
.content-width-narrow{
	width: 60%;
}

@media screen and (max-width: 600px) {
	.content-width-narrow{
		width: 95%;
	}

}

/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: One Column Background Image
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region One Column Background Image */
.one-column-bg-image {
	background-position: center;
	background-size: cover;
}
.one-column-bg-image .site-width {
	position: relative;
}
.one-column-bg-image .one-column-copy {
	padding: 10px 10px;
	background-color: rgba(0,0,0,.6);
	color: #fff;
	max-width: 700px;
	margin: 250px auto 60px;
}
.one-column-bg-image .one-column-copy p {
	font-size: 36px;
	font-family: 'Corporative Sans Alt', sans-serif;
}
.one-column-bg-image .main-title.Unstyled {
	font-family: 'Alergia SemiBold', sans-serif;
	color: #fff;
	font-size: 55px;
	padding: 30px 50px 50px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-45%);
	-moz-transform: translateY(-45%);
	-ms-transform: translateY(-45%);
	-o-transform: translateY(-45%);
	transform: translateY(-45%);
}
@media only screen and (max-width: 1000px) {
	.one-column-bg-image .main-title.Unstyled {
		font-size: 28px;
	}
	.one-column-bg-image .one-column-copy p {
		font-size:22px;
	}
}
@media only screen and (max-width: 600px) {
	.one-column-bg-image .one-column-copy {
		margin-top: 100px;
	}
	.one-column-bg-image .main-title.Unstyled {
		padding: 30px 50px 58px;
	}
}

/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Slider + One Column
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Slider + One Column */
.slider-one-col-column {
	position: relative;
}
.slider-one-col-column .row-buttons .builder_button {
	margin-top: 0;
}
.slider-one-col-column .row-buttons .builder_button.btn-style-Styled {
	width: 420px;
	height: 108px;
	padding-top: 25px;
	max-width: 100%;
}
.slider-one-col-column .row-buttons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-70%);
	-moz-transform: translateY(-70%);
	-ms-transform: translateY(-70%);
	-o-transform: translateY(-70%);
	transform: translateY(-70%);
	z-index: 10;
}
.slider-one-col-column p {
	font-size: 26px;
}
.slide-item-contents {
	position: relative;
}
.slide-item-contents .main-title {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin-bottom: 0;
}
.slide-item {
	background-size: cover;
	background-position: center;
}
@media screen and (max-width: 1000px) {
	.slider-one-col-column p {
		font-size: 18px;
	}
}
@media screen and (max-width: 850px) {
	.slider-one-col-column .row-buttons a {
		width: 100%;
		font-family: 'BUKA';
		font-size: 50px;
		padding: 0px 0px 0px 0px;
		background-size: 300% !important;
		background-position: center;
	}
	.slider-one-col-column .row-buttons {
		position: relative;
		transform: unset;
	}
	.slider-one-col-column .row-buttons .builder_button.btn-style-Styled {
		width: 100%;
		height: auto;
		padding-top: 16px;
	}
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Two Column
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Two Column */

.two-column{

}
.left .two-col-site-width{
	padding-right: 10%;
}
.right .two-col-site-width{
	padding-left: 10%;
}
.two-column .main-title {
	text-align: center;
}
@media screen and (max-width: 600px) {
	.two-column .left,
	.two-column .right{
		float: none;
		width: 100%;
	}
	.left .two-col-site-width,
	.right .two-col-site-width{
		padding-right: 0;
		padding-left: 0;
	}
	.two-column .left{
		margin-bottom: 25px;
	}
}

/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Image/Video + Text (50/50)
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Image/Video + Text (50/50) */

.image-text-50-50 .main-title {
	font-size: 35px;
}
.image-text-50-50 .main-title.Styled {
	font-size: 127px;
}
.video-half  {
	position: relative;
	display: block;
}
.video-block{
	position: relative;
	display: block;
}
.video-frame  {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	display: block;
	overflow: hidden;
	text-align:center;
}
.video-frame iframe {
	display: block;
}

.video-yt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1000px) {
	.image-text-50-50 .main-title.Styled {
		font-size: 64px;
	}
}
@media screen and (max-width: 600px) {
	.image-text-50-50 .left,
	.image-text-50-50 .right{
		float: none;
		margin-top: 0 !important;
	}
	.image-text-50-50 .image-half, .image-text-50-50 .video-half {
		margin-bottom: 25px !important;
	}
	.image-text-50-50 .text-half{
		padding-top: 0px;
	}
	.video-text .left,
	.video-text .right{
		float: none;
		width: 100%;
		margin-top: 0 !important;
	}
	.video-text .video-half{
		margin-bottom: 25px !important;
	}
}

/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Image  + Text (1/3 / 2/3)
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Image  + Text (1/3 / 2/3) */
.image-text-13-23 .right.two-third {
	padding-left: 2.5%;
}
.image-text-13-23 .left.two-third {
	padding-right: 2.5%;
}
@media screen and (max-width: 600px) {
	.image-text-13-23 .left,
	.image-text-13-23 .right {
		float: none;
		margin-top: 0 !important;
	}
	.image-text-13-23 .image-text-main-image img {
		margin: 0 auto;
		display: block;
	}
}
/*#endregion */


/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Full Width Image + Overlay Text
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Full Width Image + Overlay Text */
.full-width-image-overlay-text {
	padding: 0px;
}
.full-width-image-overlay-text .overlay-text.left,
.full-width-image-overlay-text .overlay-text.right {
	width: 50%;
}
.full-width-image-overlay-text .right.overlay-text .content-width-half {
	width:100%;
	padding-left: 5%;
	padding-right: 2.5%;
	float:left;
}
.full-width-image-overlay-text .left.overlay-text .content-width-half {
	width:100%;
	padding-left: 2.5%;
	padding-right: 5%;
	float:right;
}
.full-width-image-overlay-text h3.subtitle {
	font-family: 'Corporative Sans Alt';
	text-transform: none;
	font-weight: normal;
	margin-bottom: 25px;
}
.full-width-image-overlay-text .overlay-text {
	margin: 0;
}
.full-width-image-overlay-text .full-width-image .image-text-main-image img {
	display: none;
}
@media only screen and (max-width: 600px){
	.full-width-image-overlay-text .overlay-text.left,
	.full-width-image-overlay-text .overlay-text.right {
		width: 100%;
	}
	.full-width-image-overlay-text .full-width-image .image-text-main-image img {
		display: block;
	}
	.full-width-image-overlay-text {
		background-image: unset !important;
	}
	.full-width-image-overlay-text .right.overlay-text .content-width-half,
	.full-width-image-overlay-text .left.overlay-text .content-width-half {
		padding-left: 2.5%;
		padding-right: 2.5%;
	}
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Contact form
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Contact form */
.contact-form form {
	display: block;
	max-width: 700px;
	margin: 0 auto;
}
.contact-form .form-row input,
.contact-form .form-row textarea {
	font-size: 20px;
	color: #4D4D4D;
	padding: 15px 25px;
	background-color: #fff;
	border-color: #fff;
}
.contact-form.bgWhite .form-row input,
.contact-form.bgWhite .form-row textarea {
	border-color: #00a0dd;
}
.contact-form .form-row input {
	display: block;
	width: 100%;
}
.contact-form .form-row textarea {
	display: block;
	width: 100%;
	max-height: 100px;
}
.contact-form .form-row {
	margin-bottom: 35px;
}
.contact-form .submit-row {
	text-align: right;
	margin-bottom: 0;
}
.contact-form .submit-row input[type=submit] {
	display: inline-block;
	background-color: transparent;
	width: auto;
	background-image: url(images/button-styled.php?hex=d80052);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 15px 31px 31px 23px;
	font-size: 25px;
	text-transform: uppercase;
	color: #fff;
}
.bgPink .contact-form .submit-row input[type=submit] {
	background-image: url(images/button-styled.php?hex=00a0dd);
	color: #fff;
}

@media screen and (max-width: 1000px) {
	.contact-form .submit-row input[type=submit] {
		font-size: 20px;
	}
	.contact-form .form-row input, .contact-form .form-row textarea {
		font-size: 18px;
	}
}
@media screen and (max-width: 600px) {
	.contact-form .form-row {
		margin-bottom: 20px;
	}
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: Icon + Text
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Icon + Text */
.icon-text h2.main-title {
	text-align: center;
	margin-bottom: 35px;
}
.icon-column-item {
	padding: 0 42px 0;
	text-align: center;
}
.icon-column-item a {
	display: block;
	text-decoration: none;
	position: relative;
}
.icon-column-item a:before {
	content: '';
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top;
	position: absolute;
	top: -60px;
	left: 15px;
	height: 100%;
	width: 100%;
	opacity: 0;
	-webkit-transition: linear .3s;
	-moz-transition: linear .3s;
	-ms-transition: linear .3s;
	-o-transition: linear .3s;
	transition: linear .3s;
}
.icon-column-item a:hover:before {
	opacity: 1;
}
.icon-column-item .icon-text-icon {
	margin-bottom: 55px;
}
.icon-column-item .icon-text-icon img {
	max-width: 80%;
	max-height: 120px;
}
.icon-text-text {
	font-family: 'Alergia SemiBold', sans-serif;
	line-height: 1.2;
}
@media screen and (max-width: 850px) {
	.icon-columns .icon-column-item {
		margin-bottom: 40px;
	}
	.icon-columns .icon-column-item .icon-text-icon {
		margin-bottom: 20px;
	}
	.icon-column-item a:before {
		top: -35px;
	}
}

/*#endregion*/




/**
 * --------------------------------------------------------------------------------------------------------------------
 * Page Builder: TPL
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region TPL */







/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Footer
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Footer */
.site-footer {
	padding: 80px 0 60px;
	clear: both;
}
.footer-col-1 {
	float: left;
	width: 13%;
	margin-right: 5%;
}
.footer-col-2 {
	float: left;
	width: 30%;
	margin-right: 5%;
}
.footer-col-3 {
	float: left;
	width: 16%;
	margin-right: 5%;
}
.footer-col-4 {
	float: right;
	width: 26%;
}
.aubergine-logo-footer{
	text-align: right;
}
.aubergine-logo-footer a{
	display: inline-block;
	width: 80px;
}
.aubergine-logo-footer a img{
	width: 100px;
	height: auto;
}
.footer-link a {
	display: block;
	text-decoration: none;
}
.footer-social {
	margin-top: 35px;
}
.footer-social .socials div {
	display: inline-block;
	margin-right: 14px;
}
.footer-social a {
	color: #4D4D4D;
	display: block;
	font-size: 40px;
}
.legal-page a {
	text-decoration: none;
	color: #4D4D4D;
}
@media screen and (max-width: 800px) {
	.footer-col-1 {
		margin-bottom: 25px;
		width: 29%;
		margin-right: 6%;
	}
	.footer-col-2 {
		margin-bottom: 25px;
		width: 65%;
		margin-right: 0;
	}
	.footer-col-3 {
		width: 29%;
		margin-right: 6%;
	}
	.footer-col-4 {
		width: 65%;
	}
}
@media screen and (max-width: 600px) {
	.footer-logo {
		max-width: 200px;
		display: block;
	}
	.footer-col-1,
	.footer-col-2,
	.footer-col-3,
	.footer-col-4 {
		width: 100%;
		margin-bottom: 25px;
		margin-right: 0%;
	}
	.site-footer {
		padding: 40px 0px 30px;
	}
}


/*#endregion*/


/**
 * --------------------------------------------------------------------------------------------------------------------
 * Stripe Donate Form
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Stripe Donate Form */
#loader {
	border: 5px solid #f3f3f3; /* Light grey */
	border-top: 5px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
	display: none;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#stripeDonateForm {
	width:100%;
	max-width:400px;
	margin: 0 auto;
}
#stripeDonateForm h4.donate-heading {
	padding:20px;
	text-align: center;
}
#stripeDonateForm .site-width {
	padding: 20px;
}
#stripeDonateForm #card-element {
	border: solid 1px #d80052;
	padding: 15px 15px;
}
#stripeDonateForm #card-submit {
	background-color: #fff;
	margin: 0 auto;
	display: block;
	font-size: 20px;
	margin-top: 20px;
}
#stripeDonateForm #card-amount {
	margin-left: 5px;
}
#stripeDonateForm .donate-amounts label {
	border: solid 1px #999;
	margin-right: 10px;
	padding: 5px;
	color: #d80052;
	border-color: #d80052;
}
#stripeDonateForm .donate-amounts input[type="radio"] {
	display: none;
}
#stripeDonateForm .donate-amounts input[type="radio"]:checked + label {
	background: #d80052;
	color: #fff;
}
/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Subscribe
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Subscribe */
.page-row.subscribe:not(.page-row-pt) {
	padding-top: 15px;
}
.page-row.subscribe:not(.page-row-pb) {
	padding-bottom: 15px;
}
.subscribe .main-title {
	margin-bottom: 0px;
	padding-top: 10px;
}
.subscribe .main-title.Styled {
	font-size: 78px;
}
.subscribe .subscribe-form-toggle {
	margin-top: -15px;
	cursor:pointer;
}
.subscribe .subscribe-form-toggle .fa {
	font-size: 40px;
}
.subscribe .subscribe-form-hidden {
	display: none;
}
@media only screen and (max-width: 1000px) {
	.subscribe .main-title.Styled {
		font-size: 64px;
	}
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Featured News
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Featured News */
.featured-news .news-items .news-item h3.news-item-text {
	margin: 25px 0px;
}
.featured-news .news-items .news-item a {
	display: inline-block;
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Team
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Team */
.team-strip .team-members .team-member-item {
	position: relative;
}
.team-strip .team-members .team-member-item h3.team-member-name {
	text-transform: none;
	margin: 25px 0px 10px 0px;
}
.team-strip .team-members .team-member-item h3.team-member-job-title {
	text-transform: none;
	font-family: 'Corporative Sans Alt';
}
.team-strip .team-members .team-member-item .volunteer-tag {
	position: absolute;
	right: 0px;
	top: -10px;
	padding: 5px 20px;
}
.team-strip .team-members .team-member-item .volunteer-tag {
	background-image: url(images/volunteer-label.php);
	background-size: 100% 100%;
	text-transform: uppercase;
	font-size: 16px;
	position: absolute;
	right: -5px;
	top: -20px;
	padding: 15px 25px 20px 25px;
	font-family: 'Alergia Black';
}
.team-strip .team-members.columns-3 {
	margin: 56px 0px;
}
@media screen and (max-width: 600px) {
	.team-strip .team-members.columns-3 {
		margin-bottom: 0px;
	}
	.team-strip .team-members.columns-3 .item:last-child {
		margin-bottom: 25px;
	}
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Downloads
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Downloads */
.downloads > div {
	display: flex;
	flex-wrap: wrap;
}
.downloads .text-half {
	padding-right: 2.5%;
	padding-left: 2.5%;
}
.downloads .left.text-half .content-width-half {
	width: 100%;
	float:right;
}
.downloads .right.text-half .content-width-half {
	width: 100%;
	float:left;
}
.downloads .right .main-title.Styled {
	font-size: 55px;
}
.downloads .right .main-title.Unstyled {
	font-size: 35px;
}
.downloads img.download-file-icon {
	width: 50px;
	margin-right: 20px;
	float:left;
}
.downloads a.download-file-link {
	text-decoration: underline;
	color: #4d4d4d;
	width:145px;
	float:left;
}
.downloads .download-files .download-file {
	margin-top: 25px;
}
.downloads .download-files .download-file-description {
	font-family: 'Alergia SemiBold';
}
.downloads .download-files .download-file .item {
	padding-right: 15%;
}
@media screen and (max-width: 1000px) {
	.downloads .right .main-title.Unstyled {
		font-size: 28px;
	}
}
@media screen and (max-width: 550px) {
	.downloads .download-files .download-file .item {
		padding-right: 0%;
	}
	.downloads .download-files .download-file .download-file-description {
		margin-top: 0px !important;
	}
	.downloads a.download-file-link {
		width: auto;
	}
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Blog archive
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Blog archive */
.all-posts {
	margin-top: 56px;
}
.post-picker-main-link{
	float: right;
	font-weight: bold;
	padding-right: 5px;
	position: relative;
	margin: 33px 115px 15px 0;
	font-size: 20px;
	line-height: 1;
}
.main-link-line {
	position: absolute;
	bottom: 3px;
	left: 100%;
	border-bottom: 1px solid #008738;
}
.post-picker-title {
	float: left;
}
.all-posts{

}

.post-wrapper{
	/*box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);*/
	/*transition:0.4s*/
}
.post-wrapper:hover{
	/*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
	/*transition:0.2s*/
}
.post-wrapper a{
	text-decoration: none;
}

.post-image{
	position: relative;
	overflow: hidden;
	border-bottom:3px solid #d80052;
	height: 220px;
}
.no-image .post-image{
	height: 50px;
}
.post-image img{
	width:100%;
	object-fit: cover;
	height: 100%;
}
.post-image .image-holder{
	display: block;
	height: 100%;
}

.post-image .hover{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 0;
	-webkit-transition: height 300ms;
	-moz-transition: 	height 300ms;
	-ms-transition: 	height 300ms;
	-o-transition: 		height 300ms;
	transition: 		height 300ms;
}
.post-image .hover .read-more{
	border: solid 2px #fff;
	color: #fff;
	padding: 5px 10px;
	width: 60%;
	margin-top: 71px;
	text-align: center;
	margin-left: 20%;
	font-weight: 600;
	opacity: 0;
	-webkit-transition: opacity 300ms;
	-moz-transition: 	opacity 300ms;
	-ms-transition: 	opacity 300ms;
	-o-transition: 		opacity 300ms;
	transition: 		opacity 300ms;
}
.post-wrapper:hover .post-image .hover{
	height: 100%;
	-webkit-transition: height 300ms;
	-moz-transition: 	height 300ms;
	-ms-transition: 	height 300ms;
	-o-transition: 		height 300ms;
	transition: 		height 300ms;
}
.post-wrapper:hover .post-image .hover .read-more{
	opacity: 1;
	-webkit-transition: opacity 300ms ease-in 200ms;
	-moz-transition: 	opacity 300ms ease-in 200ms;
	-ms-transition: 	opacity 300ms ease-in 200ms;
	-o-transition: 		opacity 300ms ease-in 200ms;
	transition: 		opacity 300ms ease-in 200ms;
}

.img-arrow{
	width:34px;
	text-align:center;
	color:#fff;
	font-size: 44px;
	line-height: 44px;
	padding: 0;
	position: absolute;
	bottom:0;
	left:86%;
	z-index: 200;
}
.img-arrow i{
	margin: auto;
}
.post-wrapper .post-title{
	font-size:25px;
	margin-top: 20px;
	color:#4d4d4d;
}
.post-content{
	color:#4d4d4d;
	padding:6px 0 12px;
}
@media screen and (max-width: 600px) {
	.all-posts {
		margin-top: 40px;
	}
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Archive post per page navigation
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Archive post per page navigation */

.post-archive-navigation{
	display: block;
	padding: 2px;
	text-align:center;
	height:60px;
	background-color: #F2F2F2;

}
.post-archive-navigation ul li{
	display: inline-block;
	padding:0 5px;
	font-weight: 600;
}
.post-archive-navigation ul li::before{
	display:none !important;
}
.post-archive-navigation ul .active a{
	color: #fff;
	padding: 2px;
	width: 31px;
	display: block;
	background-color: #4d4d4d;
	border-radius:50%;
}

/*#endregion*/

/**
 * --------------------------------------------------------------------------------------------------------------------
 * Woocommerce
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region Woocommerce */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #d80052;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #00a0dd;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #d80052;
}
.woocommerce h2 {
    font-size: 35px;
}
.woocommerce .content-area {
    max-width: 1280px;
    margin: 0 auto;
    width: 95%;
}
.woocommerce-checkout .woocommerce .woocommerce-message {
    display:none !important;
}
/*#endregion */

/**
 * --------------------------------------------------------------------------------------------------------------------
 * WPCharitable
 * --------------------------------------------------------------------------------------------------------------------
 **/
/*#region WPCharitable */
.donation-summary {
	margin-bottom: 20px;
	margin-left: 0px;
}
.charitable-header {
	margin-bottom: 15px;
}
.single-campaign .campaign-description {
	font-size: inherit;
	font-weight: normal;
}
.campaign-summary {
	display: none;
}
/*#endregion*/