
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
font-family: 'Gallient';
/*font-feature-settings: "liga 0";  Desactiva ligaduras */
font-weight: 400;
font-style: normal;
src: url('https://marcelagomez.site/public_html/wp-content/themes/archee-child/assets/fonts/Gallient-Regular.eot'); /* IE9 Compat Modes */
src: url('https://marcelagomez.site/public_html/wp-content/themes/archee-child/assets/fonts/Gallient-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('https://marcelagomez.site/public_html/wp-content/themes/archee-child/assets/fonts/Gallient-Regular.woff') format('woff'), /* Pretty Modern Browsers */
url('https://marcelagomez.site/public_html/wp-content/themes/archee-child/assets/fonts/Gallient-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
url('https://marcelagomez.site/public_html/wp-content/themes/archee-child/assets/fonts/Gallient-Regular.svg#svgFontName') format('svg'); /* Legacy iOS */

       
       
}


article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;font-family: "Oswald";text-transform: uppercase;text-shadow: #E9EDEC 0px 0px 20px, #E9EDEC 0px 0px 30px, #E9EDEC 0px 0px 40px, #E9EDEC 0px 0px 50px, #E9EDEC 0px 0px 75px, #E9EDEC 0px 0px 75px, 0px 0px 10px rgba(233,237,236,0);}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}
@media screen and (min-width: 53em) {
	:root {
		font-size: 18px;
	}
}


html, body {
	height: 100%;
}

body {
	--color-text: #262523;
	--color-bg: hsl(172 9% 92% / 1);
	--color-bg: #eee;
	--color-link: #eca324;
	--color-link-hover: #262523;
	--color-title: #5EEFCC;
	--img-maxwidth: 220px;
	/*--blendmode-title: difference;*/
	--blendmode-title: luminosity;
	--filter-img: none;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden;
}

/* Keyword values 
mix-blend-mode: normal;
mix-blend-mode: multiply;
mix-blend-mode: screen;
mix-blend-mode: overlay;
mix-blend-mode: darken;
mix-blend-mode: lighten;
mix-blend-mode: color-dodge;
mix-blend-mode: color-burn;
mix-blend-mode: hard-light;
mix-blend-mode: soft-light;
mix-blend-mode: difference;
mix-blend-mode: exclusion;
mix-blend-mode: hue;
mix-blend-mode: saturation;
mix-blend-mode: color;
mix-blend-mode: luminosity;
mix-blend-mode: plus-darker;
mix-blend-mode: plus-lighter;
*/


/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: 0;
}

.message {
	padding: 1rem;
	color: var(--color-bg);
	background: var(--color-text);
	text-align: center;
	font-weight: bold;
}
main {
    height: 100%;
    width: 100%;
    display: block;
}
.frame {
	padding: 0 2rem;
	text-align: center;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: none;
	pointer-events: none;
}

.frame h1 {
	margin: 0 0 10px;
	font-size: 4em;
	font-family: "Oswald";
	text-transform: uppercase;
	text-shadow: 3px 3px 0 var(--color-bg), 
	5px -5px 0 var(--color-bg), 
	-5px 5px 0 var(--color-bg), 
	-5px -5px 0 var(--color-bg), 
	5px 0px 0 var(--color-bg), 
	0px 5px 0 var(--color-bg), 
	-5px 0px 0 var(--color-bg), 
	0px -5px 0 var(--color-bg), 
	0px 0px 30px rgba(233,237,236,0);
}
.frame h2 {
	display: block;
	font-weight: normal;
	font-size: 0.85rem;
	font-family: "Inter", sans-serif;
}

.frame h2::before {
	content: '\2015   ';
}
.frame span {
    display: block;
    margin: 0 0 0 0 0.5rem;
}

.marchu, .contenido {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    isolation: isolate;
    flex-direction: column;
}
.content__title {
	font-family: forma-djr-display, sans-serif;
	font-weight: 700;
	z-index: 1000;
	font-size: 26vw;
	line-height: 0;
	mix-blend-mode: var(--blendmode-title);
	-webkit-text-stroke: 1.5px var(--color-title);
	text-stroke: 1.5px var(--color-title);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
	pointer-events: none;
	margin: 33vh 0 6vh;
	opacity: 1;
}
.content__img {
	max-width: var(--img-maxwidth);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	will-change: transform;
	filter: var(--filter-img);
}
.content__img--full {
	width: 100%;
	height: 100%;
	background-size: cover;
}





.img  {
  min-height: 740px;
  height: 100vh;
  filter: grayscale(1);
  padding-top: 15vh;
  margin-right: -52%;
}
.stars {
    width: 80px;
    height: 80px;
    content: "";
    background: url(img/stars.png);
    display: block;
    position: absolute;
    top: 14%;
    margin-right: calc(-40% + 310px);
}

.text:before {
    content: "Hi there! I am";
    position: absolute;
    top: -2.5em;
    left: 5px;
    font-size: 0.25em;
    text-transform: none;
    letter-spacing: 0.01em;
	display: none;
}
.text {
    --color: #000;
    text-align: center;
    font-family: "Gallient", 'Times New Roman', serif;
    font-size: 14.5vw;
    line-height: 1em;
    letter-spacing: -0.2rem;
    position: relative;
}
.text::after {
  content: attr(data-outline);
  position: absolute;
  inset: 0 0 0 0;
  font-size: inherit;
  -webkit-text-stroke-width: 2px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: rgb(255 255 255 / 62%);
  z-index: 2;
}
.text br {display: none}

.bloque {
    position: absolute;
    bottom: 3vh;
}
.Iam {
    text-align: left;
    line-height: 1.5em;
    font-size: 1rem;
    color: #333;
    width: 50vw;
    max-width: 500px;
    margin: 0px 0 70px 4px;
}
.Iam span {
    display: block;
    margin-bottom: 15px;
    font-size: 1.4em;
    line-height: 1.5em;
    color: black;
}
.Iam br {display: block}





@media only screen and (max-width: 1188px) {
.text {
    font-size: 15vw;
    /* text-align: left; */
    /* left: 3%; */
    /* width: 50%; */
    /* letter-spacing: -0.2rem; */
    /* bottom: 30vh; */
}
.text:before {
    top: -2.4em;
}
.Iam {width: 49vw;margin-bottom: 13vh;}
.Iam br {display: none}
.img {
    margin-right: -79%;
    padding-top: 19vh;
}
.stars {
    margin-right: -140px;
}
}

@media only screen and (max-width: 587px) {
.bloque {
    display: flex;
    flex-flow: column-reverse;
    width: 90%;
    bottom: auto;
    left: auto;
    margin: 127px 0 20px;
    position: relative;
}
.text {
    letter-spacing: 0;
    margin: 0 0 30px -3px;
    font-size: 17vw;
}
.text::after {
    -webkit-text-stroke-color: transparent;
    display: none;
}
.Iam {margin: 0;}
.Iam span {line-height: 1.4em;font-size: 1.35em;}
.img {
    min-height: 0;
    padding-top: 250px;
    margin-right: -75%;
}
.stars {
    margin-right: -70px;
    top: 20%;
}

.text {
    text-align: left;
    font-size: 18vw;
}
.text:before {
	font-size: 0.45em;
	left: 3px;
	top: -48px;
}
.Iam {
    width: 100%;
}
.img {
    height: 100%;
    padding: 0;
    margin: -76px -40px 0 0;
    position: relative;
}
.stars {
    width: 47px;
    /* height: 47px; */
    top: auto;
    margin: 29px 140px 0 0;
    left: auto;
    bottom: auto;
    position: relative;
}
}


