﻿.c_form {
    width: 100%;
    margin: auto;
    background: #00000066;
    border-style: solid;
    border-radius: 15px;
    padding: 15px;
}

.Titulo {
    font-size: 65px;
}

#semiTransparenDiv {
    width: 100%;
    /*-Lets Center the Spinner-*/
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*Centering my shade */
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#semiTransparenDiv::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 80px;
    height: 80px;
    border-style: solid;
    border: 5px solid #50754078;
    border-top-color: #507540;
    border-width: 7px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    /* Lets make it go round */
    animation: spin .8s linear infinite;
}

.Titulo {
    text-shadow: -2px -2px 0 black, -2px -1px 0 black
        , -2px 0px 0 black, -2px 1px 0 black
        , -2px 2px 0 black, -1px -2px 0 black
        , -1px -1px 0 black, -1px 0px 0 black
        , -1px 1px 0 black, -1px 2px 0 black
        , 0px -2px 0 black, 0px -1px 0 black
        , 0px 0px 0 black, 0px 1px 0 black
        , 0px 2px 0 black, 1px -2px 0 black
        , 1px -1px 0 black, 1px 0px 0 black
        , 1px 1px 0 black, 1px 2px 0 black
        , 2px -2px 0 black, 2px -1px 0 black
        , 2px 0px 0 black, 2px 1px 0 black
        , 2px 2px 0 black;
}

/*contactos */

.contact-area {
    position: relative;
    padding: 10px;
}

.contact {
    position: relative;
    max-width: 85%;
    margin: 0 auto;
}

main {
   /* float: right;*/
    width: 100%;
    position: relative;
}

main section {
    border-radius: 5px;
    float: right;
    width: 100%;
    background-color: #212529b3;
}

main section .content {
    display: flex;
    /*float: right;*/
    width: 100%;
    height: 30%;
    padding: 10px;
    position: relative;
    text-align: center;
}

main section .content img {
    width: 20%;
    height: 30%;
    border-radius: 50%;
    margin: auto;
}

main section .content aside {
    /*float: right;*/
    width: 100%;
    color: white;
}

main section .content aside h4 {
    font-weight: 100;
    margin-bottom: 0px;
}

main section .content aside p {
    margin-left: 30px;
    margin-bottom: 0px;
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 160%;
    font-weight: bold;
    text-align: justify;
}

.modal-dialog {
    max-width: 70%;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0px;
    overflow-x: hidden;
}

#video {
    width: 100%;
    height: 500px;
}

#datosusuario {
    padding-right: 5px;
    padding-bottom: 0px;
}

.divDni {
    display: flex;
}

#divNacimiento {
    padding-left: 5px;
}

@media only screen and (max-width: 600px) {
    .c_form {
        width: 80%;
    }

    .Titulo {
        font-size: 30px;
    }

    main section .content aside p {
        margin-left: 25px;
    }

    .content-wrapper {
        overflow: auto;
    }

    main section .content img {
        display: none;
    }

    .contact {
        max-width: 85%;
    }

    main section .content aside h4 {
        font-size: 19px !important;
    }

    #datosusuario {
        padding-right: 0px;
        padding-bottom: 15px;
    }

    #divNacimiento {
        padding-left: 0px;
    }

    .divDni {
        display: block;
    }

    #video {
        width: 500px;
        height: 300px;
    }

}

@media only screen and (max-width: 400px) {

    #video {
        width: 390px;
        height: 300px;
    }

    #datosusuario {
        padding-right: 0px;
        padding-bottom: 15px;
    }

    #divNacimiento {
        padding-left: 0px;
    }

    .divDni {
        display: block;
    }
}