/**
 * Homepage specific styling goes here. Excluded on all subpages
 *
 * @format
 */

/* For most builds, this stylesheet should be wiped and started fresh */

/* hero */
.hero {
	top: 0;
	width: 100%;
	position: fixed;
	text-align: center;
	color: var(--color-white);
}

.hero:before,
.hero:after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 50%;
	content: '';
	pointer-events: none;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero:after {
	top: unset;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-inner {
	z-index: 2;
	position: relative;
}

.hero-text {
	z-index: 2;
	display: flex;
	padding: 140px 0 100px;
	min-height: 535px;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

/* .hero-text .button {
	animation-delay: 2s;
} */

.hero-title {
	font-size: 3.125rem;
	font-weight: 600;
	display: block;
	line-height: 1.1;
	color: inherit;
	margin-bottom: 5px;
}

.hero-title > span,
.hero-subtitle {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: inline-flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	flex-wrap: wrap;
}

.hero-title .strong {
	font-weight: inherit;
	color: var(--color-primary);
}

.hero-subtitle {
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: normal;
	max-width: 250px;
	margin: 0 auto 30px;
}

.hero-subtitle span {
	display: inline-block;
}

.hero-bottom {
	z-index: 2;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px 0;
	position: absolute;
}

.hero-bottom h1 {
	font-size: 1.063rem;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	margin: 0;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-video:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
}

.hero-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero + main {
	margin-top: 535px;
}

@media screen and (min-width: 540px) {
	.hero-subtitle {
		max-width: none;
	}
}

@media screen and (min-width: 768px) {
	.hero-text {
		min-height: 600px;
		padding-top: 180px;
	}

	.hero-subtitle {
		line-height: unset;
	}

	.hero + main {
		margin-top: 600px;
	}

	/* .hero-title span,
	.hero-subtitle span {
		opacity: 0;
	} */
}

@media screen and (min-width: 1025px) {
	.hero-text {
		min-height: 100vh;
	}

	.hero-title {
		font-size: 6.5rem;
	}

	.hero-subtitle {
		font-size: 2.25rem;
	}

	.hero-bottom {
		padding: 30px 0;
	}

	.hero + main {
		margin-top: 100vh;
	}
}

@media screen and (min-width: 1025px) and (min-height: 800px) {
	.hero-text {
		min-height: 800px;
	}

	.hero + main {
		margin-top: 800px;
	}
}

@media screen and (min-width: 1441px) {
	.hero-title {
		font-size: 7.75rem;
	}

	.hero-subtitle {
		font-size: 2.875rem;
	}

	.hero-bottom {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 1441px) and (min-height: 1024px) {
	.hero-text {
		min-height: 1024px;
	}

	.hero + main {
		margin-top: 1024px;
	}
}

/* intro */
.intro {
	position: relative;
	padding-top: 46px;
	padding-bottom: 30px;
	text-align: center;
	letter-spacing: 0.009rem;
	line-height: 1.7;
	color: var(--color-white);
	background-color: var(--color-green);
}

.intro .row-narrow {
	max-width: 1095px;
}

.intro h2 {
	font-size: 0.938rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	max-width: 270px;
	margin: 0 auto 16px;
	line-height: 1.5;
	color: var(--color-primary);
	font-family: var(--font-family-alt);
}

@media screen and (min-width: 768px) {
	.intro {
		padding-top: 108px;
		padding-bottom: 108px;
		font-size: 1.125rem;
	}

	.intro h2 {
		font-size: 1.125rem;
		letter-spacing: 3px;
		margin-bottom: 19px;
		line-height: 1.2;
		max-width: 450px;
	}
}

@media screen and (min-width: 1025px) {
	.intro h2 {
		max-width: none;
	}
}

@media screen and (min-width: 1441px) {
	.intro {
		padding-top: 128px;
		padding-bottom: 120px;
	}
}

/* help */
.protect {
	position: relative;
	padding-top: 55px;
	padding-bottom: 20px;
	background-color: var(--color-white);
}

.protect:after,
.protect:before {
	left: 50%;
	width: 2px;
	content: '';
	height: 37px;
	display: block;
	position: absolute;
	pointer-events: none;
	transform: translateX(-50%);
}

.protect:after {
	top: -37px;
	transition: 1s height linear;
	background-color: var(--color-white);
}

.protect:before {
	top: 0;
	transition: 1s height linear 1s;
	background-color: var(--color-secondary);
}

.protect.animate:after,
.protect.animate:before {
	height: 0;
}

.protect.animated:after,
.protect.animated:before {
	height: 37px;
}

.protect .row {
	max-width: 1474px;
}

.protect-wrap {
	max-width: 875px;
	margin: 0 auto;
	text-align: center;
}

.protect-logo {
	/* display: flex; */
	display: grid;
	justify-content: center;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 25px;
}

.protect-logo-item {
	display: block;
	margin: 0 12px;
}

.protect-logo img {
	filter: grayscale(1);
	width: 82px;
	transition: 0.3s all;
}

.protect-logo-item:nth-child(2) img {
	width: 113px;
}

.protect-logo-item:hover img {
	filter: grayscale(0);
}

.protect-logo-item:nth-child(2) {
	animation-delay: 300ms;
}

.protect-logo-item:nth-child(3) {
	animation-delay: 600ms;
}

.protect-wrap .small-title {
	font-family: var(--font-family-alt);
	text-transform: uppercase;
	letter-spacing: 0.138rem;
	font-weight: 700;
	font-size: 0.938rem;
}

.protect-wrap h2 {
	font-size: 2.313rem;
	margin-bottom: 16px;
	letter-spacing: -0.106rem;
}

.protect-wrap h2 a,
.protect-wrap h2 span {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: var(--color-primary);
}

.protect-wrap h2 a:after,
.protect-wrap h2 span:after {
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	pointer-events: none;
	background-color: var(--color-primary);
}

.protect-wrap h2 a:hover:after,
.protect-wrap h2 a:focus:after {
	display: none;
}

.protect-text {
	max-width: 620px;
	margin: 0 auto;
}

.protect-slider {
	margin-bottom: 22px;
}

.protect-item {
	display: block;
	position: relative;
}

.protect-info {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	color: var(--color-white);
	padding: 0 50px 0 24px;
	min-height: 121px;
}

.protect-info h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: inherit;
	margin-bottom: 0;
	line-height: 1.1;
	transition: all 0.3s;
}

.protect-info p:last-of-type {
	margin-bottom: 0;
}

.protect-image {
	height: 180px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

/* .protect-image:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	pointer-events: none;
	background: linear-gradient(135deg, rgba(0, 64, 58, 1) 80%, rgba(0, 0, 0, 1) 100%);
} */

.protect-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	mix-blend-mode: soft-light;
}

.protect-item:focus h3,
.protect-item:hover h3 {
	color: var(--color-primary);
}

.protect-btn {
	text-align: center;
	margin-bottom: 18px;
}

.protect .swiper-pagination {
	display: flex;
	justify-content: center;
	margin-top: 25px;
	position: static;
}

.protect .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
}

.protect-slider .swiper-wrapper {
	transition-timing-function: linear !important;
}

.protect-slider .swiper-slide {
	user-select: none;
}

.protect-slider.swiper {
	overflow: visible;
}

@media screen and (min-width: 540px) {
	.protect-logo {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.protect {
		padding-top: 100px;
		padding-bottom: 107px;
	}

	.protect:after,
	.protect:before {
		height: 75px;
	}

	.protect:after {
		top: -75px;
	}

	.protect.animate:after,
	.protect.animate:before {
		height: 0;
	}

	.protect.animated:after,
	.protect.animated:before {
		height: 75px;
	}

	.protect-logo {
		margin-bottom: 45px;
	}

	.protect-logo-item {
		margin: 0 17px;
	}

	.protect-logo img,
	.protect-logo-item:nth-child(2) img {
		width: auto;
	}

	.protect-wrap .small-title {
		font-size: 1rem;
	}

	.protect-wrap h2 {
		font-size: 4.375rem;
		margin-bottom: 23px;
	}

	.protect-slider {
		margin-bottom: 41px;
	}

	.protect-image {
		height: auto;
	}

	.protect-info {
		padding: 0 50px 0 27px;
		min-height: 121px;
	}

	.protect-btn {
		margin-bottom: 33px;
	}

	.protect .swiper {
		overflow: visible;
	}

	.protect .swiper-pagination {
		display: none;
	}
}

@media screen and (min-width: 1025px) {
	.protect-info {
		padding: 0 50px 0 27px;
		min-height: 151px;
	}

	.protect-wrap {
		margin: 0 auto 55px;
	}
}

@media screen and (min-width: 1441px) {
	.protect {
		padding-top: 111px;
	}

	.protect-info {
		min-height: 121px;
	}
}

/* leaders */
.leaders {
	position: relative;
	padding-top: 63px;
	/* background: url('../images/result-bg.jpg') no-repeat; */
	background-size: cover;
	background-color: var(--color-white);
}

.leaders:before {
	position: absolute;
	top: -40px;
	left: 50%;
	width: 2px;
	height: 80px;
	background-color: var(--color-secondary);
	transform: translateX(-50%);
	content: '';
	pointer-events: none;
	transition: 1s height linear;
}

.leaders.animate:before {
	height: 0;
}

.leaders.animated:before {
	height: 80px;
}

.leaders .row {
	max-width: 1260px;
}

.leaders-content {
	max-width: 835px;
	margin: 0 auto;
	text-align: center;
}

.leaders h2 {
	font-size: 2.188rem;
	letter-spacing: -0.031rem;
	margin-bottom: 44px;
}

.leaders h2 a,
.leaders h2 strong {
	overflow: hidden;
	font-weight: inherit;
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--color-primary);
}

.leaders h2 a span:after,
.leaders h2 strong span:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-primary);
	pointer-events: none;
	content: '';
}

.leaders h2 span {
	display: block;
	overflow: hidden;
}

.leaders h2 span + span span {
	animation-delay: 400ms;
}

.leaders h2 a span,
.leaders h2 strong span {
	position: relative;
	animation-delay: 800ms;
}

.leaders-wrap {
	margin-bottom: 33px;
}

.leaders-wrap p:last-of-type {
	margin-bottom: 26px;
}

.leaders-video {
	position: relative;
	z-index: 2;
	display: block;
	margin-top: 35px;
	margin-right: calc(var(--gutter-size) * -1);
}

.leaders-info {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	font-size: 0.875rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	color: var(--color-white);
	padding: 0 0 15px 24px;
}

.leaders-info i {
	font-size: 1.188rem;
	margin-right: 13px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	color: var(--color-primary);
	background-color: var(--color-white);
}

.leaders-image {
	width: 100%;
	position: relative;
	border-radius: 20px 0 0 20px;
	overflow: hidden;
	height: 218px;
}

.leaders-image:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	pointer-events: none;
	background: linear-gradient(195deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 100%);
}

.leaders-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (min-width: 768px) {
	.leaders {
		padding-top: 100px;
	}

	.leaders:before {
		top: -77px;
	}

	.leaders.animated:before {
		height: 150px;
	}

	.leaders h2 {
		font-size: 3.75rem;
		margin-bottom: 27px;
		line-height: 1.25;
		letter-spacing: -0.075rem;
	}

	.leaders h2 a:after,
	.leaders h2 strong:after {
		bottom: 4px;
		height: 3px;
	}

	.leaders-wrap {
		max-width: 815px;
		margin: 0 auto 36px;
	}

	.leaders-wrap p:last-of-type {
		margin-bottom: 24px;
	}

	.leaders-video {
		margin-top: 62px;
	}

	.leaders-image {
		height: auto;
	}

	.leaders-info {
		font-size: 1rem;
		padding: 0 0 32px 46px;
	}

	.leaders-info i {
		font-size: 1.875rem;
		margin-right: 17px;
		width: 70px;
		height: 70px;
	}
}

@media screen and (min-width: 1201px) {
	.leaders-video {
		margin-left: calc(var(--gutter-size) * 7);
		width: 100%;
		margin-right: unset;
	}
}

@media screen and (min-width: 1441px) {
	.leaders-image {
		border-radius: 20px;
		height: auto;
		width: auto;
	}

	.leaders-video {
		margin-left: auto;
	}
}

/* answers */
.answers {
	position: relative;
	margin-top: -55px;
	padding-top: 84px;
	padding-bottom: 65px;
	background-color: var(--color-white);
}

.answers-holder {
	max-width: 788px;
	margin: 0 auto;
}

.answers h2 {
	font-size: 3.125rem;
	font-weight: 400;
	max-width: 310px;
	margin: 0 auto 17px;
}

.answers h3 {
	font-weight: 700;
	font-size: 0.938rem;
	margin-bottom: 36px;
	line-height: 1.5;
	text-transform: uppercase;
	font-family: var(--font-family-alt);
}

.answers .accordion-item-title {
	padding: 16px 0 16px 11px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.25;
}

.answers .accordion-item:before,
.answers .accordion-item:last-of-type:after {
	width: 35px;
}

.answers .accordion-item-title:after {
	width: 33px;
}

.answers .accordion-item-content {
	padding-left: 7px;
}

.answers-pattern,
.answers-pattern2 {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0.05;
	pointer-events: none;
}

.answers-pattern2 {
	left: 0;
	right: unset;
	top: unset;
	bottom: -400px;
}

@media screen and (min-width: 768px) {
	.answers {
		margin-top: -156px;
		padding-top: 237px;
		padding-bottom: 188px;
	}

	.answers h2 {
		font-size: 3.75rem;
		margin-bottom: 24px;
		letter-spacing: -0.075rem;
		max-width: none;
	}

	.answers h3 {
		font-size: 1rem;
		line-height: 1.2;
		margin-bottom: 45px;
	}

	.answers .accordion-item-title {
		padding: 37px 7px 32px;
	}

	.answers .accordion-item:before,
	.answers .accordion-item:last-of-type:after {
		width: 85px;
	}

	.answers .accordion-item-title:after {
		width: 70px;
	}
}

@media screen and (min-width: 1441px) {
	.answers {
		padding-bottom: 108px;
	}
}

/* human */
.human {
	position: relative;
	padding-bottom: 52px;
	background-color: var(--color-white);
}

.human-info h2 {
	font-size: 2.25rem;
	margin-bottom: 22px;
}

.human-item {
	position: relative;
	display: block;
	text-decoration: none;
}

.human-block {
	position: relative;
	flex: 1;
	overflow: hidden;
	transition: all 0.5s;
	border-radius: 20px;
	display: flex;
	align-items: flex-end;
	cursor: pointer;
	text-decoration: none;
	aspect-ratio: 312/440;
	border-radius: 20px;
	background: #e5edee;
}

.human-block:hover {
	flex: 2.3;
}

.human-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
	object-fit: cover;
	object-position: center center;
}

.human-content {
	padding: 1.5rem;
	width: 100%;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(31, 30, 68, 1) 100%);
}

.human-content-inner {
	transition: all 0.5s;
	transition-delay: 0.1s;
}

.human-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0;
	position: relative;
	color: var(--color-white);
}

.human-position {
	font-size: 0.875rem;
	display: block;
	color: var(--color-white);
}

#human-slider-pagination {
	display: flex;
	justify-content: center;
	position: static;
}

.human .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
}

@media screen and (min-width: 768px) {
	.human {
		padding-bottom: 110px;
	}

	.human-wrap {
		display: flex;
	}

	.human-info {
		width: 36%;
		margin-right: 55px;
		align-self: center;
	}

	.human-info h2 {
		margin-bottom: 25px;
	}

	.human-right {
		flex: 1;
	}

	#human-holder,
	.human-holder {
		display: flex;
		height: 541px;
	}

	.human-block {
		margin: 0 5px;
		aspect-ratio: unset;
	}

	.human-block:first-child {
		margin-left: 0;
	}

	.human-block:last-child {
		margin-right: 0;
	}

	#human-slider-pagination {
		display: none;
	}
}

@media screen and (min-width: 1025px) {
	.human-block {
		margin: 0 17px;
	}

	.human-content-inner {
		opacity: 0;
	}

	.human-block:hover .human-content-inner,
	.human-block:focus .human-content-inner {
		opacity: 1;
	}
}

@media screen and (min-width: 1441px) {
	.human {
		padding-bottom: 100px;
	}

	.human-info {
		width: 31%;
		margin-right: 98px;
	}
}

/* info */
.info {
	padding-top: 40px;
	position: relative;
	padding-bottom: 40px;
	color: var(--color-white);
	background-color: var(--color-secondary);
}

.info-image {
	height: 320px;
	overflow: hidden;
	margin-bottom: 26px;
	border-radius: 20px;
}

.info-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.info-content h2 {
	color: inherit;
	line-height: 1.35;
	font-size: 2.563rem;
	margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
	.info {
		padding-top: 100px;
		padding-bottom: 100px;
		/* background-image: url('../images/text-block-bg.jpg'); */
		background-size: cover;
		background-position: center center;
	}

	.info-holder {
		display: flex;
	}

	.info-image {
		width: calc(31% + 250px);
		height: 540px;
		margin-bottom: 0;
		margin-right: 68px;
		margin-left: -250px;
	}

	.info-content {
		flex: 1;
		align-self: center;
	}

	.info-content h2 {
		font-size: 3.75rem;
	}
}

@media screen and (min-width: 1441px) {
	.info-image {
		margin-right: 98px;
		width: calc(39% + 250px);
	}
}

/* news */
.news {
	padding-top: 35px;
	padding-bottom: 35px;
	background-color: var(--color-white);
}

.news h2 {
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 26px;
}

.news-list {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	padding-bottom: 20px;
	margin-bottom: 15px;
	color: var(--color-body-text);
	border-bottom: 1px solid var(--color-near-gray);
}

.news-list i {
	color: var(--color-primary);
}

.news-list span {
	font-weight: 600;
	padding-right: 40px;
}

.news-list:focus,
.news-list:hover {
	color: var(--color-primary);
}

.news-list:after {
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 25px;
	height: 1px;
	content: '';
	background-color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.news {
		padding-top: 145px;
		padding-bottom: 97px;
	}

	.news-holder {
		display: flex;
		justify-content: space-between;
	}

	.news h2 {
		width: 46%;
	}

	.news-items {
		flex: 1;
	}

	.news-list {
		padding-bottom: 25px;
		margin-bottom: 21px;
		padding-right: 26px;
	}

	.news-list:after {
		width: 63px;
	}
}

@media screen and (min-width: 1441px) {
	.news {
		padding-top: 110px;
		padding-bottom: 100px;
	}

	.news-list span {
		padding-right: 210px;
	}
}
