/**
 * Reset
 */
 html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,q,small,strong,sub,sup,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;margin:0;padding:0}
 article,aside,figure,figure img,figcaption,hgroup,footer,header,nav,section,video,object{display:block}
 figure{position:relative}
 figure img{width:100%}
 
 ol,ul, ul li, ol li {
   margin: 0;
   padding: 0;
   line-height: 1em;
 }
 
 *, *::before, *::after {
	 box-sizing: border-box;
 }
 
 html {
	 position: relative;
 }
 
 html, body {
	 background-color: #fff;
	 font-feature-settings: 'ss02' on;
	 font-weight: normal;
	 min-height: 100%;
	 font-family: 'Space Grotesk';
 }
 
 input, button {
	 font-feature-settings: 'ss02' on;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 a {
	 color: inherit;
	 text-decoration: none;
 }
 
 li {
	 list-style: none;
 }
 
 *:focus, textarea:focus, input:focus {
	 outline: 0;
 }

/**
 * Container principal
 */
 .container {
	width: 100%;
	max-width: 1070px;
	padding-left: 10px;
	padding-right: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


html, body {
	background: #FFC9B5;
}

.main {
	position: relative;
}

.main-header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 13px;
	border-bottom: 1px solid #000000;
}

.main-content {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

.main-content-title {
	display: block;
	position: absolute;
	transform: rotate(-90deg);
	left: -30px;
	font-weight: 700;
	font-size: 11px;
	line-height: 23px;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
}

.main-construction-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 23px;
	text-align: center;
	text-transform: uppercase;
	color: #010101;
}

.main-construction {
	padding-bottom: 80px;
}

.main-construction-logo {
	margin-bottom: 67px;
}

.main-construction-wrapper {
	display: flex;
	gap: 200px;
	justify-content: space-between;
}

.main-construction-text {
	max-width: 430px;
}

.main-construction-buttons {
	font-weight: 700;
	font-size: 15px;
	line-height: 23px;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-left: 20px;
	padding-right: 20px;
}

.main-construction-button-insta{
	margin-bottom: 30px;
	border: 1px solid #000000;
	border-radius: 50%;
	padding: 9px 47px;
}

.main-construction-button-wpp{
	border: 1px solid #000000;
	border-radius: 50%;
	padding: 9px 47px;
}
.main-construction-title-mobile {
	display: none;
}

.main-construction-logo-mobile {
	display: none;
}

@media (max-width: 658px) {
	.main-construction-wrapper {
		flex-direction: column;
		gap: 40px;
		justify-content: center;
		align-items: center;
	}

	.main-construction-buttons {
		flex-direction: row;
	}

	.main-construction-button-insta {
		margin-bottom: 0;
		margin-right: 15px;
	}
	
	.main-construction-title, .main-content-title {
		display: none;
	}

	.main-construction-logo {
		display: none;
	}

	.main-construction-title-mobile {
		display: block;
		font-weight: 700;
		font-size: 11px;
		line-height: 23px;
		text-align: center;
		text-transform: uppercase;
		color: #010101;
	}
	
	.main-construction-logo-mobile {
		display: block;
	}

	.main-header {
		margin-bottom: 56px;
	}
}