/*!
Theme Name: Maslan
Theme URI: http://underscores.me/
Author: Tal-Shachar Gilboa
Author URI: https://tal-dev.co.il
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: maslan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Maslan is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap");

body {
	direction: ltr;
	text-align: left;
	margin: 0;
	padding: 0;
	font-family: "Assistant", sans-serif;
	color: #59565b;
	font-size: 20px;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
	--yellow: #f3c101;
	--light-blue: #54c1e3;
	--light-purple: #a955a4;
	--medium-purple: #5b4094;
	--deep-purple: #482664;
	--grey-border: 1px solid #e8f0f2;
}

h1,
h2,
h3,
h4 {
	color: var(--deep-purple);
	font-weight: bold;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 30px;
}

a {
	color: var(--deep-purple);
}

a:hover {
	color: var(--light-purple);
}

/*== General ==*/
.center {
	width: 95%;
	max-width: 1400px;
	margin: 0 auto;
}

.center-med {
	max-width: 900px;
}

.center.c-flex {
	display: flex;
}

.mobile {
	display: none;
}

.half {
	width: 50%;
}

.quart {
	width: 25%;
}

.text-center {
	text-align: center;
}

/*== Buttons ==*/
.btn {
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.4s;
	padding: 5px 20px;
	font-weight: bold;
}

.yellow-btn {
	border: 3px solid var(--yellow);
	background-color: var(--yellow);
	color: white;
}
.yellow-btn:hover {
	background: transparent;
	color: var(--yellow);
}

.deep-purple-btn {
	border: 3px solid var(--deep-purple);
	background-color: var(--deep-purple);
	color: white;
}
.deep-purple-btn:hover {
	background: transparent;
	color: var(--deep-purple);
}

.light-blue-btn {
	border: 3px solid var(--light-blue);
	background-color: var(--light-blue);
	color: white;
}
.light-blue-btn:hover {
	background: transparent;
	color: var(--light-blue);
}

.white-btn {
	border: 3px solid white;
	background-color: white;
	color: var(--medium-purple);
}
.white-btn:hover {
	background: transparent;
	color: white;
}

.read-more {
	position: relative;
	color: var(--deep-purple);
	border: 2px solid var(--deep-purple);
	font-weight: 500;
	padding: 3px 45px 5px 20px;
}

.read-more:after {
	content: "";
	position: absolute;
	top: 5px;
	right: 16px;
	width: 21px;
	height: 21px;
	background-image: url(images/arrow-p.svg);
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(180deg);
	transition: all 0.3s;
}

.read-more:hover:after {
	right: 6px;
}

/*== Animations ==*/
@media all and (min-width: 1025px) {
	.animation {
		opacity: 0;
		transition: all 0.8s;
	}

	.fade-up {
		transform: translateY(30px);
	}

	.fade-down {
		transform: translateY(-30px);
	}

	.slide-in {
		transform: translateX(-50px);
	}

	.revers-slide-in {
		transform: translateX(50px);
	}

	.animation.start-animation {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/*== Header ==*/
header {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	background: white;
	height: 110px;
	box-shadow: 0px 3px 6px #6a579117;
	transition: all 0.4s;
}

header .center {
	justify-content: space-between;
	border-right: var(--grey-border);
	height: 110px;
	transition: all 0.4s;
}

.main-logo {
	width: 130px;
	height: 160px;
	padding: 10px 20px;
	background: white;
	box-shadow: 0px 3px 31px #53063817;
	border-radius: 0px 0px 30px 30px;
	transition: all 0.4s;
}

.main-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.main-navigation {
	width: calc(100% - 500px);
	border-right: var(--grey-border);
	height: 110px;
	transition: all 0.4s;
}

.main-navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
}

.main-navigation a:not(.header-donation-btn) {
	text-decoration: none;
	color: var(--deep-purple);
	transition: all 0.4s;
}

.main-navigation a:not(.header-donation-btn):hover {
	color: var(--light-purple);
}

.top-nav,
.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50%;
	padding: 0 40px;
}

.top-nav {
	border-bottom: var(--grey-border);
}

.header-donation-btn {
	font-size: 18px;
}

.header-donation-btn i {
	margin-right: 5px;
	transform: translateY(2px);
}

ul.header-social-icons {
	margin: 0 0 0 auto;
}

.header-social-icons i {
	font-size: 21px;
	margin-left: 10px;
}

.header-lang-swicher a {
	font-size: 15px;
	margin-left: 14px;
}

.header-lang-swicher li.current-lang {
	display: none;
}

.main-menu-container {
	width: 100%;
}

#primary-menu {
	width: 100%;
	justify-content: space-between;
}

#primary-menu li a {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.5px;
}

.support-line {
	display: flex;
	align-items: center;
	padding: 0 20px;
	color: var(--deep-purple);
	white-space: nowrap;
}

.support-line img {
	width: 50px;
	margin-left: 15px;
}

.support-line_text {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-size: 14px;
}

.support-line_text span {
	position: relative;
	font-size: 20px;
	font-weight: 900;
	z-index: 1;
	white-space: nowrap;
}

.support-line_text span:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 8px;
	background: var(--yellow);
}

header .help-line-contnet,
.contact-page_help-line .help-line-contnet {
	display: none;
}

/* Sticky header */
@media all and (min-width: 600px) {
	header.sticky-header,
	header.sticky-header .center {
		height: 55px;
	}

	header.sticky-header .main-logo {
		width: 75px;
		height: 90px;
		padding: 5px 15px;
	}

	header.sticky-header .support-line {
		display: none;
	}

	header.sticky-header .main-navigation {
		width: calc(100% - 90px);
		display: flex;
		flex-direction: row-reverse;
		height: 55px;
	}

	header.sticky-header .top-nav,
	header.sticky-header .bottom-nav {
		height: 100%;
		padding: 0 20px;
	}

	header.sticky-header .top-nav {
		border-bottom: 0;
	}

	header.sticky-header .bottom-nav {
		width: calc(100% - 390px);
		border-right: var(--grey-border);
	}
}

/*== Sticky buttons ==*/
.sticky-buttons {
	position: fixed;
	z-index: 10;
	top: 130px;
	right: 0;
	direction: rtl;
}

body.home .sticky-buttons {
	top: 30vh;
}

.sticky-buttons a {
	display: flex;
	align-items: center;
	width: 100px;
	height: 75px;
	margin-bottom: 10px;
	margin-right: -10px;
	padding: 11px 21px 11px 17px;
	border-radius: 20px 0 0 20px;
	color: white;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	background-color: var(--medium-purple);
	box-shadow: 0px 0px 9px #1d4e4940;
	transition: all 0.4s;
}

.sticky-buttons a.bg-lightblue {
	background: var(--light-blue);
}

.sticky-buttons a:hover {
	margin-left: 0;
	margin-right: 0;
}

/*== Footer ==*/
.footer-navs {
	padding: 90px 0;
	background-image: url(images/footer-bg.svg);
	background-size: cover;
}

.footer-navs .quart:not(.footer-logo) {
	border-left: 3px solid var(--light-blue);
	padding-left: 20px;
}

.footer-navs h3 {
	font-size: 22px;
	margin: 0 0 15px;
}

.footer-navs ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-navs ul li {
	margin-bottom: 10px;
}

.footer-navs ul a {
	text-decoration: none;
	color: var(--deep-purple);
}

.footer-navs ul a:hover {
	color: var(--light-purple);
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 0 0 auto;
}

.footer-logo img {
	width: 90px;
}

.footer-social-icons {
	display: flex;
}

.footer-social-icons a {
	font-size: 30px;
	margin: 0 5px;
}

.copyright {
	justify-content: space-between;
	font-size: 14px;
	padding: 20px 0;
	box-shadow: 0px -3px 6px #6a57910a;
}

.copyright p {
	margin: 0;
}

.copyright a {
	display: inline-flex;
	text-decoration: none;
	color: var(--deep-purple);
}

.copyright a:hover {
	color: var(--light-purple);
}

.copyright a img {
	margin-left: 5px;
}

.copyright div:last-child a:last-child {
	padding-left: 15px;
	margin-left: 15px;
	border-left: 2px solid var(--deep-purple);
}

/*== Home page ==*/
.hp-title {
	margin-top: 110px;
	background: linear-gradient(to right, #e2e5ec, #f0f1f6);
	text-align: center;
}

.hp-title .center {
	align-items: center;
	height: 550px;
}

.hp-title h1 {
	margin-top: 0;
	font-size: 55px;
	color: var(--deep-purple);
	font-weight: 900;
}

.hp-title img {
	width: 90%;
	height: auto;
	max-height: 430px;
}

.hp-title_buttons {
	display: flex;
	justify-content: space-between;
}

.hp-title_buttons .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(33.33% - 10px);
	font-size: 18px;
	padding: 12px 0;
	box-shadow: 0px 3px 6px #00000029;
}

.hp-about {
	padding: 65px 0 85px;
}

.hp-about h2 {
	margin: 0 0 20px;
}

.hp-about .content {
	line-height: 32px;
	margin-bottom: 30px;
	padding-right: 90px;
}

.hp-about .read-more {
	margin-inline: 0 15px;
}

.hp-about .half,
.hp-about .quart {
	border-right: var(--grey-border);
}

.hp-about .quart {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 60px 0;
}

.hp-about .quart a {
	text-decoration: none;
}

.hp-about .quart img {
	width: 140px;
}

.hp-about .arrow-in-circle {
	position: relative;
	width: 35px;
	height: 35px;
	margin: 0 auto;
	border: 2px solid var(--deep-purple);
	border-radius: 30px;
}

.hp-about .arrow-in-circle:after {
	content: "";
	position: absolute;
	top: 8px;
	right: 12px;
	width: 12px;
	height: 12px;
	border-left: 2px solid var(--deep-purple);
	border-bottom: 2px solid var(--deep-purple);
	transform: rotate(225deg);
}

.hp-about .quart.color-light-blue a h3 {
	color: var(--light-blue);
}

.hp-about .quart.color-light-blue .arrow-in-circle,
.hp-about .quart.color-light-blue .arrow-in-circle:after {
	border-color: var(--light-blue);
}

.events {
	padding: 75px 0;
	background-image: url(images/events-bg.svg);
	background-size: cover;
}

.events h2 {
	text-align: center;
	margin: 0 0 60px 0;
}

.event-boxes {
	justify-content: space-around;
}

.event-box_item {
	width: calc(25% - 30px);
}

.event-box_item .image-box {
	position: relative;
	z-index: 2;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 100%;
	height: 250px;
}

.event-box_item .image-box:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: transparent linear-gradient(180deg, #23113100 0%, #231131 100%) 0% 0% no-repeat padding-box;
}

.event-box_item .image-box img {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-box_item .image-box .date {
	width: fit-content;
	padding: 0 10px;
	color: white;
	font-size: 14px;
	background: var(--light-blue);
	border-radius: 20px;
	margin: 0 20px 10px;
}

.event-box_item .image-box h3 {
	color: white;
	font-size: 18px;
	margin: 0 20px 20px;
}

.event-content {
	padding: 15px;
	font-size: 18px;
	color: var(--deep-purple);
}

.awards {
	padding: 50px 0;
	background-image: url(images/iturim-bg.svg);
	background-size: cover;
	color: white;
	font-weight: bold;
}

.awards .center {
	justify-content: space-between;
}

.awards-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 30px;
}

body:not(.rtl) .award-text {
	max-width: 250px;
}

.awards-item i {
	font-size: 30px;
	margin-bottom: 15px;
}

.awards-item:before,
.awards-item:after {
	content: "";
	position: absolute;
	right: 100%;
	width: 35px;
	height: 100px;
	background-image: url(images/leafs-left.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.awards-item:after {
	right: auto;
	left: 100%;
	background-image: url(images/leafs-right.svg);
}

.partners .center {
	padding: 60px 0;
}

.partner h2 {
	font-weight: 900;
	margin: 0 0 45px;
}

.partners img {
	max-width: 240px;
	height: 150px;
	object-fit: contain;
	object-position: center;
	padding: 20px 50px;
	border-left: var(--grey-border);
}

.partners-carusel {
	position: relative;
}

.partners-carusel .slick-list {
	overflow: hidden;
}

.carusel-prev,
.carusel-next {
	position: absolute;
	top: calc(50% - 20px);
	left: 100%;
	background: transparent;
	border: 0;
	font-size: 30px;
	color: var(--deep-purple);
}

.carusel-next {
	left: auto;
	right: 100%;
}

/*== Pages ==*/
.page-title {
	margin-top: 110px;
	padding: 70px 0;
	text-align: center;
	color: white;
	font-weight: 900;
}

.page-title h1 {
	color: white;
	font-weight: 900;
	margin: 0;
	letter-spacing: 0.5px;
}

.page-title.bg-purple {
	background: var(--deep-purple);
}
.page-title.bg-medium-purple {
	background: var(--medium-purple);
}
.page-title.bg-light-blue {
	background: var(--light-blue);
}
.page-title.bg-yellow {
	background: var(--yellow);
}

.breadcrumbs-container {
	padding: 10px 0;
	border-bottom: var(--grey-border);
}

#breadcrumbs {
	list-style: none;
	overflow: hidden;
	font-size: 14px;
	padding: 0;
}

#breadcrumbs li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

#breadcrumbs .separator {
	font-size: 18px;
	font-weight: 100;
	color: #ccc;
}

/*== About page ==*/
.about-maslan {
	padding: 50px 0;
}

.about-maslan_content {
	width: calc(60% - 50px);
	margin-right: 50px;
}

.about-maslan_content p {
	line-height: 30px;
}

.about-maslan_image {
	width: 40%;
	height: auto;
	object-fit: contain;
}

.vision-and-history {
	padding: 100px 0;
	background-image: url(images/vision-bg.svg);
	background-size: cover;
}

.vision-and-history .center {
	justify-content: space-between;
}

.vision-and-history .half {
	width: calc(50% - 105px);
}

.vision-and-history_title {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.vision-and-history_title img {
	margin-right: 15px;
}

.vision-and-history_title h2 {
	margin: 0;
}

/* Team section */
.team {
	padding: 95px 0;
	text-align: center;
}

.team h2 {
	margin: 0;
}

.team h3 {
	position: relative;
	z-index: 1;
	margin: 60px 0 30px;
	color: var(--light-purple);
}

.team h3 span {
	padding: 0 15px;
	background: white;
}

.team h3:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 1px;
	border-bottom: var(--grey-border);
}

.team h4 {
	font-size: 28px;
}

.team-group {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.team-item {
	width: calc(20% - 50px);
	margin: 20px 25px;
}

.team-item img.team-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top;
	border-radius: 50%;
	margin-bottom: 13px;
}

.team-name {
	font-size: 22px;
	font-weight: bold;
	color: var(--deep-purple);
}

.team-position {
	color: var(--light-purple);
}

.team-item a {
	display: block;
	text-decoration: none;
}

.team-position,
.team-item a {
	margin-top: 7px;
	font-size: 18px;
}

.association-documents {
	padding: 65px 0;
	background-image: url(images/iturim-bg.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.association-documents .center {
	justify-content: center;
}

.association-documents h3 {
	margin: 0 20px 0 0;
	color: white;
}

.association-documents .read-more {
	color: white;
	border-color: white;
	margin: 5px;
}

.association-documents .read-more:after {
	background-image: url(images/arrow-w-3.svg);
}

/*== Help page ==*/
.content-and-icon {
	padding: 40px 0;
}

.content-and-icon .center {
	width: fit-content;
	align-items: flex-start;
}

.content-and-icon img {
	width: 100px;
	height: auto;
	margin-top: 1.5rem;
	margin-right: 20px;
}

.help-line {
	padding: 70px 0;
	background: #f6f7fb;
}

.help-line .center {
	max-width: 1100px;
	align-items: center;
}

.help-line .support-line_text {
	font-size: 18px;
}

.help-line .support-line_text span {
	font-size: 30px;
}

.help-line .support-line img {
	width: 45px;
}

.help-line .support-line {
	padding: 0;
	margin-right: 75px;
}

.icon-boxes {
	justify-content: space-around;
	text-align: center;
	flex-wrap: wrap;
	padding: 65px 0;
}

.icon-box_item {
	max-width: 200px;
}

.icon-boxes.four_icons_per_row {
	max-width: 1100px;
}

.four_icons_per_row .icon-box_item {
	width: calc(25% - 70px);
	margin: 0 35px 60px;
}

.five_icons_per_row .icon-box_item {
	width: calc(20% - 70px);
	margin: 0 35px 60px;
}

.icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
	margin: 0 auto;
	border-radius: 50%;
	background: #f8f5ff;
}

.icon-container.icon-bg-blue {
	background: #f9fbfc;
}

.icon-container.icon-bg-yellow {
	background: #fcfaf1;
}

.icon-container img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.icon-box_item h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	margin: 15px 0;
	font-size: 22px;
}

.icon-box_content,
.icon-box_item a.icon-box_link {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 200px;
	margin: 0 auto;
	padding: 7px 0;
	border-top: var(--grey-border);
	text-decoration: none;
}

.icon-box_item a img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 15px;
}

/*== Shop page ==*/
.content-and-map {
	align-items: center;
	padding: 65px 0;
}

.shop-content {
	width: calc(45% - 100px);
	margin-right: 100px;
}

.shop-content h3 {
	margin-top: 0;
}

.content-and-map .google-map {
	width: 55%;
	height: 350px;
}

.shop-info {
	padding: 65px 0;
	background: var(--medium-purple);
}

.shop-info .center {
	justify-content: center;
	align-items: center;
}

.shop-info_content {
	padding: 0 30px;
	margin: 0 30px;
	border-left: 1px solid white;
	border-right: 1px solid white;
	color: white;
	text-align: center;
}

.shop-gallery {
	position: relative;
	line-height: 0;
	width: 100vw;
	overflow: hidden;
}

.shop-gallery img {
	height: 400px;
}

.shop-gallery a {
	display: inline-block;
}

.sg-prev,
.sg-next {
	position: absolute;
	z-index: 1;
	top: calc(50% - 20px);
	right: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.7);
	padding: 8px 10px 8px 15px;
	border-radius: 30px 0 0 30px;
	color: var(--deep-purple);
	font-size: 20px;
	transition: all 0.4s;
}

.sg-next {
	right: auto;
	left: 0;
	padding: 8px 15px 8px 10px;
	border-radius: 0 30px 30px 0;
}

.sg-prev:hover,
.sg-next:hover {
	background: white;
}

/*== Contact page ==*/
.contact-content {
	padding: 65px 0;
	justify-content: space-between;
	align-items: flex-start;
}

.contact-content .half {
	width: calc(50% - 15px);
}

.contact-info-box {
	display: flex;
	align-items: center;
	padding: 20px 30px;
	margin-bottom: 15px;
	border-radius: 20px;
	box-shadow: 0px 0px 25px #48266417;
}

.contact-info-box_icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-right: 30px;
}

.contact-info-box h3,
.form-container h3 {
	font-size: 22px;
	margin: 0 0 10px;
}

.contact-info-box p {
	margin: 0;
	font-size: 16px;
}

.form-container h3 {
	text-align: start;
	margin-bottom: 25px;
}

.form-container {
	padding: 20px 30px;
	border-radius: 20px;
	box-shadow: 0px 0px 25px #48266417;
	text-align: center;
}

form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

input,
textarea {
	direction: ltr;
	text-align: left;
	width: calc(33.33% - 3px);
	background: transparent;
	border: 1px solid var(--deep-purple);
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 18px;
	margin: 0 1.5px 10px;
	font-family: "Assistant", sans-serif;
	transition: all 0.4s;
}

textarea {
	width: 100%;
	height: 250px;
}

input:focus,
textarea:focus {
	outline-color: var(--light-purple);
}

input::placeholder,
textarea::placeholder {
	color: var(--deep-purple);
}

input[type="submit"] {
	display: inherit;
	text-align: center;
	margin: 0 auto 0 0;
	cursor: pointer;
}

.contact-page_help-line {
	background: transparent;
	padding-top: 0;
}

.help-line.contact-page_help-line .support-line {
	width: fit-content;
	margin: 0 auto;
}

.contact-page_map .google-map {
	width: 100%;
	height: 600px;
}

.contact-page_address {
	background: var(--medium-purple);
	padding: 50px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.address-text {
	color: white;
	font-size: 24px;
	padding-left: 30px;
	margin-left: 30px;
	border-left: var(--grey-border);
}

/*=== Blog ===*/
.posts-list {
	flex-wrap: wrap;
}

.blog-prev-content {
	text-align: center;
	font-size: 20px;
	max-width: 900px;
	margin: 60px auto;
}

.post-item {
	width: calc(33.33% - 40px);
	text-align: center;
	margin: 0 20px 80px;
}

.image-container {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 20px;
	overflow: hidden;
	font-size: 16px;
}

.image-container:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: transparent linear-gradient(180deg, #1f0f2d00 0%, #210d31 100%) 0% 0% no-repeat padding-box;
}

.image-container img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-item_category {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 3;
}

.post-item_category a {
	color: white;
	text-decoration: none;
	padding: 3px 17px;
	background: var(--light-blue);
	border: 2px solid var(--light-blue);
	border-radius: 20px;
	transition: all 0.4s;
}

.post-item_category a:hover {
	background: transparent;
	color: var(--light-blue);
}

.author-and-date {
	position: absolute;
	bottom: 15px;
	left: 15px;
	z-index: 3;
	display: flex;
	color: white;
}

.author-and-date .author {
	margin-right: 12px;
	padding-right: 12px;
	border-right: 2px solid white;
}

.post-item a {
	text-decoration: none;
}

.post-item h3 {
	font-size: 22px;
	margin: 15px 0;
}

.post-item p {
	max-width: calc(100% - 40px);
	margin: 0 auto 22px;
}

/*== Single post ==*/
.single-post_content.center {
	max-width: 1000px;
}

.prev-text {
	padding: 35px;
	font-size: 25px;
	color: var(--deep-purple);
	border-bottom: var(--grey-border);
	text-align: center;
}

.post-info {
	display: flex;
	justify-content: space-between;
	padding: 25px 0;
	color: black;
}

.single-post_author-and-date span.author {
	display: inline-block;
	margin-left: 25px;
}

.single-post_category ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.single-post_category ul a {
	color: white;
    text-decoration: none;
    padding: 3px 17px;
    background: var(--light-blue);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    transition: all 0.4s;
	margin-right: 20px;
}

.single-post_category ul a:hover {
	background: transparent;
	color: var(--light-blue);
}

.single-post_main-image {
    width: 100%;
    border-radius: 20px;
}

.share-post {
	display: flex;
	padding: 25px 0;
	margin: 25px 0;
	border-top: var(--grey-border);
}

.share-post h3 {
	font-size: 16px;
	color: black;
	margin: 0;
}

.share-buttons a {
	text-decoration: none;
	font-size: 20px;
	color: var(--light-blue);
	margin-right: 18px;
	transition: all .4s;
}

.share-buttons a:hover {
	color: var(--light-purple);
}

/*======
* Responsive
======*/
@media all and (max-width: 1400px) and (min-width: 600px) {
	body {
		font-size: 16px;
	}
	.main-logo {
		width: 110px;
		height: 130px;
	}
	.main-navigation {
		width: calc(100% - 440px);
	}
	#primary-menu li a,
	.support-line_text span,
	.header-donation-btn {
		font-size: 16px;
	}
	.hp-about .content {
		line-height: 24px;
	}
	.hp-about .quart {
		padding: 0;
	}
	.hp-about .quart img {
		width: 100px;
	}
	.read-more:after {
		top: 2.5px;
	}
	.hp-title .center {
		height: 400px;
	}
	.hp-title h1 {
		font-size: 40px;
	}
	.page-title {
		padding: 40px 0;
	}
}

@media (max-width: 1150px) and (min-width: 600px) {
	.top-nav,
	.bottom-nav,
	.support-line {
		padding: 0 10px;
	}
	header.sticky-header .bottom-nav {
		width: calc(100% - 315px);
	}
	.main-navigation {
		width: calc(100% - 400px);
	}
	#primary-menu li a,
	.support-line_text span,
	.header-donation-btn {
		font-size: 14px;
	}
	.icon-container {
		width: 130px;
		height: 130px;
	}
	.icon-container img {
		width: 50px;
		height: 50px;
		object-fit: contain;
	}
}

@media all and (max-width: 769px) {
	/* Header */
	header,
	header .center,
	.main-navigation {
		height: 70px;
	}
	header .center {
		border: 0;
	}
	header .center.c-flex {
		flex-direction: row;
	}
	.main-logo {
		width: 80px;
		height: 103px;
		padding: 5px 10px;
	}
	.main-navigation {
		width: calc(100% - 80px);
		border-left: 0;
		border-right: 0;
	}
	.top-nav {
		height: 100%;
		padding: 0 10px;
	}
	.header-donation-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: min-content;
		font-size: 14px;
		line-height: 14px;
		padding: 0 5px;
	}
	.header-donation-btn i {
		font-size: 20px;
	}
	ul.header-lang-swicher {
		display: flex;
		flex-direction: column;
	}
	header .support-line {
		display: none;
	}
	.humburger {
		display: flex;
		flex-direction: column;
		border: 0;
		background: transparent;
		margin-left: 20px;
	}
	.humburger span {
		width: 24px;
		height: 3px;
		margin: 3px 0;
		background: var(--deep-purple);
		transition: all 0.6s;
	}
	.open-menu .humburger span:first-child {
		transform: rotate(45deg);
	}
	.open-menu .humburger span:nth-child(2) {
		width: 0;
	}
	.open-menu .humburger span:last-child {
		transform: rotate(-45deg);
		margin-top: -14px;
	}
	.bottom-nav {
		position: fixed;
		top: 70px;
		left: 100%;
		height: calc(100vh - 70px);
		width: 100%;
		padding: 50px 20px;
		background: #9dddf3;
		z-index: -1;
		transition: all 0.6s;
	}
	.open-menu .bottom-nav {
		left: 0;
	}
	#primary-menu {
		flex-direction: column;
	}
	#primary-menu li {
		margin-bottom: 15px;
	}
	#primary-menu li a {
		font-size: 22px;
	}
	
	/* Info page */
	.five_icons_per_row .icon-box_item,
	.four_icons_per_row .icon-box_item {
		width: calc(33.33% - 70px);
	}
	.team-item {
		width: calc(25% - 50px);
		margin: 20px 25px;
	}

	/* Contact page */
	.center.c-flex.contact-content {
		flex-direction: column;
	}
	.page-template-contact .contact-content .half {
		width: 100%;
	}
}

@media all and (max-width: 600px) {
	.desktop {
		display: none !important;
	}
	body {
		font-size: 16px;
	}
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 22px;
	}
	.center.c-flex {
		flex-direction: column;
	}
	.half {
		width: 100%;
	}
	.quart {
		width: 50%;
	}

	/* Sticky buttons */
	body.home .sticky-buttons {
		top: 85px;
	}
	.sticky-buttons a {
		font-size: 11px;
		padding: 8px 14px;
		width: 55px;
		height: 46px;
		margin-bottom: 5px;
	}

	/* Home page */
	.hp-title {
		margin-top: 70px;
	}
	.hp-title .center {
		height: auto;
		padding: 50px 0;
	}
	.hp-title h1 {
		font-size: 30px;
	}
	.hp-title_buttons .btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: calc(33.33% - 2px);
		margin-bottom: 10px;
		padding: 0;
		font-size: 15px;
	}
	.hp-about .center.c-flex {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.hp-about .content {
		line-height: 28px;
		margin-bottom: 50px;
		padding-right: 0;
		padding-left: 0;
	}
	.hp-about .read-more {
		margin: 0 0 6px;
		display: inline-block;
	}
	.hp-about .half,
	.hp-about .quart {
		border-left: 0;
		border-right: 0;
	}
	.hp-about .quart img {
		width: 80px;
		height: auto;
	}
	.event-box_item {
		width: 100%;
		height: unset;
		margin-bottom: 20px;
		aspect-ratio: unset;
	}
	.event-box_item .image-box {
		height: 200px;
	}
	.awards {
		background-size: cover;
	}
	.awards-item:not(:last-child) {
		margin-bottom: 80px;
	}
	.awards-item:before {
		right: calc(100% - 50px);
	}
	.awards-item:after {
		left: calc(100% - 50px);
	}
	.partners img {
		padding: 10px;
	}
	.partners .center,
	.footer-navs {
		padding: 30px 0;
	}

	/*== footer ==*/
	.footer-navs .quart {
		width: 100%;
	}
	.footer-navs .quart:not(.footer-logo) {
		margin-bottom: 30px;
	}
	.copyright div:first-child {
		margin-bottom: 10px;
	}

	/*== About page */
	.page-title {
		margin-top: 70px;
		padding: 30px 0;
	}
	.page-title h1 {
		width: calc(100% - 90px);
		margin: 0 auto;
	}
	.about-maslan_content,
	.about-maslan_image,
	.vision-and-history .half {
		width: 100%;
		margin: 0;
	}
	.team,
	.vision-and-history,
	.association-documents {
		padding: 50px 0;
	}
	.vision-and-history .half:first-child {
		margin-bottom: 50px;
	}
	.team-item {
		width: calc(50% - 30px);
		margin: 20px 15px;
		font-size: 14px;
	}
	.association-documents h3 {
		margin: 5px;
	}
	.team-position, 
	.team-item a {
		font-size: 14px;
	}

	/*== Content pge */
	.content-and-icon .center {
		max-width: 90%;
	}
	.content-and-icon img {
		margin: 0 0 20px;
	}
	.content-and-icon img {
		margin: 0 auto;
	}
	.help-line {
		padding: 30px 0;
	}
	.help-line .support-line {
		flex-direction: column-reverse;
		margin: 0;
	}
	.help-line .support-line img {
		width: 60px;
		margin: 0;
	}
	.help-line .support-line_text {
		font-size: 16px;
	}
	.help-line .support-line_text span {
		font-size: 22px;
	}
	.help-line-contnet {
		text-align: center;
	}
	section.icon-boxes.center.c-flex {
		flex-direction: row;
		margin-bottom: 0;
	}
	.four_icons_per_row .icon-box_item,
	.five_icons_per_row .icon-box_item {
		width: calc(50% - 40px);
		margin: 0 20px 50px;
	}
	.icon-container {
		width: 100px;
		height: 100px;
	}
	.icon-container img {
		width: 60px;
		height: 60px;
	}
	.icon-box_item h3 {
		font-size: 18px;
	}

	/* Shop page */
	.content-and-map {
		padding: 0;
	}
	.shop-content {
		width: 100%;
		margin: 0 0 30px;
	}
	.content-and-map .google-map {
		width: 100%;
	}
	.shop-info_content {
		padding: 30px 0;
		margin: 30px 0;
		border-top: 1px solid white;
		border-bottom: 1px solid white;
		border-left-width: 0;
		border-right-width: 0;
	}
	.shop-gallery img {
		width: 100%;
		object-fit: cover;
	}
	.shop-info {
		padding: 35px 0;
	}
	/* Blog */
	.post-item {
		width: 100%;
		margin: 0 0 40px;
	}
	.prev-text {
		padding: 20px 10px;
		font-size: 18px;
	}
	.share-post {
		flex-direction: column;
	}
	.share-post h3 {
		margin-bottom: 18px;
	}
	.share-buttons a {
		margin: 0 0 0 18px;
	}

	/* Contact page */
	.contact-content {
		padding: 35px 0;
	}
	.contact-content .half {
		width: 100%;
	}
	.contact-info-box {
		flex-direction: column;
	}
	.contact-info-box_icon img {
		margin: 0 0 15px;
	}
	.contact-info-box h3,
	.form-container h3 {
		text-align: center;
	}
	.contact-info-box,
	.form-container {
		padding: 20px 5%;
	}
	input,
	textarea {
		width: 100%;
	}
	.contact-page_address {
		flex-direction: column;
	}
	.address-text {
		border-top: var(--grey-border);
		border-left-width: 0;
		border-right-width: 0;
		padding: 15px 0 0 0;
		margin: 15px 0 0;
	}

}
