@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
	shape-rendering: crispEdges;
	text-decoration: none;
}

html,
body {
	background: #f2f2f2;
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	background: linear-gradient(
			to right,
			rgba(242, 242, 242, 100),
			rgba(242, 242, 242, 100)
		),
		linear-gradient(to right, rgba(41, 56, 54, 1) 0%, rgba(92, 54, 48, 1) 100%);
	background-size: 100% 2px, 0 2px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.5s cubic-bezier(0.15, 0.25, 0, 0.75) 0s;
}
/* rgba(19,25,25,1) 0%, rgba(158,166,166,1) 100%); */

@media(hover: hover) and (pointer: fine) {

a:hover {
	background-size: 0 2px, 100% 2px;
}
}

.info-container {
	align-items: center;
	height: 250px;
	display: flex;
	position: relative;
	margin: 0 auto;
	max-width: 1300px;
	padding: 10px;
}

.info {
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	word-break: break-all;
}

.info > div {
	max-width: 33%;
}

.top-nav--sticky {
	position: sticky;
	height: 60px;
	top: 0;
	max-width: 1300px;
	padding: 10px;
	background: #f2f2f2;
	z-index: 50;
	align-items: center;
	display: flex;
	margin: 0 auto;
}

.scroll {
	display: none;
}

.top-nav {
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	word-break: break-all;
	align-items: center;
}

i.arrow {
	border: solid black;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 4px;
	margin: 2px;
}

i.up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	vertical-align: bottom;
}

.logo {
	z-index: 2;
	color: black;
}

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

.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	color: black;
}

.menu li {
	padding-left: 5px;
}

.flex-nav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.flex-nav li {
	padding: 5px;
}

.column {
	float: left;
}

.size-1of1 {
	width: 100%;
}

.size-1of2 {
	width: 50%;
}

#grid {
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
}

img,
video {
	width: 100%;
	height: auto;
	display: block;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

#item {
	margin: 0px 10px 20px 10px;
}

/* RESPONSIVE */
@media screen and (min-width: 769px) {
	#grid[data-columns]::before {
		content: "2 .column.size-1of2";
	}
}

@media screen and (max-width: 769px) {
	#grid[data-columns]::before {
		content: "1 .column.size-1of1";
	}

	img {
		max-width: 100%;
	}

	#item {
		margin-bottom: 20px;
	}
}

@media (max-width: 769px) {
	.info-container {
		align-items: center;
		height: auto;
		width: 100vw;
	}

	.info {
		flex-direction: column;
	}

	.info > div {
		max-width: 100%;
		margin-top: 20px;
	}
}

