.Pop .Overlay{
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: var(--secondary-color);
	background: var(--secondary-color);
	z-index: 1000000;
}
.Pop .Contents{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	width: 450px;
	height: 200px;
	z-index: 2;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}
.Title1{
	font-family: 'Open_Sans', sans-serif;
	font-weight: normal;
	color: var(--primary-color);
}
.Info1{
	font-family: 'Open_Sans', sans-serif;
	font-weight: normal;
	color: var(--grey);
	font-size: 18px;
}
.blog-post_title{
	color:  var(--text-color);
}
body{
	background-color:  var(--secondary-color);
	margin: 0;
	padding: 0;
	min-height: 100vh;
  display: flex;
  flex-direction: column;
}
:root{
	font-size: 16px;
	font-family: 'Open_Sans', sans-serif;
	--text-color: black;
	--primary-color: #f21410;
	--secondary-color: white;
	--third-color: #1e1e1e;
	--test: white;
	--grey: #808080;
	--dark-grey: #121212;
	--black: black;
	--Card: #f21410;
	--Title2: black;
	--Title: white;
}
.container {
	max-width: 768px;
}
.grid{
	display: grid;
	gap: 1.5rem;
}
*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html{
	scroll-behavior: smooth;
}
ul {
	list-style: none;
}
a{
	text-decoration: none;
}
.header{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 15;
	background-color: var(--dark-grey);
}
.nav{
	max-width: 968px;
	height: 6rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav_logo,
.nav_toggle{
	color: var(--primary-color);
	font-weight: 500;
	margin-left: 0.4rem;
}
.nav_toggle{
	font-size: 1.1rem;
	cursor: pointer;
}
.nav_toggle:hover{
	color: var(--secondary-color);
}
@media screen and (max-width: 500px){
	.Heading{
	margin-left: 1rem !important;
	margin-top: -2rem !important;
	}
}
@media screen and (max-width: 767px){
	.nav_menu{
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: var(--dark-grey);
	padding: 2rem 1.5rem 4rem;
	box-shadow: 0 -1px 4px rgba(0, 0, 0, .15);
	border-radius: 1.5rem 1.5rem 0 0;
	transition: .3s;
	}
	.menu{
	font-size: 1.8rem !important;
	}
	.change-theme{
	font-size: 1.8rem !important;
	}
}
@media screen and (min-width:  768px){
	.container{
	margin-left: auto;
	margin-right: auto;
	}
	body{
	margin: 0;
	}
	.header{
	top: 0;
	bottom: initial;
	padding: 0 1rem;
	}
	.nav{
	height: 3.8rem;
	column-gap: 1rem;
	}
	.nav_icon,
	.nav_close,
	.nav_toggle{
	display: none !important;
	}
	.nav_list{
	display: flex;
	column-gap: 2rem !important;
  }
	.nav_menu{
	margin-left: 0%;
	}
}
@media screen and (min-width:  1080px){
  .IMGmobile{
	display: none !important;
	visibility: hidden !important;
	}
	.Textmobile{
	display: none !important;
	visibility: hidden !important;
	}
	.Header1mobile{
	display: none !important;
	visibility: hidden !important;
	}
	.AboutPg {
	overflow: hidden;
	}
	}
@media screen and (max-width:  1079px){
	.IMG{
	display: none !important;
	visibility: hidden !important;
	}
	.Text{
	display: none !important;
	visibility: hidden !important;
	}
	.Header1{
  display: none !important;
  visibility: hidden !important;
	}
}
@media screen and (min-width:  960px){
  .nav_list{
	column-gap: 3.9rem !important;
	}
}
  .nav_list{
	grid-template-columns: repeat(3, 1fr);
	gap: 2.05rem;
	margin-bottom: -1%;
}
  .nav_link{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.09rem;
	color: var(--primary-color);
	font-weight: 300;
}
  .nav_link:hover{
	color: var(--test);
}
  .nav_icon{
	font-size: 1.35rem;
}
  .nav_close{
	position: absolute;
	right: 1.3rem;
	bottom: 1.25rem;
	font-size: 1.8rem;
	color:  var(--primary-color);
	cursor: pointer;
}
  .nav_close:hover{
	color: var(--text-color);
}
  .show-menu{
	bottom: 0;
}
  .pic {
	height: 4rem;
	margin-left:  5%;
}
  .menu {
	margin-left:  75%;
	font-size:  1.6rem;
	color: var(--primary-color);
}
  .menu:hover{
	color: var(--text-color);
}
  .nav_btns{
	display: flex;
	align-items: center;
}
  .change-theme{
	font-size: 1.6rem;
	color: var(--primary-color);
	margin-left: -80%;
	cursor: pointer;
}
  .change-theme:hover{
	color:  var(--test);
}
body.dark-theme{
	--primary-color: #f21410;
	--secondary-color: black;
	--text-color: white;
	--third-color: #1e1e1e;
	--test: white;
	--grey: #808080;
	--dark-grey: #121212;
	--black: black;
	--Title: #808080;
	--Card: white;
	--Title2: #f21410;
}
.nav_logo {
  animation: move 5s infinite ease-in-out;
}
@keyframes move {
  20%, 100% {
    filter: hue-rotate(360deg);
  }
  0% {
    filter: hue-rotate(0deg);
  }
  10% {
   filter: hue-rotate(180deg);
  }
}
html, body{
	position: relative;
	width: 100%;
	height: 100%;
}
a:hover {
	text-decoration: none;
}
label{
	display: block;
}
input, button, select, textarea{
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}
input:disabled{
	color: #ccc;
}
button{
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}
button:disabled{
	color: #999;
}
button:not(:disabled):active{
	background-color: #ddd;
}
button:focus{
	border-color: #666;
}
form{
	color: var(--text-color);
	max-width: 500px;
	margin:auto
}
.field{
	width: 100%;
	position: relative;
	border-bottom: 2px dashed var(--text-color);
	margin: 4rem auto 1rem;
	top: 3rem;
}
.label{
	color: var(--text-color);
	font-size: 1.2rem;
	z-index: -1;
	position: absolute;
	transform: translateY(-2rem);
	transform-origin: 0%;
	transition: transform 400ms;
}
.input{
	outline: none;
	border: none;
	overflow: hidden;
	margin: 0;
	width: 100%;
	padding: 0.25rem 0;
	background: none;
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
}
.input:valid{
	color: yellowgreen;
}
.input:invalid{
	color: orangered;
}
.field::after{
	content: "";
	position: relative;
	display: block;
	height: 4px;
	width: 100%;
	background: var(--text-color);
	transform: scaleX(0);
	transform-origin: 0%;
	transition: transform 500ms ease;
	top: 2px;
}
.field:focus-within{
	border-color: transparent;
}
.field:focus-within::after{
	transform: scaleX(1);
}
.field:focus-within .label,
.input:not(:placeholder-shown) + .label{
	transform: scale(0.8) translateY(-5rem);
}
.label1{
	color: var(--text-color);
	font-size: 1.2rem;
	z-index: -1;
	position: absolute;
	transform: translateY(-7rem);
	transform-origin: 0%;
	transition: transform 400ms;
}
.field:focus-within .label1,
.input:not(:placeholder-shown) + .label1{
	transform: scale(0.8) translateY(-11rem);
}
.btn{
	position: relative;
	top: 0.5rem;
	bottom: 1rem;
  display: block;
  width: 200px;
  height: 36px;
  border-radius: 18px;
  background-color: var(--primary-color);
  border: solid 1px transparent;
  color: var(--test);
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  transition: all .1s ease-in-out;
}
.btn:hover{
	background-color: var(--third-color);
  border-color: var(--text-color);
  transition: all .1s ease-in-out;
}
.Heading1{
	display: flex;
	margin-top: 6rem !important;
	font-weight: 200;
	font-size: 1rem;
}
.Heading2{
	margin-top: 1rem !important;
	font-size: 4rem;
}
.Heading3{
	color: var(--primary-color) !important;
	margin-top: 0rem !important;
	font-size: 2rem;
}
.Heading4{
	color: var(--grey) !important;
	font-weight: 200;
	margin-top: 1rem !important;
	font-size: 1rem;
}
.Heading{
	color: var(--text-color);
	margin-left: 10rem;
}
.btn2{
	position: relative;
	top: 1.5rem;
  display: block;
  width: 200px;
  height: 36px;
  border-radius: 18px;
  background-color: var(--primary-color);
  border: solid 1px transparent;
  color: var(--test);
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  transition: all .1s ease-in-out;
}
.btn2:hover{
	background-color: var(--third-color);
  border-color: var(--text-color);
  transition: all .1s ease-in-out;
}
.Aboutmobile{
	top: 5.5rem;
	position: relative;
}
.Header1mobile{
	color: var(--primary-color);
	text-align: center;
	margin-top: -4rem;
}
.Textmobile{
	color: var(--text-color);
	width: 40%;
	line-height: 1.5;
	font-weight: 200;
	margin-left: 45%;
	margin-top: 1rem;
	margin-left: 5%;
	width: 95%;
}
.IMGmobile{
	width: 20%;
	margin-left: 20%;
	top: -10rem;
	position: relative;
	border: 5px solid white;
	border-radius: 5px;
	margin-top: 20rem;
	width: 70%;
	margin-left: 15%;
	margin-top: 20rem;
	width: 70%;
	margin-left: 15%;
}
	.Header1{
	color: var(--primary-color);
	text-align: center;
	padding: none;
	margin-top: 5rem;
}
.Text{
	color: var(--text-color);
	width: 40%;
	line-height: 1.5;
	font-weight: 200;
	margin-left: 45%;
	margin-top: 1rem;
}
.IMG{
	margin-left: 20%;
	width: 20%;
 	position:absolute;
  top:15%;
  margin-top:-6px;
  height: 16px;
	border: 5px solid var(--text-color);
	border-radius: 5px;
  height: auto;
}
.About{
	position: realtive !important;
	margin-top: 5%;
}
.Heading2{
	margin-left: 0%;
}
.Header3{
	color: var(--primary-color);
	margin-top: 5%;
  text-align: center;
  background: var(--secondary-color);
}
.leftcolumn {   
  float: left;
  width: 75%;
}
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}
.Blogimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}
.card {
 background-color: var(--secondary-color);
 padding: 20px;
 margin-top: 20px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {   
  width: 100%;
  padding: 0;
}
}
@media screen and (max-width: 800px) {
	.rightcolumn {
	opacity: 0;
  display: none;
	}
	.BlogTextEnd{
	margin-bottom: 10rem;
	}
}
.Header5{
	color: var(--text-color);
}
.BlogText{
	color: var(--text-color);
	margin-top: 1rem;
	line-height: 1.8;
}
.BlogAbout{
	background-color: var(--text-color);
	width: 100%;
  padding: 5px;
  border-radius: 5px;
}
.Date{
	color: var(--grey);
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.Header6{
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}
.Header4{
	color: var(--text-color);
	margin-top: 1rem;
	font-family: 'Open_Sans', sans-serif;
	font-weight: 200;
	font-size: 1.1rem;
}
.BlogPostImg{
	background-color: var(--text-color);
	width: 45%;
  padding: 5px;
  border-radius: 5px;
  height: 400px;
}
.BlogPost{
	width: 45%;
}
.BlogTextEnd{
	color: var(--text-color);
	margin-top: 1rem;
	line-height: 1.8;
}
*,*:before,*:after{
	box-sizing: border-box;
}
footer{
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	padding: 20px;
	color: var(--test);
	background-color: var(--dark-grey);
	margin-top: auto;
  width: 100%;
}
footer > *{
	flex: 1 100%;
}
.Footer-Left{
	margin-right: 1.25rem;
	margin-bottom: 2rem;
}
.Footer-Left img {
	width: 20%;
}
.Footer ul {
	list-style: none;
	padding-left: 0;
}
.Footer li {
	line-height: 2;
}
.Footer-Right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
}
.Footer-Right > *{
	flex: 1 50%;
	margin-right: 1.25rem;
}
.box a {
	color: var(--primary-color);
}
.Footer-Bottom{
	text-align: center;
	color: var(--primary-color);
	display: relative;
	margin-left: 0%;
}
.Copyright{
	text-align: center;
	-webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.Footer-Left p {
	padding-right: 10%;
	color: var(--test);
	line-height: 1.4;
	margin-top: -0.5rem;
}
.SocialLinks a{
	background-color: var(--dark-grey);
	margin-top: 1rem;
	width: 40px;
	height: 40px;
	display: inline-block;
	margin-right: 3%;
	-webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.SocialLinks a i{
	color: white;
	font-size: 40px;
}
@media screen and (min-width: 600px){
	.Footer-Right > *{
		flex: 1;
	}
	.Footer-Left{
		flex: 1 0px;
	}
	.Footer-Right{
		flex: 2 0px;
	}
}
@media screen and (max-width: 600px){
	.Footer{
		padding: 15px;
	}
}
@media screen and (max-width: 900px){
	Footer{
		display: none !important;
		opacity: 0 !important;
	}
}
.Header7{
	color: var(--primary-color);
	font-size: 1.5rem;
}
.captcha{
	padding-top: 2.5rem;
}