@font-face {
    font-family:"CodePro-Bold";
    src:url('../../fonts/code-bold.otf') format('opentype');
}

@font-face {
    font-family:"CodePro-Light";
    src:url('../../fonts/code-light.otf') format('opentype');
}

@font-face {
    font-family:"myriad-regular";
    src:url('../../fonts/myriadpro-regular.otf') format('opentype');
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    overflow-x: hidden;
    background-color: #ffe6b3;
}


a {
    text-decoration: none;
    color: black;
}

p {
    font-family: "News Cycle";
}

h3 {
    text-transform: none;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    padding: 0 10% 0 10%;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #fddd9b;
    border-bottom: 1px solid black;
}

header .navbar {
    display: flex;
    justify-content: center;
    padding: 1rem 0 1rem 0;
}


header nav {
    margin-left: 2rem;
}

header nav ul {
    display:flex;
    justify-content: center;
}

header nav ul li {
    font-family: "News Cycle";
    font-size: 0.9rem;
    list-style-type: none;
    margin-right: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 0.7rem;
}

header nav ul li a {
    border-bottom: 1px solid transparent;
    transition: border-color ease-in-out 0.3s;
    color: #000;
}



header nav ul li a:hover{
    border-bottom: 2px solid #000;
}
    
header h1 {
    max-width: 20%;
    font-family: "News Cycle";
   text-align: center;
    font-size: 2rem;
    color: #000;
}

/* PERFIL */

.perfil {
    margin-left: 5rem;
    margin-right: 3rem;
}

.img-perfil {
    max-width: 40%;
    align-self: center;
    border: 4px solid #000;
}

.perfil h2,
.perfil h3 {
    font-family: "myriad-regular";
}

.perfil h2 {
    margin-top: 1rem;
}

.perfil h3 {
    font-size: 1.6rem;
    font-weight: 200;
}



/* SECTION */

section h3 {
    font-family: "CodePro-Light";
    font-size: 2rem;
    font-weight: 100;
    padding-top: 2rem;
}

section h4 {
    font-family: "CodePro-Bold";
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

section p {
    font-size: 1.1rem;
}

/* FOOTER */

.push {
    height: 5rem;
}

footer {
    background-color: #fddd9b;
}

footer p {
    margin-left:auto;
    margin-right: auto;
    max-width: 90%;
    text-align: center;
    font-size: 0.75rem;
    color: #000;
    height: 5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* FLEX */


.row-center {
    display: flex;
    justify-content: center
}

.row-between {
    display:flex;
    justify-content: space-between;
}

.column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row-start {
    display: flex;
    justify-content: flex-start;
    
}

.column-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.column-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wrap {
    flex-wrap: wrap;
}

/* CLASES */

.contenedor {
    min-height: 100%;
    margin-bottom: -5rem;
    padding-top: 4.5rem;
}

.separador {
    background-color: #000;
    height: 5px;
    width: 60%;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.datos-obligatorios {
    margin-top: 5rem;
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.datos-obligatorios ul {
    list-style-type: none;
    border: 1px solid;
    border-color: #cecece;
    border-radius: 10px;
    padding: 1rem;
    margin: 0 1rem 0 1rem;
    background-color: #fff;
    text-align: left;
    transition: all ease-in-out 0.2s;
    
}

.datos-obligatorios ul:hover {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
     transform: scale(1.05);
}

.datos-obligatorios ul:hover > li {
    color: #400d9f;
}
    
    

.datos-obligatorios ul li{
    display: flex;
    font-family: "Roboto";
    font-size: 0.8rem;
    line-height: 1.2rem;
    color: #989898;
    font-weight: 200;
    transition: all ease-in-out 0.2s;
}

.datos-obligatorios ul li p {
    margin-right: 0.3rem;
    font-size: 0.9rem;
    font-family: "Roboto";
    font-weight: 700;
    color:#989898;
    transition: all ease-in-out 0.2s;
}

.datos-obligatorios ul:hover > li p {
    color: #400d9f;
}