body{
	margin: 0px;
	padding: 0px;
}

section{
	width: 90%;
	max-width: 800px;
}

a{
	text-decoration: none;
	color: inherit;
}

p{
	margin: 0px;
}

/* --------COLORS------ */
.bg-white{
  background-color: #ffffff;
}

.bg-black{
  background-color: #000000;
}

.bg-blue{
  background-color: #4cc6e2;
}

.bg-gray{
  background-color: #212121;
}

.bg-light-gray{
  background-color: #343434;
}

.text-white{
  color: #ffffff;
}

.text-black{
  color: #000000;
}
/* --------COLORS END------ */

/*Header--------------------------------------------*/

header{
	height: 325px;
	width: 100vw;
	border-bottom: 1px solid #000000;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.top-header section,
.category-list section{
	height: 100%;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.top-header{
	width: 100%;
	height: 100%;
	border-bottom: 1px solid #000000;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

/*Left*/

.logo-wrap{
	width: 200px;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.logo-wrap a{
	width: 100%;
	height: 100%;
}

.abpost-logo{
	width: 100%;
	height: 100%;
	transform: rotate(-5deg);
	transform-origin: left bottom;
	transition: all ease .25s;
}

.abpost-logo:hover{
	transform: rotate(0deg);
	transition: all ease .25s;
}

/*Left END*/

.right-header-content{
	text-align: center;
	width: calc(100% - 200px);
	height: 100%;
	padding-left: 50px;
	box-sizing: border-box;

	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

/*Center*/

.interesting-topics{
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	height: 100%;
	width: calc(100% - 250px);
	margin-right: 50px;

	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: center;
}

.it-top{
	border-bottom: 1px solid #000000;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}

.it-links{
	border-bottom: 1px solid #000000;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	flex: 1;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all ease .25s;
}

.it-top p{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	text-transform: uppercase;
	font-size: 25px;
	margin: 0px;
}

.it-links p{
	font-family: 'Roboto Slab', serif;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0px;
	font-size: 12px;
}

.it-links:last-child{
	border-bottom: 0px;
}

.it-links:hover{
	color: #ffffff;
	background-color: #000000;
	transition: all ease .25s;
}

/*Center END*/

/*Right*/

.now-thats-cheap{
	width: 200px;
	height: 100%;
	padding-bottom: 15px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: center;
}

.cheap-wrap{
	width: 100%;
	padding-top: 15px;
}

.cheap{
	width: 100%;
}

.date-today{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	font-size: 15.5px;
	text-transform: uppercase;
	width: 100%;
	margin: 0px;
	padding-top: 15px;
	padding-bottom: 15px;
	
}

.weather{
	flex: 1;
	border: 5px solid #e23829;
	width: 100%;
	box-sizing: border-box;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all ease .25s;
}

.weather:hover{
	background-color: #e23829;
	transition: all ease .25s;
}

.weather:hover p{
	color: #ffffff;
	transition: all ease .25s;
}

.weather p{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	text-transform: uppercase;
	color: #e23829;
	margin: 0px;
	transition: all ease .25s;
}

.weather p:last-child{
	font-size: 23px;
}

/*Right END*/

/*Category*/

.category-list{
	height: 50px;
	width: 100vw;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}


.category-list ul{
	width: 100%;
	height: 100%;
	padding-left: 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.category-list li{
	list-style: none;
	display: inline;
	flex: 1;
	text-align: center;
	height: 100%;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	
	font-family: 'Roboto Slab', serif;
	font-weight: 900;
	font-size: 15px;
	text-transform: uppercase;
	margin: 0px;
	transition: all ease .25s;
}

.category-list p{
	margin: 0px;
}

.category-list a{
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.category-list li:hover{
	background-color: #000000;
	color: #ffffff;
	transition: all ease .25s;
}

.active{
	background-color: #000000;
	color: #ffffff;
}

/*Category END*/

/*Reduced Header*/

@media only screen and (max-width: 790px) {
	.right-header-content{
		display: none;
	}
	
	header{
		/*flex-direction: row;*/
		height: auto;
	}
	
/*	.top-header{
		width: 200px;
		margin-left: 5%;
	}

	.top-header section{
		width: 200px;
	}
	
	.category-list,
	.category-list ul{
		flex-direction: column;
		height: 100%;
	}
	
	.category-list section{
		width: 100%;
		height: 100%;
	}
	
	.category-list{
		width: calc(100% - 250px);
		padding-left: 50px;
	}

	.category-list ul{
		border-left: 1px solid #000000;
		height: 100%;
	}
	
	.category-list li{
		width: 100%;
		flex: 1;
		display: block;
		border-bottom: 1px solid #000000;
	}

	.category-list li:last-child{
		border-bottom: 0px;
	}*/

	.top-header section{
		width: 80%;
	}

	.logo-wrap{
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.category-list li{
		font-size: 12px;
	}
}

/*Minimal Header*/

@media only screen and (max-width: 500px) {
/*	.category-list{
		display: none;
	}

	.top-header{
		width: 100%;
		margin-left: 0px;
	}

	.top-header section{
		width: 80%;
	}*/

	

	.category-list{
		height: auto;
	}

	.category-list ul{
		width: 100%;
		height: 100%;
		padding-left: 0px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0px;
	}
	.category-list li{
		width: 100%;
		flex: 1;
		display: block;
		border-bottom: 1px solid #000000;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.category-list li:last-child{
		border-bottom: 0px;
	}

	.category-list section{
		width: 100vw;
	}
}

/*Header END--------------------------------------------*/

/*Ads--------------------------------------------*/

.addys-section{
	position: relative;
}

.addys-wrap{
	width: 200px;
	position: absolute;
	right: -250px;
	top: 25px;
	padding-left: 25px;
	border-left: 1px solid #000000;
}

.addy-img-wrap{
	height: 200px;
	width: 100%;
	position: relative;
}

.addy-img-wrap:hover .red-overlay{
	opacity: 1;
	transition: all ease .25s;
}

.addy-img{
	object-fit: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.addy-img-wrap p{
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.75);
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	padding: 5px;
	margin: 0px;
}

.addy{
	margin-top: 25px;
}

.addy:first-child{
	margin-top: 0px;
}

.addy-text-wrap h2{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 20px;

	margin-top: 15px;
	margin-bottom: 15px;
}

.addy-text-wrap p{
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 12px;
	line-height: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}

.addy .share-buttons-wrap{
	margin-top: 15px;
}

@media only screen and (max-width: 1340px) {
	.addys-section{
		display: none;
	}
}

/*Ads END--------------------------------------------*/

/*Main Posts--------------------------------------------*/

.content{
	width: 100vw;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main-post{
	width: 100%;
	margin-top: 25px;
	margin-bottom: 50px;
}

.main-featured-img-wrap{
	position: relative;
	height: 300px;
	width: 100%;
	overflow: hidden;
}

.main-featured-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.red-overlay{
	background-color: #e23829;
	mix-blend-mode: lighten;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	transition: all ease .25s;
}

.main-featured-img-wrap:hover .red-overlay{
	opacity: 1;
	transition: all ease .25s;
}


.main-post h1{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	text-transform: uppercase;
	font-size: 70px;
	line-height: 70px;
	margin-top: 25px;
	margin-bottom: 25px;
	transition: all ease .25s;
}

.main-post h1:hover{
	color: #e23829;
	transition: all ease .25s;
}

.main-post-info{
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style:italic;
	text-transform: uppercase;
	font-size: 15px;
}

.main-post-info span{
	font-weight: 900;
}

.post-category{
	text-decoration: underline;
	transition: all ease .25s;
}

.post-category:hover{
	color: #e23829;
	transition: all ease .25s;
}

.main-content,
.about-content{
	font-family: 'Roboto Slab', serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;

	padding-top: 25px;
	padding-bottom: 25px;

	margin-top: 25px;
	margin-bottom: 25px;

	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}

.main-content a{
	color: #e23829;
	text-decoration: underline;
	transition: all ease .25s;
}

.main-content a:hover{
	color: #000000;
	transition: all ease .25s;
}

.share-wrap{
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.share-wrap p,
.load-wrap p{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	text-transform: uppercase;
	font-size: 12px;
}

.share-buttons-wrap,
.load-button-wrap,
.about-wrap{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.share-button,
.load-button,
.button{
	height: 30px;
	margin-left: 5px;
	margin-right: 5px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	background-color: #e23829;
	transition: all ease .25s;
}

.share-button:hover,
.load-button:hover,
.button:hover{
	background-color: #000000;
	transition: all ease .25s;
}

.share-button-icon{
	height: 30px;
	width: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #ffffff;
}

.share-button-icon i,
.about-button-icon i{
	font-size: 15px;
}

.share-name,
.load-name{
	height: 30px;
	padding-left: 10px;
	padding-right: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.no-posts{
	font-family: 'Roboto Slab', serif;
	font-weight: 900;
	font-size: 30px;
	line-height: 30px;
	color: #e23829;

	padding-top: 300px;
	padding-bottom: 300px;
}

@media only screen and (max-width: 650px) {
	.main-post h1{
		font-size: 10vw;
		line-height: 10vw;
	}

	.section-header h2{
		font-size: 6vw !important;
		line-height: 6vw;
	}

	.main-content,
	.about-content{
		font-size: 15px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 370px) {
	.share-buttons-wrap{
		flex-direction: column;
	}

	.share-buttons-wrap a{
		width: 100%;
	}

	.share-button,
	.about-button{
		width: 100%;
		margin-bottom: 10px;
		margin-left: 0px;
		margin-right: 0px;
		justify-content: flex-start !important;
	}
}


/*Main Posts END--------------------------------------------*/

/*More Posts------------------------------------------------*/

.section-header h2{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	text-transform: uppercase;
	font-size: 30px;
	margin-top: 0px;
	margin-bottom: 25px;
}

.section-header span{
	color: #e23829;
}

.more-posts-section,
.about-section{
	margin-bottom: 50px;
}

.more-posts-wrap-border{
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}

.more-posts-wrap{
	border-top: 1px solid #000000;
	padding-top: 25px;

/*	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;*/
}

.more-posts-wrap > div{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	width: calc(100% + 25px);
}

.more-post{
	width: 31%;
	border: 1px solid #000000;
	margin-bottom: 25px;
	margin-right: 25px;
	flex: 1;
	flex-basis: 200px;
}

.more-post:hover{
	border: 1px solid #e23829;
	transition: all ease .25s;
}

.more-post:hover .next-icon{
	border-left: 1px solid #ffffff;
	color: #ffffff;
}

.more-post:hover .red-overlay{
	opacity: 1;
	transition: all ease .25s;
}

.more-post:hover .more-post-content{
	background-color: #e23829;
	color: #ffffff;
	transition: all ease .25s;
}

.more-post-img-wrap{
	position: relative;
	height: 150px;
	width: 100%;
}

.more-post-img{
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
}

.more-post-content{
	display: flex;
	flex-direction: row;
	justify-content: stretch;
	align-items: center;
	height: calc(100% - 150px);
	transition: all ease .25s;
}

.more-post-title{
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	height: 100%;
	width: 85%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.more-post-title h3{
	font-family: 'Roboto Slab', serif;
	font-weight: 900;
	font-size: 15px;
	line-height: 18px;
}

.next-icon{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 15%;
	color: #000000;
	border-left: 1px solid #000000;
	transition: all ease .25s;
}

.load-button-wrap{
	border-top: 1px solid #000000;
	padding-top: 25px;
	width: calc(100% - 25px) !important;
	margin-top: 0px;
}

.load-button,
.button{
	padding-left: 10px;
	padding-right: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	font-size: 12px;

	border: none;
	cursor: pointer;
	transition: all ease .25s;
}

.load-button:focus {
    outline: 0px;
}

.is-loading,
.htmx-request{
	height: 30px;
	width: 30px;
	animation: spin 1s infinite ease-in;
	background-color: #000000;
}

@keyframes spin {
   0% {
       transform: rotate(0deg);
   }
   100% {
       transform: rotate(360deg);
   }
}

@media only screen and (max-width: 700px) {
	.more-post{
		width: 100%;
		flex-basis: 100%;
	}
}

/*More Posts END--------------------------------------------*/

/*About --------------------------------------------*/

.about-wrap{
	background-color: #e23829;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 50px;

	color: #ffffff;
}

.about-content{
	border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.about-button{
	background-color: #000000;
	height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    margin-top: 10px;
    transition: background-color ease .25s;
	transition: color ease .25s;
}

.about-button:hover{
	background-color: #ffffff;
	color: #e23829;
	transition: background-color ease .25s;
	transition: color ease .25s;
}

/*.about-button:hover .about-button-icon{
	border-right: 1px solid #e23829;
	transition: border ease .25s;
}*/

.about-button-icon{
	height: 30px;
    width: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #e23829;
}

.about-name{
	height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/*About END --------------------------------------------*/

/*FOOTER--------------------------------------*/

footer{
  width: 100vw;
  height: auto;
}

footer section{
  width: 80%;
  max-width: 800px;
  padding-top: 80px;
  padding-bottom: 80px;
}

footer h4{
	font-family: 'Fugaz One', sans-serif;
	font-size: 20px;
	line-height: 25px;
	margin: 0px;
	margin-top: 0px;
	color: #ffffff;
}

footer p{
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #ffffff;
	font-style: normal !important;
}

footer span{
	color: #4cc6e2;
}

.three-column{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}

.text-small{
  font-size: 12px;
}

.content-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer{
  z-index: 4;
  top: 200px;
}

.footer-parallax__group{
  position: relative;
  min-height: 400px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

#footer .parallax__layer {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 4;

    width: 100%;
  min-height: 400px;
}

.main-footer{
  width: 100vw;
}

footer .three-column{
  align-items: flex-start;
  margin-top: 0px;
}

footer .column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.33%;
  align-content: stretch;
  text-align: center;
}

.footer-logo{
  width: 80%;
  max-width: 200px;
}

footer .bold{
  margin-top: 30px;
}

.contact{
  order: 1;
}

.logo{
  order: 2;
}

.address{
  order: 3;
}

.social-media-footer{
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media-footer section{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 270px;
  padding: 0px;
}

.social-icon-wrapper{
  border: 1px solid #4cc6e2;
  border-radius: 999px;
  color: #4cc6e2;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  
  background-color: rgba(76,198,226,0.0);
  transition: all 0.25s ease;
}

.social-icon-wrapper:hover{
  background-color: rgba(76,198,226,1);
  color: #212121;
  transform: scale(1.2);
  transition: all 0.25s ease;
}

i{
  font-size: 10px;
}

.copyright-footer{
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
}

.copyright-footer p{
  margin: 0px;
  letter-spacing: 2px;
}

.copyright-footer section{
  padding: 0px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}




@media only screen and (max-width: 700px) {
    
  .three-column{
    flex-direction: column;
  }

  .column{
    width: 100%;
    margin-bottom: 20px;
  }

  .contact{
    order: 2;
  }

  .logo{
    order: 1;
  }

  .address{
    order: 3;
  }

  .footer-main p,
  .footer-main h4{
    text-align: center;
  }

  footer .three-column{
    align-items: center;
  }

  footer .column{
    width: 80%;
  }

}

/* FOOTER END --------------------------------------- */


/*MISC*/

.notFound{
	margin: 0px;
	padding-top: 200px;
	padding-bottom: 200px;
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
	color: #e23829;
	text-transform: uppercase;
}



/* Internet Explorer Check */

.iecheck{
	display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

.iecheck{
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	z-index: 99999;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	
	background-color: #ffffff;
	color: #000000;
}
	
	.message-wrap{
		width: 80%;
		max-width: 500px;
		text-align: center;
	}
	
	.ie-logo{
		width: 150px;
		transform: rotate(-5deg);
	}
	
	.iecheck span{
		color: #e23829;
	}

	.iecheck p span{
		font-family: 'Roboto Slab', serif;
		font-weight: 900;
		font-size: 18px;
		line-height: 30px;
	}

	.iecheck h1{
		font-family: 'Roboto', sans-serif;
		font-weight: 900;
		font-style:italic;
		text-transform: uppercase;
	}

	.iecheck p{
		font-family: 'Roboto Slab', serif;
		font-weight: 400;
		font-size: 18px;
		line-height: 30px;
	}
}

/* Lower */
.iecheck-lower{
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	z-index: 99999;
	
	background-color: #000000;
	color: #ffffff;
}
	
.message-wrap-lower{
	width: 80%;
	max-width: 600px;
	text-align: center;
	position: absolute;
	margin: auto;
	top: 200px;
	bottom: 0;
	left: 0;
	right: 0;
}

.ie-logo-lower{
	width: 150px;
	transform: rotate(-5deg);
}

.ie-logo-lower{
	width: 100px;
}

.iecheck-lower span{
	color: #e23829;
}

.iecheck-lower p span{
	font-family: 'Roboto Slab', serif;
	font-weight: 900;
	font-size: 18px;
	line-height: 30px;
}

.iecheck-lower h1{
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style:italic;
	text-transform: uppercase;
}

.iecheck-lower p{
	font-family: 'Roboto Slab', serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}
/* Internet Explorer Check END */