@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@font-face {
	font-display: swap;
	font-family: 'Alumni Sans Collegiate One';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/alumni-sans-collegiate-one-v5-latin_latin-ext-regular.woff2') format('woff2');
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', serif;
}
body {
    height: 100vh;
    width: 100vw;
}
#top {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
#top::before{
    content:'';
    position: absolute;
    bottom: 0;
    left: 0;
    height:200px;
    width: 100%;
    background:linear-gradient(to top,#fff,transparent);
    z-index: 1000;
}
section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
section  #mountain_left {
	width: auto;
}
section  #mountain_right {
	left: unset;
	right: 0px;
	width: auto;
}
#text{
	font-family: 'Alumni Sans Collegiate One';
	font-weight: normal;
    position: relative;
    color:#AA4A44;
    font-size: 20rem;	
	position: relative;
	z-index: 5000;
}
#sec {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
    padding:100px;
}
#sec .sec-left {
	width: 50%;
}
#sec .sec-right {
	width: 50%;
}
#sec iframe {
	margin-top: 40px;
	width: 100%;

}
#sec img {
	border: 2px solid #AA4A44;
	border-radius: 40px;
	padding: 2px;
	position: relative;
}
#sec h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    color:#AA4A44;
}
#sec p {
	display: flex;
	align-items: center;
    font-size: 1.5rem;
  	line-height: 3rem;	
    color:#AA4A44;
}
#sec p:first-of-type {
	font-size: 2rem;
	margin-bottom: 40px;
}
#sec p svg {
	margin-right: 10px;
	fill:#888;
}

#sec p a {
	color:#AA4A44;
	font-weight: bold;
	text-decoration: none;
}

footer {
	color: #fff;
	margin-top:30px;
	display:flex;
	padding: 20px 100px;
	align-items: flex-start;
	background-color:#AA4A44;
	text-align: left;
}
  
@media only screen and (max-width: 600px) {
	#clouds_1,
	#clouds_2,
	#mountain_left,
	#mountain_right {
		display: none;
	}
	#top::before{
		height: 100px;
	}
	#text {
		font-size: 6rem;	
	}
	#sec {
		padding: 20px;
		flex-wrap: wrap;
		flex-direction: column;
	}
	#sec .sec-left,
	#sec .sec-right {
		width: 100%;
	}
	#sec .sec-right {
		padding-top: 40px;
	}
	#sec img {
		border-radius: 20px;
	}
	#sec h2 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}
	#sec p {
		font-size: 1rem;
		line-height: 1.7rem;
	}
	#sec p:first-of-type {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}	
	footer {
		margin-top: 20px;
		padding: 20px;
	}
}