/*
	Theme Name: Yansah Landscape
	Theme URI: https://yansahlandscape.com
	Description: Custom WP Theme for Yansah Landscape
	Version: 1.0.08.2026
	Author: @harmonicnoise
	Author URI: http://www.deusain.com
	Tags: Tukang Taman, Jasa Landscape
*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	height: 100%;
}
:root {
	--green: #184852;
	--green-light: #609544;
	--yellow: #c6b434;
	--dark: #14201a;
	--grey: #989898;
	--body-color: #5b6b62;
	--light: #b9cdc0;
	--super-light: #f3fbf2;
	--white: #fff;
}
body {
	font-size: clamp(15px, 2vw, 16px);
	font-family: 'PLus Jakarta Sans', -apple-system,BlinkMacSystemFont,segoe ui,helvetica neue,sans-serif;
	font-weight: 400;
	line-height: 1.7;
	background-color: var(--white);
	color: var(--body-color);
	width: 100%;
	position: relative;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
a {
	color: var(--green-light);
	text-decoration:none;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}
a:hover {
	color: var(--green);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

strong {
	font-weight: 700;
}
h1, h2, h3 {font-weight: 800; line-height: 1.2; color: var(--green); letter-spacing: -.02em;}
h4, h5, h6 {font-weight: 500; line-height: 1.2; color: var(--green); letter-spacing: -.02em;}
h1 {font-size: clamp(32px, 4vw, 40px);}
h2 {font-size: clamp(27px, 3.5vw, 36px);}
h3 {font-size: clamp(22px, 3vw, 30px);}
h4 {font-size: clamp(18px, 2vw, 24px);}
h5 {font-size: clamp(15px, 1.5vw, 20px);}
h6 {font-size: clamp(12px, 1vw, 18px);}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}

/* ====================================== header ====================================== */
.header {
	width: 100%;
	margin: 0 auto;
	position: relative;
	top: 0;
	z-index: 9;
	background-color: var(--white);
	border-bottom: 1px solid var(--light);
	z-index: 99;
	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0;
		height: 100px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		position: relative;
		.logo {
			padding: 0;
			width: 180px;
			position: relative;
			line-height: 0;
			top: 0;
			a {
				line-height: 0;
			}
			img {
				width: 100%;
				height: auto;
			}
		}
		.nav {
			z-index: 999;
			position: relative;
			ul {
				padding: 0;
				margin: 0;
				list-style: none;
				li {
					display: inline-block;
					margin: 0;
					position: relative;
					padding: 0 25px;
					a {
						display: block;
						font-size: 17px;
						font-weight: 600;
						padding: 0;
						color: var(--green);
						transition: .2s ease-in-out;
						&:hover {
							color: var(--green-light);
							transition: .2s ease-in-out;
						}
						i {
							position: relative;
							top: 2px;
							padding-left: 7px;
							color: var(--green);
						}
					}
					ul.sub-menu {
						visibility: hidden;
						opacity: 0;
						position: absolute;
						top: 48px;
						width: 250px;
						background-color: var(--green);
						transition: all .2s ease-in-out;
						transform:translateY(10px);
						z-index: 999;
						padding: 10px 0;
						margin: 0;
						display: block;
						border-radius: 5px;

						li {
							width: 100%;
							display: block;
							border-bottom: 1px rgba(255,255,255, .1);

							a {
								display: block;
								padding: 5px 0;
								font-size: 14px;
								font-weight: 400;
								color: var(--white) !important;

								&:hover {
									color: var(--green) !important;
								}
							}
						}
					}

					&:hover {
						ul.sub-menu {
							visibility: visible;
							opacity: 1;
							transform:translateY(0);
							transition: all .2s ease-in-out;
						}
					}
				}
				li.menu-item-has-children {
					&:hover {
						a {
							color: var(--green);
						}
					}
				}
				li.current_page_item {
					position: relative;
					a {
						color: var(--green-light);
						&:hover {
							color: var(--green-light);
						}
					}
					&:hover {
						a {
							color: var(--green-light);
						}
					}
				}
			}
		}
		.topright {
			position: relative;
			ul {
				list-style: none;
				padding: 0;
				margin: 0;
				li {
					margin: 0;
					padding: 0;
					display: inline-block;
					a {
						font-weight: 700;
						font-size: 15px;
						color: var(--white);
						line-height: 1;
						display: block;
						padding: 16px 30px;
						background-color: var(--green);
						border-radius: 100px;
						i {
							margin-right: 10px;
						}
						&:hover {
							background-color: var(--green-light);
							color: var(--white);
							transition: .2s ease-in-out;
						}
					}
				}
			}
		}
	}
}

.header.scrolled {
	position: fixed;
	width: 100%;
	top: 0;
	height: 80px;
	animation: smoothScroll 1s forwards;
	box-shadow: 0 1px 5px rgba(0,0,0, .1);
	.container {
		height: 80px;
		.logo {
			width: 180px;
			img {
				display: block;
				-webkit-animation: smoothshow .4s;
			}
		}
	}
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-90px);
	}
	100% {
		transform: translateY(0px);
	}
}

/* ====================================== blog home ====================================== */
ul#blog {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	li {
		position: relative;
		padding-bottom: 0;
		overflow: hidden;
		a {
			display: block;
			position: relative;
			h4 {
				margin: 15px 0 0 0;
				line-height: 1.3;
				font-size: 21px;
				font-weight: 700;
				letter-spacing: -1px;
				color: var(--green);
			}
			&:hover {
				h4 {
					color: var(--green-light);
				}
			}
		}
		.thumb {
			height: 250px;
			position: relative;
			width: 100%;
			overflow: hidden;
			background-color: var(--white);
			border-radius: 10px;
			a {
				display: block;
				img {
					width: 100%;
					object-fit: cover;
					height: 250px;
					margin: 0;
					transform: scale(1);
					transition: transform .5s;
				}
				&:hover {
					img {
						transform: scale(1.1);
						transition: transform .5s;
					}
				}
			}
		}
		p {
			line-height: 1.4;
			margin-left: 0;
			font-size: 15px;
		}
		a.view-article {
			display: inline-block;
			padding: 0;
			font-size: 12px;
			font-weight: 700;
			text-transform: uppercase;
			margin-top: 10px;
			&:hover {
				text-decoration: underline;
			}
		}
		.post-category {
			font-weight: 400;
			line-height: 1;
			position: absolute;
			text-align: center;
			background-color: var(--green);
			border-bottom: 0;
			padding: 7px 10px 5px 10px;
			display: block;
			top: 10px;
			z-index: 9;
			left: 10px;
			margin-top: 0;
			border-radius: 5px;
			a {
				color: var(--dark);
			}
		}
		.metadata {
			position: relative;
			span {
				display: block;
				font-size: 13px;
				line-height: 1;
				color: var(--grey);
				margin-top: 15px;
			}
		}
	}
}

.bg-hero {
	position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px), #a8f9b5;
    background-size: 40px 20px;
}

.slideshow {
	position: relative;
}
.slideshow .elementor-widget-image-carousel .swiper-slide {
	height: auto;
	overflow: hidden;
}
.slideshow .swiper-slide-image {
	width: 100%;
	aspect-ratio: 16 / 12;
	object-fit: cover;
}

.gallery-slide {
	position: relative;
}
.gallery-slide .elementor-widget-image-carousel .swiper-slide {
	height: 250px;
	overflow: hidden;
}
.gallery-slide .swiper-slide-image {
	width: 100%;
	aspect-ratio: 16 / 12;
	object-fit: cover;
}

/* ====================================== footer ====================================== */
#foot {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: var(--green);
	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 50px 0;
		font-size: 14px;
		overflow: hidden;
		position: relative;
		font-weight: 400;
		line-height: 1.6;
		color: var(--light);
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		> div:first-child {
			width: 33%;
		}
		h3 {
			margin: 0 0 25px 0;
			font-size: 18px;
			font-weight: 700;
			color: var(--white);
		}
		h5 {
			margin: 0 0 20px 0;
			font-size: 15px;
			color: var(--light);
			display: flex;
			i {
				margin-right: 7px;
				width: 18px;
			}
		}
		p {
			margin: 0 0 20px 0;
			img {
				border-radius: 0 !important;
				padding: 0;
				margin: 0 !important;
			}
		}
		ul {
			margin: 0;
			padding: 0;
			list-style: none;
			overflow: hidden;
			li {
				position: relative;
				display: block;
				margin-bottom: 10px;
				a {
					display: block;
					color: var(--light);
					&:hover {
						color: var(--white);
					}
					
					i {
						margin-right: 7px;
						width: 18px;
					}
				}
			}
		}
		ul.socmed {
			margin: 30px 0 0 0;
			padding: 0;
			list-style: none;
			overflow: hidden;
			li {
				position: relative;
				display: inline-block;
				margin-right: 15px;
				a {
					display: block;
					text-align: center;
					&:hover {
						opacity: .8;
					}
					svg {
						width: 32px;
						fill: var(--light);
						color: var(--light);
					}
				}
			}
		}
	}
}
.copyright {
	width: 100%;
	border-top: 1px solid rgba(255,255,255, .2);
	text-align: center;
	font-size: 14px;
	padding: 25px 20px;
	line-height: 1.2;
	color: var(--light);
	position: relative;
}

/* ====================================== big title ====================================== */
#big-title {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 50px 20px 0 20px;
		overflow: hidden;
		position: relative;
		text-align: center;
		h5 {
			color: var(--green-light);
			text-transform: uppercase;
			letter-spacing: 2px;
			font-size: 14px;
			margin: 0;
		}
		h1 {
			margin: 10px 0;
			line-height: 1.2;
			display: block;
			padding: 0;
		}
		p {
			margin: 0;
		}
	}
	&.post {
		position: relative;
		background-color: transparent;
		.container {
			position: relative;
			height: auto;
			padding: 50px 0 0 0;
			img {
				width: 100%;
				height: auto;
				aspect-ratio: 16 / 8;
				border-radius: 10px;
				object-fit: cover;
			}
		}
	}
}

/* ====================================== main wrapper ====================================== */
#main-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 80px 0;
		position: relative;
		article {
			h1 {
				margin: -25px 0 30px 0;
				line-height: 1.2;
			}
		}
		.body-content {
			article.full {
				width: 100%;
				border-bottom: 0;
				padding-bottom: 0;
				margin-bottom: 0;
				padding: 0;
				overflow: hidden;
				float: none;
				width: 100%;
				max-width: 1140px;
				margin: 0 auto;
				img {
					border-radius: 10px;
					margin: 0;
					width: 100% !important;
				}
				h1 {
					margin: 20px 0 30px 0;
					line-height: 1.2;
				}
				h2 {
					line-height: 1.4;
					font-size: clamp(22px, 3vw, 27px);
				}
				h3 {
					line-height: 1.4;
					font-size: clamp(19px, 2.5vw, 25px);
				}
				p.cat-tag {
					a {
						font-size: 14px;
						margin: 3px 0;
						border: 1px solid var(--green);
						border-radius: 70px;
						padding: 2px 10px;
						display: inline-block;
						margin-left: 7px;
						&:hover {
							background-color: var(--green);
							color: var(--white);
						}
					}
				}
				p {
					position: relative;
				}
				ul {
					li {
						line-height: 1.6;
					}
				}
				ol {
					li {
						line-height: 1.6;
					}
				}
			}
		}
	}
	.container.small {
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
		padding: 80px 0;
		position: relative;
		.metadata {
			font-size: 16px;
			margin-bottom: 40px;
			width: 100%;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: space-between;
			position: relative;
			margin-top: -127px;
			z-index: 9;
			padding: 20px 30px;
			background-color: var(--white);
			box-shadow: 0 20px 20px rgb(0 0 0 / 8%);
			border-radius: 7px;
			.share {
				position: relative;
			}
			.infoauthor {
				display: block;
				font-weight: 600;
				h6 {
					margin: 0;
					font-size: 12px;
					color: var(--grey);
				}
			}
			.infodate {
				display: block;
				font-weight: 600;
				h6 {
					margin: 0;
					font-size: 12px;
					color: var(--grey);
				}
			}
			.infocategory {
				display: block;
				font-weight: 600;
				h6 {
					margin: 0;
					font-size: 12px;
					color: var(--grey);
				}
			}
		}
	}
	.container.blog-grid {
		margin: 0 auto;
		list-style: none;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 30px;
		article {
			overflow: hidden;
			padding-bottom: 0;
			position: relative;
			.post-category {
				font-weight: 400;
				line-height: 1;
				position: absolute;
				text-align: center;
				background-color: var(--green);
				border-bottom: 0;
				padding: 7px 10px 5px 10px;
				display: block;
				top: 10px;
				z-index: 9;
				left: 10px;
				margin-top: 0;
				border-radius: 4px;
				a {
					color: var(--dark);
				}
			}
			.thumb {
				width: 100%;
				height: 250px;
				position: relative;
				overflow: hidden;
				background-color: var(--white);
				border-radius: 10px;
				a {
					display: block;
					img {
						width: 100%;
						height: 250px;
						object-fit: cover;
						margin: 0;
						transform: scale(1);
						transition: transform .5s;
					}
					&:hover {
						img {
							transform: scale(1.1);
							transition: transform .5s;
						}
					}
				}
			}
			.loop-content {
				position: relative;
				.metadata {
					position: relative;
					span {
						display: block;
						font-size: 13px;
						line-height: 1;
						color: var(--grey);
						margin-top: 15px;
					}
				}
				h2 {
					margin: 15px 0 0 0;
					line-height: 1.3;
					font-size: 21px;
					font-weight: 700;
					letter-spacing: -1px;
					a {
						color: var(--green);
						&:hover {
							color: var(--green-light);
						}
					}
				}
				p {
					line-height: 1.4;
					margin-left: 0;
					font-size: 15px;
					margin-bottom: 0;
				}
				a.view-article {
					display: block;
					font-size: 12px;
					font-weight: 700;
					padding-top: 10px;
					text-transform: uppercase;
					&:hover {
						text-decoration: underline;
					}
				}
			}
		}
	}
}

/* ====================================== pagination ====================================== */
.pagination {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
	span.page-numbers.current {
		background: var(--green);
		color: var(--white);
		padding: 7px 12px 8px 12px;
		border-radius: 4px;
	}
	a.page-numbers {
		padding: 7px 12px 8px 12px;
		color: var(--dark);
		border-radius: 4px;
		&:hover {
			background: var(--green);
			color: var(--white);
			border-radius: 4px;
		}
	}
}

/* ====================================== related ====================================== */
#related {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: var(--super-light);
	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 80px 0;
		position: relative;
		overflow: hidden;
		h3 {
			text-align: center;
			margin: 0 0 40px 0;
			font-size: 35px;
		}
		ul {
			margin: 0;
			padding: 0;
			list-style: none;
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			li {
				width: 31%;
				.the-thumb {
					width: 100%;
					height: 250px;
					position: relative;
					overflow: hidden;
					background-color: var(--white);
					border-radius: 10px;
					a {
						img {
							width: 100%;
							height: 250px;
							object-fit: cover;
							margin: 0;
							transform: scale(1);
							transition: transform .5s;
						}
						&:hover {
							img {
								transform: scale(1.1);
								transition: transform .5s;
							}
						}
					}
				}
				.metadata {
					position: relative;
					span {
						display: block;
                        font-size: 13px;
                        line-height: 1;
                        color: var(--grey);
                        margin-top: 15px;
					}
				}
				a {
					h4 {
						color: var(--green);
						margin: 15px 0 0 0;
						line-height: 1.3;
						font-size: 21px;
						font-weight: 700;
						letter-spacing: -1px;
						&:hover {
							color: var(--green-light);
						}
					}
				}
				p {
					font-size: 15px;
					line-height: 1.4;
					margin: 15px 0 0 0;
					max-width: 100%;
					max-height: 100%;
					word-break: keep-all;
					white-space: normal;
					text-overflow: ellipsis;
					overflow: hidden;
					display: -webkit-box;
					-webkit-line-clamp: 3;
					-webkit-box-orient: vertical;
					a {
						display: block;
						font-size: 12px;
						font-weight: 700;
						padding-top: 10px;
						text-transform: uppercase;
						&:hover {
							text-decoration: underline;
						}
					}
				}
			}
		}
	}
}

/* ====================================== mobile menu ====================================== */
.header {
	#megamenu {
		position: fixed;
		font-size: 16px;
		line-height: 40px;
		text-transform: uppercase;
		z-index: 9999;
		float: right;
		cursor: pointer;
		top: 0;
		right: 20px;
		display: none;
		i {
			font-size: 24px;
		}
	}
}
#nav-toggle {
	position: absolute;
	left: 50%;
	top: 50%;
	cursor: pointer;
	padding: 10px 35px 16px 0px;
	span {
		cursor: pointer;
		border-radius: 1px;
		height: 3px;
		width: 30px;
		background: var(--green);
		position: absolute;
		display: block;
		content: '';
		transition: all 500ms ease-in-out;
		&:before {
			cursor: pointer;
			border-radius: 1px;
			height: 3px;
			width: 30px;
			background: var(--green);
			position: absolute;
			display: block;
			content: '';
			top: -8px;
			background: var(--green);
			transition: all 500ms ease-in-out;
		}
		&:after {
			cursor: pointer;
			border-radius: 1px;
			height: 3px;
			width: 30px;
			background: var(--green);
			position: absolute;
			display: block;
			content: '';
			bottom: -8px;
			background: var(--green);
			transition: all 500ms ease-in-out;
		}
	}
	&.active {
		span {
			background-color: transparent;
			&:before {
				top: 0;
				transform: rotate(45deg);
				background: var(--green);
			}
			&:after {
				top: 0;
				transform: rotate(-45deg);
				background: var(--green);
			}
		}
	}
}
.menu-dropdown {
	position: fixed;
	width: 100%;
	background-color: var(--white);
	top: 80px;
	z-index: 999;
	overflow: hidden;
	box-shadow: 0 20px 30px rgba(0,0,0, .2);
	.nav {
		position: relative;
		padding: 0;
		display: block;
		width: 100% !important;
		margin: 0;
		ul {
			-webkit-font-smoothing: antialiased;
			padding: 0;
			margin: 0;
			list-style: none;
			text-align: left;
			li {
				position: relative;
				margin: 0;
				padding: 0;
				display: block;
				border-bottom: 1px solid #eee;
				a {
					display: block;
					font-size: 18px;
					padding: 10px 0;
					-webkit-transition: all 0.3s;
					-moz-transition: all 0.3s;
					-ms-transition: all 0.3s;
					-o-transition: all 0.3s;
					transition: all 0.3s;
					border: 0;
					color: var(--green);
					line-height: normal;
					&:hover {
						color: var(--green-light);
						border: 0;
					}
				}
			}
			li.current_page_item {
				a {
					color: var(--green-light);
				}
			}
		}
	}
	.widget_nav_menu {
		ul {
			margin: 20px 0 0 0;
			padding: 0;
			list-style: none;
			li {
				a {
					font-weight: 500;
					font-size: 14px;
					color: var(--white);
					display: block;
					padding: 12px 0;
					background-color: var(--green);
					border-radius: 70px;
					text-align: center;
					i {
						margin-right: 7px;
					}
				}
			}
		}
	}
}

.whatsapp {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 999999;
	a {
		color: var(--white);
		padding: 0;
		background: var(--green-light);
		border-radius: 100%;
		-moz-border-radius: 100%;
		-webkit-border-radius: 100%;
		display: block;
		line-height: 54px;
		width: 54px;
		height: 54px;
		text-align: center;
		&:hover {
			background-color: var(--green);
			color: var(--white);
			text-decoration: none;
		}
		i {
			vertical-align: middle;
			font-size: 30px;
			position: relative;
			padding: 0;
			top: 0;
		}
	}
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1360px) {
	.header .container,
	#big-title .container,
	#big-title.post .container,
	#main-wrapper .container,
	#main-wrapper .container.small,
	.post-headline .container,
	#related .container,
	#cta .container,
	#foot .container {padding-left: 20px; padding-right: 20px;}
}
@media only screen and (max-width:1024px) {
	.header {
		display: block;
		z-index: 99;
		top: 0;
		overflow: visible;
		.container {
			position: relative;
			background-color: var(--white);
			height: 60px;
			overflow: hidden;
			.logo {
				width: 140px;
				padding: 0;
				background: transparent;
			}
			.topright {
				display: none;
			}
		}
		#megamenu {
			display: block !important;
			top: 20px;
			z-index: 99999;
			right: 50px;
		}
		.menu-dropdown {
			display: block;
			top: 60px;
			background-color: var(--white);
			padding: 20px !important;
		}
	}
	.nav {
		display: none;
	}
	.header.scrolled {
		transition: none;
		border-bottom: 0;
		height: 60px;
		.container {
			height: 60px;
			.logo {
				width: 140px;
			}
		}
		.menu-dropdown {
			display: block;
			top: 60px;
		}
	}
}

@media only screen and (max-width:768px) {
	ul#blog {
		display: block;
		li {
			width: 100%;
			margin-bottom: 25px;
			.thumb {
				height: 200px;
				a {
					img {
						height: 200px;
					}
				}
			}
		}
	}

	#big-title {
		.container {
			padding: 50px 20px 0 20px;
			h1 {
				line-height: 1.2;
				position: relative;
			}
		}
		img {
			object-fit: cover;
		}
		&.post {
			padding-top: 0;
			.container {
				height: auto;
				img {
					height: auto;
					width: 100%;
					aspect-ratio: 16 / 12;
				}
			}
		}
	}
	
	#main-wrapper {
		margin-top: 0;
		.container {
			padding: 50px 20px;
			.blog-title {
				display: block;
				h1 {
					font-size: 36px;
					margin: 0 0 20px 0;
				}
			}
			.share {
				width: 100%;
				float: none;
				margin-top: 30px;
				text-align: center;
			}
			article {
				h1 {
					font-size: 30px;
					margin-top: -10px;
				}
			}
			.body-content {
				article.full {
					margin-top: 10px;
					h1 {
						line-height: 1.2;
					}
					h2 {
						line-height: 1.2;
					}
					h3 {
						line-height: 1.2;
					}
				}
			}
			&.blog-grid {
				display: block;
				article {
					width: 100%;
					margin: 0 0 25px 0;
					.thumb {
						height: 200px;
						a {
							img {
								height: 200px;
							}
						}
					}
				}
			}
			&.small {
				.metadata {
					margin-bottom: 10px;
					padding: 10px 15px;
					font-size: 14px;
					margin-top: -75px;
				}
			}
		}
	}
	.pagination {margin-bottom: 50px;}

	#related {
		.container {
			padding: 60px 20px;
			h3 {
				font-size: 30px;
				margin-bottom: 30px;
			}
			ul {
				display: block;
				li {
					width: 100%;
					margin: 0 0 25px 0;
					.the-thumb {
						height: 200px;
						a {
							img {
								height: 200px;
							}
						}
					}
				}
			}
		}
	}
	#foot {
		.container {
			padding: 20px 20px 30px 20px;
			display: block;
			>div {
				width: 100% !important;
				padding-right: 0;
				margin-top: 30px;
				&:last-child {
					width: 100% !important;
					padding-right: 0;
				}
			}
			p {
				img {
					margin-right: 0;
					margin-bottom: 0;
					width: 70px;
					height: auto;
				}
			}
			h3 {
				margin-top: 30px;
				margin-bottom: 20px;
			}
			.copyright {
				margin-top: 20px;
			}
		}
	}
}
@media only screen and (max-width:640px) {
}
@media only screen and (max-width:480px) {
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::-webkit-input-placeholder { /* Edge */
  color: var(--dark);
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--dark);
}

::placeholder {
  color: var(--dark);
}

::selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}
::-webkit-selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}
::-moz-selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	max-width:100%;
	padding: 0;
	font-size: 14px;
	font-style: italic;
	text-align:center;
}
.wp-caption.alignnone {
	margin:0 0 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:100%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 14px;
	line-height: 1.3;
	margin:0;
	text-align: left;
}
p.wp-caption-text {
	font-size: 14px !important;
	font-style: italic;
	padding-bottom: 0 !important;
	margin-bottom: 0;
}
.sticky {

}
.bypostauthor {

}
.addtoany_content {
	margin: 60px 0 0 0 !important;
	text-align: center;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:var(--dark) !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid var(--grey);
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: #aaa;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--green);;
}
