@charset "UTF-8";

:root {
	--main-text-color: #7b7b7b;
	--main-bg-color: #ffffff;
	--theme-text-color: #000000;
	--theme-bg-color: #0F4C81;
	--theme-bg-color-darker: #0C3C67;
	--theme-bg-color-lighter: #446582;
	--yellow: #ffc600;
	--white: #fff;
	--black: #000;
	--blue: #0F4C81;
	--white-75: rgba(255,255,255,0.75);
	--yellow-50: rgba(255,187,0,0.5);
	--white-50: rgba(255,255,255,0.5);
	--black-50: rgba(0,0,0,0.5);
	--yellow-25: rgba(255,187,0,0.25);
	--blue-25: rgba(15, 76, 129, 0.25);
}

body {
	font-family: Poppins,sans-serif;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: var(--main-text-color);
	background: var(--main-bg-color);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden!important;
}

section {
	position: relative;
}

/* GRID */

@media (min-width: 1200px) {
	.container {
		max-width: 1300px;
	}
}

/* TEXT */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: montserrat;
	text-transform: uppercase;
	letter-spacing: .02em;
	font-weight: 800;
	color: var(--theme-text-color);
}

/* POST DATE */

.post-date-square {
	display: block;
	background-color: var(--theme-bg-color);
	color: var(--theme-text-color);
	position: absolute;
	top: 5px;
	line-height: 19em;
	z-index: 1;
	right: 5px;
}
.post-date-square .day {
	line-height: 1.1em;
	letter-spacing: .02em;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 30px;
	text-align: center;
	padding-top: 14px;
}

.post-date-square .month {
	line-height: 1.54em;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-family: Montserrat,sans-serif;
	font-size: 12px;
	text-align: center;
}

/* LINK */

a {
	transition: color .2s ease-out;
	outline: none;
}

a img {
	outline: none;
}

a .instagram-icon {
    opacity: 0;
    z-index: 1;
    transition: opacity .2s ease-in-out;
	display: block;
	background: var(--black);
	height: 37px;
	width: 37px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

a .instagram-icon svg {
    height: 65px;
    width: 65px;
    transform: scale(.7);
    transition: .2s;
}

a .instagram-icon svg polygon {
    stroke: var(--white);
}

a:hover .instagram-icon {
    opacity: 1;
}

a:hover .instagram-icon svg {
    transform: scale(.7) translate3d(3px,-3px,0);
    transition: .2s .1s;
}

/* SOCIAL LINKS */

.social-icon-link,
.social-icon-link:visited {
	color: var(--theme-text-color);
}

.social-icon-link:hover,
.social-icon-link:active {
	color: var(--white);
	text-decoration: none;
}

/* UTILITY CLASS */

.bg-theme-half-black {
	background-color: var(--black-50);
}

.bg-theme-half-yellow {
	background-color: var(--yellow-50);
}

.text-hover-white:hover {
	color: var(--white);
}

.text-hover-black:hover {
	color: var(--theme-text-color);
}

/* POST INFO */

.post-info {
	letter-spacing: .2em;
	font-size: 11px;
	line-height: 1.5em;
	text-transform: uppercase;
	font-family: Montserrat,sans-serif;
	color: var(--theme-text-color);
}

.post-info a {
	color: var(--theme-text-color);
}

/* TAG LIST */

#tag-list a {
	line-height: 1.54em;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-family: Montserrat,sans-serif;
	color: var(--theme-text-color);
	margin: 0 10px 10px 0;
	font-size: 11px;
	display: inline-block;
	padding: 10px 25px;
}

#tag-list a:hover {
	color: #fff;
	text-decoration: none;
}

/* CARD */

.card-link {
	color: var(--theme-text-color);
}

.card-link:hover {
	color: var(--theme-text-color);
}

/* LAST UPDATED */

#last-updated {
	text-align: right;
}

#last-updated strong {
	margin-right: 5px;
}


/* SCROLL UP */

#scroll-up {
	display: none;
	position: fixed;
	right: 23px;
	z-index: 2;
	bottom: 20px;
	/*box-shadow: 0 0 6px 0 #444;*/
}

#scroll-up .btn-theme-box-button {
	padding: 10px 16px;
}

.no-underline {
	text-decoration: none !important;
}

.cursor-pointer {
	cursor: pointer !important;
}

.custom-checkbox a {
	color: var(--theme-text-color);
}

/* BADGE */

.badge-theme {
	background-color: var(--theme-bg-color);
	color: var(--white);
}

/* Removes dotted outline */

:focus,
.form-control:focus,
button:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
    outline: 0;
}

.btn.focus,
.btn:focus {
	box-shadow: none;
}

.text-date, .text-date:hover {
	font-family: Montserrat,sans-serif;
	text-transform: uppercase;
}

/* EMPTY PAGE */
#empty-page {
	height: 100vh;
}
#empty-page .empty-page-message {
	height: 68%; /* 100% - banner percentage [32%] */
}

/* XS */
@media only screen and (min-width : 0px) {

	body {
		line-height: 16px;
	}

	h1, .h1 {
		font-size: 1.8rem;
	}

	h2, .h2 {
		font-size: 1.4rem;
	}

	h3, .h3 {
		font-size: 1.3rem;
	}

	body, html {
		font-size: 12px;
	}

	.post-date-square {
		height: 40px;
		width: 40px;
	}

	.post-date-square .day {
	    font-size: 14px;
	    padding-top: 8px;
	}

	.post-date-square .month {
	    letter-spacing: .1em;
	    font-size: 8px;
	}

	.text-date, .text-date:hover {
		font-size: 11px;
	}

}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) {

	body {
		line-height: 17px;
	}

	body, html {
		font-size: 13px;
	}

}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {

	.text-date, .text-date:hover {
		font-size: 11px;
		line-height: 1.54em;
		letter-spacing: .2em;
	}

	h1, .h1 {
		font-size: 2.5rem;
	}

	h2, .h2 {
		font-size: 2rem;
	}

	h3, .h3 {
		font-size: 1.75rem;
	}

}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {

	.post-date-square {
		height: 70px;
		width: 70px;
	}

	.post-date-square .day {
	    font-size: 30px;
		padding-top: 14px;
	}

	.post-date-square .month {
	    letter-spacing: .2em;
	    font-size: 12px;
	}

}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {

	body, html {
		font-size: 15px;
	}

	body {
		line-height: 24px;
	}
}
