body{
	background-color: #FCEDD1;
	text-align: center;
	margin: 0;
	font-family: Arial;
}

a {
	text-decoration:  none;
}

.logo {

	margin: auto;
    height: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container{
	min-height: 100vh;
}

.content {
	height: 20vh;
    overflow: hidden;
    display: flex;
	flex-direction: column;
}

.content-nav {
	width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

h1 {
	font-family: Arial;
    font-size: 60px;
    font-weight: 700;
	margin: 0 auto 20px auto;
}

.footer {
	position: relative;
	min-height: 60vh;
    height: 60vh;
	overflow: hidden;
}

.footer .mask {
	background-color: #FCBC3A;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 70%;
	z-index: -1;
}
.footer-image {
	height: calc(100% - 5vh);
    width: 100%;
}

.footer-image img {
	width: auto;
    height: 100%;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 25px;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    margin: 0 10px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
}

.btn::after {
	content: '';
	background-image: url('arrow.svg');
	width: 17px;
    height: 16px;
	transform: rotate(180deg);
}

.btn.back::after {
	transform: rotate(0deg);
}

.desktop {
	display:block;
}
.mobile {
	display: none;
}

@media (max-width:767.98px) {
	.container {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.logo {
		height:auto;
		padding:50px 0;
		height: auto;
		margin: 0 auto;
	}
	.logo img {
		width: auto;
		height: auto;
		max-width: 40vw;
	}
	
	.content {
		height: auto;
	}
	
	.footer {
		height: auto;
		min-height: auto;
		display: flex;
	}
	.footer .mobile {
		margin-top: auto;
		width: 100%;
		height: auto;
	}
	
	h1 {
		font-size: 35px;
		margin: 0 auto 20px auto;
	}
	.desktop {
		display:none;
	}
	.mobile {
		display: block;
	}
}