/* Google Fonts  */

@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@800;900&family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');


html {
	position: relative;
	min-height: 100%;
}

/* Bootstrap fixes */
@media (min-width: 576px) and (max-width: 767px) {
	.container, .container-sm {
    max-width: 768px;
	}	
}

@media (min-width: 768px){
	.container, .container-lg, .container-md, .container-sm {
    max-width: 768px;
	}
}

@media (min-width: 992px){
	.container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
	}
}


body {
	/* Padding top for navbar */
	/* padding-top: 56px; */
	/* Margin bottom for footer height */
	margin-bottom: 60px;
	background: #F7FAFC;
	font-family: 'Montserrat', sans-serif;
}

section {
	padding: 10px 0;
	margin-top: 0px;
}

.read-more {
	color: #718096;
	text-decoration: none;
	transition: all .5s ease;
}

.read-more:hover {
	color: #4a5568;
}

h1,
h2 {
	font-family: 'Catamaran', sans-serif;
}

a {
	color: #2d3748;
	text-decoration: none;
}

a:hover {
	color: #718096;
	text-decoration: none;
}

img {
	max-width: 100%;
}

pre,
code {
	background: #F7FAFC;
	color: #000000;
	font-family: 'Fira Code', monospace;
	
}

pre {
	border-radius: 6px;
	padding: 10px;
	box-shadow: inset 0 0 0 1px #dae4ed, 0 5px 15px -5px rgba(0, 0, 0, 0.1);
	margin: 2rem 0;
}


code {
	display: inline-block;
	padding: 0 0.5em;
	line-height: 1.4em;
	border-radius: 3px;
}

table {
	margin-bottom: 1rem;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr {
	color: #718096;
}

tr:nth-child(even){
	background-color: #fafafa;
}

tr:hover {
	background-color: #eeeeee;
	color: #000000;
}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #dddddd;
  color: #000000;
}

.title {
	color: #2d3748;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.25;
	margin-top: 1rem;
}

a>.title:hover {
	color: #4a5568
}

blockquote {
	padding: 10px 20px;
	margin: 0 0 20px 20px;
	border-left: 5px solid #eee;
	font-style: italic;
}


/* Paginator */
.paginator {
	margin-top: 20px;
	margin-bottom: 120px;
}

.pagination-link {
	color: #718096;
	font-family: 'Catamaran', sans-serif;
	font-weight: 900;
	text-decoration: none;
	transition: all .5s ease;
}

.pagination-link:hover {
	color: #4a5568;
}

/* Navbar */
.navbar-nav {
	text-align: right;	
	padding-right: 10px;
}

.nav-link, .navbar-nav .btn-link {
	color: #a0aec0;
	font-weight: 600;
	font-size: 0.8em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .5s ease;
	padding-right: 0;
}

.nav-link:hover, .navbar-nav .btn-link:hover {
	color: #718096;
}

img.nav-png-icon {
	width: 1rem;
	height: 1rem;
	padding-bottom: 2px;
	margin-left: 5px;
}


/* Footer */
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 0.8em;
	margin-top: 50px;
}

.mini-logo {
	height: 22px;
	padding-bottom: 5px;
}

/* Home - Header */
header.welcome {
	padding: 100px 0;
}

/* Home - Page */
.page-cover-image {
	background-size: cover;
	background-position: center;
}

.page-description {
	color: #b5b5b5;
	font-style: italic;
}

/* VIDEO EMBED RESPONSIVE */
.video-embed {
	overflow: hidden;
	padding-bottom: 56.25%;
	/* 16:9 */
	position: relative;
	height: 0;
}

.video-embed iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/* Alternative Tweaks  */
.content-card {
	background: #FFF;
	padding: 75px 50px;
	border-radius: 6px;
	box-shadow: inset 0 0 0 1px #dae4ed, 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}

.content-card {
	color: #718096;
}

.page-cover-image {
	margin: -75px -50px 0;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.logo-img {
	max-height: 40px;
	width: auto;
}


.page-content {
	margin-top: 1em;	
}

.text-grey {
	color: #718096;
	font-family: 'Catamaran', sans-serif;
}

.text-date,
.text-category a,
.text-category {
	color: #a0aec0;
	font-weight: bold;
	font-family: 'Catamaran', sans-serif;
}


.clock {
	margin-right: 5px;
}

.arrow {
	margin-left: 5px;
}

/* Go to top button  */
#gtu_button {
	display: inline-block;
	background-color: #1f1f1f;
	text-align: center;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 10px;
	transition: all .3s,
	opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	color: white;
	padding: 10px 15px;
}


#gtu_button:hover {
	cursor: pointer;
	background-color: #333;
}

#gtu_button:active {
	background-color: #555;
}

#gtu_button.show {
	opacity: 1;
	visibility: visible;
}

/* Styles for the content section */
.content {
	/*width: 77%;*/
	margin: 50px auto;
	font-family: 'Merriweather', serif;
	font-size: 17px;
	color: #6c767a;
	line-height: 1.9;
}

@media (min-width: 500px) {
	.content {
		/*width: 43%;*/
	}

	#gtu_button {
		margin: 30px;
	}
}

.content h1 {
	margin-bottom: -10px;
	color: #03a9f4;
	line-height: 1.5;
}

.content h3 {
	font-style: italic;
	color: #96a2a7;
}