@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=fallback');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=fallback');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=fallback');

:root {
  --font-primary: "Roboto Flex", sans-serif;
  --font-secondary: 'Segoe UI', sans-serif;
  --font-btn: "Inter", sans-serif;
  --font-italic: "Open Sans", sans-serif;
  --transition: all .5s ease-out;
}

.image-hero {
	padding: 209px 0;
	position: relative;
	max-width: 2560px;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 671px;
}

.image-hero.without-img {
	background-color: #000;
}

.image-hero__header {
	text-align: center;
	max-width: 963px;
	margin: 0 auto;
	color: #fff;
	position: relative;
}

.image-hero__title {
	font-family: var(--font-primary);
	font-size: 54px;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin: 0;
}

.image-hero__content {
	font-family: var(--font-secondary);
    letter-spacing: .07em;
    font-size: 24px;
    line-height: 32px;
    font-weight: 350;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    max-width: 700px;
    margin: 31px auto 0;
}

.image-hero__content > * {
	margin: 0 0 20px;
}

.image-hero__content > *:last-child {
	margin-bottom: 0;
}

.image-hero__anchor {
	padding: 0 15px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 1;
	bottom: 40px;
	overflow: hidden;
}

.image-hero__anchor--list {
	max-width: 1752px;
	margin: 0 auto;
	border-radius: 20px;
	padding: 0 90px;
	background-color: rgba(242, 242, 242, 0.15);
	border: 2px solid rgba(255,255,255,.3);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	opacity: 0;
	visibility: hidden;	
}

.image-hero__anchor--list.slick-initialized {
	opacity: 1;
	visibility: visible;	
}

.image-hero__anchor--list.visible-arrow .slick-arrow {
	display: block !important;
}

.image-hero__anchor--list .slick-arrow {
	display: none !important;
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	-webkit-mask: url('../../../flexible-post/img/arr.svg');
	mask: url('../../../flexible-post/img/arr.svg');
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: #fff;
	width: 12px;
	height: 20px;
	transition: all .5s ease-out;	
}
.image-hero__anchor--list .slick-arrow.disabled {
	opacity: .4;
	pointer-events: none;
}

.image-hero__anchor--list .slick-arrow.prev {
	left: 10px;
	transform: translateY(-50%) scale(-1,-1);
}

.image-hero__anchor--list .slick-arrow.next {
	right: 10px;
}

.image-hero__anchor--item {
	padding: 16.75px 90px;
	position: relative;
}

.image-hero__anchor--item::before {
	position: absolute;
	right: 0;
	height: 36px;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255,255,255,.15);
	width: 1px;
}

.image-hero__anchor--item:last-child::before {
	display: none;
}

.image-hero__anchor--item:hover a::before {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.image-hero__anchor--item a {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -1px;
	font-weight: 500;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	text-transform: uppercase;
	color: #fff;
	text-decoration: none !important;
	position: relative;
}
.image-hero__anchor--item a::before {
	position: absolute;
	bottom: -4px;
	height: 1px;
	left: 0;
	content: '';
	width: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease-out;
	background-color: #fff;
}


@media screen and (max-width: 1400px) {
	.image-hero__anchor--list {
		padding: 0 50px;
	}
	.image-hero__anchor--item {
		padding: 16px 50px;
	}
}

@media screen and (max-width: 1199px) {
	.image-hero__anchor--list {
		padding: 0 30px;
	}

	.image-hero__anchor--item {
		padding: 15px 30px;
	}

	.image-hero__anchor--item a {
		font-size: 16px;
		line-height: 20px;
	}

	.image-hero__title {
		font-size: 42px;
		line-height: 50px;
	}

	.image-hero__content {
		font-size: 18px;
		line-height: 28px;
		margin: 20px auto 0;
	}

	.image-hero {
		padding: 150px 0;
		min-height: 500px;
	}

	@media screen and (max-width: 767px) {
		.image-hero__title {
			font-size: 36px;
			line-height: 44px;
		}

		.image-hero__content {
			letter-spacing: 0;
		}		
	}
}

.post-template-flexible-post .section__header {
	margin-bottom: 50px;
	color: #292929;
}

.post-template-flexible-post .section__title {
	text-align: center;
	font-size: 36px;
	line-height: 45px;
	font-family: var(--font-primary);
	font-weight: 700;
	color: currentColor;
}

.post-template-flexible-post .section__title.with-line {
	position: relative;
	padding-bottom: 30px;
}

.post-template-flexible-post .section__title.with-line::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 296px;
	height: 1px;
	background-color: #292929;
}

.post-template-flexible-post .section__quote {
	text-align: center;
	max-width: 887px;
	padding: 0 49px;
	margin: 41px auto 0;
	font-size: 28px;
	font-weight: 400;
	line-height: 45px;
	font-family: var(--font-primary);
	position: relative;
}

.post-template-flexible-post .section__quote::before {
	position: absolute;
	content: '';
	left: 0;
	top: 6px;
	width: 34px;
	height: 27px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../../../flexible-post/img/quote_left.png');
}

.post-template-flexible-post .section__quote::after {
	position: absolute;
	content: '';
	right: 0;
	top: 6px;
	width: 34px;
	height: 27px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../../../flexible-post/img/quote_right.png');
}

.post-template-flexible-post .section__quote i {
	font-style: italic;
}

.post-template-flexible-post .html-content {
	font-size: 18px;
	line-height: 26px;
	font-family: var(--font-secondary);
	color: #292929;
	font-weight: 400;
}

.post-template-flexible-post .html-content > * {
	margin-bottom: 21.8px;
}

.post-template-flexible-post .html-content > *:last-child {
	margin-bottom: 0;
}

.post-template-flexible-post .html-content figure {
	width: 100%;
}

.post-template-flexible-post .html-content strong,
.post-template-flexible-post .html-content b {
	font-weight: 700;
}

.post-template-flexible-post .html-content a {

}

.post-template-flexible-post .html-content a.block__img {
	display: block;
	padding: 20px 0;
}

.post-template-flexible-post .html-content a.block__img img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	border: none;
}

.post-template-flexible-post .html-content .video-js-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin: 30px 0;
}

.post-template-flexible-post .html-content .video-js-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
}

.post-template-flexible-post .html-content a:not(.block__img) {
	color: currentColor;
    display: inline;
    padding-bottom: 1px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor), to(currentColor));
    background: linear-gradient(to bottom, currentColor 0, currentColor 100%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: var(--transition);
    text-decoration: none !important;
}

.post-template-flexible-post .html-content a:not(.block__img):hover {
	text-shadow: 0 0 .01px currentColor, 0 0 .01px currentColor, 0 0 .01px currentColor;
}

.post-template-flexible-post .html-content ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.post-template-flexible-post .html-content ul li {
	padding-left: 17px;
	position: relative;
	list-style-type: none;
	margin-bottom: 15px;
}

.post-template-flexible-post .html-content ul li:last-child {
	margin-bottom: 0;
}

.post-template-flexible-post .html-content ul li::before {
	position: absolute;
	content: '';
	width: 7px;
	height: 7px;
	left: 2px;
	top: 12px;
	border-radius: 100%;
	background-color: #009CE9;	
}

.post-template-flexible-post .html-content ol {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	counter-reset: item;
}

.post-template-flexible-post .html-content ol li {
	padding-left: 17px;
	position: relative;
	list-style-type: none;
	margin-bottom: 15px;
}

.post-template-flexible-post .html-content ol li:last-child {
	margin-bottom: 0;
}

.post-template-flexible-post .html-content ol li::before {
	display: inline-block;
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: 0;
	color: #009CE9;
	font-size: 16px;
	font-weight: inherit;
	font-style: inherit;
}

.post-template-flexible-post .btn--default {
	padding: 19.5px 23px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	border-radius: 25px;
	background: linear-gradient(to left, #6494B8 50%, #009BE8 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	outline: none;
	box-shadow: none;
	appearance: none;
	width: max-content;
	transition: var(--transition);
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-family: var(--font-btn);
	color: #fff;
	text-transform: uppercase;
	text-decoration: none !important;
	font-weight: 700;	
}

.post-template-flexible-post .btn--default::after {
    content: "";
    -webkit-mask: url('../../../flexible-post/img/btn-arr.svg');
    mask: url('../../../flexible-post/img/btn-arr.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -mask-repeat: no-repeat;
    position: relative;
    display: block;
    width: 12px;
    height: 13px;
    background-color: #fff;
    margin-left: 20px;
    transition: var(--transition);	
}

.post-template-flexible-post .btn--default:hover {
	background-position: left bottom;
}

@media screen and (max-width: 1199px) {
	.post-template-flexible-post .html-content {
		font-size: 16px;
		line-height: 26px;
	}
	.post-template-flexible-post .html-content a.block__img {
		padding: 10px 0;
	}
	.post-template-flexible-post .btn--default {
		font-size: 15px;
		padding: 18px 20px;
	}

	.post-template-flexible-post .btn--default::after {
		margin-left: 10px;
	}
	.post-template-flexible-post .section__title.with-line {
		padding-bottom: 20px;
	}
	.post-template-flexible-post .section__title {
		font-size: 32px;
		line-height: 40px;
	}
	.post-template-flexible-post .section__quote {
		font-size: 24px;
		line-height: 1.5;
		max-width: 810px;
		margin: 25px auto 0;
	}
}

@media screen and (max-width: 767px) {
	.post-template-flexible-post .section__title {
		font-size: 28px;
		line-height: 36px;
	}

	.post-template-flexible-post .section__quote {
		font-size: 20px;
	}
}