	html {
		font-size: 16px;
	}

	body {
		font-family: "poppinsregular", sans-serif;
		color: rgba(0, 0, 0, 0.95);
		line-height: 20px;
	}
p {
	margin: 0;
}

	h1, h2, h3, h4, h5, h6 {
		font-weight: 700;
		margin: 0 0 1rem 0;
	}

	h1 {
		font-size: 1.7em;
		padding-top: 0em;
		
	}

	h2 {
		font-size: 1.5em;
	}

	h3 {
		font-size: 1.3em;
	}

	h4 {
		font-size: 1.1em;
	}

	h5 {
		font-size: 0.9em;
	}

	h6 {
		font-size: 0.7em;
	}


hr{
	border:solid black 0.1px; height:0.1px;
	clear:both;
}

	input, select, textarea {
		color: #1e1f23;
	}

	a {
		color: #f31414;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		text-decoration: none;
	}
	
	a:hover {
    	color: #f48b50;
    	text-decoration: none;
	}	
	
	hr {
		border-bottom-color: rgba(144, 144, 144, 0.25);
	}

		body:after {
			-moz-pointer-events: none;
			-webkit-pointer-events: none;
			-ms-pointer-events: none;
			pointer-events: none;
			-moz-transition: opacity 1.5s ease-in-out, visibility 1.5s;
			-webkit-transition: opacity 1.5s ease-in-out, visibility 1.5s;
			-ms-transition: opacity 1.5s ease-in-out, visibility 1.5s;
			transition: opacity 1.5s ease-in-out, visibility 1.5s;
			content: ''; 
			background-image: url(../images/bg.jpg);
			background-attachment: fixed;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			position: fixed;
			display: block;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			z-index: -1;
			visibility: visible;
			opacity: 1;
		} 

	#header {
		color: #a6a6a6;
		cursor: default;
		position: relative;
		text-align: center;
		z-index: 100;
		line-height: 50px;
		margin: 100px 0 0 0;
	}

		#header > .logo {
			margin: 0 0 20px 0;
		}

			#header > .logo a {
				font-size: 64px;
				font-weight: 700;
				color: #FFF;
				text-decoration: none;
				text-shadow: 0px 0px 5px rgba(17, 17, 17, 0.75);

			}

			#header > .logo span {
				font-weight: 300;
				font-size: 32px;
				display: block;
				color: rgba(255, 255, 255, 0.95);
			}

@media screen and (max-width: 800px) {
	
			body:after {
			-moz-pointer-events: none;
			-webkit-pointer-events: none;
			-ms-pointer-events: none;
			pointer-events: none;
			-moz-transition: opacity 1.5s ease-in-out, visibility 1.5s;
			-webkit-transition: opacity 1.5s ease-in-out, visibility 1.5s;
			-ms-transition: opacity 1.5s ease-in-out, visibility 1.5s;
			transition: opacity 1.5s ease-in-out, visibility 1.5s;
			content: ''; 
			background-image: url(../images/bg_small.jpg);
			background-attachment: fixed;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			position: fixed;
			display: block;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			z-index: -1;
			visibility: visible;
			opacity: 1;
		} 
	#header {
		color: #a6a6a6;
		cursor: default;
		position: relative;
		text-align: center;
		z-index: 100;
		line-height: 50px;
		margin: 80px 0 0 0;
	}

		#header > .logo {
			margin: 0 0 10px 0;
		}

			#header > .logo a {
				font-size: 44px;
				font-weight: 700;
				color: #FFF;
				text-decoration: none;
				text-shadow: 0px 0px 5px rgba(17, 17, 17, 0.75);

			}

			#header > .logo span {
				font-weight: 300;
				font-size: 22px;
				display: block;
				color: rgba(255, 255, 255, 0.95);
			}
.wrapper {
		margin: 0 -10px 0 -10px;
	}
}

.inner {
		margin: 0 auto;
		width: 1600px;
		max-width: 92%; 
		background: rgba(255, 255, 255, 0.75);
		-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
		-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
		box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
		border-radius: 4px; 
	}

.wrapper {
	padding: 25px;
}

.grid {
  display: grid;
  gap: 10px;
	grid-template-columns: 70% 30%;
}
.main {
	padding: 0 15px 0 0;
}
.side {
	padding: 0 10px 0 25px;
	border-left: 2px solid grey;
}
.main,
.side {
  /*nix*/
}

@media(max-width: 800px){
  .grid {
	  grid-template-columns: 100%; 
  }
	.side {
	border-left: none;
		border-top: 2px solid grey;
		padding: 20px 0 0 0;
  }
	.main {
	padding: 0 0 10px 0;
  }
}
/* Back to Top */
#backtotop {
  display: inline-block;
  background-color: #909090;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 5px;
  right: 5px;
  transition: background-color .5s, 
  opacity .5s, visibility .5s;
  opacity: 0.4;
  visibility: hidden;
  z-index: 1000;
}
#backtotop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 25px;
  line-height: 30px;
  color: #ffffff;
}
#backtotop:hover {
  cursor: pointer;
  background-color: #606060;
}
#backtotop:active {
  background-color: #909090;
}
#backtotop.show {
	opacity: 0.4;
  visibility: visible;
}

/* Footer */

.thrfooter{
	padding: 15px 0px 15px 0px;
	background: transparent;
	text-align: center;
	color: #bbb;
	 		font-weight: bold;
	        font-style: normal;
	        font-size: 16px;  
}
.thrfooter a {
			text-decoration: none; 
}
.thrfooter a:hover {
				color: #FFF;
				text-decoration: none; 
}
.footer{
	padding: 0px 0px 15px 0px;
	background: transparent; 
	text-align: center;
	color: #bbb; 
	 		font-weight: bold;
	        font-style: normal;
	        font-size: 11px;  
}
.footer a {
			text-decoration: none; 
}
.footer a:hover {
				color: #fff;
				text-decoration: none; 
}
.copyright{
	padding: 0px 0px 15px 0px;
	background: transparent;
	text-align: center;
	color: #BBB;
	font-weight: normal;
	font-style: normal;
	font-size: 11px;  
}