body{
	text-decoration: none;
	box-sizing: border-box;
	font-family: 'Public Sans';
	text-decoration: none;
	overflow-x: hidden;

}
.no-scroll{
	overflow: hidden;
}
.menu__head{
	background: hsl(0, 100%, 100%);
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 5;

}
.head__logo{
	width: 154px;
	height: auto;
}
.nav__button{
	opacity: 0;
	position: relative;
	text-decoration: none;
	color: hsl(0, 100%, 100%);
	font-size: 14px;
	line-height: 200%;
	font-weight: 700;
	background: linear-gradient(to right, #33D35E, #2AB6D9);
  	border-radius: 22px;
  	padding: 8px 32px;
  	transition: opacity 200ms ease;
  	box-sizing: border-box;
  	z-index: 100;
  	width: 160px;
  	height: 44px;
  	pointer-events: none;
}




/*Бургер*/
.burger-icon{
	position: absolute;
	inset: 0;
	
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;

}

.burger__icon--open{
	opacity: 1;
	transform: translateY(6px);
}

.burger__icon--close{
	opacity: 0;
}
.menu.menu__open .burger__icon--open{
	opacity: 0;
}
.menu.menu__open .burger__icon--close{
	opacity: 1;
}

.head_burger{
	position: relative;
	width: 24px;
	height: 24px;
	background: none;
  	border: none;
  	padding: 0;
  	margin: 0;
  	cursor: pointer;
  	appearance: none;
  	-webkit-appearance: none;
}
.menu__list{
	position: fixed;
	top: 80px;
	left: 50%;
	transform: translate(-50%, 10px);
	opacity: 0;
	pointer-events: none;
	
	text-decoration: none;
	background: hsl(0, 100%, 100%);
	list-style: none;
	padding: 32px 0px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	border-radius: 4px;

	width: 90%;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 100;

	
}


.list-item{
	text-decoration: none;
	color: hsl(233, 26%, 24%);
	font-size: 18px;
	line-height: 155%;
	letter-spacing: -0.25px;
	font-weight: 400;
	transition: color 0.3 ease;
}

.list-item:hover{
	color: #30C88F;
}
.menu__overlay{
	position: fixed;
	transform: translateY(70px);
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(45,49,77, 0.85),
		rgba(45,49,77,0)
	);

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 50;



}

.menu.menu__open .menu__list {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.menu.menu__open .menu__overlay{
	opacity: 1;
	pointer-events: auto;
}

/*.menu.menu__open .head__icon-hamburger{
	content: url("images/icon-close.svg");
	width: 17.68px;
}*/






/*Section 1*/
.main__hero{
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding-bottom: 56px;
	padding-left: 24px;
	padding-right: 24px;
	overflow: hidden;
	z-index: 3;
	position: relative;
	justify-content: center;

}
.hero__background{
	position: absolute;
	z-index: 1;
	top: -80px;
	overflow: hidden;
	right: calc((100vw - 100%) / -2);
}
.hero__mockup{
	position: relative;
	width: 325.81px;
	margin: 0 auto;
	height: auto;
	margin-top: -115px;
	z-index: 2;
}

.hero__content{
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
	align-items: center;

}
.hero__title{
	font-size: 40px;
	line-height: 120%;
	font-weight: 300;
	letter-spacing: -0.75%;
	color: hsl(233, 26%, 24%);
}
.hero__desk{
	color: hsl(233, 8%, 62%);
	font-size: 14px;
	line-height: 115%;
	font-weight: 400;
}
.hero__button{
	text-decoration: none;
	color: hsl(0, 100%, 100%);
	font-size: 14px;
	line-height: 200%;
	font-weight: 700;
	background: linear-gradient(to right, #33D35E, #2AB6D9);
  	border-radius: 22px;
  	padding: 8px 32px;
  	transition: opacity 200ms ease;
}
.hero__button:hover{
	opacity: 0.6;
}



/*Section 2*/
.reasons__header{
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	
}

.main__reasons{
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding: 64px 24px;
	background: hsl(220, 16%, 96%);
}

.header__title{

	color: hsl(233, 26%, 24%);
	font-size: 32px;
	line-height: 120%;
	font-weight: 300;
	letter-spacing: -0.5px;
	margin: 0 auto;
	
}

.header__desk{
	margin: 0 auto;
	text-align: center;
	color: hsl(233, 8%, 62%);
	font-size: 14px;
	line-height: 115%;
	letter-spacing: 0px;
	font-weight: 400;
}

.reasons__grid{
	display: grid;
	gap: 32px;
}

.grid__card{
	display: flex;
	gap: 40px;
	flex-direction: column;
	align-items: center;


}
.card__content{
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.card__img{
	width: 72px;
	height: auto;
}
.content__desk{
	margin: 0 auto;
	text-align: center;
	color: hsl(233, 8%, 62%);
	font-size: 14px;
	line-height: 115%;
	letter-spacing: 0px;
	font-weight: 400;
	max-width: 327px;
}

.content__title{
	color: hsl(233, 26%, 24%);
	font-size: 24px;
	line-height: 115%;
	letter-spacing: -0.4px;
	font-weight: 300;
}

/*Section 3*/
.main__articles{
	padding: 64px 12px;
	background: hsl(220, 16%, 97%);
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.articles__title{
	text-align: center;
	color: hsl(233, 26%, 24%);
	font-size: 32px;
	line-height: 120%;
	font-weight: 300;
	letter-spacing: -0.5px;
	margin: 0 auto;
	
}

.article__title:hover{
	color: #30C88F;
}

.articles__grid{
	display: grid;
	gap: 16px;

}
.articles__article{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
	background: hsl(0, 100%, 100%);
	border-radius: 5px;
	margin: 0 auto;
	max-width: 328px;
}
.article__content{
	margin: 0 auto;
	padding: 24px 32px;
	gap: 16px;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 265px;

}
.article__main{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.article__img{
	width: 328px;
	height: 200px;
	border-radius: 5px 5px 0px 0px ;
}
.article__author{
	color: hsl(233, 8%, 62%);
	font-size: 10px;
	line-height: 115%;
	font-weight: 400;
	letter-spacing: 0px;
}
.article__title{
	color: hsl(233, 26%, 24%);
	font-size: 16px;
	line-height: 120%;
	font-weight: 300;
	letter-spacing: -0.25px;
	text-decoration: none;
	transition: color 200ms ease;
}
.article__desk{
	color: hsl(233, 8%, 62%);
	font-size: 14px;
	line-height: 115%;
	font-weight: 400;
	letter-spacing: 0px;
}


/*Footer*/

.footer{
	background: hsl(233, 26%, 24%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 56px 0px;
	gap: 32px;
}
.footer__head{
	display: flex;
	flex-direction: column;
	gap: 24px;

}
.footer__logo{
	width: 153px;
	height: auto;
}
.footer__social-networks{
	display: flex;
	flex-direction: row;
	gap: 16px;
}
.nav-links{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.nav-links__part-1{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nav-links__part-2{
display: flex;
	flex-direction: column;
	gap: 16px;
}

.nav-links__link{
	text-align: center;
	text-decoration: none;
	color: hsl(0, 100%, 100%);
	font-size: 14px;
	line-height: 115%;
	font-weight: 400;
	letter-spacing: 0px;
	transition: color 200ms ease;
}
.nav-links__link:hover{
	color: #30C88F;
}

.footer__footer{
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
	
}
.footer__button{
	text-align: center;
	display: inline;

	text-decoration: none;
	color: hsl(0, 100%, 100%);
	font-size: 14px;
	line-height: 200%;
	font-weight: 700;
	background: linear-gradient(to right, #33D35E, #2AB6D9);
  	border-radius: 22px;
  	width: 43%;
  	margin: 0 auto;
  	padding: 8px 32px;
  	transition: opacity 200ms ease;
}

.footer__button:hover{
	opacity: 0.6;
}

.footer__rights{
	max-width: 224px;
	color: hsl(0, 100%, 100%);
	font-size: 14px;
	line-height: 115%;
	font-weight: 400;
	opacity: 0.5;
}





/*Адаптация Планшет */
@media (min-width: 768px){
	.menu__head{
		padding: 24px 80px;
	}
	.hero__mockup{
		width: 602.23px;
		height: auto;
		margin-top: -215px;
	}
	.hero__background{
		content: url("images/bg-intro-desktop.svg");
		left: 50%;
		top: 7%;
		transform: translate(-50%, -50%);
		width: 1019.2px;
		height: auto;
	}
	.hero__title{
		font-size: 56px;
		font-weight: 300;
	}
	.hero__content{
		max-width: 447px;
		margin: 0 auto;
	}
	.hero__desk{
		max-width: 447px;
		font-size: 18px;
	}
	.reasons__header{
		font-size: 40px;
	}
	.reasons__header{
		max-width: 529px;
		margin: 0 auto;

	}
	.header__desk{
		font-size: 18px;
	}
	.grid__card{
		max-width: 265px;
		margin: 0 auto;
		

	}
	.card__img{
		align-self: flex-start;
	}
	.card__content{
		text-align: left;
	}
	.content__desk{
		text-align: left;
		max-width: 280px;
		font-size: 16px;
	}
	.content__title{
		text-align: left;
		font-size: 24px;
	}
	.reasons__grid{
		grid-template-columns: repeat(2, 265px);
		gap: 56px;
		justify-content: center;
	}
	.main__reasons{
		gap: 72px;
	}

	.articles__title{
		font-size: 40px;
	}
	.articles__grid{
		grid-template-columns: repeat(2, 328px);
		justify-content: center;  
	}

}


/*Адаптация Комп */
@media (min-width: 1040px){
	/*Heading*/
	.menu__head{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 16px 84px;
	}
	.nav__button{
		opacity: 1;
		pointer-events: auto;
		/*transform: none;*/
		/*position: static;*/

	}
	.head_burger{
		display: none;
	}
	.nav__button:hover{
	opacity: 0.6;
	}
	.burger-icon{
		opacity: 0;
		pointer-events: none;
		/*transform: translate(-400px, -400px);*/
	}
	.menu__list{
		opacity: 1;
		position: absolute;
		background: none;
		pointer-events: visible;
		flex-direction: row;
		justify-content: center;
		top: -20px;
		gap: 32px;

	}
	.list-item{
		color: hsl(233, 8%, 62%);
		transition: color 200ms ease;
		transition: border-bottom: 200ms ease;
		padding: 0px 0px 12px 0px; 
	}
	.list-item:hover{
		border-bottom: 2px solid hsl(136, 64%, 51%);
		color: black;
	}



	/*Section 1*/
	.main__hero{
		flex-direction: row-reverse;
		
		padding: 0px 84px 112px;

	}
	.hero__content{
		align-items: flex-start;
		margin: 0px;
		z-index: 6;

		
	}
	.hero__background{
		z-index: 0;
		transform: translate(-4%, -28%);
		width: 1000px;
		height: auto;
	}
	.hero__mockup{
		width: 617px;
		height: 778px;
		z-index: 600;
		transform: translate(28%, 10%);
		overflow: visible;
	}
	.hero__title{
		text-align: left;
	}
	.hero__desk{
		text-align: left;
	}

	/*Section 2*/
	.main__reasons{
		z-index: 60;
		margin-top: -100px;
		padding: 84px;

	}
	.header__title{
		text-align: left;
		margin: 0;
	}
	.header__desk{
		text-align: left;
		align-items: center;
		line-height: 155%;
	}
	.reasons__header{
		max-width: 680px;
		text-align: left;
		margin: 0px;

	}
	

	.reasons__grid{
		grid-template-columns: repeat(4, 265px);
		justify-content: space-between;
	}
	.content__desk{
		width: 254px;
		line-height: 166%;
		font-size: 16px;
		letter-spacing: -0.25px;
	}

	/*Section 3*/
	.articles__title{
		margin: 0;
		text-align: left;
	}
	.main__articles{
		padding: 84px;
		gap: 56px;
	}
	.articles__grid{
		grid-template-columns: repeat(4, 328px);
		justify-content: space-between;
	}

	/*Footer*/
	.footer{
		flex-direction: row;
		justify-content: space-between;
		padding: 56px 84px;

	}
	.head__links{
		display: flex;
		flex-direction: column;
		gap: 56px;
	}
	.footer__head{
		flex-direction: row;
		align-items: center;
		gap: 120px;

	}
	.nav-links{
		flex-direction: row;
		gap: 24px;

	}
	.nav-links__part-1{
		width: 160px;
		gap: 24px;
		text-align: left;
		
	}
	.nav-links__part-2{
		width: 160px;
		gap: 24px;
	}

	.nav-links__link{
		text-align: left;
	}
	.footer__footer{
		margin: 0;
	}
	.footer__button{
		transform: translateY(-8px);
		align-self: flex-end;
		margin: 0;
	}
	.footer__rights{
		transform: translateY(-8px);
	}
	













}