@import url("https://use.frontawsome.com/releases/v6.5.1/css/all.css");  
html, a { 
	text-decoration: none;
}
html, body {  
	width: 100%;
	height: 100%;
	margin: 0px;
	font-family: helvetica, sans-serif; 
}

.head-container {
	margin-top: 0px;
	display: flex;
	flex-direction: row;
	position: relative;
	background-color: #000;
	width: 100%;
	align-items: center;
	height: 110px;
	justify-content: center;
	gap: 200px;
}
.header-links {
	display: flex;
	flex-direction: row;
	width: 500px;
	height: 50px;
	align-items: center;
	justify-content: space-evenly;
}
.header-links a {
	color: #F1F1F1;
	font-family: helvetica, sans-serif;
	font-size: 23px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}
.header-links a:hover {
	color: #dc2430;
}
.head-container .head-logoBx {
	position: relative;
	width: 400px;
	height: 50px;
	z-index: 1;
	justify-items: center;
	align-items: center;
}
.head-container .head-logoBx img {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	border-radius: 5px;
	object-fit: contain;
}

.bar {
	display: block;
	height: 3px;
	width: 100%;
	position: absolute;
	background: linear-gradient(-45deg, #b62020, #cb2424, #fe2e2e, #fe5757, #fe8181);
	background-size: 400% 400%;
	animation: gradient 7s ease infinite;
}

.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #444444;
	margin: 0px;
	height: auto;
	margin-top: 15px;
}
.f-container{
	display: flex;
	flex-direction: row;
	height: auto;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
	align-content: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.about-content{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.product-content{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.contact-content{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.about{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	font-weight: 500;
	font-size: 20px;
}
.products{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	font-weight: 500;
	font-size: 20px;
}
.contact{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	font-weight: 500;
	font-size: 20px;
}

.footer a:link {
  	text-decoration: none;
  	color: #F1F1F1;
	padding-top: 5px;
	padding-bottom: 5px;
}

.footer a:visited {
  	text-decoration: none;
	color: #F1F1F1;
}

.title-section{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.title-section h1 {
	text-align: center;
	justify-self: center;
	align-self: center;
	font-size: 60px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 0px;
}
.title-section h3 {
	text-align: center;
	justify-self: center;
	align-self: center;
	font-size: 35px;
	font-weight: 350;
}
.links {
    display: flex;
    flex-direction: row;
    justify-self: center;
    justify-items: center;
    gap: 100px;
    height: auto;
    width: auto;
    flex-wrap: wrap;
}
.link1, .link2, .link3{
	width: 300px;
	height: auto;
	background:#444
}

.container {
	align-self: center;
	position: relative;
	width: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px;
	padding-top: 60px;
	font-family: helvetica, sans-serif;
}
.container .card {
	position: relative;
	background-color: #303030;
	display: flex;
	flex-direction: column;
	flex: 1 1 30F0px;
	max-width: 250px;
	width: 100%;
	height: auto;
	margin: 1rem;
	box-sizing: border-box;
	padding: 15px;
	font-family: helvetica, sans-serif;
	border-radius: 7px;
	animation: gradient 5s ease infinite;
}
.container .card .card-heading {
	margin-bottom: 10px;
}
@property --angle{
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
.container .card::after, .container .card::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 50%;
	top:50%;
	translate: -50% -50%;
	z-index: -1;
	padding: 4px; 
	border-radius: 7px; 
	background-image: conic-gradient(from var(--angle), #7b4397, #dc2430, #7b4397);
	animation: spin 5s linear infinite;
}
.container .card::before {
	filter: blur(1rem);
	opacity: 0.5;
}
.container .card .imgBx {
	position: relative;
	margin: 0 auto;
	max-width: 220px;
	width: 100%;
	height: auto;
	z-index: 1;
	padding-left: 6%;
}
.container .card .imgBx img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: auto;
}
.container .card .content {
	overflow: hidden;
}
.container .card .content h2 {
	position: relative;
	align-self: baseline;
	text-align: center;
	color: #F1F1F1;
	font-family: helvetica, sans-serif;
	margin-top: 3px;
}
.container .card .content-h {
	position: relative;
	align-self: baseline;
	text-align: center;
	color: #F1F1F1;
	opacity: 1;
	visibility: visible;
	font-family: helvetica, sans-serif;
}
.container .card .content .card-desc {
	padding-left: 5px;
	padding-right: 5px;
	list-style-type: none;
	margin: 0;
	padding-top: 20px;
	font-weight: 800;
	font-size: 16px;
}
.link-button {
	text-decoration: none;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	justify-self: center;
	padding: 7px 15px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white;
	border-radius: 10px;
	display: block;
	border: 0px;
	font-weight: 700;
	box-shadow: 0px 0px 14px -7px #f24a58;
	background-image: linear-gradient(45deg, #994bff 0%, #9a0a0a  51%, #994bff  100%);
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	font-size: 15px;
}
.link-button:hover {
	background-position: right center;
	color: #fff;
	text-decoration: none;
}
.link-button:active {
	transform: scale(0.95);
}
.fakeBody {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0px;
	height: auto;
}
.guides, .redirect {
	border: 2px solid crimson;
	align-items: center;
	background-color: #202020;
	color: #ffffff;
	padding: 15px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	font-family: helvetica, sans-serif;
	margin-top: 20px;
	width: 80%;
	justify-self: center;
}
.redirect{
	width: 65%;
}
.guides .guide-imagebox{
	width: 300px;
	height: 300px;
	padding-bottom: 20px;
}
.guides .guide-imagebox img {
	width: 100%;
	height: 100%;
}
.guides .template-redirect h2{
	text-align: center;
	font-family: Impact, Charcoal, sans-serif;
	font-size: 50px;
	font-weight: 500;
	color: #fffafa;
	letter-spacing: 4px;
	word-spacing: 4px;
	line-height: 1.2;
	margin-top: 0px;
	margin-bottom: 10px;
}
.guides .template-redirect {
	max-width: 320px;
	width: 320px;
}
.seperating-bar {
	width: 5px;
	height: 350px;
	background-image: linear-gradient(30deg, #994bff 0%, #9a0a0a  51%, #994bff  100%);
}
.seperating-bar-small {
	width: 5px;
	height: 150px;
	background-image: linear-gradient(30deg, #994bff 0%, #9a0a0a  51%, #994bff  100%);
}
.redirect-imagebox {
	width: 180px;
	height: 180px;
}
.redirect-imagebox img {
	width: 100%;
	height: 100%;
}
.redirect .text {
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	margin-right: 30px;
}
.redirect .text .title {
	text-align: center;
	font-size: 25px;
	margin-bottom: 15px;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes spin {
	from{
		--angle: 0deg;
	}
	to {
		--angle: 360deg;
	}
}

@media only screen and (max-width: 768px) {
 
  .head-container{
	flex-direction: column;
	align-items: center;
	justify-items: center;
	gap: 0px;
  }
  .head-container .header-links {
	  width: 100%;
  }
  .head-container .head-logoBx {
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
	width: 400px;
	height: 50px;
	justify-items: center;
	padding-bottom: 5px;
  }
  .head-container .head-logoBx .logo-link{
	height:100%
  }
  .footer{
	padding-bottom: 40px;
  }
  .f-container{
	flex-direction: column;
	height: auto;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
	align-content: center;
	justify-content: center;
  }
  .about, .contact, .products, .about-content, .product-content, .contact-content{
	align-content: flex-start;
  }
  .seperating-bar{
	width: 300px;
	height: 5px;
	margin-bottom: 10px;
  }
  .seperating-bar-small{
	width: 0px;
	height: 0px;
  }
  .redirect .redirect-imagebox{
	width: 0px;
	height: 0px;
  }
  .redirect .text {
	margin-right: 0px;
  }
  .guides{
	width: 70%;
  }
  .guides, .redirect {
	margin-left: auto;
	margin-right: auto;
  }
  .guides .template-redirect h2 {
	font-size: 35px;
  }
  .guides .guide-imagebox{
	width: 250px;
	height: 250px;
  }
  .guides .template-redirect {
	justify-items: center;
	align-items: center;
  }
}
