@font-face {
	font-family: 'roboto';
	font-style: normal;
	font-weight: 300;
	/*src: url(../font/opensans-regular-webfont.woff);
	src: url(../font/opensans-regular-webfont.woff2);*/
	src: url(../font/Roboto-Light.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'roboto';
	font-style: normal;
	font-weight: 500;
	/*src: url(../font/opensans-semibold-webfont.woff);
	src: url(../font/opensans-semibold-webfont.woff2);*/
	src: url(../font/Roboto-Medium.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'roboto';
	font-style: normal;
	font-weight: 700;
	/*src: url(../font/opensans-bold-webfont.woff);
	src: url(../font/opensans-bold-webfont.woff2);*/
	src: url(../font/Roboto-Bold.ttf);
	font-display: swap;
}

@font-face {
	font-family: 'roboto';
	font-style: normal;
	font-weight: 900;
	src: url(../font/Roboto-Black.ttf);
	font-display: swap;
}
.myBtn {
  position: absolute;
	top: -25px;
  right: 10px;
  z-index: 5;
	font-size: 10px;
	cursor: pointer;
	color:  #018FD9;
	display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: center;
	font-weight: 700;
}
.myBtn button{
  width: 50px;
  height: 50px;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 40px;
  background-image: url(../img/up_arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}
.button{
	background: linear-gradient(213.48deg, #393DBC 11.72%, #161857 86.27%);
	border-radius: 50px;
	font-size: 20px;
	padding: 10px 25px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	transition: all 0.3s ease;
	max-width: 150px;
	position: relative;
	width: 100%;
	text-align: center;
	cursor: pointer;
}
.button:hover{
	background: linear-gradient(0deg, rgba(0, 224, 255, 0.25), rgba(0, 224, 255, 0.25)), linear-gradient(213.48deg, #393DBC 11.72%, #161857 86.27%);
	color: #fff;
}
.button:active{
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), linear-gradient(213.48deg, #393DBC 11.72%, #161857 86.27%);
	color: #fff;
}
body {
	margin: 0;
	font-family: 'roboto';
	font-weight: 300;
	min-width: 320px;
	color: #4F4F4F;
	background-color: rgba(60, 60, 60, 0.1);
}

ul {
	padding-left: 0px;
	margin: 0;
}

li {
	list-style-type: none;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3 ease;
}
a:hover,
a:focus{
	color: #01017C;
}
img{
	width: 100%;
}
h2,h3{
	margin: 0 0 20px 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	text-transform: uppercase;
	display: flex;
	justify-content: space-between;
    align-items: center;

}
h2{
	color:#01017C ;
	border-bottom: 1px dashed #BDBDBD;
	padding-bottom: 10px;
}
h3{
	color: #FFFFFF;
}
h2 p,
h3 p{
	font-weight: 300;
font-size: 16px;
line-height: 19px;
padding-bottom: 10px;
}
.container {
	min-width: 290px;
	width: min(100% - 30px, 1240px);
	margin: auto;
}
p{
	margin: 0;
}
.logo{
	background: url(../img/logo.svg) no-repeat center;
	background-size: contain;
	width: 120px;
	height: 50px;

}
.logo-white{
	background: url(../img/logo-white.svg) no-repeat center;
	background-size: contain;
	z-index: 11;
}

.indication__content,
.compound__content,
.overdose__content,
.save__content{
	max-width: 760px;
}



/*header*/
.header{
	position: relative;
}
.header .container{
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
}
.nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 15px 40px;
	max-width: 70%;
	font-weight: 600;
}
.nav div{
	border-bottom: 1px dashed rgba(1, 1, 124, 0.5);
	padding-bottom: 3px;
	text-transform: uppercase;
}
/*burger*/

.header__humburger-btn {
	display: none;
}

.header__hamburger-line {
	height: 5px;
	display: inline-block;
	-webkit-box-align: center;
	align-items: center;
	cursor: pointer
}

.header__hamburger {
	position: relative;
	width: 24px;
	height: 3px;
	border-radius: 25px;
	background: linear-gradient(213.48deg, #393DBC 11.72%, #161857 86.27%);
	-webkit-transition: .5s;
	transition: .5s;
	z-index: 99;
	box-sizing: border-box
}

.header__hamburger::before {
	content: '';
	position: absolute;
	top: 10px;
	width: 12px;
	height: 3px;
	border-radius: 25px;
	right: 0;
	background: linear-gradient(213.48deg, #393DBC 11.72%, #161857 86.27%);;
	-webkit-transition: .5s;
	transition: .5s;
	box-sizing: border-box
}

.header__hamburger::after {
	content: '';
	position: absolute;
	top: -10px;
	width: 24px;
	height: 3px;
	border-radius: 25px;
	background: linear-gradient(213.48deg, #393DBC 11.72%, #161857 86.27%);;
	-webkit-transition: .5s;
	transition: .5s
}

.burger__btn--active::before {
	top: 50%;
	background: #FFFFFF;
	transform: rotate(45deg);
	width: 24px;
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger__btn--active::after {
	top: 50%;
	background: #FFFFFF;
	transform: rotate(-45deg);
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger__btn--active.burger__line {


	transform: scale(0);
	transition: transform 0.3s ease-in-out;
}
.header__hamburger.burger__btn--active{
	background: none;
}
.menu {
	padding: 30px 0;
	color: #FFFFFF;
	width: 100%;
	max-width: 100vw;
	height: 100vh;
	visibility: hidden;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 30px;
	right: 0;
	top: 0;
	background: linear-gradient(180deg, #018FD9 0%, #44C4E7 100%);
	position: fixed;
	-webkit-transition: .5s;
	transition: .5s;
	z-index: 10;
	min-width: 320px;
}
.menu__item {
	font-size: 43px;
	text-align: right;
}

.header__menu-active.menu{
	display: flex;
	visibility: inherit;
	overflow: hidden;
}
.header__menu-active.menu div{
	display: inline-block;
	border-bottom: 1px dashed rgba(255,255,255, 0.5);
}

main > div,
.save .title__description{
	margin-bottom: 40px;
}
/*hero*/
.hero{
	padding-top: 15px;
}
.title__description{
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
	margin:10px 0;
}
.hero .container{
	color: #FFFFFF;

}
.hero__content{
	background: url(../img/hero-bck.png) no-repeat center;
	background-size: cover;
	border-radius: 25px;
	box-shadow: 0px 4px 30px rgba(0, 3, 121, 0.1);
	border-radius: 10px;
	position: relative;
	padding: 20px;
	height: 27vw;
	max-height: 380px;

}
.hero .button{
	position: absolute;
	bottom: 20px;
	right: 20px;
}
/*.hero__content::before
{
	content: '';
	bottom: -20px;
	left: -20px;
	background: url(../img/icon-3.svg) no-repeat center;
	background-size: contain;
	width: 56px;
	height: 92px;
	position: absolute;
	z-index: -1;
}*/
/*.hero__content::after,
.save__content::after{
	content: '';
	top: -15px;
	right: -15px;
	background: url(../img/icon-1.svg) no-repeat center;
	background-size: contain;
	width: 54px;
	height: 90px;
	position: absolute;
}*/
/*.hero__text{
	padding: 20px 0 0 0;
}
.hero__text > div:first-child{
	display: inline-block;
	margin-bottom: 10px;
}
.hero__subtitle{
	font-weight: 500;
font-size: 20px;
line-height: 23px;
letter-spacing: 0.2em;
text-align: right;
}
.hero__title{
	font-weight: 900;
font-size: 45px;
line-height: 53px;
}
.hero_description{
	font-weight: 500;
font-size: 16px;
margin-bottom: 20px;
}
.hero__product{
	aspect-ratio: 323 / 235;
	width: auto;
}
/*.hero_woman img{
	width: 100%;
	aspect-ratio: 249/374 ;
	position: relative;
	bottom: -30px;
}*/
/*description*/
.description .title__description{
	font-weight: 900;
	font-size: 14px;
	line-height: 140%;
}
/*instruction*/
.instruction__item{
	padding-left: 50px;
	position: relative;
	margin-bottom: 20px;
}
.instruction__item:not(:last-child){
	margin-bottom: 30px;
}
.instruction__item::after{
	content: '';
	width: 40px ;
	height: 40px;
	left: 0;
	top: 50%;
	position: absolute;
	transform: translate(0, -50%);
	
}
.instruction__item:nth-child(1):after{
	background: url(../img/instruction-1.png) center no-repeat;
	
}
.instruction__item:nth-child(2):after{
	background: url(../img/instruction-2.png) center no-repeat;
	
}
.instruction__item:nth-child(3):after{
	background: url(../img/instruction-3.png) center no-repeat;
	
}
/*indication*/
.indication__content{
	background: url(../img/indications-bck.png) center no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: auto;
	padding: 120px 40px 40px 40px;
	color: #FFFFFF;
	border-radius: 10px;
	position: relative;
}
.indication__content::before{
content: '';
	top: 55px;
	left: 50%;
	background: url(../img/Indications-woman.png) no-repeat center;
	background-size: contain;
	width: 149px;
	height: 158px;
	position: absolute;
	transform: translate(-50%, -50%);
	display: block;

}
/*.indication__content::after{
	content: '';
	top: 85px;
	left: -26px;
		background: url(../img/icon-4.svg) no-repeat center;
		background-size: contain;
		width: 48px;
		height: 53px;
		position: absolute;
	
	}*/
.indication__content h3{
	text-align: center;
}
.indication__item{
	
	position: relative;
	min-height: 60px;
	display: grid;
	grid-template-columns: 1fr 6fr;
	align-items: center;
	max-width: 390px;
	gap: 15px;
}

.indication__item::before{
	content: '';
	width: 65px ;
	height: 65px;
	display: inline-block;
}
.indication__item:nth-child(1):before{
	background: url(../img/Indications-1.svg) center no-repeat;
	background-size: contain;	
	
}
.indication__item:nth-child(2):before{
	background: url(../img/Indications-2.svg) center no-repeat; 
	background-size: contain;	
	
}
.indication__item:nth-child(3):before{
	background: url(../img/Indications-3.svg) center no-repeat; 
	background-size: contain;	      
	
}
.indication__item:nth-child(4):before{
	background: url(../img/Indications-4.svg) center no-repeat; 
	background-size: contain;	       
	
}
.indication__item:nth-child(5):before{
	background: url(../img/Indications-5.svg) center no-repeat;
	background-size: contain;	
	
}
.indication__item:not(:last-child):after{
	content: '';
	position: absolute;
	left: 29px;
  bottom: -4px;
	background: url(../img/indications-icon.svg) center no-repeat;
	background-size: contain;
	height: 11px;
	width: 5px;
}

/*compound*/
.compound{
	padding: 20px 0;
}
.compound__content{
	background: rgba(253, 253, 253, 0.2);
	box-shadow: 0px 4px 20px rgba(0, 1, 116, 0.1);
	/*backdrop-filter: blur(5px);*/
	border-radius: 10px;
	padding: 30px;
	margin: auto;
	position: relative;
}
/*.compound__content::after{
	content: '';
	bottom: -20px;
	left: -20px;
	background: url(../img/icon-2.svg) no-repeat center;
	background-size: contain;
	width: 56px;
	height: 92px;
	position: absolute;
	z-index: -2;
}
.compound__content::before{
	content: '';
	top: -20px;
	right: -20px;
	background: url(../img/icon-2.svg) no-repeat center;
	background-size: contain;
	width: 56px;
	height: 92px;
	position: absolute;
	z-index: -2;
}*/
.compound__content-blur{
	position: relative;

}
.compound__content-blur::after{
	content: '';
	top: -30px;
	right: -30px;
	bottom: -30px;
	left: -30px;
	backdrop-filter: blur(5px);
	position: absolute;
	z-index: -1;
	border-radius: 10px;
}
.compound__item{
	position: relative;
	display: flex;
	margin-left: 0;
	padding: 0;
	justify-content: space-between;
	gap: 10px;
	white-space: nowrap;
}
.compound__item:not(:last-child){
	margin-bottom: 10px;
}
.compound__item::before{

	width: 100%;
	height: 1em;
	content: '';
	opacity: .4;
	border-bottom: 1px dashed #404040;
	flex-grow: 1; /* Линия занимает всё доступное пространство */
	order: 2; /* Выводим вторым */
}
.compound__item p{
	order: 3;
	font-weight: 700;
}
/*overdose*/
.overdose__content{
	background: linear-gradient(180deg, #018FD9 0%, #44C4E7 100%);
box-shadow: 0px 4px 30px rgba(0, 3, 121, 0.15);
border-radius: 10px;
padding: 30px;
margin: auto;
position: relative;
}
.overdose__content::after{
	content: '';
	width: 65px ;
	height: 65px;
	left: 50%;
	top: 50%;
	position: absolute;
	width: 113px;
	height: 111px;
	background: linear-gradient(180deg, #018FD9 0%, #44C4E7 100%);
	transform: translate(-50% , 0);
	border-radius: 100px;
	z-index: -1;
}
.overdose__content > div{
	max-width: 560px;
	margin: auto;
}
.overdose__text{
	color: #FFFFFF;
}

/*save*/
.save__content{
	position: relative;
	background: url(../img/save-bck.png) center no-repeat;
	background-size: cover;
	border-radius: 10px;
	box-shadow: 0px 4px 30px rgba(0, 1, 116, 0.15);
	color: #FFFFFF;
	border-radius: 10px;
	display: grid;
	grid-template-columns:1fr 1fr;
	grid-template-rows: 1fr 1fr;
  justify-content: center;
	gap: 20px;
	padding: 50px 20px;
	margin: auto;
	align-items: end;
}
/*.save__content::before{
	content: '';
	bottom: -20px;
	left: -20px;
	background: url(../img/icon-2.svg) no-repeat center;
	background-size: contain;
	width: 56px;
	height: 92px;
	position: absolute;
	z-index: -2;
}*/
.save__content picture{
	grid-row: span 2;
}
.save__content-title{
	font-weight: 500;
	font-size: 32px;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.save__content-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.save__content-title span{
	font-size: 20px;
}
.save__content-text{
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}
.save .button{
	margin-bottom: auto;
}
/*footer*/

.footer{
	position: relative;
	background:  linear-gradient(180deg, #018FD9 0%, #44C4E7 100%);
	color: #FFFFFF;
}
.footer ul{
display: flex;
justify-content: space-around;
padding: 50px 0;
}
.footer ul li{
	font-size: 12px;
	line-height: 150%;
	text-align: center;
	padding: 0 20px;
}
.footer ul li > p {
}
.footer__dotted{
	border-right: 1px dashed #FFFFFF ;
}


@media (max-width: 1024px) {
	.nav{
		display: none;
	}
	.header__humburger-btn{
		display: block;
	}

}
@media (max-width: 768px){
	.hero__content{
		background: url(../img/hero-bck-m.png) no-repeat center;
		background-size: cover;
		border-radius: 25px;
		height: 39vw;
		display: grid;
		grid-template-columns: 2fr 1fr;
	}
	.button{
		font-size: 16px;
		max-width: 149px;
		padding: 5px 15px;
	}
	.title__description-none,
	.compound__list{
		display: none;
		opacity: 0;
	}
	.arrow-open span{
		display: inline-block;
		text-align: right;
		background: url(../img/arrow.svg) center no-repeat;
		width: 16px;
		height: 16px;
		transition: all 0.3s ease;
	}
	.open .title__description-none,
	.open .compound__list{
		display: block;
		opacity: 1
		;
	}
	.open .arrow-open span{
		transform: rotate(180deg);
	}
	.indication__content,
	.compound__content,
	.overdose__content,
	.save__content{
		max-width: 522px;
	}
	.logo{
		width: 81px;
		height: 34px;
		background: url(../img/logo-s.svg) no-repeat center;
		background-size: contain;
	}
	.logo-white{
		background: url(../img/logo-white.svg) no-repeat center;
		background-size: contain;
		z-index: 11;
	}
	.hero__content{
		padding: 20px 40px;
	}
	.hero_woman img{
		position: absolute;
		width: auto;
		bottom: 0;
		right: 5%;
	}
	.hero__text > div {
		padding-left: 70px;
	}
}
@media (max-width: 600px){
	.hero__content{
		background: url(../img/hero-bck-s.png) no-repeat center;
		background-size: cover;
		border-radius: 25px;
		height: 110vw;
		max-height: 100%;
		min-height: 350px;
	}
	.hero__content .button{
		transform: translate( -50% , 0);
		bottom: 20px;
		right: -12%;
	}
	.hero_woman img {
	right: -15px;
	width: 80%;
	}
	.hero__text > div{
		padding-left: 0;
	}
	.hero__product{
		padding-bottom: 90px;
	}
	.hero__text{
		padding: 40px 0 0 0;
	}
}
@media (max-width: 515px){
	.hero_woman img {
		width: 177px;
	height: 288px;
		}
}
@media (max-width: 460px){
	.save__content{
		background: url(../img/save-bck-s.png) center no-repeat;
		background-size: cover;
		justify-items: center;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		gap: 15px;
	}
	body{
		font-size: 14px;
	}
	h2,h3{
		font-size: 16px;
	}
.footer{
	font-size: 12px;
}
.footer ul{
	flex-direction: column;
	align-items: center;
}
.footer__dotted{
	margin: 20px 0;
	border-bottom: 1px dashed #FFFFFF;;
}
main > div{
	overflow: hidden;
}
.indication{
	padding-top: 20px;
}
.save__content-title{
	line-height: 24px;
}
.save__content-text{
	font-size: 10px;
}

.save__content-container{
	grid-row: 1;

}
main > div, .save .title__description{
	margin-bottom: 30px;
}
.instruction__item::after{
	top: 0;
	transform: translate(0,0);
}
.instruction__item:not(:last-child){
	margin-bottom: 10px;
}
.header .container{
	padding: 15px 0;
}
.hero__title{
	font-size: 32px;
	line-height: 24px;
}
.hero__subtitle{
	font-size: 12px;
}
.hero_description{
	font-size: 10px;
}
.compound__item{
	font-size: 12px;
}
.compound__content{
	padding: 15px;
}
.indication__content{
	padding: 140px 10px 20px 10px;
}
.save__content-container{
	align-items: center;
}
}
