.sp-blog-container {
	background: #F2F2F2;
	padding: 32px 126px;
}
.sp-blog__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px;
}
.sp-blog__title {
	font-family: 'Alegreya', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 125%;
	letter-spacing: 0.5px;
	color: #7957D5;
	margin-bottom: 0px;
	margin-top: 0px;
}
.sp-blog__categories {
	display: flex;
	align-items: center;
}
.sp-blog__categories a {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 155%;
	color: #000000;
	margin-left: 16px;
	position: relative;
}
.sp-blog__categories a:after {
	content:'';
	position: absolute;
	bottom: -2px;
	left: 0px;
	width: 100%;
	transition: 0.25s;
	height: 2px;
	background: #174AB6;
	opacity: 0;
}
.sp-blog__categories a:first-child {
	margin-left: 0px;
}
.sp-blog__categories a.active {
	color: #174AB6;
}
.sp-blog__categories a.active:after {
	opacity: 1;
}
.sp-blog__categories a:hover {
	color: #174AB6;
}
.sp-blog__post {
	position: relative;
	display: flex;
	justify-content: space-between;
	background: #FFFFFF;
	padding: 32px;
	margin-bottom: 24px;
}
.sp-blog__main-link {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 20;
	display: block;
}
.sp-blog__post-left {
	width: 260px;
	min-width: 260px;
	height: 200px;
	margin-right: 32px;
}
.sp-blog__post-left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin-bottom: 0px;
}
.sp-blog__post-right {
	width: 1px;
	flex-grow: 2;
	display: flex;
	flex-direction: column;
}
.sp-blog__post-data {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #0D0634;
	opacity: 0.5;
	margin-bottom: 16px;
}
.sp-blog__post-description {
	font-family: 'Alegreya', sans-serif;
	font-style: normal;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: 0.5px;
	color: #111111;
}
.sp-blog__post-description strong {
	font-weight: 700;
}
.sp-blog__post-author {
	margin-top: auto;
	padding-top: 10px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	letter-spacing: 0.5px;
	color: #174AB6;
}
.sp-blog__hide-more {
	display: block;
	background: #0D0634;
	width: 100%;
	min-height: 60px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 155%;
	padding: 5px 10px;
	transition: 0.25s;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #FFFFFF !important;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.sp-blog__hide-more:hover {
	box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
}
.sp-blog-container--line{
	position: relative;
}
.sp-blog-container--line:before {
	content:'';
	display: block;
	width: 2px;
	height: calc(100% - 320px);
	position: absolute;
	left: 63px;
	top: 320px;
	background: rgba(121, 87, 213, 0.2);
}
.sp-blog-container--line:after {
	content:'';
	display: block;
	background-image: url('../images/blog-post-roinds.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 235px;
	left: 48px;
	z-index: 20;
	animation: spBlogMove 1s linear 0s infinite;
	display: none;
}

.sp-blog__post:nth-child(1):after, 
.sp-blog__post:nth-child(3):after, .sp-blog__post:nth-child(6):after,
.sp-blog__post:nth-child(9):after, .sp-blog__post:nth-child(12):after,
.sp-blog__post:nth-child(15):after, .sp-blog__post:nth-child(18):after,
.sp-blog__post:nth-child(21):after, .sp-blog__post:nth-child(24):after{
	content:'';
	display: block;
	background-image: url('../images/blog-post-rounds2.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -77px;
	z-index: 20;
	animation: none;
}
.sp-blog__post.active:nth-child(1):after,
.sp-blog__post.active:nth-child(3):after, .sp-blog__post.active:nth-child(6):after,
.sp-blog__post.active:nth-child(9):after, .sp-blog__post.active:nth-child(12):after,
.sp-blog__post.active:nth-child(15):after, .sp-blog__post.active:nth-child(18):after,
.sp-blog__post.active:nth-child(21):after, .sp-blog__post.active:nth-child(24):after {
	animation: spBlogMove 1s linear 0s infinite;
}
@keyframes spBlogMove {
	0% {
		transform: scale(1);
	}
	25% {
		transform: scale(1.2);
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
	}
}
.sp-blog__post-description p{
	margin-bottom: 0px;
	margin-top: 0px;
}

.sp_bio_main_wrapper {
	background: #F2F2F2;
	padding: 40px 76px 60px 76px;
}
.sp_bio_title {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 125%;
	letter-spacing: 0.5px;
	color: #111111;
	margin-top: 0px;
	margin-bottom: 40px;
	text-align: center;
}
.sp_bio_post_top {
	padding: 32px 60px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}
.sp_boi_post_image {
	width: 152px;
	min-width: 152px;
	height: 152px;
	border-radius: 100%;
	margin-right: 60px;
}
.sp_boi_post_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.sp_bio_post_box {
	width: 1px;
	flex-grow: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sp_bio_post_box_right {
	width: 248px;
	min-width: 248px;
	margin-left: 15px;
}
.sp_bio_post_box_left {
	width: 1px;
	flex-grow: 2;
}
.sp_bio_post_name {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 130%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #111111;
	margin-bottom: 16px;
	margin-top: 0px;
}
.sp_bio_post_data {
	display: flex;
	align-items: center;
}
.sp_bio_post_data:before {
	content:'';
	display: block;
	background-image: url('../images/bio_post_icon_data.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-right: 10px;
}
.sp_bio_post_data p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 125%;
	letter-spacing: 0.5px;
	color: #000000;
	margin-bottom: 0px;
	margin-top: 0px;
}

.sp_bio_post_star {
	display: flex;
	align-items: center;
	margin-top: 12px;
	margin-bottom: 16px;
}
.sp_bio_post_star:before {
	content:'';
	display: block;
	background-image: url('../images/bio_post_icon_star.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-right: 10px;
}
.sp_bio_post_star p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 125%;
	letter-spacing: 0.5px;
	color: #000000;
	margin-bottom: 0px;
	margin-top: 0px;
}
.sp_bio_post_desc p{
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 16px;
	display: flex;
	align-items: center;
	letter-spacing: 0.5px;
	color: #174AB6;
}
.sp_bio_post_top_btn {
	width: 248px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #7957D5;
	border: 1px solid #7957D5;
	padding: 18px 5px;
	transition: 0.25s;
}
.sp_bio_post_top_btn:hover {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}
.sp_bio_post_top_btn:before {
	content:'';
	display: block;
	background-image: url('../images/sp_bio_btn_icon.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px;
}
.sp_bio_post_top_btn p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0.5px;
	color: #FFFFFF;
	text-align: center;
}
.sp_bio_post_bottom_list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
	max-width: calc(100% + 32px);
}
.sp_bio_post_bottom_el {
	width: calc(33.333% - 32px);
	margin-left: 16px;
	margin-right: 16px;
	padding: 16px;
	position: relative;
	background: #ffffff;
}
.sp_bio_post_bottom_el_permalink {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 20;
}
.sp_bio_post_bottom_el_wrapper_image {
	width: 100%;
	height: 200px;
	margin-bottom: 16px;
}
.sp_bio_post_bottom_el_wrapper_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin-bottom: 0px;
	margin-top: 0px;
}
.sp_bio_post_bottom_el_category {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 40;
	margin-bottom: 10px;
}
.sp_bio_post_bottom_el_category a {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #776BF8;
	text-decoration: none;
}
.sp_bio_post_bottom_el_category a:hover {
	text-decoration: underline;
}
.sp_bio_post_bottom_el_name {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 125%;
	letter-spacing: 0.5px;
	color: #0D0634;
	margin-bottom: 10px;
}
.sp_bio_post_bottom_data {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #0D0634;
	opacity: 0.5;
}
.sp_bio_bottom_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(33.333% - 32px);
	max-width: 100%;
	height: 44px;
	background: rgba(119, 107, 248, 0.1);
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 125%;
	letter-spacing: 0.5px;
	color: #7957D5 !important;
	margin-left: auto;
	margin-right: auto;
	transition: 0.25s;
	margin-top: 32px;
}
.sp_bio_bottom_btn:hover {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
}
.sp_bio_post {
	margin-bottom: 60px;
}
.sp_bio_post:last-child {
	margin-bottom: 0px;
}
.main-box-single-header {
	width: 100%;
}
.main-box {
	flex-wrap: wrap;
}
#breadcrumbs {
	width: 100%;
	text-align: left;
	display: flex;
	align-items: flex-start;
}
.main-box-single-wrap {

	position: relative;
}
.main-box-single-wrap ~ .main-box-single-wrap {
	padding-top: 37px
}
.main-box-single-wrap ~ .main-box-single-wrap:after {
	content: '';
	display: block;
	background: #979797;
	height: 2px;
	width: 100%;
	max-width: 650px;
	position: absolute;
	top: 35px;
	left: 0;
	opacity: .5;
}
.main-box-single-wrap ~ .main-box-single-wrap .main-box-single-header {
	margin-top: 35px;
}
.main-box-spinner-wrap {
	display: none;
	margin: 0 auto;
}
.main-box-spinner {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
}
.main-box-spinner div {
	display: inline-block;
	position: absolute;
	left: 8px;
	width: 16px;
	background: #721a6e;
	animation: main-box-spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.main-box-spinner div:nth-child(1) {
	left: 8px;
	animation-delay: -0.24s;
}
.main-box-spinner div:nth-child(2) {
	left: 32px;
	animation-delay: -0.12s;
}
.main-box-spinner div:nth-child(3) {
	left: 56px;
	animation-delay: 0;
}
@keyframes main-box-spinner {
	0% {
		top: 8px;
		height: 64px;
	}
	50%, 100% {
		top: 24px;
		height: 32px;
	}
}
@media screen and (max-width: 1200px){
	.sp-blog-container {
		padding: 32px 64px;
	}
	.sp-blog-container--line:before {
		left: 30px;
	}
	.sp-blog-container--line:after {
		left: 15px;
	}
	.sp-blog__post:nth-child(1):after,
	.sp-blog__post:nth-child(3):after, .sp-blog__post:nth-child(6):after,
	.sp-blog__post:nth-child(9):after, .sp-blog__post:nth-child(12):after,
	.sp-blog__post:nth-child(15):after, .sp-blog__post:nth-child(18):after,
	.sp-blog__post:nth-child(21):after, .sp-blog__post:nth-child(24):after {
		left: -48px;
	}
	.sp_bio_main_wrapper {
		background: transparent;
	}
	.sp_bio_title {
		width: 100%;
		padding: 30px 10px;
		background: #FFFFFF;
		margin-bottom: 16px;
	}
	.sp_bio_post_top{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.sp_boi_post_image {
		width: 100px;
		height: 100px;
		margin-bottom: 20px;
		margin-left: auto;
		margin-right: auto;
		min-width: 1px;
	}
	.sp_bio_post_box {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.sp_bio_post_box_left {
		width: 100%;
		margin-bottom: 32px;
	}
	.sp_bio_post_box_right {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sp_bio_post_box {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.sp_bio_post_box_left {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.sp_bio_post_top_btn {
		flex-direction: row;
		width: 272px;
		height: 57px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sp_bio_post_top_btn:before {
		margin-left: 0px;
		margin-right: 16px;
		margin-bottom: 0px;
	}
	.sp_bio_post_top_btn p {
		font-weight: 600;
		font-size: 16px;
		line-height: 16px;
	}
	.sp_bio_post_bottom_list {
		flex-wrap: wrap;
		justify-content: center;
		margin-left: -8px;
		margin-right: -8px;
		width: calc(100% + 16px);
		max-width: calc(100% + 16px);
	}
	.sp_bio_post_bottom_el {
		width: 334px;
		margin-left: 8px;
		margin-right: 8px;
		margin-bottom: 16px;
	}
	.sp_bio_post_name {
		font-size: 24px;
		line-height: 130%;
	}
	.sp_bio_post_top {
		padding: 24px 10px;
	}
	.sp_bio_main_wrapper {
		padding: 0px;
	}
	.sp_bio_bottom_btn {
		width: 334px;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		margin-top: 16px;
	}
	.sp_bio_post {
		margin-bottom: 16px;
	}
	.sp_bio_post_top {
		margin-bottom: 16px;
	}
	.sp_bio_main_wrapper {
		padding-bottom: 40px;
	}
	.sp_bio_bottom_btn {
		background: #7957D5;
		color: #FFFFFF !important;
	}
}
@media screen and (max-width: 992px){
	.sp-blog-container {
		padding: 32px;
	}
	.sp-blog__header {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.sp-blog__title {
		text-align: center;
		margin-bottom: 20px;
	}
	.sp-blog__categories {
		flex-wrap: wrap;
	}
	.sp-blog__categories a {
		margin-left: 8px !important;
		margin-right: 8px !important;
	}
	.sp-blog-container--line:before {
		display: none;
	}
	.sp-blog-container--line:after {
		display: none;
	}
	.sp-blog__post:nth-child(3):after, .sp-blog__post:nth-child(6):after {
		display: none;
	}
	.sp-blog__post {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.sp-blog__post-left {
		margin-left: auto;
		margin-right: auto;
		min-width: 1px;
		margin-bottom: 20px;
	}
	.sp-blog__post-right {
		width: 100%;
	}
	.sp_bio_title {
		font-size: 32px;
		line-height: 40px;
	}
}
@media screen and (max-width: 768px){
	.sp-blog__post-left {
		width: 100%;
	}
	.sp-blog__post-data {
		margin-bottom: 5px;
	}
	.sp-blog__post-description {
		font-size: 16px;
	}
}
@media screen and (max-width: 576px){
	.sp-blog-container {
		padding: 32px 16px;
	}
	.sp-blog__title {
		font-size: 28px;
		line-height: 36px;
	}
	.sp-blog__post  {
		padding: 16px;
	}

	.sp_bio_title {
		font-size: 28px;
		line-height: 36px;
	}
	.sp_bio_post_bottom_el {
		width: 100%
	}
}











@media screen and (max-width: 576px){
	.header {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 300;
		background: #0d0634;
	}
	body {
		padding-top: 72px;
	}
	.post-status-bar {
		display: none;
	}
	.post-status-bar.active {
		display: block;
		width: 100%;
		position: relative;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 6px;
		background: silver;
	}
	.widget.popular-posts .widget-title {
		font-size: 20px;
	}
	.post-status-bar-active {
		background: #7c0070;
		height: 100%;
	}
}
