/* LINKLYST 1.00 | Created by Brad Linder | RAVEN I|I */
/* Change the values below for the color scheme that you want */
@font-face {
  font-family: 'Karoll';
  text-rendering: optimizeLegibility;
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/Karoll-Round.eot'); /* IE9 Compat Modes */
  src: local('Karoll Round'), local('Karoll'),
	   url('/fonts/Karoll-Round.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('/fonts/Karoll-Round.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('/fonts/Karoll-Round.woff') format('woff'), /* Modern Browsers */
	   url('/fonts/Karoll-Round.svg#Karoll-Round') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Karoll';
  text-rendering: optimizeLegibility;
  font-style: normal;
  font-weight: 100;
  src: local('Karoll-LightRound'), local('Karoll Light'),
	   url('/fonts/Karoll-LightRound.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('/fonts/Karoll-LightRound.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('/fonts/Karoll-LightRound.woff') format('woff'), /* Modern Browsers */
	   url('/fonts/Karoll-LightRound.svg#Karoll-LightRound'); format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Karoll';
  text-rendering: optimizeLegibility;
  font-style: normal;
  font-weight: 700;
  src: local('Karoll-BoldRound'), local('Karoll Bold'),
	   url('/fonts/Karoll-BoldRound.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('/fonts/Karoll-BoldRound.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('/fonts/Karoll-BoldRound.woff') format('woff'), /* Modern Browsers */
	   url('/fonts/Karoll-BoldRound.svg#Karoll-BoldRound'); format('svg'); /* Legacy iOS */
}
:root {
	--primaryColor: #079daa;
	--secondaryColor: #1f2025;
	--buttonColor: rgba(255, 255, 255, 0.2);
	--linkColor: #ecedef;
	--nameColor: #057a84;
	--hoverColor: #005c5c;
}

/* The bg.jpg should be changed to a picture of your choosing. Recommended size is 1920 x 965 or 1920 x 1080 */
/* If you don't want a background image, simply comment out the second background line below and it will pull the secondaryColor variable you set at :root instead */
html {
	background: var(--secondaryColor);
	/* background: linear-gradient(rgba(39, 40, 45, 0.9), rgba(15, 15, 16, 0.9)), url("/bg.jpg") fixed center center; */
	background-size: cover;
}

.overContainer {
	padding: 10px;
	max-width: 1340px;
	margin: 0 auto;
}

.mainContainer {
	display: flex;
	max-width: 1200px;
	margin: 20px auto;
}

.center-container {
	margin: 20px auto;
	text-align: center;
}

.flex-buttons {
display: flex;
margin: 10px 0;
}

.flex-buttons a {
flex: auto;
margin: 0 5px;
text-align: center;
}

.big {
width: 100%;
font-size: 28px;
height: auto;
margin: 0;
}

.btn:hover {
	background-color: #ffffff78;
}

.btn, .read, input.btn {
transition: .5s;
color: #baf2ff;
background-color: #bce6f014;
cursor: pointer;
border: 1px solid #baf2ff;
border-radius: 10px;
padding: 6px;
padding: 0.5rem;
line-height: normal;
text-shadow: black 0px 1px 1px;
backdrop-filter: blur(2px);
}

.btn span {
	opacity: 50%;
	margin-left: 6px;
}

.link {
	margin: 24px 0 12px 0;
	text-align: left;
	font-size: 16px;
}

.linkButton {
	padding: 10px;
	background: var(--nameColor);
	color: var(--linkColor);
	border-radius: 10px;
	transition: .5s;
}

.linkButton:hover {
	background: var(--hoverColor);
	transition: .5s;
	color: var(--nameColor);
}

.social-icons {
	margin: 20px 0 30px 0;
}

.social-icons a i {
	font-size: 26px;
	vertical-align: middle;
	color: var(--primaryColor);
	transition: .5s;
}

.social-icons a:not(:last-child) {
	margin-right: 20px;
}

.social-icons a i:hover {
	color: var(--primaryColor) !important;
	transition: .5s;
}

button {
	border: 1px solid #b6b6b6;
	border-radius: 8px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}

button {
	width: 100%;
	font-size: 30px;
	height: auto;
	margin: 0;
}

.btn-big {
	height: 75px;
	width: 90%;
	margin: 10px auto !important;
	font-size: 1.5rem !important;
	border: none;
	transition: .5s;
	cursor: pointer;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-big:hover {}

.separator {
	margin-top: 25px;
	margin-bottom: 25px;
	border: 0;
}

.separator--line {
	border: 0;
	border-bottom: 5px solid var(--buttonColor);
	width: 0;
	-webkit-animation: separator-width 1s ease-out forwards;
	animation: separator-width 1s ease-out forwards;
}

@-webkit-keyframes separator-width {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes separator-width {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.separator--dots {
	overflow: visible;
	border: 0;
	content: "";
	background-color: var(--buttonColor);
	display: block;
	height: 7px;
	width: 7px;
	border-radius: 50%;
	position: relative;
}

.separator--dots:before {
	content: "";
	background-color: var(--buttonColor);
	display: block;
	height: 7px;
	width: 7px;
	border-radius: 50%;
	position: absolute;
	left: -32px;
	-webkit-animation: dot-move-left 1s ease-out forwards;
	animation: dot-move-left 1s ease-out forwards;
}

.separator--dots:after {
	content: "";
	background-color: var(--buttonColor);
	display: block;
	height: 7px;
	width: 7px;
	border-radius: 50%;
	position: absolute;
	left: 32px;
	-webkit-animation: dot-move-right 1s ease-out forwards;
	animation: dot-move-right 1s ease-out forwards;
}

@-webkit-keyframes dot-move-right {
	0% {
		left: 0;
	}

	100% {
		left: 32px;
	}
}

@keyframes dot-move-right {
	0% {
		left: 0;
	}

	100% {
		left: 32px;
	}
}

@-webkit-keyframes dot-move-left {
	0% {
		left: 0;
	}

	100% {
		left: -32px;
	}
}

@keyframes dot-move-left {
	0% {
		left: 0;
	}

	100% {
		left: -32px;
	}
}

.feed-column {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0 30px 0 5px;
}

.feed-column .feed-title {
	font-size: 22px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	display: inline-block;
}

.feed-column .feed-list article{
	font-size: 18px;
	line-height: normal;
	text-align: left;
}

.feed-column .feed-list p {
	font-size: 14px;
	line-height: normal;
	text-align: right;
	margin: 10px 0 0 0;
	position: absolute;
	right: 15px;
	bottom: 15px;
}

.feed-column .thumb {
	max-width: 130px;
}

.feed-column .thumb img {
	height: 130px;
	border-radius: 10px;
	width: 130px;
}

.feed-column .download_img {
	width: 130px;
	height: 130px;
	position: absolute;
	right: -20px;
	top: -20px;
}

.file {
	margin: 10px;
}

.file h1 span {
	font-size: 24px;
	margin-left: 5px;
	font-weight: normal;
}

.feed-row {
	display: flex;
	/* overflow-x: scroll; */
}

.feed-row .feed-list {
	flex: auto;
	width: 300px;
	height: 100%;
	border-radius: 11px 11px 3px 3px;
	  background-color: #ffffff0d;
}
.feed-row > .feed-list > .download_img {
	border-radius: 10px 10px 0px 0px;
}
.feed-row .feed-list:not(:last-child) {
	margin: 0 14px 0 0;
}

.feed-row .feed-info {
	margin-left: 0;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	/* width: 300px; */
	padding: 0 10px;
}

.feed-row .feed-title {
	font-size: 16px;
}

.feed-column .feed-info {
	margin-right: 120px;
}

.feed-column .feed-list {
	position: relative;
	width: 100%;
	min-height: 160px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--linkColor);
	margin: 10px 0 35px 0;
	border-radius: 10px;
	border-left: 5px #067a84 solid;
}

.feed-row .feed-list p {
	margin: 2px;
}

.feed-row .thumb {
	max-width: 180px;
	position: relative;
	min-height: 150px;
	min-width: 300px;
}

.feed-row .thumb img {
	max-height: 200px;
	border-radius: 10px;
}

.feed-row .download_img {
	width: 300px;
	max-height: 150px;
}

.blurb {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	padding: 20px;
	text-align: center;
	color: var(--linkColor);
	display: inline-block;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	max-width: 75%;
	backdrop-filter: blur(5px);
}

.container {
	margin: 0 auto;
	text-align: center;
}

img {
	margin: 2px;
}

a:hover {
	color: var(--hoverColor);
	text-decoration: none;
}

a {
	color: var(--primaryColor);
	text-decoration: none;
	transition: .5s;
	font-weight: bold;
}

body {
	font-family: Karoll, system-ui, -apple-system, BlinkMacSystemFont, segoe ui, sans-serif;
	font-weight: 300;
	font-size: 20px;
	color: #b2bcc0;
	margin: 20px;
}

.header a {
	color: var(--nameColor);
	text-transform: capitalize;
	word-spacing: 10px;
	letter-spacing: -2px;
	font-family: "Dawning of a New Day", sans-serif;
}

.header a:hover {
	color: var(--hoverColor);
}

.header_img img {
	max-width: 100px;
	border-radius: 50%;
	border: 3px solid #057a84;
}

.main {
	max-width: 1110px;
	text-align: center;
	margin: 0 auto;
	min-height: 50vh;
	margin-bottom: 50px;
}

.iconimg {
	width: 64px;
	padding: 10px;
}

.footer {
	font-weight: 300;
	text-align: center;
	width: 100%;
	margin: 0 0 20px 0;
	font-size: 12px;
	font-weight: 500;
	padding-top: 16vh;
}

.footer img {
	vertical-align: middle;
}
.header {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.Button-icon {
	margin-right: 10px;
	font-size: 2.5rem;
	vertical-align: middle;
	color: var(--primaryColor);
}

.logo {
	font-size: 55px;
	font-weight: 500;
	margin-top: 20px;
	text-align: center;
	line-height: 55px;

}

.subtitle {
	margin: 10px;

	color: #757d8a;
	font-size: 22px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 380px) {

	.btn-big {
		font-size: 1rem;
	}

	.Button-icon {
		/* font-size: 1.4rem !important; */
		margin-right: 5px;
	}

	body {
		font-size: 16px;
		margin: 1px;
	}
}

@media only screen and (max-width: 700px) {

	body {
		padding: 0;
	}

	.btn-big {
		font-size: 1.1rem !important;
	}

}

@media only screen and (min-width: 1000px) {
	.header {
		margin: 10vh auto 0px auto;
	}
}

@media (max-width: 600px) {
	.logo {
		text-align: center;
		font-size: 36px;
		margin-top: 5px;
	}

	.footer {
		font-size: 10px;

	}

	.subtitle {
		font-size: 12px;
	}

	.btn-big {
		width: 95%;
	}
	.feed-column .download_img {
	width: 100px;
	height: 100px;
	}
	.feed-column .thumb img {
	height: 100px;
	width: 100px;
	}
	.feed-column .feed-info {
	margin-right: 62px;
	}
	.blurb {
		max-width: calc(100% - 10px);
	}
}

@media (max-width: 400px) {
	.main {
		min-height: 345px;
	}
	.social-icons a i {
	margin-right: 15px;
	font-size: 28px;
}
}