/*custom blog styles start*/
/*Universal Styles*/
.blog-post__wrapper{
	--sub-weight: 300;
  --head-background: #f1f1f1;
  --primary: #299847;
  --secondary: #1f1f1f;
  --tertiary: #103c58;
}
.blog-post__wrapper h1, h2, h3, h4, h5, h6{
	font-family: var(--header-font);
	font-weight: var(--header-weight);
}
/*Universal Styles end*/
/*Tag Section*/
a.blog-post__tags--tag{
	text-decoration: none;
	color: white;
	background-color: var(--secondary);
	padding: 5px 10px;
	border-radius: 9999px;
	margin-right: 10px;
	margin-top: 10px;
	font-size: 15px;
	transition: 0.2s ease;
}
a.blog-post__tags--tag::before{
	content: "#";
}
.blog-post__tags--tag:hover{
	background-color: var(--primary);
}
.blog-post__tags--wrapper{
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
}
.blog-post__sidebar--tags-label{
	color: var(--primary);
	margin-right: 10px;
	margin-bottom: 0;
}
.blog-post__sidebar--tags{
	display: flex;
	align-items: start;
	margin-bottom: 20px;
	flex-direction: column;
}
/*Tag Section end*/
/*Head Section*/
.blog-post__head{
	background-color: var(--head-background);
	padding: var(--side-padding);
    padding-top: 50px;
    padding-bottom: 40px;
	margin-bottom: 40px;
}
a.blog-post__category{
	text-decoration: none;
	color: var(--primary);
	text-transform: uppercase;
	font-size: var(--accent-header-size);
    line-height: var(--accent-header-height);
	font-family: var(--accent-font);
    font-weight: var(--header-weight);
}
h1.blog-post__header{
	text-transform: uppercase;
	font-size: var(--section-header-size);
	margin: 0;
	line-height: var(--section-header-height);
}
.blog-post__header-image{
	border-radius: 20px;
}
.blog-post__summary{
	margin-top: 10px;
	margin-bottom: 20px;
	font-weight: var(--sub-weight);
}
.blog-post__header--bottom{
	display: flex;
	margin-top: 40px;
	align-items: center;
}
.blog-post__header--bottom p{
	margin: 0;
}
.blog-post__author--wrapper{
	display: flex;
	align-items: center;
	margin-right: 15%;
}
.blog-post__author--image-wrap{
	width: 50px;
	margin-right: 20px;
}
a.blog-post__author{
	text-decoration: underline;
}
.blog-post__author--preface, .blog-post__date--preface, .blog-post__link--preface{
	color: var(--primary);
	font-weight: var(--body-weight);
}
.blog-post__socials--wrapper{
	margin-left: auto;
}

@media(max-width: 600px){
	.blog-post__author--wrapper{
		margin-right: 5%;
	}
	.blog-post__author--image-wrap{
		margin-right: 10px;
	}
}
@media(max-width: 393px){
	.blog-post__date--wrapper{
		margin-right: 10px;
	}
}

/*Head Section end*/
/*Body Section*/
body.single-post{
	overflow-x: visible;
}
.blog-post__body--wrapper{
	padding: var(--side-padding);
    padding-bottom: 50px;
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
}
.blog-post__body{
	max-width: 75%;
	display: flex;
	flex-direction: column;
	padding-right: 40px;
	overflow-x: hidden;
}
.blog-post__body > .blog-post__paragraph:first-child > .blog-post__text-block:first-child > h3{
	margin-top: 0;
}
.blog-post__paragraph h3{
	font-size: var(--accent-header-size);
    line-height: var(--accent-header-height);
	text-transform: uppercase;
	margin: 50px 0 10px 0;
}
.blog-post__paragraph p{
	margin: 0;
}
.blog-post__paragraph ul, .blog-post__paragraph ol{
    margin-left: 20px;
}

.blog-post__paragraph .blog-post__paragraph--text a{
    position: relative;
    color: var(--secondary);
    isolation: isolate;
    z-index: 1;
    transition: 0.25s ease;
}

.blog-post__paragraph .blog-post__paragraph--text a:hover{
    color: white;
}

.blog-post__paragraph .blog-post__paragraph--text a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--primary);
    height: 2px;
    transition: 0.25s ease;
    z-index: -1;
}

.blog-post__paragraph .blog-post__paragraph--text a:hover::before{
    height: 100%;
}

.blog-post__paragraph--content{
	display: flex;
}
.blog-post__text-block{
	display: flex;
	flex-direction: column;
}
.blog-post__paragraph{
	display: flex;
}
.blog-post__inline-image{
	min-width: 35%;
	height: fit-content;
	align-self: center;
}
@media(max-width: 1050px){
	.blog-post__body--wrapper{
		flex-direction: column;
	}
	.blog-post__body{
		min-width: 100%;
		padding: 0;
	}
	.blog-post__paragraph h3{
		margin-top: 20px;
	}
}
@media(max-width: 768px){
	.blog-post__paragraph--content{
		flex-direction: column-reverse;
	}
}
/*Body Section end*/
/*Full Width Media Section*/
.blog-post__full-image{
	width: 100%;
}
.blog-post__video video{
	width: 100%;
	object-fit: cover;
}
.blog-post__video{
	aspect-ratio: 16 / 9;
}
.blog-post__video iframe{
	width: 1200px;
	height: 100%;
}
.blog-post__full-media--caption{
	font-style: italic;
	color: var(--tertiary);
	margin-top: 5px;
}
.blog-post__full-media--caption p{
	margin: 0;
}
.blog-post__full-media{
	margin: 20px 0;
}
/*Full Width Media Section End*/
/*List Section Start*/
.blog-post__list{
	width: 100%;
	margin: 10px;
	display: flex;
}
.blog-post__list .blog-post__inline-image{
	max-width: 40%;
}
@media(max-width: 575px){
	.blog-post__list{
		flex-direction: column-reverse;
	}
	.blog-post__list .blog-post__inline-image{
	max-width: 100%;
}
}

/*ordered*/
ol.blog-post__list--ordered{
	margin-left: 20px;
}

/*unordered*/
ul.blog-post__list--unordered{
	margin-left: 20px;
}

/*tiles*/
.blog-post__list--tiles{
	display: grid;
	row-gap: 20px;
	column-gap: var(--gutter);
	width: 100%;
}
.blog-post__list--tile{
	background-color: var(--off-white);
	padding: 20px 0;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
}
.blog-post__list--tiles.column-2{
	grid-template-columns: repeat(2, 1fr);
}
.blog-post__list--tiles.column-2 .blog-post__list--tile{
	min-width: 50%;
}

@media(max-width: 393px){
	.blog-post__list--tiles{
	row-gap: 10px;
	}
}

/*List Section End*/
/*Quote Block Section start*/
.blog-post__quote{
	display: flex;
	width: 100%;
	margin: 20px 0;
	align-items: center;
}
.blog-post__quote .blog-post__inline-image{
	max-width: 40%;
	margin-left: 20px;
	margin-bottom: 20px;
}
.blog-post__quote--content{
	width: 100%;
	margin: 0 auto;
	background-color: var(--off-white);
	font-style: italic;
	border-radius: 20px;
	padding: 20px 40px;
}
.blog-post__quote--quote-large{
	font-size: var(--accent-header-size);
    line-height: var(--accent-header-height);
	text-align: center;
	margin: 0 0 10px 0;
}
p.blog-post__quote--name{
	margin-top: 16px;
}
@media(max-width: 1200px){
	.blog-post__quote{
		flex-direction: column-reverse;
		align-items: start;
	}
	.blog-post__quote .blog-post__inline-image{
	max-width: 100%;
	}
}
/*Quote Block Section end*/
/*Stat Ticker Section Start*/
.blog-post__stat-counter--wrapper{
	width: 100%;
	margin: 20px 0;
}
.blog-post__stat--header{
	font-size: var(--section-header-size);
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.blog-post__stat{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blog-post__stat--title{
	margin: 0;
	font-style: italic;
	font-weight: 400;
	font-size: var(--accent-header-size);
    line-height: var(--accent-header-height);
	text-align: center;
	max-width: 80%;
}
.blog-post__stat--number{
	display: flex;
	font-weight: bold;
	font-size: 128px;
	line-height: normal;
	justify-content: center;
	text-align: center;
}
span.stat-ticker-prefix{
	text-align: end;
}
span.stat-ticker{
	text-align: center;
}
span.stat-ticker-suffix{
	text-align: start;
}

/*two column style*/
.blog-post__stat-counter.column-2{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
}
.blog-post__stat-counter.column-2 .blog-post__stat--number{
	font-size: 100px;
}
.blog-post__stat-counter.column-2 .blog-post__stat--header{
	font-size: 42px;
}
.blog-post__stat-counter.column-2 .blog-post__stat:nth-child(1){
	border-right: black 2px solid;
	padding-right: 20px;
}
@media(max-width: 393px){
	.blog-post__stat-counter.column-2 .blog-post__stat--number{
	font-size: 80px;
}
.blog-post__stat-counter.column-2 .blog-post__stat--title{
	font-size: 32px;
}
}

/*three column style*/
.blog-post__stat-counter.column-3{
		display: grid;
	grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
	column-gap: 20px;
}
div.blog-post__stat-counter.column-3 h4.blog-post__stat--header{
	font-size: var(--accent-header-size);
    line-height: var(--accent-header-height);
}
.blog-post__stat-counter.column-3 .blog-post__stat--number{
	font-size: 58px;
	text-wrap: nowrap;
}
.blog-post__stat-counter.column-3 .blog-post__stat:nth-child(1){
	border-right: black 2px solid;
	padding-right: 20px;
}
.blog-post__stat-counter.column-3 .blog-post__stat:nth-child(2){
	border-right: black 2px solid;
	padding-right: 20px;
}
@media(max-width: 768px){
	.blog-post__stat-counter.column-3 {
		display: flex;
		flex-direction: column;
	}
	.blog-post__stat-counter.column-3 .blog-post__stat:nth-child(1), .blog-post__stat-counter.column-3 .blog-post__stat:nth-child(2){
		border-right: 0px;
		padding-right: 0px;
	} 
}
@media(max-width: 575px){
	.blog-post__stat-counter.column-3 .blog-post__stat--number{
		font-size: 46px;
	}
}
@media(max-width: 475px){
	.blog-post__stat-counter.column-3 .blog-post__stat--number{
		font-size: 38px;
	}
	.blog-post__stat-counter.column-3 .blog-post__stat--title{
		font-size: 20px;
	}
}
@media(max-width: 393px){
	.blog-post__stat-counter.column-3 .blog-post__stat--number{
		font-size: 34px;
	}
	.blog-post__stat-counter.column-3 .blog-post__stat--title{
		font-size: 15px;
	}
}

/*Stat Ticker Section End*/
/*Carousel Section Start*/
.blog-post__carousel--slide-img{
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.blog-post__carousel{
	width: 100%;
	height: 25vw;
	margin: 20px 0;
}
.blog-post__carousel--wide{
	height: 35vw;
}
.blog-post__carousel .swiper-button-prev, .blog-post__carousel .swiper-button-next{
	padding: 40px 20px;
	opacity: .85;
}
.blog-post__carousel--slide.swiper-slide-active{
	cursor: zoom-in;
}
@media(max-width: 1050px){
	.blog-post__carousel{
		height: 40vw
	}
	.blog-post__carousel--wide{
		height: 50vw;
	}
}
@media(max-width: 768px){
	.blog-post__carousel{
		height: 45vw;
	}
	.blog-post__carousel--wide{
		height: 55vw;
	}
}
@media(max-width: 393px){
	.blog-post__carousel .swiper-button-prev, .blog-post__carousel .swiper-button-next{
		padding: 10px 5px;
	}
	.blog-post__carousel .swiper-button-prev::after, .blog-post__carousel .swiper-button-next::after{
		font-size: 20px;
	}
}

/*lightbox styles*/
.blog-post__lightbox{
	background-color: transparent;
	border: 0;
	padding: 80px 0;
	margin: auto;
}
dialog::backdrop{
	background-color: #00000095;
}

.blog-post__lightbox--inner{
	max-width: 80%;
	margin: auto;
}
.blog-post__lightbox-close{
	position: absolute;
	top: 12%;
	right: 11.5%;
	background-color: var(--secondary);
	color: white;
	font-size: 40px;
}
.blog-post__lightbox-close:hover{
	background-color: #4d4d4d;
}
@media(max-width: 1200px){
	.blog-post__lightbox-close{
		top: 17%;
		right: 12%;
	}
}
@media(max-width: 768px){
	.blog-post__lightbox-close{
		font-size: 26px;
		padding: 10px 20px;
		top: 20%;
	}
}
@media(max-width: 575px){
	.blog-post__lightbox-close{
		top: 23%;
		padding: 5px 10px;
	}
}
@media(max-width: 425px){
	.blog-post__lightbox-close{
		top: 27%;
	}
}

/*Carousel Section End*/
/*Sidebar Section*/
.blog-post__sidebar{
	margin-top: 40px;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	position: sticky;
	bottom: 1rem;
	align-self: flex-end;
}
.blog-post__sidebar--news{
	border: 2px solid var(--secondary);
	border-radius: 20px;
	padding: 25px 30px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
h3.blog-post__sidebar--news-head{
	font-size: 32px;
	margin: 0;
	line-height: 32px;
	text-transform: uppercase;
	text-wrap: balance;
}
.blog-post__sidebar--news-content{
	margin: auto 0;
	font-size: 15px;
}
.blog-post__sidebar--form{
	display: flex;
	margin: auto 0;
	width: 100%;
	justify-content: center;
}
.blog-post__sidebar--form input{
	border-radius: 5px;
	background-color: #f1f1f1;
	width: 100%;
}
.blog-post__sidebar--posts{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.blog-post__sidebar--post{
	padding: 20px;
	border-radius: 20px;
	box-shadow: 2px 2px 10px #afafaf;
	display: flex;
	flex-direction: column;
}
.blog-post__sidebar--related-thumb{
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
}
.blog-post__sidebar--related-thumb img{
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	position: absolute;
	object-fit: cover;
	object-position: center;
}
h4.blog-post__sidebar--related-title{
	text-transform: uppercase;
	font-size: var(--accent-header-size);
	line-height: var(--accent-header-height);
	margin: 15px 0 5px 0 !important;
}
.blog-post__sidebar--related-excerpt{
	font-size: var(--body-size);
	line-height: var(--body-height);
	margin: auto 0 10px;
}
@media(max-width: 1440px){
	.blog-post__sidebar--news-content{
		margin: 0;
	}
	.blog-post__sidebar--tags .blog-post__tags--wrapper{
		margin-top: 0;
	}
	.blog-post__sidebar--tags-label{
		margin: 0;
	}
	.blog-post__sidebar--related-excerpt{
		margin-bottom: 10px;
	}
}
@media(max-width: 1050px){
	.blog-post__sidebar{
		margin-left: 0;
		margin-top: 20px;
		flex-direction: column-reverse;
		position: relative;
		min-width: 100%;
	}
	.blog-post__sidebar--tags{
		flex-direction: row;
		align-items: center;
	}
	.blog-post__sidebar--tags .blog-post__tags--tag{
		margin: 0 0 0 10px;
	}
	.blog-post__sidebar--posts{
		display: flex;
		flex-direction: row;
	}
	.blog-post__sidebar--post{
		width: 50%;
	}
	h3.blog-post__sidebar--news-head{
		font-size: 36px;
	}
	.blog-post__sidebar--news-content{
		font-size: unset;
	}
	.blog-post__sidebar--news{
		min-height: 250px;
		text-align: center;
		margin-top: 40px;
		width: 100%;
		align-items: center;
	}
	.blog-post__sidebar--form{
		margin-left: auto;
		margin-right: auto;
		width: 60%;
	}
	.blog-post__sidebar--form input{
		width: 100%;
	}
	.blog-post__sidebar--form-button, .blog-post__sidebar--related-button{
		margin: 0 auto;
	}
}
@media(max-width: 768px){
	.blog-post__sidebar--posts{
		flex-direction: column;
	}
	.blog-post__sidebar--post{
		width: 100%;
	}
}
@media(max-width: 575px){
	h3.blog-post__sidebar--news-head{
		font-size: 26px;
	}
	.blog-post__sidebar--form{
		margin: auto auto 10px;
	}
}
@media(max-width: 393px){
	.blog-post__sidebar--tags{
		flex-direction: column;
	}
	.blog-post__sidebar--tags-label{
		margin-bottom: 10px;
	}
}
/*Sidebar Section end*/
/*Button Section*/
.blog-post__sidebar--form-button, .blog-post__sidebar--related-button{
	display: flex;
	width: 250px;
	margin: auto auto 0;
	font-family: var(--body-font);
	font-size: 17px;
	line-height: 26px;
	background-color: var(--primary);
	padding: 10px 0;
	border-radius: 9999px;
	transition: 0.2s ease;
}
.blog-post__sidebar--form-button span, .blog-post__sidebar--related-button span{
	color: white;
	margin: 0 auto;
}
.blog-post__sidebar--form-button:hover, .blog-post__sidebar--related-button:hover{
	color: white;
	background-color: #115581;
}
/*Button Section end*/
/*custom blog styles end*/