html {
    box-sizing: border-box;
    height: 100%;
}
body {
	font-family: Inter, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.33;
    overflow-x: hidden;
    position: relative;
	height: 100%;
    min-height: 100vh;

}
blockquote, body, button, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, input, legend, li, menu, ol, p, pre, select, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}
*, *::before, *::after {
    box-sizing: inherit;
}
h1 {
	font-family: Walsheim, Georgia, serif;
    font-size: 54px;
    font-weight: 300;
    line-height: 1.25;
}   
a {
	color: inherit;
	text-decoration: none;
}
*:focus {
	outline: none;
}

/*----------------------HEADER---------------------- */
.header {
	background: white;
    border-bottom: 1px solid #ebebed;
    max-width: 100vw;
    min-height: 65px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}
.header__con {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1340px;
    padding: 0 10px;
    width: 100%;
}
.header__nav ul {
	display: flex;
	width: 100%;
}
.header__btns {
	display: flex;
}
.header__btns-log a, .header__btns-st a {
	font-weight: 500;
	border-radius: 5px;
	min-width: 100px;
	font-size: 14px;
    height: 39px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .1s;
}
.header__btns-log a {
	color: rgb(55, 55, 60);
	margin-right: 15px;
	border: 1px solid rgb(222, 222, 225);
}
.header__btns-log a:hover {
	box-shadow: 0px 4px 0px rgb(222, 222, 225);
	transition: all .1s;
}
.header__btns-st a {
	background: #1e64f0;
	color: #fff;
}
.header__btns-st a:hover {
	box-shadow: 0px 4px 0px #003296;
	transition: all .1s;
}
.header__nav {
	display: flex;
    align-items: center;
	width: 65%;
}
.header__nav ul {
	list-style-type: none;
}
.header__nav ul li a {
	margin: 0 15px;
	font-weight: 500;
	font-size: 15px;
}
.header__nav ul li a:hover {
	color: #1e64f0;
}
.header__nav-btn {
	width: 22px;
	height: 3px;
	background: #7b7b7b;
	position: relative;
	border-radius: 15px;
	display: none;
	transition: all .2s;
}
.header__nav-btn:before, .header__nav-btn:after {
	content: '';
	width: 22px;
	height: 3px;
	background: #7b7b7b;
	border-radius: 15px;
	position: absolute;
	left: 0;
	transition: all .2s;
}
.header__nav-btn:before {
	top: -7px;
}
.header__nav-btn:after {
	bottom: -7px;
}
.header__nav-btn.active {
	background: none;
}
.header__nav-btn.active:before {
	transform: rotate(45deg);
	top: 0;
} 
.header__nav-btn.active:after {
	transform: rotate(-45deg);
	bottom: 0;
} 
/*----------------------HOME---------------------- */
.heroHome {
    padding: calc(70px - 18px) 4vw 85px;
    position: relative;
}
.heroHome__container {
	display: grid;
    grid-template-columns: minmax(445px,min-content) minmax( 0, 1fr );
    grid-template-rows: auto auto 1fr;
    grid-column-gap: max(13vw,194px);
    grid-column-gap: clamp( 1rem, 13vw, 194px );
    margin: 0 auto;
    max-width: 1300px;
    position: relative;
    text-align: left;
    z-index: 1;
}
.heroHome__title {
	grid-area: 2 / 1 / 3 / 2;
    padding-top: 18px;
}
.heroHome__subscr {
	grid-area: 3 / 1 / 4 / 2;
    margin-bottom: 0;
    padding-top: 18px;
}
.heroHome__subscr-txt {
	font-size: 20px;
}
.heroHome__subscr-form {
	margin-top: 36px;
}
.heroHome__subscr-form label {
	display: block;
    font-family: Inter, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.form-group {
	-webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-radius: 5px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.heroHome__subscr-form input {
	border: 1px solid #a3a3ab;
    border-radius: 5px 0 0 5px;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 15px;
    width: 100%;
    font-size: 16px;
}
.heroHome__subscr-form button {
	color: #FFF;
    background-color: #58b8ff;
	border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: inherit !important;
    border-bottom-right-radius: inherit !important;
    min-height: 50px;
	cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    -webkit-font-smoothing: auto;
    -webkit-appearance: none;
    font-size: 18px;
    height: 60px;
	min-width: 168px;
	border: none;
}
.heroHome__subscr-form-txt {
	display: block;
    font-size: 15px;
    line-height: 1.47;
    margin-top: 18px;
}
.heroHome__subscr-form-txt a {
	text-decoration: underline;
}
.heroHome__media {
	-webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    grid-area: 1 / 2 / 4 / 3;
    padding-top: 18px;
    width: 100%;
    position: relative;
}
.heroHome__media-block {
	position: relative;
	border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
	margin-bottom: 50px;
}
.heroHome__media-block-img {
	border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    vertical-align: bottom;
    max-width: 100%;
    max-height: 100%;
    grid-area: 1 / 1 / 4 / 3;
}
.heroHome__media-block-img img {
	width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}
.picksHome__slider-block .heroHome__media-block-img img {
	height: 185px;
}
.heroHome__media-cont {
    background-color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    bottom: 0;
    left: 50%;
    max-width: calc(100% - 50px);
    padding: 25px 25px 0px;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
	width: 600px;
}
.heroHome__media-cont-title {
	font-family: Walsheim, Georgia, serif;
    font-weight: normal;
    line-height: 1.33;
    margin-bottom: 18px;
    color: #0c0c0e;
    font-size: 28px;
}
.heroHome__media-cont-title a:hover {
	color: #41d0a3;
    -webkit-text-decoration: underline;
    text-decoration: underline;
}
.heroHome__media-cont-a {
	font-family: Inter, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.heroHome__media-block-cat {
	background-color: #f8f8f9;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    grid-area: 1 / 1 / 2 / 3;
    position: absolute;
    right: 10px;
    text-transform: uppercase;
    top: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
}
.heroHome__media-block-cat a {
	line-height: 20px;
    padding: 0 22px;
}
.pageWr {
	-webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    max-width: 1400px;
    padding: 0 50px;
    width: 100%;
    margin: 0 auto;
}
.headSection {
	-webkit-align-items: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    border-bottom: 2px solid #dedee1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 34px;
}
.headSection h2, .titleTag {
	font-family: Walsheim, Georgia, serif;
    font-size: 24px;
    font-weight: normal;
    color: #37373c;
    margin-bottom: 3px;
}
.picksHome {
	margin-bottom: 100px;
}
.picksHome__arr {
	display: flex;
}
.picksHome__prev img {
	transform: rotate(180deg);
	margin-right: 10px;
}
.picksHome__slider {
	position: relative;
	margin: 0 calc(50% - 50vw) 0 auto;
	overflow: hidden;
}
.picksHome__slider-block {
	margin-right: 36px;
    max-width: 306px;
}
.heroHome__media-block2 {
	position: relative;
}
.picksHome__slider-title {
	display: block;
    grid-area: 1 / 3 / 2 / 4;
    margin-top: 20px;
}
.picksHome__slider-title a {
	font-family: Walsheim, Georgia, serif;
    font-size: 24px;
}
.picksHome__slider-title a:hover {
	color: #219fff;
    -webkit-text-decoration: underline;
    text-decoration: underline;
}
.picksHome__slider .slick-list {
	overflow:initial;
}
.picksHome__slider .slick-arrow {
	display: none!important;
}
.picksHome__arr-btn.slick-disabled {
	opacity: .4;
}
.catHome {
	margin-bottom: 45px;
	text-align: center;
}
.catHome .titleTag {
	margin-bottom: 18px;
    color: #0c0c0e;
}
.catHome p {
	color: #37373c;
	font-size: 20px;
    margin-bottom: 36px;
}
.catHome__wr {
	margin: 0 auto;
    max-width: 935px;
}
.catHome__cats {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: -28px;
    margin-top: -22px;
}
.catHome__cat {
	font-size: 18px;
    height: 60px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid transparent;
    border-radius: inherit;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 600;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    position: relative;
    background: #fff;
}
.catHome__cats a {
	-webkit-flex-basis: calc(290px - 28px);
    -ms-flex-preferred-size: calc(290px - 28px);
    flex-basis: calc(290px - 28px);
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    margin: 22px 0 0 28px !important;
    border-radius: 5px;
    position: relative;
}
.catHome__cat-caret {
	-webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 15px;
}
.catHome__cat-shadow {
	width: 100%;
    height: 60px;
    border-radius: 5px;
    position: absolute;
    top: 3px;
    display: none;
    z-index: -1;
}
.catHome__cats a:hover .catHome__cat-shadow {
	display: block;
}
.recentHome {
	margin: 60px auto;
    max-width: 1058px;
}
.recentHome__post {
    display: flex;
	align-items: center;
	margin-bottom: 50px;
}
.recentHome__post-img {
	margin-right: 40px;
	position: relative;
}
.recentHome__post-img img {
	border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    vertical-align: bottom;
    height: 225px;
    width: 390px;
}
.recentHome__post-cont .titleTag a {
	font-size: 32px;
	margin-bottom: 20px;
	color: rgb(98, 98, 108);
}
.recentHome__post-cont .titleTag a:hover {
	color: rgb(33, 159, 255);
    text-decoration: underline;
}
.recentHome__post-txt {
	font-size: 18px;
    line-height: 1.78;
    margin-bottom: 20px;
}
.recentHome__post-a {
	letter-spacing: 1px;
	font-weight: bold;
}
.recentHome__search {
	margin-bottom: -2px;
	width: 113px;
	transition: all .3s;
}
.recentHome__search.active {
	width: 300px;
	transition: all .3s;
}
.recentHome__search form {
	position: relative;
	width: 100%;
}
.recentHome__search input {
	border: none;
	border-bottom: 2px solid rgb(163, 163, 171);
	padding: 9px 0px 9px 38px;
	font-size: 21px;
	font-family: Inter, Helvetica, Arial, sans-serif;
	color: #c4c4c8;
	width: 100%;
}
.recentHome__search button {
	background: none;
	border: none;
	position: absolute;
	z-index: 1;
	top: 12px;
	left: 0;
	width: 20px;
	height: 20px;
}
.videosHome {
	background-color: rgb(235, 235, 237);
    margin: 0px calc(50% - 50vw);
}
.videosHome__cont {
	margin: 0 auto;
    max-width: 1158px;
    padding: 42px 50px 30px;
} 
.videosHome__wr {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -25px;
    margin-top: -25px;
}
.videosHome__block {
	margin: 25px 0 0 25px;
	    width: 330px;
}
.videosHome__block-video {
	overflow: hidden;
    border-radius: 8px;
    height: 185px;
}
.videosHome__block-title a {
	color: #62626c;
}
.videosHome__block-link {
	margin-top: 15px;
}
.videosHome__block-link a {
	color: #219fff;
	display: inline-block;
    padding-right: 25px;
    position: relative;
}
.videosHome__block-link a:hover {
	text-decoration: underline;
}
.videosHome__block-link a:after {
	content: '→';
    font-size: inherit;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    text-align: right;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
}
.nextPageHome {
	align-items: center;
    justify-content: center;
    display: flex;
    padding: 2vw 0;
}
.nextPageHome a {
	font-size: 18px;
    padding: 0 1ex;
    color: #1f1f22;
    text-decoration: none;
}
.pagiPage {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 60px;
    margin-top: 40px;
}
.pagiPage__block {
	background-attachment: scroll;
    position: relative;
    width: auto;
	-webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
	height: 30vw;
	min-height: 347px;
    max-height: 600px;
	display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.pagiPage__block-cont {
	width: 85%;
}
.pagiPage__block-cont a {
    margin-bottom: -30px;
	margin-right: 12%;
    min-height: 172px;
    padding: 36px 42px;
    display: flex;
    color: white;
    background: #1f1f22;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s;
    position: relative;
    top: 0;
}
.pagiPage__block-cont a:hover {
	top: -20px;
	transition: all .3s;
}
.pagiPage__block-cont a:hover h2 {
	text-decoration: underline;
}
.pagiPage__block1 .pagiPage__block-cont-img {
	padding-right: 35px;
}
.pagiPage__block1 .pagiPage__block-cont-img img {
	transform: rotate(180deg);
	width: 50px;
}
.pagiPage__block2 {
	justify-content: flex-start;
}
.pagiPage__block2 .pagiPage__block-cont a {
	flex-direction: row-reverse;
}
.pagiPage__block2 .pagiPage__block-cont-img {
	padding-left: 35px;
}
.pagiPage__block2 .pagiPage__block-cont a {
	margin-left: 12%;
	margin-right: 0;
}
.pagiPage__block-cont-txt h2 {
	font-size: 36px;
    line-height: 1.17;
    margin-bottom: 6px;
    font-family: Walsheim, Georgia, serif;
    font-weight: 300;
}
.pagiPage__block-cont-txt h3 {
	font-size: 21px;
    line-height: 1.33;
    font-family: Walsheim, Georgia, serif;
    font-weight: 300;
}
.footer {
	padding: 90px 1.4vw 18px;
	overflow: hidden;
}
.footer__wr {
	display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-bottom: 0px;
}
.footer__r {
	flex: 2 1 370px;
}
.footer__hr {
	border-top: none;
    border-right: none;
    border-bottom: none;
    border-image: initial;
    border-left: 1px solid rgb(31, 31, 34);
    height: 200px;
    opacity: 0.1;
    width: 1px;
}
.footer__nav {
	display: flex;
    flex-wrap: wrap;
    flex: 5 1 auto;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin: -15px;
    overflow: hidden;
	padding: 0 60px;
}
.footer__nav-block {
	display: flex;
    flex: 1 1 175px;
    flex-direction: column;
    padding: 15px;
}
.footer__nav-block h3 {
	color: rgb(163, 163, 171);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.footer__nav-block ul {
	list-style-type: none;
}
.footer__nav-block ul li {
	line-height: 22px;
    margin-bottom: 12px;
    margin-top: 5px;
}
.footer__nav-block ul li a {
	color: rgb(55, 55, 60);
    font-size: 15px;
    text-decoration: none;
}
.footer__nav-block ul li a:hover {
	text-shadow: currentcolor 0px 0px 0.65px;
}
.footer__r {
	padding: 0 40px;
}
.footer__r-txt {
	font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    font-size: 30px;
    font-family: Walsheim, Georgia, serif;
}
.footer__r-soc a {
	color: #00c185;
}
.footer__r-soc a:hover {
	text-decoration: underline;
}
.footer__r-logo img {
	width: 200px;
}
.footer__copy {
	color: rgb(196, 196, 200);
    margin: 30px 60px;
    text-align: center;
}
.header__nav-menu-mob {
	display: none;
}


@media (max-width: 999px) {
	.heroHome__container {display: flex;flex-direction: column;text-align: center;}
	.pagiPage__block-cont a {margin-right: 7%;}
	.pagiPage__block2 .pagiPage__block-cont a {margin-left: 7%;}
	.pagiPage__block-cont {width: 94%;}
	.header__nav-btn, .header__nav-menu-mob  {display: block;}
	.header__nav-menu, .header__btns {display: none;}
	.header__nav-menu {flex-direction: column;justify-content: space-between;height: 85vh;border: 1px solid rgb(235, 235, 237);position: absolute;max-width: 375px;width: 100%;background: #fff;top: 65px;right: -6px;padding: 0 20px 20px;}
	.header__nav {justify-content: flex-end;}
	.header__con {padding: 0 30px;}
	.header__nav ul {flex-direction: column;}
	.header__nav ul li {border-bottom: 1px solid rgb(235, 235, 237);}
	.header__nav ul li a {padding: 20px 0;margin: 0;display: block;font-size: 18px;}
	.header__btns-log a {margin-right: 0;margin-bottom: 12px;}
	.header__btns-log a, .header__btns-st a {font-size: 18px;height: 50px;}
	.header__nav-menu.active {display: flex !important;}
}
@media (max-width: 769px) {
	.recentHome__post {flex-direction: column;}
	.recentHome__post-img {margin-right: 0;margin-bottom: 25px;}
	.recentHome__post-img img {height: auto;width: 100%;}
	.videosHome__block {margin: 25px 0 0 0;width: 65%;}
	.pagiPage {flex-direction: column;}
	.pagiPage__block {flex: 1 1 auto;margin-bottom: 50px;height: 80vh;}
	.pagiPage__block-cont {width: 100%;}
	.pagiPage__block-cont a {margin-right: 0;margin-bottom: 0;flex-direction: row-reverse;padding: 20px 20px;}
	.pagiPage__block2 .pagiPage__block-cont a {margin-left: 0;}
	.footer {padding: 0px 1.4vw 18px;}
	.heroHome__media-cont-title, .pagiPage__block-cont-txt h2, .footer__r-txt {font-size: 24px;}
	.pageWr {padding: 0 20px;}
	.recentHome__post-cont .titleTag a {font-size: 22px;}
	.recentHome__post-txt, .pagiPage__block-cont-txt h3 {font-size: 16px;}
	.videosHome__block {width: 100%;}
	.videosHome__wr {margin-left: 0;}
	.videosHome__cont {padding: 42px 20px 30px;}
	.pagiPage__block1 .pagiPage__block-cont-img img {transform: rotate(0);width: 34px;}
	.pagiPage__block1 .pagiPage__block-cont-img {padding-left: 35px;padding-right: 0;}
	.pagiPage__block {margin-bottom: 30px;height: 60vh;}
	.footer__hr {display: none;}
	.footer__r {margin-bottom: 50px;}
	.footer__nav, .footer__r {padding: 0 20px;}
	.header__con {padding: 0px 15px 0 10px;}
	.header__nav-menu {height: 81vh;max-width: 100%;right: 0px;}
	.heroHome__media-block-img img {height: 240px;}
}


/*-----------------------BLOG POST-----------------------*/
.blogPost {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row no-wrap;
    -ms-flex-flow: row no-wrap;
    flex-flow: row no-wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0;
	-webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
	margin: 70px auto 0;
    max-width: 1400px;
}
.blogPost__center, .blogPost__left, .blogPost__right {
	display: inline-block;
}
.blogPost__center {
	width: 780px;
}
.blogPost__left {
	vertical-align: top;
    width: 220px;
    margin: 15px 30px 0 10px;
	-webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}
.blogPost__right  {
	vertical-align: top;
    display: inline-block;
    width: 225px;
    margin-left: 40px;
}
.blogPost__center-cont {
	margin-top: 50px;
}
.blogPost__center-cont, .blogPost__center-cont p {
	font-weight: 400;
    font-size: 18px;
	line-height: 1.78;
	margin-bottom: 24px;
	color: #37373c;
}

.blogPost__center-title {
	border-bottom: 1px solid #dedee1;
    padding-bottom: 35px;
}
.blogPost__center-cont>p:first-child:first-letter {
    font-size: 350%;
    color: #41d0a3;
    font-weight: bold;
    float: left;
    margin-right: 10px;
    margin-top: -20px;
    margin-bottom: -28px;
    display: block;
}
.blogPost__center-cont h2 {
	font-family: Walsheim, Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}
.blogPost__center-cta {
	background-color: #1E64F0;
    margin: 20px 0;
	border-radius: 5px;
    clear: both;
    color: #fff;
    padding: 40px;
}
.blogPost__center-cta-title {
	font-family: Walsheim, Georgia, serif;
    font-size: 24px;
    margin-bottom: 18px;
}
.blogPost__center-cta-txt {
    font-size: 18px;
    line-height: 1.78;
    margin-bottom: 24px;
}
.blogPost__center-cta-btn a {
	color: #1e64f0;
	min-width: 120px;
	font-weight: 500;
	border-radius: 5px;
	padding: 12px 15px;
    background: #fff;
}
.blogPost__left-cat .post-categories {
	list-style-type: none;
	margin-bottom: 30px;
}
.blogPost__left-cat .post-categories li {
	margin-bottom: 10px;
}
.blogPost__left-cat .post-categories li a {
	font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #41d0a3;
}
.blogPost__left-date {
	color: #a3a3ab;
}
.blogPost__left-tags {
	margin-top: 30px;
	display: flex;
    flex-direction: column;
    align-items: baseline;
}
.blogPost__left-tags a {
	background-color: white;
    border: 1px solid #ebebed;
    border-radius: 5px;
    font-size: 15px;
    padding: 10px 8px;
	display: inline-block;
	margin-bottom: 15px;
	margin-right: 15px;
}
.blogPost__left-soc {
	margin-top: 30px;
}
.blogPost__left-soc a {
	width: 53px;
	height: 53px;
	border: 1px solid #ebebed;
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    -webkit-transition: background 150ms cubic-bezier(0,0,0,1), border-color 150ms cubic-bezier(0,0,0,1);
    transition: background 150ms cubic-bezier(0,0,0,1), border-color 150ms cubic-bezier(0,0,0,1);
    color: #ebebed;
	margin-bottom: 10px;
}
.blogPost__left-soc a:hover {
	background: #58b7ff;
    border-color: #58b7ff;
    color: #fff;
}
.blogPost__right-author-img {
    border-radius: 50%;
    height: 55px;
    margin-right: 16px;
    overflow: hidden;
    width: 55px;
}
.blogPost__right-author {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.sliderPost {
    overflow: hidden;
    margin-top: 100px;
    position: relative;
    width: 100%;
}
.sliderPost h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
}  
.sliderPost__img {
    height: 360px;
    border-radius: 5px;
    margin: 0 0 1.8em;
    overflow: hidden;
}
.sliderPost__title {
    font-size: 25px;
    font-weight: 500;
    word-break: break-word;
}
.sliderPost__txt {
    color: #62626c;
    margin-top: 1em;
}
.sliderPost__meta {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}
.sliderPost__meta-a {
    margin-left: 11px;
    padding-left: 17px;
    position: relative;
}
.sliderPost__meta-a:before {
    content: '·';
    position: absolute;
    left: 0;   
}
.sliderPost__slider {
    position: relative;
}
.sliderPost__slider-block {
    margin: 50px;
    width: 540px;
}
.sliderPost__slider .slick-arrow {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 29%;
    display: flex;
    align-items: center;
    height: 100%;
}
.sliderPost__slider-prev {
    left: 0;
    justify-content: flex-end;
}
.sliderPost__slider-next {
    right: 0;
    justify-content: flex-start;
}
.sliderPost__slider .slick-arrow span {
    color: #a3a3ab;
    border: 1px solid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding-top: 6px;
    font-size: 26px;
    text-align: center;
    margin-top: -145px;
}
.sliderPost__slider .slick-arrow:hover span {
    color: #000;
}
.sliderPost__meta-cat ul {
    list-style-type: none;
}
.sliderPost__meta-cat ul a {
    color: #dc9600;
}
.signPost {
    padding: 20vh 40px;
    margin: 40px 0;
    color: white;
    text-align: center;
    background: #58b7ff;
}
.signPost__form .form-group {
    display: flex;
}
.signPost h2 {
    font-family: Walsheim, Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: currentColor;
    margin-bottom: 35px;
}
.signPost__form {
    margin: auto;
    max-width: 700px;
}
.signPost__form .form-group {
    display: flex;
    margin: 0 -12px;
}
.signPost__form input {
    min-height: 60px;
    padding: 4px 12px;
    margin: 12px;
    border-radius: 5px;
    border: 1px solid #a3a3ab;
    width: 50%;
    font-size: 16px;
}
.signPost__form button {
    background-color: #b89fff;
    border: none;
    padding: 4px 1em;
    font-weight: 600;
    color: white;
    height: 60px;
    border-radius: 5px;
    font-size: 20px;
    width: 100%;
    margin: 20px 0 50px;
}
.signPost__form button:hover {
    background-color: #ae95f5;
}
.signPost__form p a {
    text-decoration: underline;
}
.blogPost__center-mobile, .blogPost__center-mobile2 {
    display: none;
}

@media(max-width: 991px) {
    .blogPost {flex-direction: column;padding: 0 50px;}
    .blogPost__center {width: 100%;}
    .blogPost__left, .blogPost__right {display: none;}
    .blogPost__center-mobile, .blogPost__center-mobile2 {display: block;}
    .blogPost__center-mobile2 {display: flex;justify-content: space-between;align-items: center;margin-bottom: 20px;}
    .blogPost__left-soc {display: flex;align-items: center;margin-top: 0;letter-spacing: 1px;color: #c4c4c8;font-size: 18px;font-weight: 700;text-transform: uppercase;}
    .blogPost__left-soc a {border:none;color: #c4c4c8;margin-bottom: 1px;}
    .blogPost__left-cat .post-categories, .blogPost__left-cat .post-categories li {margin-bottom: 0;}
    .blogPost__center-title h1 {margin-bottom: 30px;}
    .blogPost__left-tags {flex-direction: row;flex-wrap: wrap;}
    .blogPost__right-author {margin-top: 30px;}
}
@media(max-width: 575px) {
    .blogPost__left-soc-title {display: none;}
    .blogPost__center-title h1 {font-size: 36px;}
    .blogPost__left-soc a {width: 38px;}
    .blogPost {padding: 0 20px;}
    .sliderPost__slider-block {margin: 25px;width: 250px;}
    .sliderPost__img {height: 170px;}
    .sliderPost__meta, .signPost__form .form-group {flex-direction: column;align-items: baseline;}
    .sliderPost__meta-a {margin-left: 0;padding-left: 0;color: #6a6a74;}
    .sliderPost__slider .slick-arrow {width: 14%;}
    .signPost h2 {font-size: 28px;line-height: 1.29;}
    .signPost {padding: 14vh 40px;}
    .signPost__form input {width: 94%;}
    .signPost__form button {margin: 20px 0 30px;}
}

