:root{
	--biggest-font-size: 100px;

	--h1-font-size: 48px;
	--h2-font-size: 1.25vw;
	--h2-numbers-font-size: 40px;
	--h3-font-size:30px;
	--button-font-size:20px ;
	--normal-p-font-size:18px ;
	--small-font-size: 18px;

	--color-white:#5A5A5A;
	--color-black:#000;
   --color-primary:#4154D9;
}


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body{
	background-color: #F6F6F6;
	overflow-x: hidden !important;
}
img,svg,video{
	max-width: 100%;
	height: auto;
}
button,
input {
  border: none;
}

button {
  cursor: pointer;
}
ul{
	list-style: none;
}
a{
	text-decoration: none;
}

.container{
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 60px;
}
@media screen and (max-width: 1600px) {
	.container{
		padding: 0 3.75vw;
		margin: 0 auto;
	}
}
@media screen and (max-width: 1200px) {
	.container{
		padding: 0 8vw;
		margin: 0 auto;
		width: 100%;
	}
}




header{
   width: 100%;
	position: relative;
   z-index: 1000;
   background-color: #F6F6F6;
   border-bottom: 1px solid var(--color-white);
}

.left{
    text-align: left !important;
}

.header_mobile{
	background: #E40000;
	display: none;
}
@media screen and (max-width: 1200px) {
	.header_mobile{
		background: #E40000;
		display: flex;
		flex-direction: column;
		height: 100vh;
		min-height: 100vh;
		max-width: 100vw;
		overflow-y: auto;
		position: fixed;
		top: 0;
		left: 0;
		transform: translateY(-150vh);
		transition: .3s;
	}
	.header_mobile.active{
		transform: translateY(0);
		transition: .3s;
	}
}
.header_wrapper{
	overflow-y: auto;
}

.header-logo{
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.header-logo img{
		min-width: 18.93vw;
		max-width: 18.93vw;
	}
}
.header-container{
	display: grid;
	grid-template-columns: 13.18vw auto 20.625vw;
}
@media screen and (max-width: 1200px) {
	.header-container{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header_mobile .header-container{
		border-bottom: 1px solid #fff;
	}
}
.header-nav{
	width: 100%;
	display: flex;
	align-items: center;
}
.header-list{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 1200px) {
	.header-list{
		display: flex;
		flex-direction: column !important;
		align-items: flex-start;
	}
}
@media screen and (max-width: 1200px) {
	.header-nav{
		display: none;
	}
	.header_mobile .header-nav{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin-top: 21.33vw;
	}
}
.header-item{
	width: 100%;
	padding: 40px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s ease-in-out;
}
@media screen and (min-width: 1600px) {
	.header-item{
		height: 100%;
		padding: 2.08vw 0;
	}
}
@media screen and (max-width: 1200px) {
	.header-item{
		height: 100%;
		padding: 0;
		margin-left: 0;
		text-align: left;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		color: #fff;
		gap: 1.33vw;
		margin-bottom: 6.66vw;
	}
}
.header-logo{
	padding: 30px;

	border-right: 1px solid var(--color-white);
}
@media screen and (max-width: 1600px) {
	.header-logo{
		padding: 1.56vw;
	}
}
@media screen and (max-width: 1200px) {
	.header-logo{
		padding: 9.06vw 0 9.06vw 8vw;
		width: 50vw;
		display: flex;
		justify-content: flex-start;
		margin-right: 10vw;
		border: none;
		position: relative;
	}
	.header-logo:after{
		content: '';
		height: 16.4vw;
		width: 1px;
		background: #000;
		right: 0;
		position: absolute;
	}
	.header_mobile .header-logo:after{
		content: '';
		height: 16.4vw;
		width: 1px;
		background: #fff;
		right: 0;
		position: absolute;
	}
}
.header-link{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	width: 100%;
	transition: .2s ease-in-out;

	border-right: 1px solid var(--color-white);
}
@media screen and (min-width: 1600px) {
	.header-link{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.header-link{
		color: #fff;
		font-family: "Bebas Neue";
		font-weight: 700;
		font-size: 16vw;
		text-transform: uppercase;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 0px;
		width: max-content;
		transition: .2s ease-in-out;
		text-align: left !important;

		border-right: none;
	}
}
.header-item:hover .header-link{
	color: #fff;
	transition: .2s ease-in-out;

}
.header-last{
	border-right: 1px solid #ffffff00;
}

.header-item:hover{
	transition: .2s ease-in-out;
	background-color: #E40000;
}

.header-phone{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 3.28vw 30px 30px;
	width: 100%;

	border-left: 1px solid var(--color-white);
}
@media screen and (max-width: 1600px) {
	.header-phone{
		display: flex;
		padding: 1.56vw 1.56vw 1.56vw 1.56vw;
		width: 100%;
		border-left: 1px solid var(--color-white);
	}
}
@media screen and (max-width: 1200px) {
	.header-phone{
		display: flex;
		padding: 0;
		width: max-content;
		border-left: none;
	}
}

.header-phone-link{
	display: flex;
	width: 100%;
	gap: 0.72vw;
	justify-content: center;
	font-weight: 500;
	padding: 1.04vw 2.08vw;
	color: #151515;
	font-family: "Inter Tight";
	font-size: 1.04vw;
	background-color: #FFF;
	border-radius: 70px;
	transition: .3;
	align-items: center;
}
@media screen and (max-width: 1600px) {
	.header-phone-link{
		display: flex;
		width: max-content;
		height: max-content;
	}
}
@media screen and (max-width: 1600px) {
	.header-phone-link svg{
		width: 1.04vw;
	}
}
@media screen and (max-width: 1200px) {
	.header-phone-link span{
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	.header-phone-link{
		height: 13.86vw;
		width: 13.86vw;
	}
	.header-phone-link svg{
		width: 3.46vw;
	}
}
.burger_button{
	display: none;
}
@media screen and (max-width: 1200px) {
	.burger_button {
		display: block;
		margin-right: 8vw;
	}
	.burger_button svg{
		height: 13.86vw;
		width: 13.86vw;
	}
}
.header-phone-link:hover{
	color: #fff;
	background-color: #000;
}

.header-phone-link:hover svg path{
	fill: #fff;
}








/* GLOBAL */

.global{
	display: flex;
	align-items: center;
	justify-content: center;
	height: max-content;
	text-align: center;
	padding: 6.25vw 0;
}
@media screen and (min-width: 1600px) {
	.global{
		padding: 120px 0;
	}
}
@media screen and (max-width: 1200px) {
	.global{
		padding: 18.66vw 0;
	}
}


.global-uptext p{
	font-family: "Inter Tight";
	color: #151515;
	font-size: 1.25vw;
	font-weight: 500;
	line-height: normal;
}
@media screen and (min-width: 1600px) {
	.global-uptext p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.global-uptext p{
		font-size: 4.26vw;
	}
}
.global-uptext{
	display: flex;
	align-items: center;
	gap: 50px;
	justify-content: center;
}
@media screen and (max-width: 1200px) {
	.global-uptext{
		gap: 3.2vw;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

.global-item{
	display: flex;
	gap: 10px;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.global-item{
		display: flex;
		gap: 2.66vw;
	}
}
@media screen and (max-width: 1600px) {
	.global-item img{
		width: 3.02vw;
		height: 3.02vw;
	}
}
@media screen and (max-width: 1200px) {
	.global-item img{
		width: 8vw;
		height: 8vw;
	}
}


.global-text_title{
	color: #151515;
	margin-top: 2.31vw;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 9.875vw !important;
	font-weight: 700;
	line-height: 9.27vw;
	text-transform: uppercase;
}
@media screen and (min-width: 1600px) {
	.global-text_title{
		color: #151515;
		margin-top: 37px;
		font-family: 'Bebas Neue', sans-serif;
		font-size: 158px !important;
		line-height: 100%; /* 178.074px */
	}
}
@media screen and (max-width: 1200px) {
	.global-text_title{
		color: #151515;
		margin-top: 8vw;
		font-family: 'Bebas Neue', sans-serif;
		font-size: 13.33vw !important;
		line-height: 100%; /* 178.074px */
		text-align: left;
	}
}
.global-text h2{
	color: #151515;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 1.19vw;
	font-weight: 500;
	line-height: 150%; /* 34.5px */
	margin-bottom: 3.43vw;
}
@media screen and (max-width: 1200px) {
	.global-text h2{
		color: #151515;
		text-align: left;
		font-family: "Inter Tight";
		font-size: 3.73vw;
		font-weight: 500;
		line-height: 150%; /* 34.5px */
		margin-bottom: 12.26vw;
		margin-top: 4.26vw;
	}
}

.entry-content{
	margin-top: 60px;
}
.entry-header{
	border-bottom: none !important;
}

.entry-content p{
	color: #151515;
	text-align: left;
	font-family: "Inter Tight";
	font-size: 1.19vw;
	font-weight: 500;
	line-height: 150%; /* 34.5px */
	margin-bottom: 3.43vw;
}
@media screen and (max-width: 1200px) {
	.entry-content p{
		color: #151515;
		text-align: left;
		font-family: "Inter Tight";
		font-size: 3.73vw;
		font-weight: 500;
		line-height: 150%; /* 34.5px */
		margin-bottom: 12.26vw;
		margin-top: 4.26vw;
	}
}
.align-center{
	align-items: flex-end;
}
.global-buttons{
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
}
@media screen and (max-width: 1200px) {
	.global-buttons{
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap: 2.66vw;
		justify-content: flex-start;
	}
}


.global-button{
	padding: 40px 60px;
	border-radius: 1000px;
	font-family: "Inter Tight";
	font-size: 25px;
	font-weight: 500;
	transition: .3s ease-in-out;
}
@media screen and (max-width: 1600px) {
	.global-button{
		padding: 2.08vw 3.125vw;
		font-size: 1.30vw;
	}
}
@media screen and (max-width: 1200px) {
	.global-button{
		padding: 8vw 12vw;
		font-size: 4.26vw;
	}
}
.global-button-red:hover{
	background-color: #EC3E3E;
	transition: .3s ease-in-out;
}
.global-button-red a{
	color: #FFF;

}
.global-button-white a{
	color: #151515;
}

.global-button-white:hover{
	background-color: #000;
	transition: .3s ease-in-out;
}
.global-button-white:hover a{
	color: #fff;
}

.global-button-white{
	border: 2px solid #151515;
}

.global-button-red{
	background: #E40000;
	cursor: pointer;
}

















.quastion{
	margin-top: 180px;
}

.title-quastion .tag{
	transition: .2s ease-in-out;
	padding: 20px 50px;
	border-radius: 100px;
	background: none;
	border: 2px solid #151515;
	color: #151515;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 700;
	max-height: max-content;
	max-width: max-content;
	height: max-content;
}
@media screen and (max-width: 1200px) {
	.title-quastion .tag{
		order: 2;
		position: absolute;
		bottom: 3.5vw;
		font-size: 2.13vw;
		padding: 2.13vw 5.33vw 2.13vw 5.33vw;
		border: 1px solid #151515;
	}
	.title-quastion .title-text{
		order: 1;
		position: relative;
	}
}

.title-quastion{
	display: grid;
	grid-template-columns: 28.43vw 1fr;
	width: 100%;
	margin-bottom: 3.64vw;
	position: relative;
}
@media screen and (min-width: 1600px) {
	.title-quastion{
		display: grid;
		grid-template-columns: 455px 1fr;
		width: 100%;
		gap: 0px;
		margin-bottom: 70px;
	}
}
@media screen and (max-width: 1200px) {
	.title-quastion{
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		gap: 0px;
		margin-bottom: 8vw;
	}
}
.title-quastion h2 span{

}
.title-quastion h2{
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 8vw;
	font-weight: 700;
	 
}
@media screen and (min-width: 1600px) {
	.title-quastion h2{
		font-size: 128px;
	}
}
@media screen and (max-width: 1200px) {
	.title-quastion h2{
		font-size: 13.33vw;
	}
}
.title-red{
	margin-top: -9.5vw !important;
	color: #E40000 !important; 
	margin-right: 0px !important;
	text-align: right;
}
@media screen and (min-width: 1600px) {
	.title-red{
		margin-top: -130px !important;
	}
}
.title-red-mobile{
	display: none;
}
@media screen and (max-width: 1200px) {
	.title-quastion .title-red{
		display: none;
	}
	.title-red-mobile{
		margin-top: -13.2vw !important;
		text-align: right;
		display: block !important;
	}
}

.title-text{
	width: 100%;
	display: flex;
	flex-direction: column;
}









.quastion-container{
	display: grid;
	grid-template-columns: 28.43vw 28.43vw 28.43vw;
	gap: 3.125vw;
}
@media screen and (min-width: 1600px) {
	.quastion-container{
		display: grid;
		grid-template-columns: 455px 455px 455px;
		gap: 50px;
		width: 100%;
	}
}
@media screen and (max-width: 1200px) {
	.quastion-container{
		display: grid;
		grid-template-columns: 1fr;
		gap: 9.06vw;
		width: 100%;
	}
}
.quastion-item{
	padding-top: 40px;
	border-top: 1px solid #9C9C9C;
	max-width: 27.08vw;
}
@media screen and (min-width: 1600px) {
	.quastion-item{
		max-width: 520px;
	}
}
@media screen and (max-width: 1600px) {
	.quastion-item{
		padding-top: 2.08vw;
	}
}
@media screen and (max-width: 1200px) {
	.quastion-item{
		padding-top: 5.33vw;
		max-width: 100%;
	}
}
.quastion-hidden{
	opacity: 0;

}
@media screen and (max-width: 1200px) {
	.quastion-hidden{
		opacity: 0;
		display: none;
	}
}
.quastion-item h3{
	color: rgba(21, 21, 21, 0.40);
	leading-trim: both;
	font-family: "Inter Tight";
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 50px;
}
@media screen and (max-width: 1600px) {
	.quastion-item h3{
		margin-bottom: 2.60vw;
	}
}
@media screen and (max-width: 1200px) {
	.quastion-item h3{
		margin-bottom: 8vw;
		font-size: 3.2vw;
	}
}
.quastion-item-text{
	width: 95%;
}
.quastion-item-text p{
	color: rgba(21, 21, 21, 0.60);
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	line-height: 133%
}
@media screen and (min-width: 1600px) {
	.quastion-item-text p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.quastion-item-text p{
		font-size: 3.73vw;
	}
}
.text_quastion{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 44px;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 100%;
}
@media screen and (max-width: 1600px) {
	.text_quastion{
		font-size: 2.75vw;
		margin-bottom: 1.56vw;
	}
}
@media screen and (max-width: 1200px) {
	.text_quastion{
		font-size: 8vw;
		margin-bottom: 5.33vw;
	}
}


.benefits{
	margin-top: 12.23vw;
	margin-bottom: 8.33vw;
}
@media screen and (max-width: 1200px) {
	.benefits{
		margin-top: 26.66vw;
		margin-bottom: 26.66vw;
	}
}
.benefits-title{
	display: grid;
	grid-template-columns: 21.875vw 1fr;
	width: 100%;
	gap: 3.125vw;
	margin-bottom: 3.93vw;
}
@media screen and (min-width: 1600px) {
	.benefits-title{
		display: grid;
		grid-template-columns: 350px 1fr;
		width: 100%;
		gap: 50px;
		margin-bottom: 63px;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-title{
		display: flex;
		flex-direction: column-reverse;
		width: 100%;
		gap: 3.2vw;
		margin-bottom: 12vw;
	}
}
.benefits-title h2 span{
	color: #E40000 !important;
	font-family: "Bebas Neue";
}

.benefits-title h2{
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 128px;
	font-weight: 700;
	line-height: 100%;
	 
}
@media screen and (max-width: 1600px) {
	.benefits-title h2{
		font-size: 8vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-title h2{
		font-size: 12vw;
	}
}
.benefits-title p{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	max-width: 19.79vw;
}
@media screen and (min-width: 1600px) {
	.benefits-title p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-title p{
		font-size: 3.73vw;
		max-width: 100%;
	}
}
.benefits-container{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
}
@media screen and (max-width: 1200px) {
	.benefits-container{
		display: grid;
		grid-template-columns: repeat(1,1fr);
		gap: 5.33vw;
	}
}
.benefits-item.active{
	background-color: #E40000;
	transition: .2s ease-in-out;

	color: #fff !important;
}
.benefits-item.active .benefits-arrow{
	transition: .2s ease-in-out;

	display: none;
}
.benefits-item.active .path-not{
	fill: #000 !important;
	transition: .2s ease-in-out;

}
.benefits-item.active .benefits-img path{
	fill: #fff;
	transition: .2s ease-in-out;

}

.benefits-item.active .benefits-img h2 {
	transition: .2s ease-in-out;

	color: #fff !important;
}

.benefits-item.active .benefits-detail{
	transition: .2s ease-in-out;

	display: flex;
}
.benefits-detail{
	width: 80%;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #fff;
	padding: 14px 10px;
	display: none;
	margin-top: auto;
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
}
@media screen and (min-width: 1600px) {
	.benefits-detail{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-detail{
		display: flex !important;
		font-size: 3.73vw;
		color: #000;
		border-color: #000;
		padding: 5.33vw 12vw;
		margin-top: 6.66vw;
	}
}

.benefits-item.active .benefits-text p{
	transition: .2s ease-in-out;

	color: #fff !important;
}
.benefits-item{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	transition: .2s ease-in-out;
	padding: 50px;
	border-radius: 15px;
	border: 1px solid #151515;
}
@media screen and (max-width: 1600px) {
	.benefits-item{
		gap: 2.60vw;
		padding: 2.60vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-item{
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		gap: 4vw;
		padding: 8vw;
	}
}
.benefits-text{
	height: 100%;
	display: flex;
	flex-direction: column;
}
.benefits-text-small{
	width: 100%

}
.benefits-arrow{
	padding: 20px;
	background: none;
	border: 1px solid #000;
	border-radius: 50%;
	width: max-content;
	margin-top: auto;
}
.button_mibile{
	display: none;
}
@media screen and (max-width: 1200px) {
	.button_mibile{
		display: block;
	}
	.benefits-arrow{
		padding: 5.33vw;
		
		background: none;
		border: 1px solid #000;
		border-radius: 50%;
	
		margin-top: auto;
		display: none;
	}
	.benefits-arrow img{
		width: 5.33vw;
	}
}
.benefits-text p{
	color: #6F6F6F;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	margin-bottom: 10px;
	font-weight: 500;
}
@media screen and (min-width: 1600px) {
	.benefits-text p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-text p{
		font-size: 3.73vw;
	}
}
.benefits-img h2{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 80px;

	line-height: 100%;
}
@media screen and (max-width: 1600px) {
	.benefits-img h2{
		font-size: 3vw;
	} 
}
@media screen and (max-width: 1200px) {
	.benefits-img h2{
		font-size: 6.66vw;
		width: 100%;
		margin-bottom: 0px;
	}
	.benefits-img svg{
		min-width: 12vw;
	} 
}

@media screen and (max-width: 1200px) {
	.benefits-img{
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 3.2vw;
	} 
}
.benefits-block{
	display: flex;
	flex-direction: column;
}
.benefits-down-container{
	margin-top: 10px;
	display: grid;
	grid-template-columns: 50% 50%;
}
@media screen and (max-width: 1200px) {
	.benefits-down-container{
		margin-top: 5.33vw;
		display: flex;
		flex-direction: column;
	}
}

.benefits-additing {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	margin-top: 70px;

	padding: 50px;
	border-radius: 1000px;
	background: #FFF;
}
@media screen and (max-width: 1600px) {
	.benefits-additing {
		padding: 2.60vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-additing {
		padding: 8vw;
	}
}

.benefits-additing h3{
	position: absolute;
	top: -20px;
	left: 20px;

	color: #F6F6F6;
	font-family:"Inter Tight";
	font-size: 24px;
	font-weight: 700;
	border-radius: 115px;
	background: #EC3E3E;

	padding: 15px 30px;
}
@media screen and (max-width: 1600px) {
	.benefits-additing h3{
		font-size: 1.5vw;
		padding: 0.78vw 1.56vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-additing h3{
		top: -3vw;
		left: 8vw;
		font-size: 3.2vw;
		padding: 1.6vw 4vw;
	}
}
.benefits-additing h2{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	text-wrap: nowrap;
}
@media screen and (max-width: 1600px) {
	.benefits-additing h2{
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-additing h2{
		font-size: 4.26vw;
		text-wrap: wrap;
	}
}
.benefits-additing p{
	font-size: 18px;
}
@media screen and (max-width: 1600px) {
	.benefits-additing p{
		font-size: 1.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-additing p{
		font-size: 3.2vw;
	}
}
.wrapper-center{
	align-items: center;
}
.benfswiper .swiper{
	overflow: visible;
}
@media screen and (max-width: 1200px) {
	.benfswiper .swiper{
	overflow: hidden;
}
}
.benefits-block-img{
	width: calc(100% - 70px);
	display: flex;
	align-items: center;
	margin-right: -70px;
	margin-left: 70px;
}
.mobile_benefits-down-container{
	display: none !important;
}
@media screen and (max-width: 1600px) {
	.benefits-block-img{
		width: calc(100% - 4.375);
		display: flex;
		align-items: center;
		margin-right: -4.375vw;
		margin-left: 4.375vw;
	}
}
@media screen and (max-width: 1200px) {
	.mobile_benefits-down-container{
		display: block !important;
	}
	.benefits-down-container .benefits-block-img{
		display: none;
	}
	.benefits-block-img img{
		width: 100vw !important;
		margin-left: 12.53vw !important;
		margin-top: -15.66vw;
	}
}
.benefits-block-img img{
	margin-left: auto;
}


.benefits-down{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-top: 150px;
}
@media screen and (max-width: 1200px) {
	.benefits-down{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8vw;
		margin-top: 13.33vw;
	}
}

.benefits-down-item{
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.benefits-down-item p{
	color: #6F6F6F;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	margin-top: 0.88vw;
}
@media screen and (min-width: 1600px) {
	.benefits-down-item p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-down-item p{
		font-size: 3.2vw;
	}
}
.benefits-down-item h2{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 40px;
	font-weight: 600;
}
@media screen and (max-width: 1600px) {
	.benefits-down-item h2{
		font-size: 2.08vw;
	}
}
@media screen and (max-width: 1200px) {
	.benefits-down-item h2{
		font-size: 4.8vw;
	}
}
.benefits-down-item svg{
	margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
	.benefits-down-item svg{
		margin-bottom: 4vw;
		min-width: 10.66vw;
	}
}













.about{
	position: relative;
	padding: 150px 0; 
	background: #3E4855;
}
@media screen and (max-width: 1600px) {
	.about{
		padding-bottom: 0;
	}
}

.about-img{
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: start;
}
@media screen and (max-width: 1600px) {
	.about-img{
		display: flex;
		flex-direction: column;
	}
}
@media screen and (max-width: 1600px) {
	.about-img img{
		margin-top: -10vw;
	}
}

.about-container h3{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 40px;
	font-weight: 600;
}
@media screen and (max-width: 1600px) {
	.about-container h3{
		color: #FFF;
		font-family: "Inter Tight";
		font-size: 2.5vw;
		font-weight: 600;
	}
}
.about-container h2 span{
	color: #EC3E3E !important; 
	font-family: "Bebas Neue";
	font-size: 128px;
	font-weight: 700;
	line-height: 100% 
}
@media screen and (max-width: 1600px) {
	.about-container h2 span{
		font-size: 8vw;
	}
}
@media screen and (max-width: 1200px) {
	.about-container h2{
		font-size: 12vw !important;
	}
	.about-container h2 span{
		font-size: 12vw !important;
	}
}
.about-container p{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 40px;
	font-weight: 600;
	line-height: 123%
}
@media screen and (max-width: 1600px) {
	.about-container p{
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 1200px) {
	.about-container p{
		font-size: 4.26vw;
	}
}
.about-container h2{
	margin: 50px 0;
	color: #FFF;
	font-family: "Bebas Neue";
	font-size: 128px;
	font-weight: 700;
	line-height: 100%
}
@media screen and (max-width: 1600px) {
	.about-container h2{
		font-size: 8vw;
	}
}
@media screen and (max-width: 1200px) {
	.about-container h2{
		font-size: 8vw;
		margin: 6.13vw 0 3.2vw 0;
	}
}


.number{
	margin-top: 200px;
}
.number-red{
	color: #E40000 !important;
	margin-left: 12.91vw !important;
}
@media screen and (min-width: 1600px) {
	.number-red{
		color: #E40000 !important;
		margin-left: 248px !important;
	}
}
@media screen and (min-width: 1200px) {
	.number-red{
		color: #E40000 !important;
		margin-left: 21.33vw !important;
	}
}
.number-title{
	margin-bottom: 2.08vw !important;
}
.number-title h2{
	color: #151515;
	font-family: 'Bebas Neue';
	font-size: 6.66vw;
	font-weight:700;
	line-height: 100%; /* 6.66vw */
	 
}
@media screen and (min-width: 1600px) {
	.number-title h2{
		font-size: 128px;
	}
}
@media screen and (max-width: 1200px) {
	.number-title h2{
		font-size: 12vw;
	}
}
.number-item p{
	color: rgba(21, 21, 21, 0.40);
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 500;
}
@media screen and (max-width: 1600px) {
	.number-item p{
		font-size: 1.25vw;
	}
}
@media screen and (max-width: 1200px) {
	.number-item p{
		font-size: 3.73vw;
	}
}
.number-container{
	display: flex;
	align-items: end;
	flex-direction: column;
	justify-content: end;
	gap: 90px;
}
@media screen and (max-width: 1600px) {
	.number-container{
		display: flex;
		align-items: end;
		flex-direction: column;
		justify-content: end;
		gap: 5.625vw;
	}
}
@media screen and (max-width: 1200px) {
	.number-container{
		gap: 5.33vw;
	}
}
.number-block{
	display: grid;
	grid-template-columns: 36.25vw auto;
	width: 100%;
	gap: -1px;
	border-right: 1px solid #CCC;
}
@media screen and (min-width: 1600px) {
	.number-block{
		display: grid;
		grid-template-columns: 580px auto;
		width: 100%;
		gap: -1px;
		border-right: 1px solid #CCC;
	}
}
@media screen and (max-width: 1200px) {
	.number-block{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}
.number-block-three{
	grid-template-columns: 30.20vw 1fr 1fr !important;
}
@media screen and (min-width: 1600px) {
	.number-block-three{
		grid-template-columns: 580px 1fr 1fr !important;
	}
}
@media screen and (max-width: 1200px) {
	.number-block-three{
		grid-template-columns: 1fr 1fr !important;
		row-gap: 5.33vw;
	}
}
.number-text h3{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 32px;
	margin-bottom: 1.8vw;
	font-weight: 700;
}

h1 span{
	text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
	.number-text h3{
		color: #151515;
		font-family: "Inter Tight";
		font-size: 3.73vw;
		margin-bottom: 2vw;
	}
}
.number-down{
	align-items: end !important;
}
.number-text{
	display: flex;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.number-text{
		margin-bottom: 6.4vw !important;
	}
}
.number-text h2 {
	color: #151515;
	font-family: "Inter Tight";
	font-size: 6.66vw;
	font-weight: 500;
	text-transform: uppercase;
}
@media screen and (min-width: 1600px) {
	.number-text h2{
		font-size: 128px;
	}
}
@media screen and (max-width: 1600px) {
	.number-text h2{
		font-size: 9.33vw;
	}
}
.number-item{
	padding: 60px;
	width: 100%;
	border: 1px solid #CCC;
	border-right: none !important;
	border-bottom: none !important;
	margin-left: -1px;
}
@media screen and (max-width: 1200px) {
	.number-item{
		padding: 5.33vw;
		width: 100%;
		border: 1px solid #CCC;
		border-right: none !important;
		border-bottom: none !important;
		margin-left: -1px;
	}
}









.scy{
	position: relative;
	padding-top: 11.66vw;
	padding-bottom: 8.33vw;
}
@media screen and (max-width: 1200px) {
	.scy{
		position: relative;
		padding-top: 26.66vw;
		padding-bottom: 8vw;
	}
}
.scy-video{
	border-radius: 22px;
	overflow:hidden !important;
	width: 100%;
}
.video-js {
    width: 100%;
    height: 30vw;
}
.video-1-dimensions{
	width: 100%;
	height: 30vw;
}
@media screen and (max-width: 1200px) {
	.video-js {
    width: 100%;
    height: 60vw;
}
}
@media screen and (max-width: 1200px) {
	.video-1-dimensions{
	width: 100%;
	height: 60vw;
}
}
@media screen and (max-width: 1200px) {
	.scy-video, .scy-video img{
		width: 100%;
	}
}

.scy-diploms{
	display: flex;
	align-items: center;
	gap: 40px;
}
@media screen and (max-width: 1200px) {
	.scy-diploms, .scy-diploms div, .scy-diploms img{
		width: 100%;
	}
}
.scy-title h2{
	margin-bottom: 50px;
	color: #151515;
	font-family: "Inter Tight";
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%
}
@media screen and (max-width: 1200px) {
	.scy-title h2{
		margin-bottom: 5.86vw;
		color: #151515;
		font-family: "Inter Tight";
		font-size: 4.26vw;
		font-style: normal;
		font-weight: 600;
		line-height: 100%
	}
}
.scy-container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}
@media screen and (max-width: 1200px) {
	.scy-container{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 8vw;
	}
}
.scy-bacround{
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 100%;
	display: flex;
	justify-content: end;
	align-items: center;
	z-index: -1000;
}
.scy-bacround svg{
	max-height: 27.44vw;
	width: auto !important;
}
@media screen and (max-width: 1200px) {
	.scy-bacround svg{
		max-height: 57.86vw;
		width: 156vw !important;
		border-radius: 20vw 20vw 0 0;
	}
}



.whoclients{
	position: relative;
	background-color: #fff;
}
.whoclients-container{
	display: grid;
	grid-template-columns: auto 43.75vw;
	position: relative;
	background-color: #fff !important;
	min-height: 100vh;
	padding-top: 10vw !important;
	padding-bottom: 10vw !important;
}
@media screen and (min-width: 1600px) {
	.whoclients-container{
		grid-template-columns: auto 700px;
	}
}
@media screen and (max-width: 1200px) {
	.whoclients-container{
		display: flex;
		flex-direction: column;
		padding-top: 26.66vw !important;
		padding-bottom: 26.66vw !important;
	}
}

.whoclients-text{
	position: sticky;
	top: 20vh;
}
@media screen and (max-width: 1200px) {
	.block_sticky{
		position: sticky;
		top: 15vh;
		margin-bottom: 40vw;
	}
}


.whoclients-text h2{
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 7.375vw;
	line-height: 100%;
	font-weight: 700;
	 
	margin-bottom: 30px;
}
@media screen and (min-width: 1600px) {
	.whoclients-text h2{
		font-size: 118px;
	}
}
@media screen and (max-width: 1200px) {
	.whoclients-text h2{
		font-size: 12vw;
	}
}

.whoclients-text p{
	color: #151515;
	margin-bottom: 80px;
	font-family: "Inter Tight";
	font-size: 28px;
	font-weight: 500;
	line-height: 120%;
}
@media screen and (max-width: 1600px) {
	.whoclients-text p{
		font-size: 1.45vw;
		margin-bottom: 4.16vw; 
	}
}
@media screen and (max-width: 1200px) {
	.whoclients-text p{
		display: none;
	}
	.whoclients-text button{
		display: none;
	}
}

.whoclients-container button{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 25px;
	font-weight: 600;
	border-radius: 100px;
	background: #E40000;
	padding: 40px 60px;
	transition: .3s;
}
.whoclients-container button:hover{
	background: #EC3E3E;
}
@media screen and (max-width: 1600px) {
	.whoclients-container button{
		font-size: 1.30vw;
		padding: 2.08vw 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.whoclients-container button{
		font-size: 4.26vw;
		padding: 8vw 12vw;
		border-radius: 1000px;
		margin-top: 16vw;
	}
}


.whoclients-card{
	display: flex;
	flex-direction: column;
	padding: 60px 70px;
	border-radius: 20px;
	border: 1px solid #9D0404;
	background: #E40000;
	align-items: start;
	justify-content: center;
	position: sticky;
	top: 15vh;
}
@media screen and (max-width: 1600px) {
	.whoclients-card{
		padding: 3.125vw 3.64vw;
	}
}
@media screen and (max-width: 1200px) {
	.whoclients-card{
		top: 30vh;
		padding: 8vw;
	}
}
.whoclients-card h2{
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 48px */
}
@media screen and (max-width: 1600px) {
	.whoclients-card h2{
		font-size: 2.5vw;
		font-style: normal;
		font-weight: 600;
		line-height: 100%; /* 48px */
	}
}
@media screen and (max-width: 1200px) {
	.whoclients-card h2{
		font-size: 6vw;
	}
}
.whoclients-card:nth-child(even){
	transform: rotate(3deg);
	margin: 8vh 0;
}
.whoclients-card:nth-child(odd){
	transform: rotate(-3deg);
}

.whocleint-card-p{
	display: flex;
	align-items: center;

	margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
	.whocleint-card-p p{
		font-size: 3.2vw !important;
		margin-left: 3.2vw !important;
	}
}
.whocleint-card-p img{
	width: 165px;
	height: 165px;
}
@media screen and (max-width: 1600px) {
	.whocleint-card-p img{
		width: 8.59vw;
		height: 8.59vw;
	}
}
@media screen and (max-width: 1200px) {
	.whocleint-card-p img{
		width: 21.33vw;
		height: 21.33vw;
	}
}

.whocleint-card-p p{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 26px;
	font-weight: 500;
	margin-left: 20px;
	line-height: 120%;
}
@media screen and (max-width: 1600px) {
	.whocleint-card-p p{
		font-size: 1.35vw;
	}
}

.whoclients-card{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 28px;
	font-weight: 600;
	line-height: 100%;
}


.peculiarities{
	position: relative;
	padding-top: 10vw;
	background-color: #3E4855;
}
@media screen and (max-width: 1200px) {
	.peculiarities{
		position: relative;
		padding-top: 26.66vw;
	}
}
.peculiarities-up{
	position: absolute;
	top: 0;
	right: 0;
}
.peculiarities-title{
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	justify-content: flex-start;
}
.peculiarities-title h2{
	color: #FFF;
	font-family: "Bebas Neue";
	font-size: 8vw;
	font-weight: 700;
	margin-left: 31.875vw;
}
@media screen and (min-width: 1600px) {
	.peculiarities-title h2{
		font-size: 128px;
		width: 100%;
		margin-left: 510px;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-title h2{
		font-size: 12vw;
		width: 100%;
		margin-left: 0px;
	}
}
.peculiarities-container{
	display: grid;
	align-items: start;
	grid-template-columns: 32.187vw auto;
	position: relative;
	z-index: 99;
	padding-bottom: 12.5vw;
}
@media screen and (min-width: 1600px) {
	.peculiarities-container{
		display: grid;
		align-items: start;
		grid-template-columns: 515px auto;
		padding-bottom: 200px;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-container{
		display: flex;
		flex-direction: column-reverse;
	}
}
.peculiarities-form{
	padding: 80px 50px;
	border-radius: 20px;
	background: #FFF;
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 1600px) {
	.peculiarities-form{
		padding: 5vw 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-form{
		padding: 8vw;
		border-radius: 5.33vw;
	}
}
.block_form{
	padding-top: 60px;
	padding-right: 60px;
	border-top: 1px solid #fff;
}
@media screen and (max-width: 1200px) {
	.block_form{
		padding-top: 0px;
		padding-right: 0px;
		width: 100%;
		border-top: none;
	}
}
.peculiarities-form h2{
	color: #E40000;
	font-family: "Bebas Neue";
	font-size: 80px;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width: 1600px) {
	.peculiarities-form h2{
		color: #E40000;
		font-family: "Bebas Neue";
		font-size: 4.16vw;
		font-weight: 700;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-form h2{
		color: #E40000;
		font-family: "Bebas Neue";
		font-size: 12vw;
		font-weight: 700;
	}
}
.peculiarities-form .paragraph{
	color: #151515;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 33px;
	font-weight: 600;
	margin-bottom: 30px;
}
@media screen and (max-width: 1600px) {
	.peculiarities-form .paragraph{
		font-size: 1.71vw;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-form .paragraph{
		font-size: 5.33vw;
		margin-bottom: 6.8vw;
	}
}
.wpcf7 form .wpcf7-response-output{
	display: none !important;
	opacity: 0;
}

.peculiarities-form input{
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 500;
	padding: 10px;
	padding-left: 0 !important;
	stroke: none;
	border-bottom: 1px solid #A1A1A1;
	outline: none;
	width: 100%;
	margin-top: 40px;
}
@media screen and (max-width: 1200px) {
	.peculiarities-form input{
		font-size: 4.8vw;
		font-weight: 500;
		padding: 1.55vw;
		padding-left: 0 !important;
		stroke: none;
		border-bottom: 1px solid #A1A1A1;
		outline: none;
		margin: 5.33vw 0 0 0;
	}
}
.peculiarities-form input[type=submit]{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 25px;
	font-weight: 600;
	border-radius: 1000px;
	background: #E40000;
	padding: 40px 60px !important;
	transition: .3s ease-in-out;
	margin-bottom: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: none !important;
}
@media screen and (max-width: 1600px) {
	.peculiarities-form input[type=submit]{
		font-size: 1.30vw;
		padding: 2.08vw 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-form input[type=submit]{
		font-size: 4vw;
		padding: 6.66vw 10.66vw;
	}
}
.peculiarities-form input[type=submit]:hover{
	background-color: #EC3E3E;
	transition: .3s ease-in-out;
}

.peculiarities-block{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	border: .5px solid #fff;
}
@media screen and (max-width: 1200px) {
	.peculiarities-block{
		display: grid;
		grid-template-columns: repeat(1,1fr);
		border: .5px solid #fff;
		margin-bottom: 6.66vw;
	}
}
.peculiarities-item{
	padding: 60px;
	border: .5px solid #ffffff;
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 1600px) {
	.peculiarities-item{
		padding: 3.75vw;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-item{
		padding: 8.8vw;
	}
}
.peculiarities-item img{
	margin-bottom: 50px;
}
@media screen and (max-width: 1600px) {
	.peculiarities-item img{
		margin-bottom: 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-item img{
		margin-bottom: 6.66vw;
		width: 16vw;
	}
}
.peculiarities-down{
	position: absolute;
	bottom: 120px;
	left: 0;
}
.peculiarities-item h2{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 32px;
	font-weight: 600;
}
@media screen and (max-width: 1600px) {
	.peculiarities-item h2{
		color: #FFF;
		font-family: "Inter Tight";
		font-size: 1.66vw;
		font-weight: 600;
	}
}
@media screen and (max-width: 1200px) {
	.peculiarities-item h2{
		color: #FFF;
		font-family: "Inter Tight";
		font-size: 6.66vw;
		font-weight: 600;
	}
}
.peculiarities-item p{
	color: rgba(255, 255, 255, 0.60);
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 500;
	line-height: 120%; 
	margin-top: 30px;
}
@media screen and (max-width: 1200px) {
	.peculiarities-item p{
		color: rgba(255, 255, 255, 0.60);
		font-family: "Inter Tight";
		font-size: 3.73vw;
		font-weight: 500;
		line-height: 120%; 
		margin-top: 4.26vw;
	}
}







.benfswiper{
	margin-top: 8.17vw;
	margin-bottom: 13.80vw;
}
@media screen and (max-width: 1200px) {
	.benfswiper{
		margin-top: 26.66vw;
		margin-bottom: 26.66vw;
	}
}
.benfswiper-title h3{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 40px;
	font-weight: 600;
}
@media screen and (max-width: 1600px) {
	.benfswiper-title h3{
		font-size: 2.08vw;
	}
}
@media screen and (max-width: 1200px) {
	.benfswiper-title h3{
		font-size: 3.73vw; 
		margin-bottom: 2.66vw;
	}
}
.benfswiper-title h2{
	line-height: 100%;
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 7.375vw;
	font-weight: 700;
	 
}
@media screen and (min-width: 1600px) {
	.benfswiper-title h2{
		font-size: 118px;
	}
}
@media screen and (max-width: 1200px) {
	.benfswiper-title h2{
		font-size: 12vw;
	}
}
.benfswiper-title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}
.benfswiper-slide{
	padding-top: 26px;
	border-top: 2px solid #000;
	display: flex;
	grid-template-columns: 70% 30%;
	gap: 90px;
	align-items: flex-start;
}
@media screen and (max-width: 1600px) {
	.benfswiper-slide{
		padding-top: 26px;
		border-top:2px solid #000;
		display: flex;
		grid-template-columns: 70% 30%;
		gap: 5.625vw;
		align-items: flex-start;
	}
}
@media screen and (max-width: 1600px) {
	.benfswiper-slide{
		padding-top: 26px;
		border-top:2px solid #000;
		display: flex;
		grid-template-columns: 100%;
		gap: 0;
		align-items: flex-start;
	}
}
.arrow_block{
	display: flex;
	gap: 10px;
	margin-top: 4vw !important;
}
@media screen and (min-width: 1600px) {
	.arrow_block{
		margin-top: 77px !important;
	}
}
@media screen and (max-width: 1200px) {
	.arrow_block{
		margin-top: 9.33vw !important;
		gap:  1.86vw;
	}
}
.swiper-button_arrow svg {
	height: 64px !important;
	min-width: 64px !important;
	cursor: pointer;
}
@media screen and (max-width: 1200px) {
	.swiper-button_arrow svg {
		height: 15.2vw !important;
		min-width: 15.2vw !important;
		cursor: pointer;
	}
}

@media screen and (max-width: 1200px) {
	.testemonials-container .swiper-button_arrow svg {
		height: 10.13vw !important;
		min-width: 10.13vw !important;
		cursor: pointer;
	}
	.testemonials-container .swiper-button_arrow {
		position: absolute;
		bottom: calc(60vw + 11vw);
		z-index: 99;
	}
	
	.testemonials-container .swiper-button-prev_img, .testemonials-container .swiper-button-next_img {
		position: absolute;
		bottom: calc(50vw - 5vw);
		z-index: 99;
	}
	
	
	
	
	.testemonials-container .swiper-button-prev_test {
		position: absolute;
		z-index: 99;
		left: 2.33vw;
	}
	.testemonials-container .swiper-button-next_test {
		position: absolute;
		z-index: 99;
		right: 2.33vw;
	}
	
	.testemonials-container .swiper-button-prev_img {
		position: absolute;
		z-index: 99;
		left: 2.33vw;
	}
	.testemonials-container .swiper-button-next_img {
		position: absolute;
		z-index: 99;
		right: 2.33vw;
	}
}
.swiper-button_arrow svg:hover circle{
	display: flex;
	gap: 10px;
	margin-top: 4vw !important;
	stroke: #151515;
	fill: #151515;
	transition: .3s !important;
}
.swiper-button_arrow svg:hover path{
	stroke: #fff;
}
.swiper-button-disabled{
	opacity: .2;
	cursor: none;
}
.swiper-button-disabled svg:hover circle{
	fill: none;
}
.swiper-button-disabled svg:hover path{
	stroke: #151515;
}
.video_block{
	position: relative;
	border-radius: 22px;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
@media screen and (max-width: 1200px) {
	.video_block{
		position: relative;
		border-radius: 22px;
		background-repeat: no-repeat;
		background-size: cover;
		height: 60vw;
		width: 100%;
	}
}
.button_play{
	position: absolute;
	top: calc(50% - 47px);
	left: calc(50% - 47px);
}
.button_play:hover circle{
	fill: #E40000;
}
@media screen and (max-width: 1600px) {
	.button_play{
		position: absolute;
		max-width: 4.94vw;
		max-height: 4.94vw;
		top: calc(50% - 2.47vw);
		left: calc(50% - 2.47vw);
	}
}
@media screen and (max-width: 1200px) {
	.button_play{
		position: absolute;
		max-width: 8vw;
		max-height: 8vw;
		top: calc(50% - 4vw);
		left: calc(50% - 4vw);
	}
}
.benfswiper-img{
	min-width: 16.56vw;
	margin-top: 77px;
}
@media screen and (min-width: 1600px) {
	.benfswiper-img{
		min-width: 318px;
		margin-top: 77px;
	}
}
@media screen and (max-width: 1200px) {
	.benfswiper-img{
		position: absolute;
		max-width: 18.66vw;
		top: 8vw;
		right: 0;
	}
}
.benfswiper-text h3{
	color: #000;
	margin-bottom: 100px;
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 700;
}
@media screen and (max-width: 1200px) {
	.benfswiper-text h3{
		color: #000;
		margin-bottom: 9.6vw;
		font-family: "Inter Tight";
		font-size: 3.73vw;
		font-weight: 700;
	}
}
.benfswiper-p h3{
	margin-bottom: 30px !important;
}
.benfswiper-text p{
	color: rgba(0, 0, 0, 0.60);
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	line-height: 133%; /* 31.92px */
}
@media screen and (min-width: 1600px) {
	.benfswiper-text p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.benfswiper-text p{
		font-size: 3.73vw;
	}
}
.benfswiper-text h2{
	color: #000;
	font-family: "Inter Tight";
	font-size: 64px;
	font-weight: 600;
	margin-bottom: 40px;

}
@media screen and (max-width: 1600px) {
	.benfswiper-text h2{
		font-size: 3.33vw;
	}
}
@media screen and (max-width: 1200px) {
	.benfswiper-text h2{
		font-size: 5.33vw;
		width: 70%;
		min-height: 18.66vw;
	}
}
.benfswiper-title button{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 25px;
	font-weight: 600;
	border-radius: 100px;
	background: #E40000;
	padding: 40px 60px;
	transition: .3s ease-in-out;
}
@media screen and (max-width: 1600px) {
	.benfswiper-title button{
		font-size: 1.30vw;
		padding: 2.08vw 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.benfswiper-title button{
		font-size: 1.30vw;
		padding: 2.08vw 3.125vw;
		display: none;
	}
}
.benfswiper-title button:hover{
	opacity: 0.6;
	transition: .3s ease-in-out;
}
.steps{
	padding-bottom: 12.5vw;
}
.steps-title{
	margin-bottom: 50px;
}
.steps-title h2 span{
	color: #E40000;
	text-transform: uppercase;
	font-family: "Bebas Neue";
	font-size: 8vw;
	font-weight: 700;
	 
}
@media screen and (min-width: 1600px) {
	.steps-title h2 span{
		font-size: 128px;
	}
}
@media screen and (max-width: 1200px) {
	.steps-title h2 span{
		font-size: 12vw;
	}
}

.steps-title h2{
	color: #151515;
	text-transform: uppercase;
	font-family: "Bebas Neue";
	font-size: 6.66vw;
	font-weight: 700;
	 
}
@media screen and (min-width: 1600px) {
	.steps-title h2{
		font-size: 128px;
	}
}
@media screen and (max-width: 1200px) {
	.steps-title h2{
		font-size: 12vw;
	}
}
.steps-container .mobile_steps{
	display: none;
}
@media screen and (max-width: 1200px) {
	.steps-container .mobile_steps{
		display: flex;
		width: 100%;
	}
	.steps-container .desctop_steps{
		display: none;
	}
}
.steps-container path:hover{
	opacity: 0.7;
	transition: .2s ease-in-out;
}
.steps-container path{
	transition: .2s ease-in-out;
}
.steps{
	position: relative;
	overflow: hidden;
}
.steps-bacround{
	position: absolute;
	top: 0;
	right: 0;
	max-height: 100%;
}
@media screen and (max-width: 1200px) {
	.steps-bacround{
		position: absolute;
		top: 30%;
		right: 0;
		max-height: 100%;
	}
}
.steps-bacround img{
	position: relative;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1200px) {
	.steps-bacround img{
		position: relative;
		height: auto;
		max-height: auto;
		object-fit: cover;
		width: 140vw;
	}
}


.pdf{
	background: linear-gradient(0deg, #3E4855 0%, #3E4855 100%), url(<path-to-image>), lightgray 0px -497.9px / 100% 274.176% no-repeat;
	position: relative;
	padding-top: 150px;
	padding-bottom: 150px;
}
@media screen and (max-width: 1200px) {
	.pdf{
		padding-top: 26.66vw;
		padding-bottom: 26.66vw;
	}
}
.pdf-img{
	margin-right: -80px;
	max-width: 31vw;
	margin-top: -20px;
	max-height: 90%;
	position: absolute;
	right: 0;
}
@media screen and (max-width: 1200px) {
	.pdf-img{
		display: none;
	}
}
.pdf-conatiner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pdf-buttons a:hover path{
	fill: #fff;
	transition: .3s ease-in-out;

}
.pdf-buttons a svg{
	margin-left: 14px;
}
@media screen and (max-width: 1200px) {
	.pdf-buttons a svg{
		margin-left: 1.86vw;
		max-width: 8.8vw;
	}
}
.pdf-buttons a:hover{
	background: #E40000;
	color: #fff;
	transition: .3s ease-in-out;
}
.pdf-buttons a{
	padding: 40px 20px;
	background-color: #fff;
	width: 100%;
	display: flex;
	transition: .3s ease-in-out;
	color: #000;
	font-family: "Inter Tight";
	font-size: 25px;
	font-weight: 600;
	align-items: center;
	border-radius: 8px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 1600px) {
	.pdf-buttons a{
		padding: 2.5vw 0;
		font-size: 1.56vw;
	}
}
@media screen and (max-width: 1200px) {
	.pdf-buttons a{
		padding: 5.6vw 0;
		font-size: 3.73vw;
	}
}
.pdf-buttons{
	display: grid;
	width: 60.4vw;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
}
@media screen and (max-width: 1200px) {
	.pdf-buttons{
		display: grid;
		width: 100%;
		grid-template-columns: repeat(1,1fr);
		gap: 1.33vw;
	}
}




.swiper_test{
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.testemonials-text{
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
}
@media screen and (max-width: 1200px) {
	.testemonials-text{
		display: flex;
		flex-direction: column;
		gap: 9.86vw;
	}
}
.testemonials-title span{
	font-family: "Bebas Neue";
	color: #E40000;

}
.testemonials-title h2{
	font-family: "Bebas Neue";
	font-size: 128px;
	line-height: 100%;
}
@media screen and (max-width: 1600px) {
	.testemonials-title h2{
		font-family: "Bebas Neue";
		font-size: 8vw;
		line-height: 100%;
	}
}
@media screen and (max-width: 1200px) {
	.testemonials-title h2{
		font-family: "Bebas Neue";
		font-size: 10.5vw;
		line-height: 100%;
	}
}
.testemonials-title{
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 128px;
	font-weight: 400;
	line-height: 100%;
	 
}
.testemonials-container h3{
	color: #000;
	margin-left: 12vw;
	font-family: "Inter Tight";
	font-size: 1.19vw;
	font-weight: 600;

	text-align: right;
}
@media screen and (max-width: 1200px) {
	.testemonials-container h3{
		color: #000;
		margin-left: 13vw;
		margin-right: 13vw;
		font-family: "Inter Tight";
		font-size: 4.26vw;
		font-weight: 600;
		text-align: center;
	}

	.heading_block{
		order: -1;
	}
	.video_block{
		order: 2;
	}
	.description_block{
		order: 3;
	}
	.cantant_slider{
		display: flex;
		flex-direction: column;
	}

}
.testemonials-container p{
	margin-top: 30px;
	color: rgba(0, 0, 0, 0.60);
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 500;
	line-height: 120%;
	margin-bottom: 40px;
}
@media screen and (max-width: 1600px) {
	.testemonials-container p{
		font-size: 1.04vw;
	}
}
@media screen and (max-width: 1200px) {
	.testemonials-container p{
		font-size: 3.73vw;
		margin-bottom: 5.6vw;
		margin-top: 9.86vw;
	}
}
.testemonials-container a{
	color: #151515;
	font-family: "Inter Tight";
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: 600;
	line-height: 100%;

	text-decoration-line: underline;
}
@media screen and (max-width: 1600px) {
	.testemonials-container a{
		font-size: 1.66vw;
	}
}
@media screen and (max-width: 1200px) {
	.testemonials-container a{
		font-size: 4.26vw;
		margin-top: 3.73vw;
	}
}
.testemonials-container h2{
	color: #151515;
	font-family: "Inter Tight";
	margin-bottom: 20px;
	font-size: 60px;
	font-weight: 600;
}
@media screen and (max-width: 1600px) {
	.testemonials-container h2{
		font-size: 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.testemonials-container h2{
		font-size: 6.66vw;
	}
}
.testemonials-container{
	margin-top: 100px;
	display: flex;
	align-items: center;
	gap: 40px;
	position: relative;
}
@media screen and (max-width: 1200px) {
	.testemonials-container{
		margin-top: 9.6vw;
		display: flex;
		align-items: center;
		gap: 40px;
		position: relative;
	}
}
.testemonials{
	padding-top: 13vw;
	padding-bottom: 13vw;
}
@media screen and (max-width: 1200px) {
	.testemonials{
		padding-top: 26.66vw;
		padding-bottom: 26.66vw;
	}
}


.form{
	background-color: #3E4855;
	position: relative;
	z-index: 0;
	padding-top: 14vw;
	padding-bottom: 8.125vw;
	overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
	.form{
		background-color: #3E4855;
		position: relative;
		z-index: 0;
		padding-top: 26.66vw;
		padding-bottom: 26.66vw;
	}
}
.form-text{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	height: 100%;
}
.form-input{
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: flex-start;
}
.form-text h2 span{
	color: #E40000 !important;
}
.form-text h2,
.form-text h2 span{
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 85px;
	font-weight: 700;
	margin-bottom: 50px;
	line-height: 100%; /* 100px */
}
@media screen and (max-width: 1600px) {
	.form-text h2,
	.form-text h2 span{
		font-size: 5.31vw;
	}
}
@media screen and (max-width: 1200px) {
	.form-text h2,
	.form-text h2 span{
		font-size: 10.66vw;
	}
}
.form-comment{
	width: 100%;
}
.form-decr p{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 20px;
	font-weight: 700;
	line-height: 100%;
	margin-bottom: 20px;
}
@media screen and (max-width: 1600px) {
	.form-decr p  {
		font-size: 1.04vw;
	}
}
@media screen and (max-width: 1200px) {
	.form-decr p  {
		font-size: 3.73vw;
		margin-bottom: 4.26vw;
	}
	.form-decr p:last-child  {
		font-size: 3.73vw;
		margin-bottom: 10.66vw;
	}
}
.form-decr .wpcf7-submit{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 25px;
	font-weight: 600;
	border-radius: 100px;
	background: #E40000;
	padding: 40px 60px !important;
	transition: .3s ease-in-out;
	margin-bottom: 0 !important;
	margin-top: 50px;
}
@media screen and (max-width: 1600px) {
	.form-decr .wpcf7-submit{
		font-size: 1.30vw;
		padding: 2.08vw 3.125vw !important;
	}
}
.wpcf7-spinner{
	display: none !important;
}
@media screen and (max-width: 1200px) {
	.form-decr .wpcf7-submit{
		font-size: 4.53vw;
		padding: 7.2vw 10vw !important;
		width: 100%;
		border-radius: 1000px;
		margin-top: 30px;
	}
}
.form-decr .wpcf7-submit:hover{
	background-color: #EC3E3E;
	transition: .3s ease-in-out;
}
.form-bacround{
	position: absolute;
	top: 2.60vw;
	z-index: -10;
	left: 0;
}
@media screen and (max-width: 1200px) {
	.form-bacround{
		position: absolute;
		top: 15vw;
		transform: rotate(20deg);
		z-index: -10;
		left: auto;
		width: 120vw;
	}
}
.form-decr h2{
	color: #000;
	margin-bottom: 1.19vw;
	font-family: "Bebas Neue";
	font-size: 52px;
	font-weight: 700;
	line-height: 100%; 
	text-transform: uppercase;
}
@media screen and (max-width: 1600px) {
	.form-decr h2{
		font-size: 2.70vw;
	}
}
@media screen and (max-width: 1200px) {
	.form-decr h2{
		font-size: 8vw;
	}
}
.form-decr img{
	margin-bottom: 2.60vw;
	height: 10.57vw;
	width: 10.57vw;
}
.desctop{
	display: none;
}
@media screen and (max-width: 1200px) {
	.form-decr img{
		display: none;
	}
	.mobile{
		display: none;
	}
	.desctop{
		display: none;
	}
}

.form-input input{
	color: #A1A1A1;
	padding: 0px !important;
	padding-bottom: 12px !important;
	margin-top: 4.16vw;
	border-bottom: 1px solid #A1A1A1;
	font-size: 1.14vw;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 100%;
}
.form-input input:last-child{
	margin-right: 0 !important;
}
@media screen and (min-width: 1600px) {
	.form-input input{
		color: #A1A1A1;
		padding: 0px !important;
		padding-bottom: 12px !important;
		margin-top: 80px;
		border-bottom: 1px solid #A1A1A1;
		font-size: 22px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
	}
}
.wpcf7-form-control-wrap{
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.form-input input{
		color: #A1A1A1;
		padding: 0px !important;
		padding-bottom: 3.2vw !important;
		margin-top: 7.73vw !important;
		border-bottom: 1px solid #A1A1A1;
		font-size: 4.8vw;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		width: 100%;
	}
}
.form-comment{
	margin-bottom: 0 !important;
}

.form-container{
	padding: 4.16vw;
	border-radius: 20px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-self: self-end;
	gap: 4.625vw;
	grid-template-columns: 70% 30%;
	max-width: 1580px;
}
@media screen and (min-width: 1600px) {
	.form-container{
		padding: 4.16vw;
		border-radius: 20px;
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-self: self-end;
		gap: 74px;
		grid-template-columns: 70% 30%;
	}
}
@media screen and (max-width: 1200px) {
	.form-container{
		padding: 10.66vw 7.46vw;
		border-radius: 5.33vw;
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-self: self-end;
		gap: 8vw;
		grid-template-columns: 1fr;
		flex-direction: column;
	}
}
.form-trpile{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 72px;
}
.form-double{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 72px;
}
.form-double input{
    margin-top: 0;
}
@media screen and (max-width: 1200px) {
	.form-trpile{
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0px;
        width: 100%;
    }
    .form-double{
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0px;
        width: 100%
    }
	.form-double input{
    margin-top: auto;
}
}


.button_active_close{
	height: max-content;
	width: max-content;
	margin-left: auto;
}
.plusminus {
	height: 64px;
	width: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E40000;
	border-radius: 50%;
	padding: 18px;
	position: relative;
	cursor: pointer;
	
	&.active {
		&:before {
			transform: translatey(-50%) rotate(-90deg);
			opacity: 0;
			background-color: #000;
		}
		&:after {
			transform: translatey(-50%) rotate(0);
			background-color: #000;
		}
	}
	
	&:before , &:after {
		content: "";
		display: block;
		background-color: #fff;
		position: absolute;		
		top: 50%; left: calc(50% - 14px);
		transition: .35s;
		width: 28px;
		height: 3px;
	}
	
	&:before {		
		transform: translatey(-50%);
	}
	
	&:after {
		transform: translatey(-50%) rotate(90deg);
	}
}
.plusminus.active{
	background-color: #fff;
}
.faq-item.active .plusminus{
	background-color: #fff;

	&:before {
		transform: translatey(-50%) rotate(-90deg);
		opacity: 0;
		background-color: #000;
	}
	&:after {
		transform: translatey(-50%) rotate(0);
		background-color: #000;
	}
}


@media screen and (max-width: 1600px) {
	.plusminus {
		height: 3.33vw;
		width: 3.33vw;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #E40000;
		border-radius: 50%;
		padding: 18px;
		position: relative;
		cursor: pointer;
		
		&.active {
			&:before {
				transform: translatey(-50%) rotate(-90deg);
				opacity: 0;
				background-color: #000;
			}
			&:after {
				transform: translatey(-50%) rotate(0);
				background-color: #000;
			}
		}
		
		&:before , &:after {
			content: "";
			display: block;
			background-color: #fff;
			position: absolute;		
			top: 50%; left: calc(50% - 9px);
			transition: .35s;
			width: 18px;
			height: 2px;
		}
		
		&:before {		
			transform: translatey(-50%);
		}
		
		&:after {
			transform: translatey(-50%) rotate(90deg);
		}
	}
}


.faq{
	background-color: #f6f6f6;
	padding-top: 18vw;
	padding-bottom: 6.66vw;
}
.faq-title h2{
	color: #151515;
	font-family: "Bebas Neue";
	font-size: 6.66vw;
	font-weight: 700;
	line-height: 100%; /* 6.66vw */
	 
	margin-bottom: 50px;
}
@media screen and (min-width: 1600px) {
	.faq-title h2{
		font-size: 128px;
	}
}
@media screen and (max-width: 1200px) {
	.faq-title h2{
		font-size: 11.7vw;
	}
}
.faq-item{
	padding: 60px 0;
	border-top: 1px solid #000;
}
@media screen and (max-width: 1600px) {
	.faq-item{
		padding: 3.125vw 0;
		border-top: 1px solid #000;
	} 
}
@media screen and (max-width: 1200px) {
	.faq-item{
		padding: 3.46vw 0;
		border-top: 1px solid #000;
	} 
}
.faq-up{
	display: grid;
	grid-template-columns: 6.97vw auto 64px;
}
.faq-up h3{
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E40000;
	font-size: 40px;
	font-weight: 200;
	border-radius: 50%;
	color: #fff;
	transition: .3s ease-in-out;

}
.faq-item.active .faq-up h3{
	transform: rotate(-45deg);
	transition: .3s ease-in-out;
}
.faq-item.active{

}
.faq-down h4{
	opacity: 0;
}
.faq-down h3{
	opacity: 0;

}
.faq-down{
	display: none;
	opacity: 0;
	grid-template-columns: 6.97vw auto 64px;
}
.faq-down p{
	color: rgba(21, 21, 21, 0.60);
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	width: 82%;
	line-height: 140%; /* 33.6px */
}
@media screen and (min-width: 1600px) {
	.faq-down p{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.faq-down p{
		font-size: 3.2vw;
		margin-top: 1.6vw;
	}
}
.faq-item.active .faq-down{
	display: grid;
	opacity: 1;
}
.faq-up h2{
	width: 80%;
	color: #151515;
	font-family: "Inter Tight";
	font-size: 44px;
	font-weight: 600;
	line-height: 120%; /* 52.8px */
}
@media screen and (max-width: 1600px) {
	.faq-up h2{  
		font-size: 2.29vw;
	}
}
@media screen and (max-width: 1200px) {
	.faq-up h2{  
		font-size: 4.26vw;
	}
}
.faq-up p{
	color: #151515;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 120%; /* 28.8px */
}
@media screen and (min-width: 1600px) {
	.faq-up p{
		font-size: 24px;
		margin-bottom: 1.56vw;
	}
}
@media screen and (max-width: 1200px) {
	.faq-up p{
		font-size: 3.2vw;
	}
}



@media screen and (max-width: 1200px) {
	.contact{
		margin-top: 32vw;
	}
}
.contact-white::after{
	position: absolute;
	content: url('../img/contact-white.svg');
	top: -30px;
	transform: translateX(-50%);
	left: 50%;
}
@media screen and (max-width: 1200px) {
	.contact-white::after{
		display: none;
	}
}
.contact-red::after{
	position: absolute;
	content: url('../img/contact-red.svg');
	top: -30px;
	transform: translateX(-50%);
	left: 50%;
}
@media screen and (max-width: 1200px) {
	.contact-red::after{
		display: none;
	}
}
.contact-white{
	border: 1px solid #000;
	background: none;
}
.contact-buttons button.active{
	background: #E40000;
	color: #fff !important;
}
.contact-buttons button:hover{
	background-color: #EC3E3E;
	color: #fff;
	transition: .3s ease-in-out;
}
.contact-buttons button{
	transition: .3s ease-in-out;
	border: 1px solid #000;
	background: none;
	position: relative;
	padding: 50px;
	border-radius: 100px;
	font-family: "Inter Tight";
	font-size: 1vw;
	font-weight: 500;
	line-height: 100%; /* 25px */
	color: #000;
}
@media screen and (max-width: 1600px) {
	.contact-buttons button{
		font-size: 0.83vw;
		padding: 2.08vw 3.125vw;
		width: 100%;
	}
}
@media screen and (max-width: 1200px) {
	.contact-buttons button{
		font-size: 3.73vw !important;
		padding: 5.06vw 0;
		width: 100%;
	}
}
@media screen and (max-width: 1600px) {
	.contact-buttons button{
		font-size: 1.56vw;
	}
}
@media screen and (max-width: 1200px) {
	.contact-buttons button{
		font-size: 3.73vw !important;
	}
}
.contact-buttons{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}
@media screen and (max-width: 1200px) {
	.contact-buttons{
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.53vw;
	}
}
.footer{
	padding: 80px 0;
	background-color: #E40000;
}
@media screen and (max-width: 1200px) {
	.footer{
		padding: 12vw 0 8vw 0;
		background-color: #E40000;
	}
}

.footer-container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 1200px) {
	.footer-container{
		display: grid;
		grid-template-columns: 1fr 1fr;
		flex-direction: column;
		row-gap: 9.6vw;
		align-items: flex-end;
	}
	.footer-nav{
		display: block;
		grid-column: span 2;
	}
}

.footer-logo{
	display: flex;
	align-items: center;
	gap: 20px;
}
@media screen and (max-width: 1200px) {
	.footer-logo{
		order: 2;
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-logo img{
		max-width: 24vw;
	}
}
.footer-logo p{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 16px;
	font-weight: 500;
	line-height: 120%; /* 19.2px */
}
.footer-list{
	display: flex;
	align-items: center;
	gap: 20px;
}
@media screen and (max-width: 1200px) {
	.footer-list{
		display: flex;
		flex-direction: column;
		gap: 4.26vw;
		text-align: center;
		order: 1;
	}
}
.footer-link{
	color: #FFF;
	font-family:"Inter Tight";
	font-size: 18px;
	font-weight: 500;
	line-height: 120%; /* 21.6px */
}
@media screen and (max-width: 1200px) {
	.footer-link{
		color: #FFF;
		font-family:"Inter Tight";
		font-size: 4.8vw;
		margin-bottom: 4.26vw;
	}
}
.footer-social a{
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid #fff;
	max-width: max-content;
}
@media screen and (max-width: 1200px) {
	.footer-social a{
		color: #FFF;
		font-family: "Inter Tight";
		font-size: 3.2vw;
		font-weight: 500;
		border-bottom: 1px solid #fff;
		max-width: max-content;
		text-align: right !important;
	}
}
.footer-social{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media screen and (max-width: 1200px) {
	.footer-social{
		order: 2;
		justify-content: flex-end;
		align-items: flex-end;
		gap: 2.66vw;
	}
}

.contact-container{
	position: relative;
	display: flex;
	flex-direction: column;
}
.contact-text{
	position: absolute;
	top: 60px;
	left: 0;
	border-radius: 20px;
	padding: 3.64vw 3.33vw;
	background-color: #fff;
}
@media screen and (max-width: 1600px) {
	.contact-text{
		position: absolute;
		top: 3.75vw;
		left: 3.75vw;
		border-radius: 20px;
		padding: 3.64vw 3.33vw;
		background-color: #fff;
	}
}
@media screen and (max-width: 1200px) {
	.contact-text{
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 2.4vw;
		padding: 9.33vw 7.46vw;
		background-color: #fff;
		width: auto;
		margin: 26.66vw 8vw 0 8vw;
	}
}
.contact-block{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 35px;
	gap: 30px;
}
@media screen and (max-width: 1200px) {
	.contact-block{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 2.66vw;
		gap: 4.53vw;
	}
}
.contact-block h3{
	color: rgba(0, 0, 0, 0.40);
	font-family: "Inter Tight";
	font-size: 16px;
	font-weight: 500;
	line-height: 120%; 
}
@media screen and (max-width: 1600px) {
	.contact-block h3{
		color: rgba(0, 0, 0, 0.40);
		font-family: "Inter Tight";
		margin-bottom: 1.33vw;
	}
}
@media screen and (max-width: 1600px) {
	.header_mobile .contact-block h3{
		color: #fff;
		font-size: 3.63vw;
		font-family: "Inter Tight";
		margin-bottom: 1.33vw;
	}
}
.social_media{
	display: flex !important;
	flex-direction: row !important;
	gap: 12px;
}
@media screen and (max-width: 1600px) {
	.social_media{
		display: flex !important;
		flex-direction: row !important;
		gap: 0.625vw;
	}
}

@media screen and (max-width: 1600px) {
	.social_link{
		max-width: 2.76vw;
		max-height: 2.76vw;
	}
}


.contact-ch.active,
.contact-ua.active{
	display: block;
}
.contact-ua,
.contact-ch{
	display: none;
}
.contact-item{
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 1200px) {
	.social_media{
		display: flex !important;
		flex-direction: column !important;
		position: absolute;
		top: 24vw;
		gap: 2.4vw;
		right: 7.46vw;
	}
	.social_link{
		min-height: 13.33vw;
		min-width: 13.33vw;
	}
	.contects_header .social_media{
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between;
		position: relative !important;
		top: 0;
		gap: 2.4vw;
		right: 0;
	}
	.contects_header .social_media .social_link{
		min-width: 23.2vw;
		min-height: 23.2vw;
		max-width: 23.2vw;
		max-height: 23.2vw;
	}
	.contects_header .social_media .social_link svg{
		min-width: 23.2vw;
		min-height: 23.2vw;
		max-width: 23.2vw;
		max-height: 23.2vw;
		width: 100%;
	}
}
.contact-ch-text.active,
.contact-ua-text.active{
	display: block;
}
.contact-ch-text,
.contact-ua-text{
	display: none;
}
.contact-text button:hover{
	background-color: #EC3E3E;
	transition: .3s ease-in-out;
}
.contact-buttons{
	margin-bottom: 4.47vw !important;
}
.contact-text button{
	transition: .3s ease-in-out;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 25px;

	font-weight: 600;

	position: relative;
	padding: 35px;
	border-radius: 100px;
	font-family: "Inter Tight";
	color: #fff;
	line-height: 100%; /* 25px */
	background-color: #E40000;
	margin-top: 3.33vw;
}
@media screen and (max-width: 1600px) {
	.contact-text button{
		font-size: 1.30vw;
		padding: 2.08vw 3.125vw;
	}
}
@media screen and (max-width: 1200px) {
	.contact-text button{
		font-size: 4vw;
		padding: 6.66vw 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 3.2vw;
		margin-top: 9.06vw;
	}
	.contact-text button svg{
		width: 5.33vw;
	}
}
.contact-block p,
.contact-block a{
	color: #000;
	font-family: "Inter Tight";
	font-size: 1.25vw;
	font-weight: 500;
	line-height: 120%; /* 28.8px */
}
@media screen and (min-width: 1600px) {
	.contact-block p,
.contact-block a{
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.contact-block p,
.contact-block a{
		font-size: 3.73vw;
	}
	.header_mobile .contact-block p,
.header_mobile .contact-block a{
		font-size: 6vw;
		color: #fff;
	}
}
.contact_burger_menu{
	margin-top: 13.86vw;
	margin-bottom: 8.8vw;
}
.contact-text h2{
	color: #1E1E1E;
	font-family: "Bebas Neue";
	font-size: 88px;
	font-weight: 700;
	line-height: 100%; /* 88px */
	margin-bottom: 1.82vw;
}
@media screen and (max-width: 1600px) {
	.contact-text h2{
		font-size: 4.58vw;
	}
}
@media screen and (max-width: 1200px) {
	.contact-text h2{
		font-size: 9.5vw;
	}
}
.contact-img img{
	width: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1200px) {
	.contact-img img{
		width: 100%;
		height: 100vh;
		object-fit: cover;
	}
}
.ship img{
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1200px) {
	.ship img{
		width: 100%;
		object-fit: cover;
		position: relative;
		min-height: 62.93vw;
		left: 0;
	}
	.ship{
		overflow: hidden;
	}
}




.swiper-pagination{
	position: absolute;
	bottom: -5.20vw !important;
}
@media screen and (max-width: 1200px) {
	.swiper-pagination{
		position: absolute;
		bottom: -8.4vw !important;
		padding-top: 3.2vw;
	}
}
.swiper-pagination-bullet{
	height: 16px !important;
	width: 16px !important;
	background: #D9D9D9 !important;
	opacity: 1 !important;
}
.swiper-pagination-bullet-active{
	background: #E40000 !important;
}

.back_black{
	background: rgba(0, 0, 0, 0.60);
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 99;
	top: 0;
	cursor: pointer;
}
.popup_price{
	height: 100vh;
	width: 100vw;
	z-index: 9999;
	padding-top: 10vh !important;
	transform: translateY(-200%);
	position: fixed;
	top: 0;
	left: 0;
}
.popup_price.active{
	height: 100vh;
	width: 100vw;
	padding-top: 10vh !important;
	transform: translateY(0%);
}
@media screen and (max-width: 1200px) {
	.popup_price{
		min-height: 100vh;
		height: auto;
		min-width: 100vw;
		width: auto;
		z-index: 9999;
		padding: 8vw 0;
	}
}

.popup_price .form-container{
	position: relative;
	z-index: 10000;
}
@media screen and (max-width: 1200px) {
	.popup_price .form-container{
		max-height: 80vh;
		overflow-y: scroll;
	}
}
.popup_price .form-container.active{
	opacity: 1;
	z-index: 9999;
	transform: translateY(0%);
}
.popup_price .form-container{
	opacity: 0;
	z-index: 0;
	transform: translateY(-100%);
	transition: .3s;
}

@media screen and (max-width: 1200px) {
	.popup_price .form-container{
	}
}
.exit_button{
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}
.price_popup{
	cursor: pointer;
}



.popup_consalt{
	height: 100vh;
	width: 100vw;
	z-index: 9999;
	padding-top: 10vh !important;
	transform: translateY(-200%);
	position: fixed;
	top: 0;
	left: 0;
}
.popup_consalt.active{
	transform: translateY(0%);
	position: fixed;
}
.popup_consalt form{
	position: relative;
	z-index: 10000;
	width: 31.76vw;
	margin: 0 auto;
}
@media screen and (max-width: 1200px) {
	.popup_consalt form{
		position: relative;
		z-index: 10000;
		width: 83.73vw;
	}
}
.popup_consalt .peculiarities-form.active{
	position: relative;
	opacity: 1;
	z-index: 9999;
	transform: translateY(0%);
	max-width: max-content;
margin: 0 auto;
}
.popup_consalt .peculiarities-form{
	opacity: 0;
	z-index: 0;
	transform: translateY(-100%);
	transition: .3s;
}
.wpcf7 form .wpcf7-response-output{
	border: none !important;
	padding: 0 !important;
	font-family: Inter Tight;
}


.popup_send_success{
	display: none !important;
	margin: 0 auto;
	margin-top: 10vh;
	margin-bottom: 10vh;
	background-color: #E40000;
	width: 33.75vw;
	padding: 9.375vw 0;
	border-radius: 1.25vw;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	opacity: 0;
	transform: translateY(0%);
	z-index: 9999;
	transition: .3s;
}
@media screen and (max-width: 1200px) {
	.popup_send_success{
		margin: 0 auto;
		margin-top: 10vh;
		margin-bottom: 10vh;
		background-color: #E40000;
		width: 83.73vw;
		padding: 9.375vw 0;
		border-radius: 5.33vw;
	}
}
.popup_send_success.active{
	display: flex !important;
	opacity: 1;
	transform: translateY(0%);
}
.popup_send_success svg{
	margin: 0 auto;
}
.heading_popup_success{
	font-family: "Bebas Neue";
	color: #FFF;
	text-align: center;
	font-size: 2.06vw;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 33px */
	margin: 2.68vw 0 1.75vw 0;
}
@media screen and (max-width: 1200px) {
	.heading_popup_success{
		color: #FFF;
		text-align: center;
		font-size: 6.66vw;
		font-style: normal;
		font-weight: 600;
		line-height: 100%; /* 33px */
		margin: 5.6vw 0 5.6vw 0;
	}
	.heading_popup_success .svg_done{
		max-width: 31.2vw;
	}
}
.description_popup_success{
	color: #FFF;
	text-align: center;
	font-family: Inter Tight;
	font-size: 1.56vw;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 30px */
}
@media screen and (max-width: 1200px) {
	.description_popup_success{
		color: #FFF;
		text-align: center;
		font-family: Inter Tight;
		font-size: 4.26vw;
	}
}

.scroll-item{
	opacity: 0;
	transform: translateY(100%);
}
.scroll-item.animation-class{
	opacity: 1;
	transform: translateY(0%);
}
.wpcf7-not-valid-tip{
	margin-top: 5px !important;
	font-family: Inter Tight;
}

.img_review{
	width: 100%;
}

@charset "UTF-8";

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-button>.vjs-icon-placeholder:before,
.vjs-modal-dialog .vjs-modal-dialog-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button>.vjs-icon-placeholder:before {
	text-align: center
}

@font-face {
	font-family: VideoJS;
	src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder,
.vjs-icon-play {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.vjs-icon-play:before {
	content: "\f101"
}

.vjs-icon-play-circle {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-play-circle:before {
	content: "\f102"
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,
.vjs-icon-pause {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.vjs-icon-pause:before {
	content: "\f103"
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,
.vjs-icon-volume-mute {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.vjs-icon-volume-mute:before {
	content: "\f104"
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,
.vjs-icon-volume-low {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.vjs-icon-volume-low:before {
	content: "\f105"
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,
.vjs-icon-volume-mid {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.vjs-icon-volume-mid:before {
	content: "\f106"
}

.video-js .vjs-mute-control .vjs-icon-placeholder,
.vjs-icon-volume-high {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-mute-control .vjs-icon-placeholder:before,
.vjs-icon-volume-high:before {
	content: "\f107"
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-enter {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-enter:before {
	content: "\f108"
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-exit {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-exit:before {
	content: "\f109"
}

.vjs-icon-square {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-square:before {
	content: "\f10a"
}

.vjs-icon-spinner {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-spinner:before {
	content: "\f10b"
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-subtitles {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-subtitles:before {
	content: "\f10c"
}

.video-js .vjs-captions-button .vjs-icon-placeholder,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-captions {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-captions-button .vjs-icon-placeholder:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-captions:before {
	content: "\f10d"
}

.video-js .vjs-chapters-button .vjs-icon-placeholder,
.vjs-icon-chapters {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-chapters-button .vjs-icon-placeholder:before,
.vjs-icon-chapters:before {
	content: "\f10e"
}

.vjs-icon-share {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-share:before {
	content: "\f10f"
}

.vjs-icon-cog {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-cog:before {
	content: "\f110"
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level,
.vjs-icon-circle,
.vjs-seek-to-live-control .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before,
.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before {
	content: "\f111"
}

.vjs-icon-circle-outline {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-circle-outline:before {
	content: "\f112"
}

.vjs-icon-circle-inner-circle {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-circle-inner-circle:before {
	content: "\f113"
}

.vjs-icon-hd {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-hd:before {
	content: "\f114"
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,
.vjs-icon-cancel {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,
.vjs-icon-cancel:before {
	content: "\f115"
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,
.vjs-icon-replay {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.vjs-icon-replay:before {
	content: "\f116"
}

.vjs-icon-facebook {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-facebook:before {
	content: "\f117"
}

.vjs-icon-gplus {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-gplus:before {
	content: "\f118"
}

.vjs-icon-linkedin {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-linkedin:before {
	content: "\f119"
}

.vjs-icon-twitter {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-twitter:before {
	content: "\f11a"
}

.vjs-icon-tumblr {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-tumblr:before {
	content: "\f11b"
}

.vjs-icon-pinterest {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-pinterest:before {
	content: "\f11c"
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder,
.vjs-icon-audio-description {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,
.vjs-icon-audio-description:before {
	content: "\f11d"
}

.video-js .vjs-audio-button .vjs-icon-placeholder,
.vjs-icon-audio {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-audio-button .vjs-icon-placeholder:before,
.vjs-icon-audio:before {
	content: "\f11e"
}

.vjs-icon-next-item {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-next-item:before {
	content: "\f11f"
}

.vjs-icon-previous-item {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.vjs-icon-previous-item:before {
	content: "\f120"
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-enter {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-enter:before {
	content: "\f121"
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-exit {
	font-family: VideoJS;
	font-weight: 400;
	font-style: normal
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-exit:before {
	content: "\f122"
}

.video-js {
	display: block;
	vertical-align: top;
	box-sizing: border-box;
	color: #fff;
	background-color: #000;
	position: relative;
	padding: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	word-break: initial
}

.video-js:-moz-full-screen {
	position: absolute
}

.video-js:-webkit-full-screen {
	width: 100% !important;
	height: 100% !important
}

.video-js[tabindex="-1"] {
	outline: 0
}

.video-js *,
.video-js :after,
.video-js :before {
	box-sizing: inherit
}

.video-js ul {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	list-style-position: outside;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0
}

.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-fluid {
	width: 100%;
	max-width: 100%;
	height: 0
}

.video-js.vjs-16-9 {
	padding-top: 56.25%
}

.video-js.vjs-4-3 {
	padding-top: 75%
}

.video-js.vjs-fill {
	width: 100%;
	height: 100%
}

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

body.vjs-full-window {
	padding: 0;
	margin: 0;
	height: 100%
}

.vjs-full-window .video-js.vjs-fullscreen {
	position: fixed;
	overflow: hidden;
	z-index: 1000;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
	width: 100% !important;
	height: 100% !important;
	padding-top: 0 !important
}

.video-js.vjs-fullscreen.vjs-user-inactive {
	cursor: none
}

.vjs-hidden {
	display: none !important
}

.vjs-disabled {
	opacity: .5;
	cursor: default
}

.video-js .vjs-offscreen {
	height: 1px;
	left: -9999px;
	position: absolute;
	top: 0;
	width: 1px
}

.vjs-lock-showing {
	display: block !important;
	opacity: 1;
	visibility: visible
}

.vjs-no-js {
	padding: 20px;
	color: #fff;
	background-color: #000;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	width: 300px;
	height: 150px;
	margin: 0 auto
}

.vjs-no-js a,
.vjs-no-js a:visited {
	color: #66a8cc
}

.video-js .vjs-big-play-button {
	font-size: 3em;
	line-height: 1.5em;
	height: 1.63332em;
	width: 3em;
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 0;
	cursor: pointer;
	opacity: 1;
	border: .06666em solid #fff;
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, .7);
	border-radius: .3em;
	transition: all .4s
}

.vjs-big-play-centered .vjs-big-play-button {
	top: 50%;
	left: 50%;
	margin-top: -.81666em;
	margin-left: -1.5em
}

.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
	border-color: #fff;
	background-color: #73859f;
	background-color: rgba(115, 133, 159, .5);
	transition: all 0s
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-error .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button {
	display: none
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
	display: block
}

.video-js button {
	background: 0 0;
	border: none;
	color: inherit;
	display: inline-block;
	font-size: inherit;
	line-height: inherit;
	text-transform: none;
	text-decoration: none;
	transition: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.vjs-control .vjs-button {
	width: 100%;
	height: 100%
}

.video-js .vjs-control.vjs-close-button {
	cursor: pointer;
	height: 3em;
	position: absolute;
	right: 0;
	top: .5em;
	z-index: 2
}

.video-js .vjs-modal-dialog {
	background: rgba(0, 0, 0, .8);
	background: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(255, 255, 255, 0));
	overflow: auto
}

.video-js .vjs-modal-dialog>* {
	box-sizing: border-box
}

.vjs-modal-dialog .vjs-modal-dialog-content {
	font-size: 1.2em;
	line-height: 1.5;
	padding: 20px 24px;
	z-index: 1
}

.vjs-menu-button {
	cursor: pointer
}

.vjs-menu-button.vjs-disabled {
	cursor: default
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
	display: none
}

.vjs-menu .vjs-menu-content {
	display: block;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	overflow: auto
}

.vjs-menu .vjs-menu-content>* {
	box-sizing: border-box
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
	display: none
}

.vjs-menu li {
	list-style: none;
	margin: 0;
	padding: .2em 0;
	line-height: 1.4em;
	font-size: 1.2em;
	text-align: center;
	text-transform: lowercase
}

.js-focus-visible .vjs-menu li.vjs-menu-item:hover,
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
	background-color: #73859f;
	background-color: rgba(115, 133, 159, .5)
}

.js-focus-visible .vjs-menu li.vjs-selected:hover,
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
	background-color: #fff;
	color: #2b333f
}

.js-focus-visible .vjs-menu :focus:not(.focus-visible),
.video-js .vjs-menu :focus:not(:focus-visible) {
	background: 0 0
}

.vjs-menu li.vjs-menu-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 1em;
	line-height: 2em;
	padding: 0;
	margin: 0 0 .3em 0;
	font-weight: 700;
	cursor: default
}

.vjs-menu-button-popup .vjs-menu {
	display: none;
	position: absolute;
	bottom: 0;
	width: 10em;
	left: -3em;
	height: 0;
	margin-bottom: 1.5em;
	border-top-color: rgba(43, 51, 63, .7)
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, .7);
	position: absolute;
	width: 100%;
	bottom: 1.5em;
	max-height: 15em
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 5em
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 10em
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 14em
}

.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 25em
}

.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
	display: block
}

.video-js .vjs-menu-button-inline {
	transition: all .4s;
	overflow: hidden
}

.video-js .vjs-menu-button-inline:before {
	width: 2.222222222em
}

.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline:hover,
.video-js.vjs-no-flex .vjs-menu-button-inline {
	width: 12em
}

.vjs-menu-button-inline .vjs-menu {
	opacity: 0;
	height: 100%;
	width: auto;
	position: absolute;
	left: 4em;
	top: 0;
	padding: 0;
	margin: 0;
	transition: all .4s
}

.vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline:hover .vjs-menu {
	display: block;
	opacity: 1
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
	display: block;
	opacity: 1;
	position: relative;
	width: auto
}

.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
	width: auto
}

.vjs-menu-button-inline .vjs-menu-content {
	width: auto;
	height: 100%;
	margin: 0;
	overflow: hidden
}

.video-js .vjs-control-bar {
	display: none;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3em;
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, .7)
}

.vjs-has-started .vjs-control-bar {
	display: flex;
	visibility: visible;
	opacity: 1;
	transition: visibility .1s, opacity .1s
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	visibility: visible;
	opacity: 0;
	transition: visibility 1s, opacity 1s
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-error .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar {
	display: none !important
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	opacity: 1;
	visibility: visible
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
	display: table
}

.video-js .vjs-control {
	position: relative;
	text-align: center;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 4em;
	flex: none
}

.vjs-button>.vjs-icon-placeholder:before {
	font-size: 1.8em;
	line-height: 1.67
}

.vjs-button>.vjs-icon-placeholder {
	display: block
}

.video-js .vjs-control:focus,
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before {
	text-shadow: 0 0 1em #fff
}

.video-js .vjs-control-text {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.vjs-no-flex .vjs-control {
	display: table-cell;
	vertical-align: middle
}

.video-js .vjs-custom-control-spacer {
	display: none
}

.video-js .vjs-progress-control {
	cursor: pointer;
	flex: auto;
	display: flex;
	align-items: center;
	min-width: 4em;
	touch-action: none
}

.video-js .vjs-progress-control.disabled {
	cursor: default
}

.vjs-live .vjs-progress-control {
	display: none
}

.vjs-liveui .vjs-progress-control {
	display: flex;
	align-items: center
}

.vjs-no-flex .vjs-progress-control {
	width: auto
}

.video-js .vjs-progress-holder {
	flex: auto;
	transition: all .2s;
	height: .3em
}

.video-js .vjs-progress-control .vjs-progress-holder {
	margin: 0 10px
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
	font-size: 1.6666666667em
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
	font-size: 1em
}

.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div,
.video-js .vjs-progress-holder .vjs-play-progress {
	position: absolute;
	display: block;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 0
}

.video-js .vjs-play-progress {
	background-color: #fff
}

.video-js .vjs-play-progress:before {
	font-size: .9em;
	position: absolute;
	right: -.5em;
	top: -.3333333333em;
	z-index: 1
}

.video-js .vjs-load-progress {
	background: rgba(115, 133, 159, .5)
}

.video-js .vjs-load-progress div {
	background: rgba(115, 133, 159, .75)
}

.video-js .vjs-time-tooltip {
	background-color: #fff;
	background-color: rgba(255, 255, 255, .8);
	border-radius: .3em;
	color: #000;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	padding: 6px 8px 8px 8px;
	pointer-events: none;
	position: absolute;
	top: -3.4em;
	visibility: hidden;
	z-index: 1
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
	display: none
}

.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-time-tooltip {
	display: block;
	font-size: .6em;
	visibility: visible
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
	font-size: 1em
}

.video-js .vjs-progress-control .vjs-mouse-display {
	display: none;
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #000;
	z-index: 1
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
	z-index: 0
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
	display: block
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
	visibility: hidden;
	opacity: 0;
	transition: visibility 1s, opacity 1s
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
	display: none
}

.vjs-mouse-display .vjs-time-tooltip {
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, .8)
}

.video-js .vjs-slider {
	position: relative;
	cursor: pointer;
	padding: 0;
	margin: 0 .45em 0 .45em;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #73859f;
	background-color: rgba(115, 133, 159, .5)
}

.video-js .vjs-slider.disabled {
	cursor: default
}

.video-js .vjs-slider:focus {
	text-shadow: 0 0 1em #fff;
	box-shadow: 0 0 1em #fff
}

.video-js .vjs-mute-control {
	cursor: pointer;
	flex: none
}

.video-js .vjs-volume-control {
	cursor: pointer;
	margin-right: 1em;
	display: flex
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
	width: 5em
}

.video-js .vjs-volume-panel .vjs-volume-control {
	visibility: visible;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin-left: -1px
}

.video-js .vjs-volume-panel {
	transition: width 1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control {
	visibility: visible;
	opacity: 1;
	position: relative;
	transition: visibility .1s, opacity .1s, height .1s, width .1s, left 0s, top 0s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
	width: 5em;
	height: 3em;
	margin-right: 0
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
	left: -3.5em;
	transition: left 0s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
	width: 10em;
	transition: width .1s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
	width: 4em
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
	height: 8em;
	width: 3em;
	left: -3000em;
	transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
	transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
	width: 5em;
	height: 3em;
	visibility: visible;
	opacity: 1;
	position: relative;
	transition: none
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
	position: absolute;
	bottom: 3em;
	left: .5em
}

.video-js .vjs-volume-panel {
	display: flex
}

.video-js .vjs-volume-bar {
	margin: 1.35em .45em
}

.vjs-volume-bar.vjs-slider-horizontal {
	width: 5em;
	height: .3em
}

.vjs-volume-bar.vjs-slider-vertical {
	width: .3em;
	height: 5em;
	margin: 1.35em auto
}

.video-js .vjs-volume-level {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fff
}

.video-js .vjs-volume-level:before {
	position: absolute;
	font-size: .9em;
	z-index: 1
}

.vjs-slider-vertical .vjs-volume-level {
	width: .3em
}

.vjs-slider-vertical .vjs-volume-level:before {
	top: -.5em;
	left: -.3em;
	z-index: 1
}

.vjs-slider-horizontal .vjs-volume-level {
	height: .3em
}

.vjs-slider-horizontal .vjs-volume-level:before {
	top: -.3em;
	right: -.5em
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
	width: 4em
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
	height: 100%
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
	width: 100%
}

.video-js .vjs-volume-vertical {
	width: 3em;
	height: 8em;
	bottom: 8em;
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, .7)
}

.video-js .vjs-volume-horizontal .vjs-menu {
	left: -2em
}

.video-js .vjs-volume-tooltip {
	background-color: #fff;
	background-color: rgba(255, 255, 255, .8);
	border-radius: .3em;
	color: #000;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	padding: 6px 8px 8px 8px;
	pointer-events: none;
	position: absolute;
	top: -3.4em;
	visibility: hidden;
	z-index: 1
}

.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-volume-tooltip {
	display: block;
	font-size: 1em;
	visibility: visible
}

.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip {
	left: 1em;
	top: -12px
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
	font-size: 1em
}

.video-js .vjs-volume-control .vjs-mouse-display {
	display: none;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #000;
	z-index: 1
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
	width: 1px;
	height: 100%
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
	z-index: 0
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
	display: block
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
	visibility: hidden;
	opacity: 0;
	transition: visibility 1s, opacity 1s
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
	display: none
}

.vjs-mouse-display .vjs-volume-tooltip {
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, .8)
}

.vjs-poster {
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	background-color: #000;
	cursor: pointer;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%
}

.vjs-has-started .vjs-poster {
	display: none
}

.vjs-audio.vjs-has-started .vjs-poster {
	display: block
}

.vjs-using-native-controls .vjs-poster {
	display: none
}

.video-js .vjs-live-control {
	display: flex;
	align-items: flex-start;
	flex: auto;
	font-size: 1em;
	line-height: 3em
}

.vjs-no-flex .vjs-live-control {
	display: table-cell;
	width: auto;
	text-align: left
}

.video-js.vjs-liveui .vjs-live-control,
.video-js:not(.vjs-live) .vjs-live-control {
	display: none
}

.video-js .vjs-seek-to-live-control {
	align-items: center;
	cursor: pointer;
	flex: none;
	display: inline-flex;
	height: 100%;
	padding-left: .5em;
	padding-right: .5em;
	font-size: 1em;
	line-height: 3em;
	width: auto;
	min-width: 4em
}

.vjs-no-flex .vjs-seek-to-live-control {
	display: table-cell;
	width: auto;
	text-align: left
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
	display: none
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
	cursor: auto
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
	margin-right: .5em;
	color: #888
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
	color: red
}

.video-js .vjs-time-control {
	flex: none;
	font-size: 1em;
	line-height: 3em;
	min-width: 2em;
	width: auto;
	padding-left: 1em;
	padding-right: 1em
}

.vjs-live .vjs-time-control {
	display: none
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
	display: none
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
	display: none
}

.vjs-time-divider {
	display: none;
	line-height: 3em
}

.vjs-live .vjs-time-divider {
	display: none
}

.video-js .vjs-play-control {
	cursor: pointer
}

.video-js .vjs-play-control .vjs-icon-placeholder {
	flex: none
}

.vjs-text-track-display {
	position: absolute;
	bottom: 3em;
	left: 0;
	right: 0;
	top: 0;
	pointer-events: none
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
	bottom: 1em
}

.video-js .vjs-text-track {
	font-size: 1.4em;
	text-align: center;
	margin-bottom: .1em
}

.vjs-subtitles {
	color: #fff
}

.vjs-captions {
	color: #fc6
}

.vjs-tt-cue {
	display: block
}

video::-webkit-media-text-track-display {
	transform: translateY(-3em)
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
	transform: translateY(-1.5em)
}

.video-js .vjs-picture-in-picture-control {
	cursor: pointer;
	flex: none
}

.video-js .vjs-fullscreen-control {
	cursor: pointer;
	flex: none
}

.vjs-playback-rate .vjs-playback-rate-value,
.vjs-playback-rate>.vjs-menu-button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.vjs-playback-rate .vjs-playback-rate-value {
	pointer-events: none;
	font-size: 1.5em;
	line-height: 2;
	text-align: center
}

.vjs-playback-rate .vjs-menu {
	width: 4em;
	left: 0
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
	font-size: 1.4em;
	text-align: center
}

.vjs-error .vjs-error-display:before {
	color: #fff;
	content: "X";
	font-family: Arial, Helvetica, sans-serif;
	font-size: 4em;
	left: 0;
	line-height: 1;
	margin-top: -.5em;
	position: absolute;
	text-shadow: .05em .05em .1em #000;
	text-align: center;
	top: 50%;
	vertical-align: middle;
	width: 100%
}

.vjs-loading-spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .85;
	text-align: left;
	border: 6px solid rgba(43, 51, 63, .7);
	box-sizing: border-box;
	background-clip: padding-box;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	visibility: hidden
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
	display: block;
	-webkit-animation: vjs-spinner-show 0s linear .3s forwards;
	animation: vjs-spinner-show 0s linear .3s forwards
}

.vjs-loading-spinner:after,
.vjs-loading-spinner:before {
	content: "";
	position: absolute;
	margin: -6px;
	box-sizing: inherit;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	opacity: 1;
	border: inherit;
	border-color: transparent;
	border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before {
	-webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite;
	animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
	border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
	border-top-color: #fff;
	-webkit-animation-delay: .44s;
	animation-delay: .44s
}

@keyframes vjs-spinner-show {
	to {
		visibility: visible
	}
}

@-webkit-keyframes vjs-spinner-show {
	to {
		visibility: visible
	}
}

@keyframes vjs-spinner-spin {
	100% {
		transform: rotate(360deg)
	}
}

@-webkit-keyframes vjs-spinner-spin {
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes vjs-spinner-fade {
	0% {
		border-top-color: #73859f
	}

	20% {
		border-top-color: #73859f
	}

	35% {
		border-top-color: #fff
	}

	60% {
		border-top-color: #73859f
	}

	100% {
		border-top-color: #73859f
	}
}

@-webkit-keyframes vjs-spinner-fade {
	0% {
		border-top-color: #73859f
	}

	20% {
		border-top-color: #73859f
	}

	35% {
		border-top-color: #fff
	}

	60% {
		border-top-color: #73859f
	}

	100% {
		border-top-color: #73859f
	}
}

.vjs-chapters-button .vjs-menu ul {
	width: 24em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
	vertical-align: middle;
	display: inline-block;
	margin-bottom: -.1em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
	font-family: VideoJS;
	content: "";
	font-size: 1.5em;
	line-height: inherit
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
	vertical-align: middle;
	display: inline-block;
	margin-bottom: -.1em
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
	font-family: VideoJS;
	content: " ";
	font-size: 1.5em;
	line-height: inherit
}

.video-js.vjs-layout-small .vjs-audio-button,
.video-js.vjs-layout-small .vjs-captions-button,
.video-js.vjs-layout-small .vjs-chapters-button,
.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-descriptions-button,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-subtitles-button,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-volume-control,
.video-js.vjs-layout-tiny .vjs-audio-button,
.video-js.vjs-layout-tiny .vjs-captions-button,
.video-js.vjs-layout-tiny .vjs-chapters-button,
.video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-descriptions-button,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-subtitles-button,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-volume-control,
.video-js.vjs-layout-x-small .vjs-audio-button,
.video-js.vjs-layout-x-small .vjs-captions-button,
.video-js.vjs-layout-x-small .vjs-chapters-button,
.video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-descriptions-button,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-subtitles-button,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-volume-control {
	display: none !important
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
	width: auto;
	width: initial
}

.video-js.vjs-layout-tiny .vjs-subs-caps-button,
.video-js.vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,
.video-js.vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button {
	display: none
}

.video-js.vjs-layout-tiny .vjs-custom-control-spacer,
.video-js.vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer {
	flex: auto;
	display: block
}

.video-js.vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer,
.video-js.vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer {
	width: auto
}

.video-js.vjs-layout-tiny .vjs-progress-control,
.video-js.vjs-layout-x-small.vjs-liveui .vjs-progress-control {
	display: none
}

.vjs-modal-dialog.vjs-text-track-settings {
	background-color: #2b333f;
	background-color: rgba(43, 51, 63, .75);
	color: #fff;
	height: 70%
}

.vjs-text-track-settings .vjs-modal-dialog-content {
	display: table
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-controls,
.vjs-text-track-settings .vjs-track-settings-font {
	display: table-cell
}

.vjs-text-track-settings .vjs-track-settings-controls {
	text-align: right;
	vertical-align: bottom
}

@supports (display:grid) {
	.vjs-text-track-settings .vjs-modal-dialog-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		padding: 20px 24px 0 24px
	}

	.vjs-track-settings-controls .vjs-default-button {
		margin-bottom: 20px
	}

	.vjs-text-track-settings .vjs-track-settings-controls {
		grid-column: 1/-1
	}

	.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
	.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,
	.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
		grid-template-columns: 1fr
	}
}

.vjs-track-setting>select {
	margin-right: 1em;
	margin-bottom: .5em
}

.vjs-text-track-settings fieldset {
	margin: 5px;
	padding: 3px;
	border: none
}

.vjs-text-track-settings fieldset span {
	display: inline-block
}

.vjs-text-track-settings fieldset span>select {
	max-width: 7.3em
}

.vjs-text-track-settings legend {
	color: #fff;
	margin: 0 0 5px 0
}

.vjs-text-track-settings .vjs-label {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	display: block;
	margin: 0 0 5px 0;
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden
}

.vjs-track-settings-controls button:active,
.vjs-track-settings-controls button:focus {
	outline-style: solid;
	outline-width: medium;
	background-image: linear-gradient(0deg, #fff 88%, #73859f 100%)
}

.vjs-track-settings-controls button:hover {
	color: rgba(43, 51, 63, .75)
}

.vjs-track-settings-controls button {
	background-color: #fff;
	background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
	color: #2b333f;
	cursor: pointer;
	border-radius: 2px
}

.vjs-track-settings-controls .vjs-default-button {
	margin-right: 1em
}

@media print {
	.video-js>:not(.vjs-tech):not(.vjs-poster) {
		visibility: hidden
	}
}

.vjs-resize-manager {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	z-index: -1000
}

.js-focus-visible .video-js :focus:not(.focus-visible) {
	outline: 0
}

.video-js :focus:not(:focus-visible) {
	outline: 0
}


.video-js .vjs-big-play-button {
	border-radius: 50% !important;
	width: 3em;
	height: 3em !important;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: absolute;
	top: calc(50% - 1.5em) !important;
	left: calc(50% - 1.5em) !important;
	padding: 0;
	cursor: pointer;
	opacity: 1;
	border: .06666em solid #fff;
	background-color: #fff !important;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .vjs-icon-play:before{
	color: #E40000 !important;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button>.vjs-icon-placeholder:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100%;
    transform: scale(1.5) !important;
}
