.promo{
	height: 88vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	
}

.promo::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	z-index: 1;
}

.promo .container{
	height: 100%;
}

.promo__wrapper{
	position: relative;
	z-index: 2;
	display: flex;
	height: 100%;
	padding: 7rem 0;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.promo__content{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.promo__title{
	color: white;
	font-family: 'Open sans';
	font-size: 5rem;
	line-height: 100px;
}

.promo__date{
	color: white;
	font-family: 'Open sans';
	font-size: 1.5rem;
}

.promo__city{
	color: white;
	font-family: 'Open sans';
	font-size: 1rem;
}

.promo__btn{
	width: 240px;
	height: 60px;
	background-color: #97c680;
	transition: all .3s;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-family: 'Open sans';
	font-size: 1rem;
	font-weight: 600;
	padding: 0 1rem;
	animation: pulse 1.5s infinite;
	margin-top: 3rem;
}

.promo__btn:hover{
	background-color: #feba88;
	animation-play-state: paused;
}

.about{
	padding: 4rem 0;
}

.about__content{
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
}

.about__img{
	width: 60%;
	overflow: hidden;
	border-radius: 15px;
}

.about__img img{
	object-fit: contain;
	object-position: center;
	width: 100%;
	height: 100%;
}

.about__decr{
	width: 40%;
	align-self: center;
	font-family: 'Open sans';
	font-size: 1.1rem;
}


.direction{
	padding: 4rem 0;
}

.direction__wrapper{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px; 
	height: 600px;
}


.direction__item{
	border-radius: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	padding: 1rem 1rem;
}

.direction__item::before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.direction__descr{
	position: relative;
	z-index: 2;
	color: white;
	font-family: 'Open sans';
	font-size: 1.2rem;
}

.direction__item:nth-child(1){
	grid-area: 1 / 1 / 3 / 3;
}

.direction__item:nth-child(2){
	grid-area: 1 / 3 / 2 / 5;
}

.direction__item:nth-child(3){
	grid-area: 2 / 3 / 3 / 5;	
}

.direction__item:nth-child(4){
	grid-area: 1 / 5 / 3 / 7;
}

.direction__item:nth-child(5){
	grid-area: 3 / 1 / 5 / 3;
}

.direction__item:nth-child(6){
	grid-area: 3 / 3 / 5 / 5;
}

.direction__item:nth-child(7){
	grid-area: 3 / 5 / 5 / 7;
}

.direction__item:nth-child(8){
	grid-area: 5 / 1 / 6 / 4;
}

.direction__item:nth-child(9){
	grid-area: 5 / 4 / 6 / 7;
}



.pack{
	padding: 4rem 0;
}

.pack__content{
	display: flex;
	gap: 2rem;
}

.pack__item{
	width: 42%;
	height: 450px;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 2px solid #97c680;
	border-radius: 30px;
	padding: 2rem 1.5rem;
}


.pack__name{
	font-family: 'Open sans';
	font-size: 1.6rem;
	font-weight: 600;
}

.pack__list{
	list-style-type: disc;
	padding-left: 20px;
	font-size: 1rem;
	margin-top: 1rem;

}


.pack__button button{
	background-color: #97c680;
	border-radius: 15px;
	width: 220px;
	height: 60px;
	border: none;
	font-size: 1.3rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s;
}

.pack__button button:hover{
	background-color: #feba88;
	
}

.contact{
	padding: 4rem 0;
}

.contact__name{
	font-family: 'Open sans';
	font-size: 1.4rem;
}

.contact__content{
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.contact__num{
	font-size: 1.5rem;
	color: #97c680;
}

.contact__info{
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (max-width: 480px) {
	.pack{
		padding: 2rem 0;
	}
	.pack__content{
		flex-direction: column;
	}
	.pack__item{
		width: 100%;
	}
	.pack__title{
		font-size: 2rem;
	}
	.promo__title{
		font-size: 2rem;
		line-height: 40px;
	}
	.about__content{
		flex-direction: column;
	}
	.about__img{
		width: 100%;
	}
	.about__decr{
		width: 100%;
	}
	.direction__wrapper{
		display: flex;
		flex-wrap: wrap;
		height: 100%;
	}
	.direction__item{
		width: 300px;
		height: 150px;
		
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.promo__title{
		font-size: 4rem;
		line-height: 80px;
	}
	.about__content{
		flex-direction: column;
	}
	.about__img{
		width: 100%;
	}
	.about__decr{
		width: 100%;
	}
}


@media (min-width: 768px) and (max-width: 991px) {
	.about__content{
		flex-direction: column;
	}
	.about__img{
		width: 100%;
	}
	.about__decr{
		width: 100%;
	}
}