.parallax
{ 
    background-image: url('../images/fondo.jpg');
    height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.letras
{
    width: 505px;
    height: 105px;
    margin: 0 auto;
    margin-top: 65px;
    background-image: url('../images/letras.svg');
}

@media(max-width: 550px)
{
    .letras
    {
        width: 350px !important;
        height: 75px !important;
        background-repeat:no-repeat;
    }
    
    .parallax
    {
        height: 180px;
    }
}

.titulo
{
    width: 300px;
    height: 60px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin-top: 65px;
    background-image: url('../images/titulo.svg');
    background-repeat: no-repeat;
}

@media(max-width: 1600px)
{
    .titulo
    {
        margin-top: 50px;
    }
}

@media(max-width: 1300px)
{
    .titulo
    {
        margin-top: 35px;
        width: 210px;
        height: 40px;
    }
}

@media(max-width: 950px)
{
    .titulo
    {
        margin-top: 25px;
        width: 132px;
        height: 25px;
    }
}

@media(max-width: 650px)
{
    .titulo
    {
        margin-top: 15px;
        width: 80px;
        height: 15px;
    }
}

.gallery
{
    position: relative;
    overflow: hidden;
}

.gallery .movable
{
    display: flex;
    /*height: 70vh;*/
    transition: transform 0.4s;
}

.gallery .movable > div
{
    flex:1;
    min-width:100%;
}

input
{
    font-family: myriad pro regular;
    font-size: 17px !important;
    height: 38px !important;
    border-radius: 4px !important;
    outline: none !important;
}

input[type=text]:focus, input[type=email]:focus, .form-control:focus
{
    border: 1px solid #ccc;
    outline: none !important;
}

input[placeholder]
{
    text-align: center;
}

.contenedor
{
    height: auto;
    min-height: 500px;
    background: #FFFFFF;
    -webkit-box-shadow: 1px 1px 11px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 11px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 11px 0px rgba(0,0,0,0.75);
    padding-top: 30px;
    padding-bottom: 30px;
}

.boton
{
    width: 100%;
    background: #247E00;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 20px;
    margin-top: 40px;
}

.botonE
{
    width: 200px;
    background: #247E00;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 20px;
}

.disabled
{
    background: #247E00 !important;
    color: #FFFFFF !important;
}

.boton:hover, .botonE:hover
{
    background: #B79E4B;
    color: #FFFFFF;
}

.boton:focus, .botonE:focus
{
    background: #247E00 !important;
    color: #FFFFFF !important;
    outline: none !important;
}

.formulario
{
    width: 400px;
    margin: 0 auto;
    margin-top: 140px;
    margin-bottom: 30px;
}

@media(max-width: 560px)
{
    .formulario
    {
        width: 300px;
    }
}

@media(max-width: 470px)
{
    .formulario
    {
        width: 250px;
    }
}

.rueda
{
    background: #B79E4B;
    color: #FFFFFF;
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}

textarea
{
    resize: none;
}

@keyframes click-wave
{
    0%
    {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100%
    {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.option-input
{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 40px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}

.option-input:hover
{
    background: #9faab7;
}

.option-input:checked
{
    background: #247E00;
}

.option-input:checked::before
{
    height: 40px;
    width: 40px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 26.66667px;
    text-align: center;
    line-height: 40px;
}

.option-input:checked::after
{
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #247E00;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.option-input.radio
{
    border-radius: 50% !important;
}

.option-input.radio::after
{
    border-radius: 50% !important;
}

.test + .tooltip > .tooltip-inner
{
    background-color: #FFF; 
    color: #333; 
    border: 1px solid #247E00; 
    padding: 10px;
    font-size: 16px;
    text-align: left;
    border-radius: 0px;
    margin-top: 70px;
    margin-left: -10px;
}

.test + .tooltip.right > .tooltip-arrow
{
    border-right: 0px solid #247E00;
}