/*# sourceMappingURL=homepage.css.map */

.lava-page-content {
	margin-top: 132px;
}

.lava-page-content>.featured-articles {
	padding-top: 55px;
}

.featured-articles-title-container, .featured-video-title-container {
	margin-bottom: 30px;
}

.featured-articles-title, .featured-video-title {
	margin-bottom: 40px;
	font-size: 30px;
	line-height: 1.1;
	font-weight: bold;
	text-align: center;
	color: grey;
}

.page-header-images-container {
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: [first] 64% [second] 4% [third] 31% [end];
	grid-template-rows: [first] 47.5% [second] 5% [third] 47.5% [end];
}

.single-featured-article-image-link {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	grid-column-start: third;
	grid-column-end: end;
	grid-row-start: first;
	grid-row-end: second;
	border-radius: 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .4);
	transition: all .2s linear;
	overflow: hidden;
}

.single-featured-article-image-link .featured-article-title {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px;
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(227, 227, 227, .8);
	border-radius: 0 0 15px 15px;
	font-size: 18px;
	color: #444;
	font-weight: 600;
	text-align: center;
	transition: all .2s linear;
	transform: translate(0, 100%);
}

.single-featured-article-image-link:first-child {
	grid-column-start: first;
	grid-column-end: second;
	grid-row-start: first;
	grid-row-end: end;
}

.single-featured-article-image-link:first-child .featured-article-title {
	padding: 20px;
	font-size: 20px;
}

.single-featured-article-image-link:last-child {
	grid-row-start: third;
	grid-row-end: end;
}

.single-featured-article-image-link:last-child .featured-article-title {
	font-size: 18px;
}

.single-featured-article-image-link:hover {
	transform: scale(1.01, 1.01);
	box-shadow: 8px 8px 15px rgba(0, 0, 0, .6);
}

.single-featured-article-image-link:hover .featured-article-title {
	transform: none;
}

.search-form-container-wrap {
	position: fixed;
	top: calc(70px);
	left: 0;
	padding: 6px 0;
	width: 100%;
	background-color: white;
	z-index: 100;
}

.search-form-container>.search-form>.search-input {
	margin: 0;
	padding-left: 35px;
	width: 100%;
	height: 50px;
	border: solid grey 1px;
	border-radius: 25px;
	font-size: 15px;
	font-weight: bold;
	color: #8e8e8e;
}

section.fixed .categories-list-wrap {
	position: fixed;
	top: 132px;
	left: 50%;
	z-index: 100;
	padding: 15px 0;
	width: 100%;
	transform: translate(-50%, 0);
	background-color: white;
}

section.fixed .categories-list-wrap .categories-list {
	margin-bottom: 0;
}

.categories-list {
	margin: 0 auto 30px;
	width: 90%;
	display: flex;
	justify-content: center;
}

.toggle-categories-list-btn {
	display: none;
}

.categories-list-item-link {
	padding: 0 20px 15px;
	display: block;
	color: #8e8e8e;
	line-height: 1.2;
	border-bottom: 1px solid grey;
	transition: all .1s linear;
}

.categories-list-item-active .categories-list-item-link {
	font-weight: bold;
	color: #535353;
	border-bottom: 6px solid #161617;
}

.categories-list-item-link:hover {
	text-decoration: none;
	color: #535353;
	border-bottom: 6px solid #ed0281;
}

.tags-and-categories-section-content {
	position: relative;
}

.tags-and-categories-section-content ::-webkit-scrollbar {
	width: 4px;
}

.tags-and-categories-section-content ::-webkit-scrollbar-track {
	border-radius: 2px;
	background: #f4f4f4;
}

.tags-and-categories-section-content ::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, .15);
}

.sidebar {
	position: absolute;
	top: 69px;
	left: 0;
	width: calc(( ( 100vw - 1220px ) / 2 ) - 3px);
	height: calc(100% - 69px);
	overflow: auto;
}

.sidebar .tags-wrap {
	padding: 0 0 0 45px;
	height: 150px;
	overflow: hidden;
	transition: all .35s linear;
}

.sidebar .section-subhead {
	margin: 0 auto 20px;
	padding: 5px 10px;
	width: calc(100% - 20px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f4f4f4;
	border-radius: 10px;
	cursor: pointer;
}

.sidebar .section-subhead:hover button {
	background-color: rgba(0, 0, 0, .15);
}

.sidebar .section-subhead button {
	padding: 2px 7px;
	color: #444;
	background-color: transparent;
	border-radius: 5px;
	box-shadow: none;
	transition: all .25s linear;
}

.sidebar .section-subhead button::after {
	display: none;
}

.sidebar .show-tags-btn .icon-up-open-mini {
	display: none;
}

.sidebar .show-tags-btn.active .icon-up-open-mini {
	display: inline;
}

.sidebar .show-tags-btn.active .icon-down-open-mini {
	display: none;
}

.tags-and-categories.fixed .sidebar {
	top: 0;
}

@media screen and (max-width: 1800px) and (min-width: 1239px) {
	.tags-and-categories .section-content {
		width: 60%;
	}
	
	.sidebar {
		width: calc(20% - 3px);
	}
	
	.sidebar .tags-wrap {
		padding: 0 0 0 30px;
	}
	
	.categories-list {
		width: 99%;
	}
}

@media screen and (max-width: 1400px) and (min-width: 1239px) {
	.categories-list-item-link {
		padding: 0 16px 15px;
	}
}

@media screen and (max-width: 1239px) {
	.lava-page-content, #Content {
		margin-top: 122px;
	}
	
	.sidebar {
		display: none;
	}
}

.lava-page-content>.featured-video-wrapper {
	background-color: #161617;
}

.featured-video-title {
	color: white;
}

.featured-video-container {
	display: grid;
	grid-template-columns: [first] 33% [second] 33% [third] 1% [fourth] 33% [end];
	grid-template-rows: [first] 49% [second] 2% [third] 49% [end];
}

.single-featured-video-wrapper {
	grid-column-start: fourth;
	grid-column-end: end;
	grid-row-start: first;
	grid-row-end: second;
	cursor: pointer;
}

.single-featured-video-wrapper:first-child {
	top: 0;
	left: 0;
	grid-column-start: first;
	grid-column-end: third;
	grid-row-start: first;
	grid-row-end: end;
}

.single-featured-video-wrapper:nth-child(2n) {
	top: 0;
	right: 0;
}

.single-featured-video-wrapper:last-child {
	bottom: 0;
	right: 0;
	grid-row-start: third;
	grid-row-end: end;
}

.single-featured-video-preview {
	padding-bottom: 55%;
	width: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 15px;
}

.single-featured-video-wrapper:first-child .single-featured-video-preview {
	display: none;
}

.single-featured-video-container {
	position: relative;
	padding-bottom: 56.25%;
	display: none;
	height: 0;
}

.single-featured-video-wrapper:first-child .single-featured-video-container {
	display: block;
}

.single-featured-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

.featured-video-container {
	position: relative;
}

.subscribtion-form-wrapper .section-content .subscribe-form-wrap {
	margin: 0 auto;
	padding: 30px 40px;
	max-width: 700px;
	border-radius: 20px;
	background: #f4f4f4;
}

.subscribtion-form-wrapper .section-content .subscribe-form-wrap>.inline-container {
	max-width: initial !important;
}

.subscribtion-form-wrapper .section-content .subscribe-form-wrap .form-container {
	margin: 0 !important;
}

.subscribtion-form-wrapper .section-content .subscribe-form-wrap .emailoctopus-form-wrapper input[type="email"] {
	margin-bottom: 0;
}

.subscribtion-form-wrapper .section-content .subscribe-form-wrap h1 {
	line-height: 1.1;
}

@media screen and (max-width: 1238px) {
	.featured-articles-title, .featured-video-title {
		margin-bottom: 35px;
		font-size: 25px;
	}
	
	.search-form-container-wrap {
		top: calc(66px);
	}
	
	section.fixed .categories-list-wrap {
		top: 122px;
	}
}

@media screen and (max-width: 959px) {
	.featured-articles-title, .featured-video-title {
		margin-bottom: 30px;
		font-size: 24px;
	}
	
	.featured-article-title {
		display: none;
	}
	
	.categories-list-wrap {
		position: relative;
		margin-left: 15px;
		margin-bottom: 25px;
		width: 30%;
		min-width: 180px;
		max-width: 230px;
	}
	
	.categories-list-wrap>.toggle-categories-list-btn {
		padding: 8px 10px 8px 20px;
		width: 100%;
		box-sizing: border-box;
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
		font-size: 15px;
		font-weight: 300;
		color: grey;
		line-height: 1;
		background-color: #f4f4f4;
		border: solid 1px grey;
		border-radius: 5px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
		transition: all .2s linear;
	}
	
	.toggle-categories-list-btn>.icon-up-open {
		display: none;
	}
	
	.toggle-categories-list-btn>.icon-down-open {
		display: block;
	}
	
	.toggle-categories-list-btn-active>.icon-up-open {
		display: block;
	}
	
	.toggle-categories-list-btn-active>.icon-down-open {
		display: none;
	}
	
	.toggle-categories-list-btn {
		text-transform: capitalize;
	}
	
	.categories-list {
		position: absolute;
		top: 35px;
		left: 0;
		margin: 0;
		width: 100%;
		display: none;
		flex-direction: column;
	}
	
	.categories-list-item-link {
		padding: 10px 20px;
		display: block;
		font-size: 14px;
		border-bottom: 1px solid grey;
		background-color: white;
	}
	
	.categories-list-item-active .categories-list-item-link {
		background-color: #e3e3e3;
		border-bottom: 1px solid grey;
	}
	
	.categories-list-item-link:hover {
		color: #535353;
		background-color: #f1f1f1;
		border-bottom: 1px solid grey;
	}
}

@media screen and (max-width: 783px) {
	.search-form-container-wrap {
		position: fixed;
		top: calc(66px);
	}
}

@media screen and (max-width: 768px) {
	.featured-articles-title, .featured-video-title {
		margin-bottom: 30px;
		font-size: 24px;
	}
}
