@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    font-family: 'Roboto', sans-serif;}

a {
color: #9ddc00;
display:inline-block;
text-decoration: none;
font-weight: 900;
}

h2 {
text-align: center;
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
margin: 12px 8px 12px 8px; 
}

/* STRUCTURE */

.wrapper {
display: flex;
align-items: center;
flex-direction: column; 
justify-content: center;
width: 100%;
min-height: 100%;
padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

/* FORM TYPOGRAPHY*/

.input-magic-button  {
    background-color: #9ddc00;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 10px ;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.input-magic-button:hover{
    background-color: #5a7e00;
}

.input-magic-button:active{
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.input-magic{
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

.input-magic:focus{
    background-color: #fff;
    border-bottom: 2px solid #5a7e00;
}

.input-magic:placeholder{
    color: #cccccc;
}
.logo{
    max-width: 200px;
}
:root {
--jumbotron-padding-y: 3rem;
}

#main{
    min-height: 70vh;
}

.jumbotron {
padding-top: var(--jumbotron-padding-y);
padding-bottom: var(--jumbotron-padding-y);
margin-bottom: 0;
background-image: url(../images/intro.jpg);
background-position: top;
background-repeat: no-repeat;
background-size: cover;
background-color: #16212b;
color:#fff;
}
.jumbotron-box{
    border: #fff solid 1px;
    background-color: rgba(0, 0, 0, .5);
}
.navbar-local{
    background: linear-gradient( 90deg, #16212b 40%, #fff 40%);
    position: relative;
}
.conoce{
    background-color:#9ddc00; 
    color:#16212b
}
.album{
    background-color:  #16212b ;
    position: relative;
}

.album_bottom{
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNlZWU5ZTIiPjxwYXRoIGQ9Ik02NDAgMTM5TDAgMHYxNDBoMTI4MFYwTDY0MCAxMzl6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 100% 100px;
    height: 100px;
    bottom: 0;
    z-index: 10;
    transform: scale(1,1);
}
footer{
    background-color: #eee9e2;
}

@media (min-width: 768px) {
.jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
}
.navbar-local{
    background-color:  #16212b ;
}
}

.jumbotron p:last-child {
margin-bottom: 0;
}

.jumbotron-heading {
font-weight: 300;
}

footer {
padding-top: 3rem;
padding-bottom: 3rem;
}

footer p {
margin-bottom: .25rem;
}

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
  


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}

@keyframes fadeInDown {
0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
opacity:0;
-webkit-animation:fadeIn ease-in 1;
-moz-animation:fadeIn ease-in 1;
animation:fadeIn ease-in 1;

-webkit-animation-fill-mode:forwards;
-moz-animation-fill-mode:forwards;
animation-fill-mode:forwards;

-webkit-animation-duration:0.5s;
-moz-animation-duration:0.5s;
animation-duration:0.5s;
}

.fadeIn.first {
-webkit-animation-delay: 0.2s;
-moz-animation-delay: 0.2s;
animation-delay: 0.2s;
}

.fadeIn.second {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
animation-delay: 0.3s;
}

.fadeIn.third {
-webkit-animation-delay: 0.4s;
-moz-animation-delay: 0.4s;
animation-delay: 0.4s;
}

.fadeIn.fourth {
-webkit-animation-delay: 0.5s;
-moz-animation-delay: 0.5s;
animation-delay: 0.5s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
display: block;
left: 0;
bottom: -10px;
width: 0;
height: 2px;
background-color: #56baed;
content: "";
transition: width 0.2s;
}

.underlineHover:hover {
color: #0d0d0d;
}

.underlineHover:hover:after{
width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
}
.nav-item{
    padding: 1em 0;
}
.nav-link{
    color:rgb(102, 102, 102);
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    position: relative;
    margin: 0 2em;
    padding: 0;
}

.nav-link.selected span::after,
.nav-link:hover span::after{
    width: 100% !important;
    opacity: 1 !important;
}

.nav-link span::after{
    content: '';
    display: block;
    background: #99d62b;
    width: 0;
    height: 3px;
    left: 0;
    position: absolute;
    bottom: -1em;
    transition: all .3s ease-in-out;
    opacity: 0;
    border-radius: 0px;
}

.cv-envio{
    background-image: linear-gradient(90deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 95%);
    background-color: #99D62B;
    padding: 50px 50px 100px 100px;
}
.footer-menu a{
    text-align: center;
    padding: 1em 2em;
    border-left: 4px solid #99D62B ;
}
.footer-menu p{
    text-align: center;
    padding: 1em 2em;
}
.form_postulante input, .form_postulante textarea{
    background-color: rgba(0,0,0,0.36);
    border-width: 1px;
    border-color: rgba(255,255,255,0.75);
    border-radius: 0;
    color: white;
}
.form_postulante input::placeholder, .form_postulante textarea::placeholder{
    color: white;
}

.form_postulante input:focus, .form_postulante textarea:focus{
    background-color: rgba(0,0,0,0.80);
    color: white;
}