/* variable */

:root {
	--White: #FFF;
	--Black: #101010;
	--Red: #FF1839;	
	--Blue-green-liner: linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%);
	--Green: #00E7BC;
}

/* common styles */

section{
	padding: 100px 0;
}

@media screen and (max-width:480px) {
	section{
		padding: 60px 0;
	}
}

img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.btn:hover{
	background: #00E7BC;
	transition: all 250ms ease;
}

.btn:active{
	background: #39DBFF;
	transition: all 250ms ease;
}

/* HEADER */

.header {
	background: var(--Black, #101010);
	position: relative;
	z-index: 5;
}

.header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

@media screen and (max-width:480px) {
	.header__content {
		justify-content: center;
	}
}

.header__logo {
	max-width: 191px;
	max-height: 50px;
}

.header__button {
	width: 180px;
	height: 50px;
	padding: 0px 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;

	color: var(--Black, #101010);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
}

@media screen and (max-width:480px) {
	.header__button {
		display: none;
	}
}

/* hero-section */

.hero-section {
	background-image: url('../images/bl1_bg.jpg');
	background-position:  center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.overlay{
	display: none;
}

@media screen and (max-width:991px) {
	.hero-section{
		background-size: 200%;
		background-repeat:no-repeat;
		background-position: 50% 0;
		background-color: #101010;	
		background-image:none;
	}

	.overlay{
		display: block;
	}

	.hero-section .overlay {
		position: absolute;
		top: 0;
		left: 0px;
		width: 100%;
		height: auto;
		/* background: linear-gradient(0deg, #101010 0%, rgba(16, 16, 16, 0.00) 100%); */
	}

	.hero-section .overlay::after {
		content:'';
		width: 100%;
		height: 60px;
		bottom: 0;
		left: 0;
		position: absolute;
		background: linear-gradient(0deg, #101010 0%, rgba(16, 16, 16, 0.00) 100%);
	}
}

.hero-section__content {
	position: relative;
}

.hero-section__title {
	color: var(--White, #FFF);
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
	font-family: Montserrat;
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 72px */
	letter-spacing: -1.8px;
	margin-bottom: 48px;
}

@media screen and (max-width:991px) {
	.hero-section__title {
		margin-bottom: 24px;
	}
}

@media screen and (max-width:480px) {
	.hero-section__title {
		color: var(--White, #FFF);
		text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
		font-family: Montserrat;
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 48px */
		letter-spacing: -1.2px;
	}
}

.hero-section__box {
	display: flex;
	gap:24px;
}

@media screen and (max-width:991px) {
	.hero-section__box {
		flex-direction: column;
	}
}

.hero-section__info {
	flex: 0 1 690px;
	display: flex;
	flex-direction: column;
	gap:24px;
}

@media screen and (max-width:991px) {
	.hero-section__info {
		flex: 0 1 auto;
	}
}

.hero-section__text {
	color: var(--White, #FFF);
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.hero-section__text {
		color: var(--White, #FFF);
		text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

.hero-section__mobile-img{
	display: none;
}

.hero-section__img {
	max-height: 320px;
}

@media screen and (max-width:991px) {
	.hero-section__img {
		display: none;
	}
	.hero-section__img.hero-section__mobile-img{
		display: block;
	}
}

.hero-section__form {
	flex: 1 0 454px;
}

/* FORM */

.form-container {

}

.form__promo {
	border: 1px solid var(--Red, #FF1839);
	background: var(--Red, #FF1839);
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap:12px;
}

.form__start-promo {
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.form__date {
	display: flex;
	gap: 6px;
}

.form__date span{
	background: #FFF;
	padding: 4px;
	display: flex;
	justify-content: center;
	align-items: center;

	color: var(--Red, #FF1839);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.form__end-promo {
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}


@media screen and (max-width:480px) {
	.form__end-promo{
		flex-direction: column;
	}
}




.form__box {
	padding: 24px;

	/* background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8.5px);
	-webkit-backdrop-filter: blur(8.5px); */
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

/* .form__box * {
	position: relative;
	z-index: 1;
} */

.blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8.5px);
	-webkit-backdrop-filter: blur(8.5px);
	z-index: 1; /* Щоб блюр не перекривав вміст */
}

.form__price {
	border: 2px dashed var(--Red, #FF1839);
	background: rgba(255, 24, 57, 0.15);
	display: flex;
	padding: 16px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	z-index: 1;

}

.form__old-price {
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.48px;
}

.form__old-price span{
	color: var(--Red, #FF1839);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration:line-through;
	background: #FFF;
	margin-left: 6px;
	padding: 2px 6px;

}

.form__new-price {
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.72px;
}

.form__new-price span{
	color: var(--Red, #FF1839);
	text-align: center;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	background: #FFF;
	margin-left: 6px;
	padding: 2px 6px;
}

@media screen and (max-width:480px) {
	.form__new-price .form__new-price span{
		font-size: 22px;
	}
}

.form__title {
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.96px;
	z-index: 1;
}

@media screen and (max-width:480px) {

	.form__title {
		color: var(--White, #FFF);
		text-align: center;
		font-family: Montserrat;
		font-size: 24px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 28.8px */
		letter-spacing: -0.72px;
	}
}

.form-block {
	z-index: 1;
}
.form-block-top {
}
.validate-form {
}
.form__content {
}
.form__row {
}
.form__input-wrapper {
	margin-bottom: 16px;
}
.form__input {
}
.first__name {
}
.phone {
}
.password {
}
.valid {
}
.last__name {
	display: none;
}
.input__email {
	display: none;
}
.phonecc {
}
.btn {
}
.form__btn {
	display: flex;
	width: 100%;
	height: 60px;
	padding: 0px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	color: var(--Black, #101010);
	text-align: center;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
	position: relative;
	z-index: 1;
}
.button_style_2 {
}
.form__footer {
	border: 1px solid var(--Red, #FF1839);
	background: var(--Red, #FF1839);
	display: flex;
	padding: 16px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	align-self: stretch;
}
.form__top {
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.48px;
}
.form__bottom {
	background: #FFF;
	display: flex;
	padding: 2px 4px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: var(--Red, #FF1839);
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.48px;
}

.privacy-checkbox {
	color:#fff;
}

/* info-block */

.info-block {
}
.containe {
}
.info-block__content {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

@media screen and (max-width:480px) {
	.info-block__content {
		gap: 60px;
	}
}

.info-block__item {
}
.info-item__mastery {
}
.info-item__alcohol-treatment {
}
.info-item__difference {
}

/* mastery */
.mastery {
}
.mastery__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.mastery__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}
}

.mastery__cards {
	display: flex;
	flex-wrap: wrap;
	row-gap: 48px;
	column-gap:24px;
}

@media screen and (max-width:768px) {
	.mastery__cards {
		row-gap: 32px;
	}
}

.mastery__card {
	flex: 0 1 calc(50% - 12px);
}

@media screen and (max-width:768px) {
	.mastery__card {
		flex: 0 1 100%;
	}
}

.mastery__img {
	margin-bottom: 32px;
}

.mastery__card-title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.96px;
	margin-bottom: 24px;
}

@media screen and (max-width:480px) {
	.mastery__card-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.78px;
	}
}


.mastery__text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.mastery__text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}


/* alcohol-treatment */
.alcohol-treatment {
}
.alcohol-treatment__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 24px;
}

@media screen and (max-width:480px) {
	.alcohol-treatment__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}
}

.alcohol-treatment__text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.alcohol-treatment__text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

.alcohol-treatment__box {
	display: flex;
	gap: 24px;
}

@media screen and (max-width:1199px) {
	.alcohol-treatment__box  {
		flex-direction: column;
	}
}


.alcohol-treatment__info {
	flex: 1 0 486px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}



.alcohol-treatment__info-title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.96px;
}

@media screen and (max-width:480px) {
	.alcohol-treatment__info-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 31.2px */
		letter-spacing: -0.78px;
	}
}



.alcohol-treatment__info-text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.alcohol-treatment__info-text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}


.alcohol-treatment__img {
}

.alcohol-treatment__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.alcohol-treatment__card {
	flex: 0 1 calc(50% - 12px);
}

@media screen and (max-width:678px) {
	.alcohol-treatment__card {
		flex: 0 1 100%;
	}
}


.alcohol-treatment__card-img {
	max-width: 70px;
	max-height: 70px;
	margin-bottom: 32px;
}
.alcohol-treatment__card-title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.78px;
	margin-bottom: 24px;
}

@media screen and (max-width:480px) {
	.alcohol-treatment__card-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 22px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.66px;
	}
}

.alcohol-treatment__card-text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.alcohol-treatment__card-text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

/* difference */

.difference {
}

.difference__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.difference__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}
}

.difference__box {
	display: flex;
	align-items: center;
	gap: 24px;
}

@media screen and (max-width:991px) {
	.difference__box{
		flex-direction: column;
	}
}

.difference__info {
	flex: 0 1 690px;
}

.difference__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.difference__item {
}
.difference__item-title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.96px;
	margin-bottom: 24px;
	position: relative;
	padding-left: 48px;
}

@media screen and (max-width:480px) {
	.difference__item-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.78px;
	}
}

.difference__item-title::after {
	content:url('../images/checked.svg');
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	transform: translateY(-50%);
}

.difference__item-text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.difference__item-text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

.difference__button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 378px;
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
	color: var(--Black, #101010);
	text-align: center;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 18px 24px;
}

.difference__img {
}
.difference__mobile-button {
	display: none;
}

@media screen and (max-width:991px) {
	.difference__button {
		display: none;
	}

	.difference__mobile-button {
		display: flex;
	}
}

@media screen and (max-width:480px) {
	.difference__mobile-button {
		width: 100%;
	}
}

/*  alco-info */

.alco-info {
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
}
.container {
}
.alco-info__content {
	display: flex;
	flex-direction: column;
	gap:100px;
}

@media screen and (max-width:480px) {
	.alco-info__content {
		display: flex;
		flex-direction: column;
		gap:60px;
	}
}

.alco-info__alcowin-cycle {
}

/* alcowin-cycle */

.alcowin-cycle {
}
.alcowin-cycle__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 24px;
}

@media screen and (max-width:480px) {
	.alcowin-cycle__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}
}

.alcowin-cycle__text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.alcowin-cycle__text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

.alcowin-cycle__info {
	display: flex;
	gap: 24px;
}

@media screen and (max-width:991px) {
	.alcowin-cycle__info {
		flex-direction: column;
	}		
}

.alcowin-cycle__img {
	flex: 0 1 486px;
	max-height: 660px;
}


.alcowin-cycle__img img{
	object-fit: contain;
}

@media screen and (max-width:991px) {
	.alcowin-cycle__img {
		flex: 0 1 auto;
		max-height: none;
	}

	.alcowin-cycle__img img{
		object-fit: cover;
	}
}


.alcowin-cycle__list {
	flex:0 1 690px; 
	display: flex;
	flex-direction: column;
	gap:24px;
}
.alcowin-cycle__item {

}

.alcowin-cycle__item-title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.96px;
	margin-bottom: 24px;	
	position: relative;
	padding-left: 48px;
}

@media screen and (max-width:480px) {
	.alcowin-cycle__item-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.78px;
	}
}

.alcowin-cycle__item-title::after {
	content:url('../images/checked-white.svg');
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	width: 38px;
	height: 38px;
	transform: translateY(-50%);
}

.alcowin-cycle__item-text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}


@media screen and (max-width:480px) {
	.alcowin-cycle__item-text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

/* alcowin-composition */

.alco-info__alcowin-composition {
}
.alcowin-composition {
}
.alcowin-composition__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 24px;
}

.alcowin-composition__text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.alcowin-composition__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}

	.alcowin-composition__text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
		margin-bottom: 24px;
	}
}

.alcowin-composition__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr); 
	gap: 24px;
}

@media screen and (max-width:678px) {
	.alcowin-composition__list {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(5, auto); 
	}
}

.alcowin-composition__item {
}

.alcowin-composition__item:nth-child(1){
	grid-area: 1 / 2 / 3 / 3;
}


.alcowin-composition__item:nth-child(2){
	grid-area: 1 / 1 / 2 / 2;
}
.alcowin-composition__item:nth-child(3){
	grid-area: 2 / 1 / 3 / 2;
}
.alcowin-composition__item:nth-child(4){
	grid-area: 3 / 1 / 4 / 2;
}

.alcowin-composition__item:nth-child(5){
	grid-area: 3 / 2 / 4 / 3;
}


@media screen and (max-width:991px) {
	.alcowin-composition__item:nth-child(1){
		grid-area: 1 / 2 / 2 / 3;
	}

	.alcowin-composition__item:nth-child(4){
		grid-area: 2 / 2 / 3 / 3;
	}

	.alcowin-composition__item:nth-child(5){
		grid-area: 3 / 1 / 4 / 2;
	}
}

@media screen and (max-width:678px) {
	.alcowin-composition__item:nth-child(1){
		grid-area: 1 / 1 / 2 / 2;
	}

	.alcowin-composition__item:nth-child(2){
		grid-area: 2 / 1 / 3 / 2;
	}
	.alcowin-composition__item:nth-child(3){
		grid-area: 3 / 1 / 4 / 2;
	}
	.alcowin-composition__item:nth-child(4){
		grid-area: 4 / 1 / 5 / 2;
	}
	.alcowin-composition__item:nth-child(5){
		grid-area: 5 / 1 / 6 / 2;
	}

}


.alcowin-composition__img {
}
.alcowin-composition__item-title {
	display: flex;
	align-items:center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.96px;
}
.alcowin-composition__icon {
	min-width: 80px;
	max-height: 80px;
	border-radius:50%;
	display: block;
	overflow: hidden;
}

.alcowin-composition__item-text{
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.alcowin-composition__item-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.78px;
	}

	.alcowin-composition__item-text{
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
}

/* experts-opinion */

.experts-opinion {
}
.container {
}
.experts-opinion__content {
	position: relative;
	padding-bottom: 96px;
}
.experts-opinion__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.experts-opinion__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
		margin-bottom: 32px;
	}

	.experts-opinion__content {
		padding-bottom: 80px;
	}
}

.experts-opinion__swiper {


}
.swiper {
}
.mySwiper {
}
.experts-opinion__swiper-wrapper {
}
.swiper-wrapper {
}
.experts-opinion__swiper-slide {
}
.swiper-slide {
}

.experts-opinion__swiper-box {
	position: relative;
	display: flex;
}

.experts-opinion__swiper-box * {
	position: relative;
	z-index: 2;
}

.experts-opinion__swiper-box .blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--Blue, #39DBFF);
	backdrop-filter: blur(8.5px);
	-webkit-backdrop-filter: blur(8.5px);
	z-index: 1; /* Щоб блюр не перекривав вміст */
}

.experts-opinion__img {
	flex: 1 0 384px;
}

@media screen and (max-width:991px) {
	.experts-opinion__swiper-box {
		flex-direction: column;
	}

	.experts-opinion__img {
		flex: 1 0 auto;
	}
	
}

.experts-opinion__swiper-box img{
	display: flex;
}

.experts-opinion__info-card {
	padding: 48px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: space-between;
}





.experts-opinion__info-text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 22px;
	font-style: italic;
	font-weight: 600;
	line-height: 150%; /* 33px */
	letter-spacing: -0.66px;
	flex: 1 0 auto;
	margin-bottom: 24px;
	position: relative;
	z-index: 6;
}



.experts-opinion__icon{
	max-width: 32px;
	max-height: 32px;	
	display: flex;
	margin-bottom: 24px;
}

.experts-opinion__about-person {
	background: var(--White, #FFF);
	backdrop-filter: blur(8.5px);
	-webkit-backdrop-filter: blur(8.5px);
	padding: 24px;

	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.66px;
}

.experts-opinion__about-person {
	position: relative;
	display: flex;
}

.experts-opinion__about-person * {
	position: relative;
	z-index: 2;
}

.experts-opinion__about-person .blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--White, #FFF);
	backdrop-filter: blur(8.5px);
	-webkit-backdrop-filter: blur(8.5px);
	z-index: 1; /* Щоб блюр не перекривав вміст */
}

@media screen and (max-width:480px) {
	.experts-opinion__info-card {
		padding: 24px 16px;
		position: relative;
	}

	.experts-opinion__info-card * {
		position: relative;
		z-index: 2;
	}
	
	.experts-opinion__info-card .blur-overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		backdrop-filter: blur(8.5px);
		-webkit-backdrop-filter: blur(8.5px);
		z-index: 1; /* Щоб блюр не перекривав вміст */
	}

	.experts-opinion__info-text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 18px;
		font-style: italic;
		font-weight: 600;
		line-height: 150%; /* 27px */
		letter-spacing: -0.54px;
	}

	.experts-opinion__about-person {
		padding: 16px;
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.54px;
	}
}

.experts-opinion__about-person span{
	font-weight: 600;
}

.experts-opinion__about-person span+span{
	font-weight: 400;
	color: var(--Black, #101010);
}



.experts-opinion__swiper-button-next::after,
.experts-opinion__swiper-button-prev::after{
	display: none;
}

.experts-opinion__swiper-button-next,
.experts-opinion__swiper-button-prev{
	/* position: absolute; */
	bottom: 0px;
	right: 0px;
	top: auto;
	left: auto;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.experts-opinion__swiper-button-next{
	

}
.experts-opinion__swiper-button-prev{
	right: 64px;
	transform: rotate(180deg);
}

/* testimonials */

.testimonials {
	background-image: url('../images/bl8_bg.jpg');
	background-position:  center;
	background-size: cover;
	background-repeat: no-repeat;
}
.container {
}

.testimonials__content {
}

.testimonials__title {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.testimonials__title {
		color: var(--White, #FFF);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}
}

.testimonials__box {
	position: relative;
	padding-bottom: 80px;
	margin-bottom: 24px;
}

.testimonials__swiper {
	overflow: visible;
}

.testimonials__swiper-wrapper {
}

.testimonials__slide {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 100%;
	height: auto;
}

.testimonials__slide * {
	position: relative;
	z-index: 2;
}

.testimonials__slide .blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(16, 16, 16, 0.50);
	backdrop-filter: blur(8.5px);
	-webkit-backdrop-filter: blur(8.5px);
	z-index: 1; /* Щоб блюр не перекривав вміст */
}

.testimonials__rating {
	max-width: 155px;
}

.testimonials__rating img{
	object-fit: contain;
}

.testimonials__person {
	display: flex;
	align-items: center;
	gap: 16px;

	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.testimonials__person {
		color: var(--White, #FFF);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%;
		letter-spacing: -0.48px;
	}
}

.testimonials__icon {
	width:  48px;
	height: 48px;
	overflow: hidden;
	border-radius:50%;
}

.testimonials__person span{
	font-weight: 600;
}

.testimonials__text {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 18px;
	font-style: italic;
	font-weight: 500;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
	position: relative;
	z-index: 10;
}

@media screen and (max-width:480px) {
	.testimonials__text {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	line-height: 150%; /* 24px */
	letter-spacing: -0.48px;
	}
}

.proven-solution__swiper-pagination {
}
.proven-solution__swiper-button-next {
}
.swiper-button-next {
}
.proven-solution__swiper-button-prev {
}
.swiper-button-prev {
}

.testimonials__button {
	display: flex;
	width: 275px;
	height: 60px;
	padding: 0px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
	color: var(--Black, #101010);
	text-align: center;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

@media screen and (max-width:480px) {
	.testimonials__button {
		width: 100%;
	}
}


.testimonials__swiper-button-next::after,
.testimonials__swiper-button-prev::after{
	display: none;
}

.testimonials__swiper-button-next,
.testimonials__swiper-button-prev{
	/* position: absolute; */
	bottom: 0px;
	right: 0px;
	top: auto;
	left: auto;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonials__swiper-button-next{
	

}
.testimonials__swiper-button-prev{
	right: 64px;
	transform: rotate(180deg);
}

.testimonials__swiper-pagination{
	display: inline-flex !important;
 	width: auto !important;
	top: auto !important;
	bottom: 20px !important;
	left: 0 !important;
	right: auto !important;
	position: absolute;
}

.testimonials__swiper-pagination .swiper-pagination-bullet{
	background: #FFF;
	opacity: 0.5;
}

.testimonials__swiper-pagination .swiper-pagination-bullet-active{
	background: #FFF;
	opacity: 1;
}

/* course-expectations */

.course-expectations {
	background: var(--Green, #00E7BC);
}
.container {
}
.course-expectations__content {
}
.course-expectations__title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 60px */
	letter-spacing: -1.5px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.course-expectations__title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 38.4px */
		letter-spacing: -0.96px;
	}
}

.course-expectations__cards {
	display: flex;
	gap: 24px;
	margin-bottom: 48px;
}
.course-expectations__card {
	flex: 0 1 25%;
}

@media screen and (max-width:991px) {
	.course-expectations__cards {
		flex-wrap:wrap;
	}
	.course-expectations__card {
		flex: 0 1 calc(50% - 12px);
	}
}

@media screen and (max-width:580px) {
	.course-expectations__card {
		flex: 0 1 100%;
	}
}

.course-expectations__img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--White, #FFF);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px;
	margin-bottom: 24px;
}
.course-expectations__card-title {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.78px;
	margin-bottom: 12px;
}
.course-expectations__card-text {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
}

.course-expectations__link {
	color: var(--Black, #101010);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.96px;
	text-decoration-line: underline;
}

@media screen and (max-width:480px) {
	.course-expectations__card-title {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 22px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.66px;
	}
	.course-expectations__card-text {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}
	
	.course-expectations__link {
		color: var(--Black, #101010);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 31.2px */
		letter-spacing: -0.78px;
	}
}

/* order */

.order {
	background-image: url('../images/bl10_bg.jpg');
	background-position:  center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}


@media screen and (max-width:991px) {
	.order{
		background-size: 200%;
		background-repeat:no-repeat;
		background-position: 50% 0;
		background-color: #101010;	
		background-image:none;
	}

	.order .overlay {
		position: absolute;
		top: 0;
		left: 0px;
		width: 100%;
		height: 514px;
		/* background: linear-gradient(0deg, #101010 0%, rgba(16, 16, 16, 0.00) 100%); */
	}

	.order .overlay::after {
		content:'';
		width: 100%;
		height: 60px;
		bottom: 0;
		left: 0;
		position: absolute;
		background: linear-gradient(0deg, #101010 0%, rgba(16, 16, 16, 0.00) 100%);
	}
}

.container {
}
.order__content {
	position: relative;
}
.order__title {
	color: var(--White, #FFF);
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
	font-family: Montserrat;
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 72px */
	letter-spacing: -1.8px;
	margin-bottom: 24px;
}

.order__text {
	color: var(--White, #FFF);
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 27px */
	letter-spacing: -0.54px;
	margin-bottom: 48px;
}
.order__sub-title {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.96px;
	margin-bottom: 32px;
}

.order__box {
	margin-bottom: 32px;
	display: flex;
	gap: 24px;
}

@media screen and (max-width:991px) {
	.order__box {
		flex-direction: column;
	}

	.order__title {
		color: var(--White, #FFF);
		text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
		font-family: Montserrat;
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 48px */
		letter-spacing: -1.2px;
	}

	.order__text {
		color: var(--White, #FFF);
		text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
		font-family: Montserrat;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 150%; /* 24px */
		letter-spacing: -0.48px;
	}

	.order__sub-title {
		color: var(--White, #FFF);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 31.2px */
		letter-spacing: -0.78px;
	}
}

.order__info {
}

.order__panel {
	border: 2px dashed var(--Red, #FF1839);
	background: rgba(255, 24, 57, 0.15);
	padding: 16px;
	margin-bottom: 32px;
}

.order__panel-text {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: -0.54px;
}

.order__panel-text br{
	display: none;
}

@media screen and (max-width:480px) {
	.order__panel-text br{
		display: block;
	}
}

.order__panel-text span.red {
	background: var(--Red, #FF1839);
	padding: 4px;
	font-weight: 800;
}
.order__panel-text span.white {
	background: var(--White, #FFF);
	color: var(--Red, #FF1839);
	padding: 4px;
}

.order__panel-text span.white > span:nth-child(1){
	text-decoration:line-through;
}

.order__panel-text span.white > span+span,
.order__panel-text span.white.bold{
	font-weight: 800;
}

.order__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
}

@media screen and (max-width:480px) {
	.order__list {
		gap: 24px;
	}
}

.order__item {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.78px;
	position: relative;
	display: flex;
	gap: 32px;
}


@media screen and (max-width:480px) {
	.order__item {
		color: var(--White, #FFF);
		font-family: Montserrat;
		font-size: 22px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.66px;
	}
}

.order__item::after {
	content:'';
	position: absolute;
	top: 40px;
	left: 15px;
	width: 2px;
	height: calc(100% - 16px);
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
	z-index: 1;
}

@media screen and (max-width:480px) {
	.order__item::after {
		height: calc(100% - 24px);
	}
}

.order__item:last-child:after {
	display: none;
}

.order__number{
	min-width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--Blue-green-liner, linear-gradient(180deg, #39DBFF 0%, #00E7BC 100%));
	z-index: 2;

	color: var(--Black, #101010);
	text-align: center;
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}


.order__form {
	flex: 1 0 486px;
}
.form-container {
}
.form__promo {
}
.form__start-promo {
}
.form__date {
}
.day {
}
.month {
}
.year {
}
.form__end-promo {
}
.form__box {
}
.form__price {
}
.form__old-price {
}
.form__new-price {
}
.form__title {
}
.form-block {
}
.form-block-top {
}
.validate-form {
}
.form__content {
}
.form__row {
}
.form__input-wrapper {
}
.form__input {
}
.first__name {
}
.phone {
}
.password {
}
.valid {
}
.last__name {
}
.input__email {
}
.phonecc {
}
.btn {
}
.form__btn {
}
.button_style_2 {
}
.form__footer {
}
.form__top {
}
.form__bottom {
}
.order__link {
	color: var(--White, #FFF);
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.96px;
	text-decoration-line: underline;
}

@media screen and (max-width:480px) {
	.order__link {
		color: var(--White, #FFF);
		font-family: Montserrat;
		font-size: 26px;
		font-style: normal;
		font-weight: 600;
		line-height: 120%; /* 31.2px */
		letter-spacing: -0.78px;
	}
}

.footer{
	background: var(--Black, #101010);
	padding: 32px 0;
}

.footer__policy{
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	opacity: 0.5;
}

@media screen and (max-width:480px) {
	.footer__policy{
		font-size: 16px;
	}
}