:root {
	--header-bg-color: #F2F2ED;
	--blog-primary-color: #0000e7;
	--blog-title-color: #000;
	--blog-text-color: #031449;
	--blog-primary-rgba: rgba(0, 0, 231, 0.95);
	--blog-link-hover: rgb(0, 124, 255);
	--blog-selected-cat: #01FFFF;
	--blog-cat-hover-bg: #05154A;
	--blog-search-placeholder-txt: #8D8D8D;
	--blog-primary-font: 'Circular Std Book';
	--blog-primary-font-heavy: 'Circular Std Black';
	--blog-primary-font-med: 'Circular Std Medium';
	--blog-title-font: 'Recoleta';
}

body {
    margin: 0 auto;
    padding: 0;
    height: 100vh;
    min-width: 246px;
    font-family: var(--blog-primary-font);
    font-size: 16px;
}

div, section {
    position: relative;
}

p {
    line-height: 1.875em;
    margin: 1.125em 0;
}
	p:empty {
		display: none;
	}

input {
	font-size: 16px;
}

ul, ol {
    padding: 0 0 0 2em;
    margin: 1.125em 0;
    line-height: 1.875em;
}
	ul.slick-dots {
		padding-left: 0;
	}

a {
    color: var(--blog-primary-color);
	text-decoration: underline;
	text-underline-position: under; /* Not supported on iOS Safari */
    transition: all 150ms ease-in-out;
    cursor: pointer;
}
    a:hover,
    a:focus {
        color: var(--blog-link-hover);
 }

img {
    height: auto;
}

figure {
    margin: 0;
}

.clear {
    clear: both;
}

body > header {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100vw;
	min-width: 246px;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,0.20);
	background-color: var(--header-bg-color);
	padding: 20px 0;
}
	header .header-inner {
		width: 100%;
		height: 84px;
		max-width: 1440px;
		padding: 0 2.78%;
		margin: 0 auto;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#hdr_logo {
		display: inline-block;
		max-height: 84px;
		overflow: hidden;
		width: auto;
	}
		#hdr_logo img {
			display: block;
			max-height: 84px;
			width: auto;
			max-width: 100%;
		}
		#hdr_logo svg {
			display: block;
			height: auto;
		}
			#hdr_logo svg path, #hdr_logo svg polygon {
				transition: 150ms fill ease-in-out;
			}
			#hdr_logo:hover svg path, #hdr_logo:hover svg polygon {
				fill: #BFC5FF;
			}

	#nav_cont {
		width: 100%;
	}
		#hdr_nav {
			display: flex;
			position: relative;
			justify-content: flex-end;
			font-size: 1.125em;
			line-height: 1.6;
			height: 100%;
		}
			#hdr_nav a.nav-item {
				margin-left: 2.36vw;
				color: var(--blog-text-color);
				text-decoration: none;
			}
				#hdr_nav a.nav-item:hover {
					text-decoration: underline;
				}
				.nav-item-search {
					display: block;
				}
	
	#hdr_login_cont {
		float: right;
		transform: translateY(40%);
	}
		#hdr_login_btn {
			margin-right: 1.53vw;
		}
		#hdr_signup_btn {
			display: inline;
			padding: calc(.6em - 1px) 1.71em;
		}

#mobile_nav {
	display: none;
}

#nav_burger {
	display: none;
}

main {
	margin-top: 70px;
	overflow-x: hidden;
}

.wp-block-image {
	margin: 0;
}

.wp-block-gallery figure figcaption {
    box-sizing: border-box;
}

.lindero_btn, 
.wp-block-button__link,
.wp-block-button__link:active, 
.wp-block-button__link:focus, 
.wp-block-button__link:visited {
	text-transform: uppercase;
	letter-spacing: .15em;
	border: solid 4px var(--blog-primary-color);
	padding: 1em 2em;
	border-radius: 2em;
	font-family: var(--blog-primary-font-heavy);
	font-size: 1rem;
	color: var(--blog-primary-color);
	background-color: transparent;
	cursor: pointer;
	text-decoration: none;
	box-shadow: none;
	margin: auto;
}
	.lindero_btn:hover, 
	a.lindero_more_cat_btn:hover, 
	.wp-block-button__link:hover {
		background-color: var(--blog-primary-color);
		color: #FFF;
	}
	a.lindero_link_button:disabled, 
	input.lindero_link_button:disabled {
		background-color: #AAA;
		color: #FFF;
		box-shadow: none;
		cursor: default;
	}

	blockquote {
		font-family: var(--blog-title-font);
		font-weight: bold;
		font-size: 1.875em;
		margin-inline-start: 1.5em;
		margin-inline-end: 1.5em;
	}
		blockquote p {
			line-height: 1.2em;
		}
		blockquote::before {
			position: absolute;
			left: -.25rem;
			margin-top: -1.2%;
			content: open-quote;
			display: inline;
			font-size: 2em;
		}
		blockquote.wp-block-quote p {
			margin: 0 0 .5em;
		}
			blockquote.wp-block-quote p:last-of-type {
				margin-bottom: 0;
			}
			blockquote.wp-block-quote cite {
				font-family: var(--blog-primary-font);
				font-style: normal;
				font-size: 1rem;
				color: #777;
			}

@media screen and (max-width: 1024px) {
	header {
		padding: 10px 0;
	}
		header .header-inner {
			height: 30px;
		}
			#hdr_logo {
				height: 30px;
				width: auto;
			}
			#hdr_logo img {
				height: 30px;
				width: auto;
			}
}

@media screen and (min-width: 769px) {
	nav#mobile_nav {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	#nav_cont {
		display: none;
	}
	#nav_burger {
		display: block;
		width: 28px;
		height: 50%;
		border-top: solid 2px var(--blog-text-color);
		border-bottom: solid 2px var(--blog-text-color);
		cursor: pointer;
	}
		#nav_burger_mdl {
			height: 2px;
			background-color: var(--blog-text-color);
			width: 100%;
			top: 50%;
			transform: translateY(-50%);
		}

    #mobile_nav {
        position: fixed;
        display: none;
        top: 3.125em;
        width: 88%;
        z-index: 50;
        background-color: #FFF;
        height: calc(100vh - 2.5em);
        text-align: center;
        transition: opacity 300ms ease-out;
        opacity: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1.25em 6%;
    }
        #mobile_nav a {
            padding: 0 0 1.5em;
            color: #000;
            text-decoration: none;
        }
}