body{
	background-image: url(../image/home-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.main{
	width: 100%;
	height: calc(100vh - 17rem);
	justify-content: space-around;
	padding: 0 var(--padding);
	align-items: center;
}
.main article,
.main aside{
	width: 35%;
	height: 100%;
	justify-content: center;
	flex-direction: column;
}
.main article h1{
	font-size: 3rem;
	color: var(--blue);
	margin-bottom: 2.4rem;
}
.main article p{
	font-size: 1.6rem;
	color: var(--black);
	margin-bottom: 1rem;
}
.main article p a{
	color: var(--blue);
}
.main article ul{
	font-size: 1.6rem;
	color: var(--black);
	padding-left: 2rem;
	margin-bottom: 2rem;
}
.main article a.main-booking{
	font-size: 1.4rem;
    width: 18rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    color: white;
    border-radius: 50px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}


.main-ellipse{
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background-image: url(../image/elements/ellipse.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30rem 30rem;
}
.main-ellipse img{
	width: 17rem;
	height: 17rem;
}

.footer{
	height: 6rem;
	justify-content: space-around;
	padding: 0 var(--padding);
}
.footer div{
	width: 35%;
}
.footer img{
	width: 3rem;
	height: 3rem;
	margin-right: 2rem;
}

/* media */
@media (max-width: 769px) {
	.footer div{
		width: 45%;
	}
	.main article,
	.main aside{
		width: 45%;
	}
}
@media (max-width: 467px) {
	.main aside{
		display: none;
	}
	.main article{
		width: 100%;
	}
}