/* --------------------------
-----------------------------
GENERAL
FONT STYLES
COMPONENTS
ANIMATIONS
SWITCH & ICONS
MEDIA QUERIES
-----------------------------
---------------------------*/


/* --------------------------
-----------------------------
GENERAL
-----------------------------
---------------------------*/


:root {
	--background-dark: #FFFFFF;
	--background-light: #0D0D0D;
	--secondary-color: #FFF8FA;
	--tertiary-color: #ECCDD8;
	--filter-grayscale-value: 100%;
	--filter-saturate-value: 100%;
}


@media (max-width:1200px) {
    html, body {
    height: 100vh;
}
}

html {
    position: relative;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto !important;
}



body {  
    overflow-y: auto !important;
  	position: relative;  
    overflow-x: hidden;
    border-bottom: 200px;
}

.secondary-color {
	color: var(--secondary-color);
}

.content {
	margin-top: 20px;
}

/*.bg-alternative {
    background-color: var(--secondary-color);
}*/

@font-face {
	font-family: "Atkinson-Hyperlegible";
	src: url("fonts/atkinson-hyperlegible/Atkinson-Hyperlegible-Regular-102.otf") format('woff');
}

@font-face {
	font-family: "Atkinson-Hyperlegible-bold";
	src: url("fonts/atkinson-hyperlegible/Atkinson-Hyperlegible-Bold-102.otf") format('woff');
	font-weight: bold;
}


/* --------------------------
-----------------------------
FONT STYLES
-----------------------------
---------------------------*/
* {
	font-family: 'Atkinson-Hyperlegible';
}

.heading-l {
	font-style: normal;
	font-size: 48px;
	line-height: 56px;
}

.heading-m {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 28px;
	line-height: 36px;
}

.paragraph-l {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 24px;
	line-height: 32px;
}

.paragraph-m {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	line-height: 22px;
}

.paragraph-s {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 14px;
	line-height: 20px;
}

.body-l {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	line-height: 22px;
}

.body-m {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
}

.body-m-highlight {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: bold;
    }


.Atkinson-Hyperlegible,
.Atkinson-Hyperlegible a {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 13px;
	color: var(--background-light);
}

.underline {
	text-decoration: underline;
}


@media (max-width: 1200px) {

	.heading-l,
	#type-text {
		font-size: 36px;
		line-height: 42px;
	}

	.heading-m {
		font-size: 26px;
		line-height: 32px;
	}


	.paragraph-l {
		font-family: 'Atkinson-Hyperlegible';
		font-size: 20px;
		line-height: 28px;
	}


	.paragraph-m {
		font-family: 'Atkinson-Hyperlegible';
		font-size: 15px;
		line-height: 20px;
	}
    
    .paragraph-s {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 13px;
	line-height: 18px;
    }

	.body-l {
		font-family: 'Atkinson-Hyperlegible';
		font-size: 14px;
		line-height: 20px;
	}

	.body-m {
		font-family: 'Atkinson-Hyperlegible';
		font-size: 11px;
		line-height: 14px;
		text-transform: uppercase;
	}

	.body-m-highlight {
		font-family: 'Atkinson-Hyperlegible';
		font-size: 11px;
		line-height: 14px;
		text-transform: uppercase;
		font-weight: bold;
	}

}

@media (min-width: 1920px) {

.heading-l {
	font-style: normal;
	font-size: 62px;
	line-height: 70px;
}

.heading-m {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 34px;
	line-height: 42px;
}

.paragraph-l {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 28px;
	line-height: 36px;
}

.paragraph-m {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 18px;
	line-height: 24px;
}

.paragraph-s {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 15px;
	line-height: 20px;
}

.body-l {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 18px;
	line-height: 24px;
}

.body-m {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
}

.body-m-highlight {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	font-weight: bold;
    }
} 


/* Spacings */

.spacing-30 {
    height: 30%;
}

.spacing-80 {
    height: 80px
    ;
}

/* Over image */


.img-wrapper {
	position: relative;
}

.img-wrapper:hover {
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.img-responsive {
	width: 100%;
	height: auto;
}

.img-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 24px;
	margin-left: 24px;
}

.img-overlay:before {
	content: ' ';
	display: block;
	/* adjust 'height' to position overlay content vertically */
	height: 50%;
}

.img-overlay a:hover {
	text-decoration: underline;
}

/* Opacity #1 */
.hover-over img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.hover-over:hover img {
	opacity: .5;
}


.opacity-text {
	opacity: 0.6;
}

a,
a:hover {
	text-decoration: none;
	color: var(--background-light);
}

header a:hover {
	text-decoration: underline;
}

::-moz-selection {
	color: var(--background-dark);
	background: var(--background-light);
}

::selection {
	color: var(--background-dark);
	background: var(--background-light);
}

p {
	font-family: 'Atkinson-Hyperlegible-regular';
	font-size: 16px;
}

.button,
button {
	color: var(--background-light);
}

button[disabled=disabled],
button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

button[type=submit] a,
button[type=submit] a:visited {
	text-decoration: none;
	color: #939393;
}

.small,
.small-text,
.small-text a {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 13px;
	letter-spacing: 0.5px;
}

.xtra-small-text {
	font-family: 'Atkinson-Hyperlegible';
	font-size: 9px;
}

.uppercase {
	text-transform: uppercase;
}

.border-right {
	position: relative;
	min-height: 200%;
	border-right: 2px solid var(--background-light);
}

.border-right heading-m {
	margin-left: -12px;
}

.form-container {
    height: calc(100vh - 200px);
} 


@media (max-width:1200px) {
    
    .footer {
        height: 20px;
    }
        
    .form-container {
        height: calc(100vh - 20px);
    }
}

@media (min-width:1201px) {

.footer {
    height: 200px;
    bottom: 0px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin-bottom: 20px;
}
}


.footer,
.footer a,
.footer p {
	font-size: 13px;
	font-weight: 500 !important;
	letter-spacing: 0.5px;
	line-height: 0.5;
}


/* --------------------------
-----------------------------
COMPONENTS
-----------------------------
---------------------------*/

/*  SVG  */

.cls-5 {
	fill: var(--secondary-color);
}

.st0 {
	stroke: var(--background-light);
	stroke-width: 8px;
	fill: none;
}

.st1 {
	stroke: var(--background-light);
	stroke-width: 8px;
	fill: none;
}

.st3 {
	stroke: var(--background-light);
	stroke-width: 1px;
	fill: none;
}

.white-text {
    color:var(--background-dark) !important;
}

main {
	height: 100vh;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.margin-logos {
	margin-right: 20px;
	margin-left: 30px;
}

.logo_draw {
    margin-top: 12px;
	max-width: 130px;
	min-width: 110px;
}


.fold-img {
	max-width: 80%;
}

header {
	top: 10px;
	height: 4%;
}

.logo-footer,
.logo {
	width: 6vw;
	max-width: 120px;
	min-width: 80px;
	fill: var(--background-light);
}

.logo-footer {
	margin-bottom: 40px;
	margin-top: 40px;
}

hr {
	opacity: 1;
	border-top: 1px solid var(--background-light);
}

.hr-scroll {
	bottom: 0px;
	opacity: 1;
	border-top: 1px solid var(--background-light);
	width: 35px;
	rotate: 270deg;
}

.hr-horizonal {
	bottom: 0px;
	opacity: 1;
	border-top: 1px solid var(--background-light);
}

.svg,
.cls-5 {
	fill: var(--background-light);
}

.down-section-presentation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	height: 84%;
}


button {
	border: 1px solid var(--background-light);
	padding: 12px;
	text-align: center;
	display: block;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	-webkit-writing-mode: horizontal-tb !important;
	background-color: transparent;
	padding: 20px !important;
	width: 100%;
	height: 62px;
	-o-border-image: none !important;
	border-image: none !important;
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}


button:hover {
	background: var(--tertiary-color);
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}

.img-overlay {
	text-align: left;
	display: block;
}

.grid-overlay-desktop {
	position: sticky;
}

.card{
    background-color: transparent;
    border: 1px solid var(--background-light);
    border-radius: 0px;
} 

.card span,
.card span {
    margin-left: 20px;
    margin-right: 20px;
} 

@-moz-document url-prefix() {
.card span,
.card span {
    margin-top: 20px;

}

.card-description {
    margin-bottom: 20px;
}

}


/* FORM */

form {
	margin-top: 24px;
}

input {
	background: none;
	border: none;
	width: 100%;
	height: 48px;
	color: var(--background-light);
	border-bottom: 1px solid var(--background-light);
	border-radius: 0px;
    padding: 0px;
}

::-webkit-input-placeholder,
.placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

:-ms-input-placeholder,
.placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

::-webkit-input-placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

::-moz-placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

:-ms-input-placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

::-ms-input-placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

::placeholder,
.placeholder {
	color: var(--background-light);
	font-family: 'Atkinson-Hyperlegible';
	font-size: 16px;
	opacity: 0.6;
}

.mt-5 {
	margin-top: 16px;
}

input:focus {
	outline: none !important;
	border-bottom: 1px solid var(--background-light);
	-webkit-box-shadow: none;
	box-shadow: none;
}

/**   CHECKBOX  **/

input[id="terms"] {
	display: none;
}

input[id="terms"]+label {
	display: block;
	position: relative;
	padding-left: 35px;
	color: var(--background-light);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	border-bottom: 1px solid var(--background-light);
	margin-top: 23px;
}

.rgpd {
	bottom: 8px;
	position: relative;
}

input[id="terms"]+label:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid var(--background-light);
	position: absolute;
	left: 0;
	top: -6px;
	opacity: .6;
	-webkit-transition: all .12s, border-color .08s;
	-o-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}


input[id="terms"]:checked+label:before {
	width: 10px;
	top: -10px;
	left: 5px;
	border-radius: 0;
	opacity: 1;
	border: 2px solid green;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.text-right {
    text-align: right;
}

/* --------------------------
-----------------------------
ANIMATIONS
-----------------------------
---------------------------*/

/*    EXPERIENCIA LABORAL   */

ul {
	list-style-type: none;
	padding: 0;
    width: 100%;
}

.func .work small {
	display: block;
	opacity: .7;
}

.resume .func .work ul li {
	position: relative;
    padding-top: 20px;
	padding-bottom: 15px;
    float: left;
    width: 20%;
}

.resume .func .work ul li:hover::before {
	-webkit-animation: circle 1.2s infinite;
	animation: circle 1.2s infinite;
    border-radius: 50px;
}

@-webkit-keyframes circle {
	from {
		-webkit-box-shadow: 0 0 0 0px var(--background-light);
		box-shadow: 0 0 0 0px var(--background-light);
        border-radius: 50px;
	}

	to {
		-webkit-box-shadow: 0 0 0 6px rgba(61, 64, 91, 0);
		box-shadow: 0 0 0 6px rgba(61, 64, 91, 0);
        border-radius: 50px;
	}
}

@keyframes circle {
	from {
		-webkit-box-shadow: 0 0 0 0px var(--background-light);
		box-shadow: 0 0 0 0px var(--background-light);
        border-radius: 50px;
	}

	to {
		-webkit-box-shadow: 0 0 0 6px rgba(61, 64, 91, 0);
		box-shadow: 0 0 0 6px rgba(61, 64, 91, 0);
        border-radius: 50px;
	}
}

.resume .func .work ul li:last-of-type,
.resume .func .edu ul li:last-of-type {
	padding-bottom: 3px;
}

.resume .func .work ul li::before,
.resume .func .work ul li::after {
	content: '';
	display: block;
	position: absolute;
    float: left;
    rotate: 90deg;
}

.resume .func .work ul li::before {
	width: 8px;
	height: 8px;
	background: var(--background-light);
	top: 0px;
	z-index: 1;
    border-radius: 50px;
}

ul hr {
    position: relative;
	bottom: -20px;
}


.blinking-cursor {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-animation: blink 1s steps(2, start) infinite;
	animation: blink 1s steps(2, start) infinite;
}

@-webkit-keyframes blink {
	to {
		visibility: hidden;
	}
}

@keyframes blink {
	to {
		visibility: hidden;
	}
}


/*  SCROLL DOWN  */

.container-scroll {
    height: 10%;
    bottom: 0px;
}

.scroll-text {
	margin-bottom: 60px !important;
	rotate: 270deg;
}

.content-center {
	text-align: center;
	left: 0;
	right: 0;
	margin: auto;
}


.line {
	border: 1px solid #var(--primary-light);
}

/* CHARGE BAR */

.charge_content {
	width: 100%;
	height: 6px;
	background: none;
	position: fixed;
	margin: 0;
	top: 0;
	padding: 0;
	z-index: 9999;
}

.charge_content p {
	width: 100%;
	text-align: center;
	color: transparent;
	top: 0;
	font-size: 1.3em;
	position: absolute;
}

.charge {
	position: absolute;
	width: 0%;
	height: 6px;
	top: 0;
	left: 0;
	background: var(--tertiary-color);
}



/* --------------------------
-----------------------------
MEDIA QUERIES
-----------------------------
---------------------------*/

@media (min-width: 1201px) {

	/*  MAX SCREEN CONTAINER */
	.mycontent.container {
		max-width: 1920px !important;
		padding-right: 5vw;
		padding-left: 5vw;
	}
}

@media (min-width: 1201px) {

	.grid-overlay-desktop {
		display: block;
		z-index: -1;
		position: fixed;
		top: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
	}

	.grid-overlay-desktop div[class^="col-"] h1 {
		background-color: var(--secondary-color);
		min-height: 100vh;
		margin-top: 0;
		margin-bottom: 0;
	}

}


@media (min-width: 769px) {
	.only-mobile {
		display: none !important;
		visibility: hidden;
	}


    .grid-overlay-tablet,
    .grid-overlay-mobile {
    	display: none;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {

	.grid-overlay-tablet {
		display: block;
		z-index: -1;
		position: fixed;
		top: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
	}


	.grid-overlay-tablet div[class^="col"] h1 {
		background-color: var(--secondary-color);
		min-height: 100vh;
		margin-top: 0;
		margin-bottom: 0;
	}

	.grid-overlay-desktop,
	.grid-overlay-mobile {
		display: none;
	}
}

@media (max-width: 768px) {
	.only-desktop {
		display: none !important;
	}
}


@media (min-width: 769px) and (max-width: 1200px) {
	.fold-img {
		position: relative;
		display: block;
		max-width: 100%;
		right: 0;
		left: 0;
		margin: auto;
	}
}

@media (max-width: 768px) {

	.grid-overlay-mobile {
		display: block;
		z-index: -1;
		position: fixed;
		top: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
	}

	.grid-overlay-mobile div[class^="col"] h1 {
		background-color: var(--secondary-color);
		min-height: 100vh;
		margin-top: 0;
		margin-bottom: 0;
	}

	.grid-overlay-desktop,
	.grid-overlay-tablet {
		display: none;
		min-height: 100vh;
	}

	main {
		min-height: 96vh;
		margin-bottom: 40px;
	}

	.down-section-presentation {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		min-height: 70vh;
	}

	.fold-img {
		position: relative;
		display: block;
		max-width: 60%;
		right: 0;
		left: 0;
		margin: auto;
	}

	.center-mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.img-overlay {
		margin-bottom: 12px;
		margin-left: 12px;
	}
}


/*
xs (for phones - screens less than 768px wide)
sm (for tablets - screens equal to or greater than 768px wide)
md (for small laptops - screens equal to or greater than 992px wide)
lg (for laptops and desktops - screens equal to or greater than 1200px wide)
*/