@charset "utf-8";
/*
Knight Bootstrap theme by BootstrapTaste.com
Theme URI: http://bootstraptaste.com/knight-free-bootstrap-theme/
Author: BootstrapTaste
Author URI: http://bootstraptaste.com
*/

/* CSS Document */

/* Float Elements
---------------------------------*/
.fl-lt {float:left;}
.fl-rt {float:right;}

/* Clear Floated Elements
---------------------------------*/
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

.figure{ margin:0px;}

img{ max-width:100%;}

a, a:hover, a:active{ outline:0px !important}

@font-face {
    font-family:'slogan';
    src: url('../fonts/trebuc.eot');
    src: url('../fonts/trebuc.ttf');
}

/* Primary Styles
---------------------------------*/
body {
    background:#fff;
    font-family: 'Open Sans', sans-serif;
    font-size:14px;
    font-weight:normal;
    color:#888888;
    margin:0;
}
h2{
    font-size:34px;
    color:#222222;
    font-family: 'Montserrat', sans-serif;
    font-weight:700;
    letter-spacing: -1px;
    margin:0 0 15px 0;
    text-align:center;
    text-transform:uppercase;
}
h3{
    font-family: 'Montserrat', sans-serif;
    color:#222222;
    font-size:16px;
    margin:0 0 5px 0;
    text-transform:uppercase;
    font-weight:400;
}
h6{
    font-size:16px;
    color:#888888;
    font-family: 'Open Sans', sans-serif;
    font-weight:400;
    text-align:center;
    margin:0 0 60px 0;
}
p{
    line-height:24px;
    margin:0;
}

/* Header Styles
---------------------------------*/

.header{
    text-align:center;
    background-color: black;
    height: 100vh;
    width: 100%;
}
.logo{
    width:450px;
    margin:0 auto 15px;
}

.institucional{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

}

.header h1{
    font-family: 'slogan',arial;
    text-transform: uppercase;
    font-size:22px;
    font-weight:500;
    margin:0 0 22px 0 ;
    color:#673773;
}

.conocenos{
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
}

.we-create{
    padding:0;
    margin:35px 0 55px;
}

.start-button {
    padding-left: 0px;
}

.start-button li a{
    color: #fff;
}

.link{
    padding:15px 35px;
    background:#7cc576;
    color:#fff !important;
    font-size:16px;
    font-weight:400;
    font-family: 'Montserrat', sans-serif;
    display:inline-block;
    border-radius:3px;
    text-transform:uppercase;
    line-height:25px;
    margin-bottom:20px;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.link:hover {
    text-decoration:none;
    color:#673773 !important;
    background:#fff;
}

.link:active, .link:focus {
    background: #7cc576;
    text-decoration:none;
    color:#fff !important;
}


/*slide*/

.cb-slideshow,
.cb-slideshow:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.cb-slideshow:after {
    content: '';
}

.cb-slideshow li{
    list-style: none;
}
.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-position: 50% 50%;
    background-size:cover;
    background-attachment: fixed;
    opacity: 0;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) span {
    background-image: url(../img/bg01.jpg);
}
.cb-slideshow li:nth-child(2) span {
    background-image: url(../img/bg02.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../img/bg03.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../img/bg04.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(../img/bg05.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(../img/bg06.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
    }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% {
        opacity: 0;
    }
}
@-moz-keyframes imageAnimation {
    0% {
        opacity: 0;
        -moz-animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        -moz-animation-timing-function: ease-out;
        background-position: 0 0;
    }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% {
        opacity: 0;
    }
}
@-o-keyframes imageAnimation {
    0% {
        opacity: 0;
        -o-animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        -o-animation-timing-function: ease-out;
    }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 ;
    }
}
@-ms-keyframes imageAnimation {
    0% {
        opacity: 0;
        -ms-animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        -ms-animation-timing-function: ease-out;
    }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% {
        opacity: 0 ;
    }
}
@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% {
        opacity: 0 ;
    }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
    opacity: 1;
}
/*slide------end */


/* Navigation
---------------------------------*/
.main-nav-outer{
    padding:0px;
    border-bottom:1px solid #dddddd;
    box-shadow:0 4px 5px -3px #ececec;
    position:relative;
    background:#fff;
}
.main-nav{
    text-align:center;
    margin:10px 0 0px;
    padding:0;
    list-style:none;
    z-index: 999;
}
.main-nav li{
    display:inline;
    margin:0 1px;
}
.main-nav li a{
    display:inline-block;
    color:#222222;
    text-transform:uppercase;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    line-height:20px;
    margin:17px 32px;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.main-nav li a:hover{
    text-decoration:none;
    color: #7cc576;
}

.small-logo{
    padding:0 32px;
}

.main-section{
    padding:70px 0 100px;
}


/* servicios
---------------------------------*/

.servicios-list{
    padding:0 0 0 0;
    font-size:14px;
    margin-bottom:40px;
}
.servicios-list-col1{
    float:left;
    width:60px;
}
.servicios-list-col1 i{
    font-style:normal;
    font-size:38px;
    display:block;
    color:#777777;
    line-height:38px;
}
.servicios-list-col2{
    overflow:hidden;
}

.main-section.servicios{
    background:#fafafa;
}



/* Nuestro Centro---------------------------------*/
.main-section.centro{
    background:#fff;
}

.nuestro-centro{
    overflow: hidden;
    font-size:14px;
}
.nuestro-centro h2{
    text-align:left;
}
.featured-box{
    overflow: hidden;
    padding:0 0 0 0;
    margin-bottom:25px;
    font-size:14px;
}
.featured-box h3{
    margin-bottom:5px;
}
.featured-box p{
    line-height:22px;
}
.nuestro-centro p.padding-b{
    padding-bottom:35px;
}
.featured-box-col1{
    width:60px;
    float:left;
}
.featured-box-col1 i{
    display:block;
    line-height:38px;
    font-size:38px;
    color:#222;
    font-style:normal;
}
.featured-box-col2{ overflow:hidden;}

/* institucional
---------------------------------*/
.client-part{
    background:url(../img/section-bg1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size:cover;
    padding:55px 0;
    text-align:center;
}
.client-part-haead{
    color:#fdfdfd;
    font-size:28px;
    line-height:41px;
    margin:30px 0 10px;
    font-family: ''Open Sans',sans-serif';
    font-style: italic;
}
.client{
    padding:0;
    margin:20px 0 0;
    list-style:none;
    text-align:center;
}
.client li{
    display:inline;
    margin:0 15px;
}

.client li h3{
    color:#ffffff;
}
.client li span{
    color:#f1f1f1;
}
.quote-right{
    font-style:normal;
    width:68px;
    height:68px;
    margin:0 auto;
    border:2px solid #7cc576;
    border-radius:50%;
    display:block;
    line-height:68px;
    text-align:center;
    font-size:27px;
    color:#7cc576;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.quote-right:hover{
    color: #fff;
    border: 2px solid #fff;
}

.c-logo-part{
    background:#7cc576;
    padding:25px 0;
    filter: alpha(opacity=60);
}

/* curso---------------------------------*/

.main-section.curso{
    padding:85px 0;
}
.main-section.curso h6{
    margin-bottom:40px;
}

.curso-leader-block{
    max-width:993px;
    margin:0 auto;
}
.curso-leader-box{
    width:30.66%;
    margin-right: 3.82979%;
    height: 420px;
    overflow: hidden;
    text-align: center;
    float: left;
}
.curso-leader-box span{
    margin-bottom:24px;
    display:block;
}

.curso-leader-box ul{
    color: #fff
}

.curso-leader-box a{
    transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
    color: #222222;
}

.curso-leader-box a:hover{
    text-decoration: none;
    color: #7cc576;
}
.curso-leader-box:hover ul li i {
    transition:all 1s ease-in-out;
    -moz-transition:all 1s ease-in-out;
    -webkit-transition:all 1s ease-in-out;
    color: #7cc576;
}

.curso-leader-box:nth-of-type(3n+0){ margin:0;}

.curso-leader{
    width:auto;
    height:auto;
    position:relative;
    border-radius:50%;
    box-shadow:0px 0px 0px 7px rgba(241,241,241,0.80);
    margin:7px 7px 25px 7px;
}
.curso-leader-shadow{
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    border-radius:50%;
    position:absolute;
    width:100%;
    height:100%;
    z-index:10;
    border-radius:50%;
}
.curso-leader-shadow a{
    display:block;
    width:100%;
    height:100%;
}
.curso-leader:hover .curso-leader-shadow{
    box-shadow:inset  0px 0px 0px 148px rgba(17,17,17,0.80);
}
.curso-leader:hover ul{ display:block; opacity:1}
.curso-leader img{
    display:block;
    border-radius:50%;
}
.curso-leader ul{
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display:block;
    opacity:0;
    padding:0;
    margin:0;
    list-style:none;
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    text-align:center;
    z-index:15;
    transition:all 0.6s ease-in-out;
    -moz-transition:all 0.6s ease-in-out;
    -webkit-transition:all 0.6s ease-in-out;
}
.curso-leader ul li{
    display:inline;
    margin:0 11px;
}
.curso-leader ul li a{
    display:inline-block;
    font-size:28px;
    color:#fff;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

/*------equipo--------- */

.main-section.equipo{
    padding:85px 0;
}
.main-section.equipo h6{
    margin-bottom:40px;
}

.equipo-leader-block{
    max-width:993px;
    margin:0 auto;
}
.equipo-leader-box{
    width:30.66%;
    margin-right: 9.67%;
    margin-left: 9.67%;
    height: 510px;
    overflow: hidden;
    text-align: center;
    float: left;
}
.equipo-leader-box span{
    margin-bottom:24px;
    display:block;
}

.equipo-leader-box ul{
    color: #fff
}

.equipo-leader-box:hover ul li i {
    transition:all 1s ease-in-out;
    -moz-transition:all 1s ease-in-out;
    -webkit-transition:all 1s ease-in-out;
    color:  #0077b5;
}

.equipo-leader-box:nth-of-type(3n+0){ margin:0;}

.equipo-leader{
    width:auto;
    height:auto;
    position:relative;
    border-radius:50%;
    box-shadow:0px 0px 0px 7px rgba(241,241,241,0.80);
    margin:7px 7px 25px 7px;
}
.equipo-leader-shadow{
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    border-radius:50%;
    position:absolute;
    width:100%;
    height:100%;
    z-index:10;
    border-radius:50%;
}
.equipo-leader-shadow a{
    display:block;
    width:100%;
    height:100%;
}
.equipo-leader:hover .equipo-leader-shadow{
    box-shadow:inset  0px 0px 0px 148px rgba(17,17,17,0.80);
}
.equipo-leader:hover ul{ display:block; opacity:1}
.equipo-leader img{
    display:block;
    border-radius:50%;
    margin: 0 auto;
}
.equipo-leader ul{
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display:block;
    opacity:0;
    padding:0;
    margin:0;
    list-style:none;
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    text-align:center;
    z-index:15;
    transition:all 0.6s ease-in-out;
    -moz-transition:all 0.6s ease-in-out;
    -webkit-transition:all 0.6s ease-in-out;
}
.equipo-leader ul li{
    display:inline;
    margin:0 11px;
}
.equipo-leader ul li a{
    display:inline-block;
    font-size:28px;
    color:#fff;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}
.equipo-leader ul li a:hover, .curso-leader ul li a:focus{
    text-decoration:none;
}
.equipo-leader ul li a.fa-twitter:hover{
    color:#55acee;
}
/*------equipo--------- */
/*-------modal---------*/
.modalCurso {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: 80%;
    box-shadow: 0 3px 7px rgba(0,0,0,.25);
    box-sizing: border-box;
    z-index: 10000;
    transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}

.mostrar{
    opacity: 1;
    visibility: visible
}
.modalCurso a{
    margin: 15px;
}
.modalCurso h2 {
    margin: 0;
    color: #fff
}

.botonCerrar{
    text-align: center;
}

.modalCurso .detalle, .modalCurso .encabezado, .modalCurso .footer {
    padding: 20px 10% 20px 10%;
}

.modalCurso .content {
    background: #7cc576;
    position: relative;
    z-index: 10002;
    border-radius: 15px;
}

.modalCurso .detalle {
    background: #fff ;
    border-radius: 0 0px 15px 15px;
}

.modalCurso .overlay {
    background-color: #000;
    background: rgba(0,0,0,.8);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001
}

#modal-login{
    max-width: 500px;
}

#modal-login input[type="button"], #modal-login input[type="submit"]{
    margin: 4px 5px 4px 5px;
}

.botones{
    position: relative;
    text-align: center;
}

#nota{
    position: relative;
    height: auto;
}

/*---------modal----------*/

/* Talk Business
---------------------------------*/
.business-talking{
    background:url(../img/section-bg2.jpg) top center no-repeat;
    background-size:cover;
    background-attachment: fixed;;
    padding:60px 0 10px;
    text-align:center;
}
.business-talking h2{
    font-family: 'Montserrat', sans-serif;
    font-weight:700;
    padding:0;
    margin:20px 0 70px;
    text-transform:uppercase;
    font-size:42px;
    color:#fff;
}


/* Contact
---------------------------------*/
.main-section.contact{
    padding:90px 0 75px;
    background:url(../img/bg-map.png) left 190px no-repeat;
}

.separacion{
    margin-bottom: 30px;
}

.contact-info-box{
    font-size:15px;
    margin:0 0 14px 68px;
    padding-left:0;
}
.contact-info-box h3{
    font-size: 15px;
    font-weight:400;
    float:left;
    width:125px;
    margin-right:12px;
    line-height:28px;
}
.contact-info-box h3 i{
    font-style:normal;
    font-size:18px;
    color:#222222;
    font-weight:normal;
    margin-right:7px;
}
.contact-info-box span{
    line-height:28px;
    display:block;
    overflow:hidden;
}
.social-link{
    padding:35px 0;
    margin:0 0 0 68px;
    display:block;
    overflow:hidden;
    list-style:none;
}
.social-link li{
    float:left;
    margin-right:8px;
}
.social-link li a{
    display:block;
    width:50px;
    height:50px;
    text-align:center;
    line-height:50px;
    font-size:25px;
    color:#fff;
    background:#222222;
    border-radius:50%;
    transition:all 0.3s ease-in-out;
}
.social-link li a:hover, .social-link li a:focus{
    text-decoration:none;
}
.twitter a:hover {
    background: #55acee;
}
.facebook a:hover {
    background: #3b5998;
}
.pinterest a:hover {
    background: #cb2026;
}
.gplus a:hover {
    background: #dd4b39;
}
.linkedin a:hover {
    background: #0077b5;
}

.fb_iframe_widget {
    margin-left: 68px;
}

.form{
    margin:0 66px 0 30px;
    position: relative;
}
.input-text{

    padding:15px 16px;
    border:1px solid #ccc;
    width:100%;
    height:50px;
    display:block;
    border-radius:4px;
    font-size:15px;
    color:#aaa;
    font-family: 'Open Sans', sans-serif;
    margin:0 0 15px 0;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}
.input-text:focus {
    border: 1px solid #7cc576;
    outline:0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
}

.input-text.text-area{
    height:165px;
    resize:none;
    overflow:auto;
}
.input-btn{
    width:175px;
    height:50px;
    background:#7cc576;
    border-radius:4px;
    color:#ffffff;
    font-size:14px;
    text-transform:uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight:400;
    border:0px;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.input-btn:hover{
    color: #673773;
    background-color:#f5f5f0 ;
}

.mensaje{
    position: absolute;;
    font-size:15px;
    color:red;
    padding:5px 16px;
    border:1px solid;
    width:100%;
    height:auto;
    border-radius:4px;
    font-size:15px;
    font-family: 'Open Sans', sans-serif;
    margin:10px 0 15px 0;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    opacity: 0;
}

/* Map ---------------------------*/
.map iframe{
    border: none;
    width: 100%;
    height: 400px;
}
/*Map end---------------------------*/

/* Footer
---------------------------------*/

.footer{
    background:url(../img/footerbg.jpg);
    background-size: cover;
    background-position: bottom;
    padding:35px 0 35px;
}
.footer-logo{
    margin:15px auto 35px;
    width: 76px;
}
.copyright{
    color:#cccccc;
    font-size:14px;
    display:block;
    text-align:center;
}
.copyright a{
    color:#7cc576;
    font-weight:600;
    text-decoration: none;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.copyright a:hover {
    color: #fff;
}

.res-nav_click {
    line-height:38px;
    font-size:38px;
    text-decoration: none !important;
    color:#777777;
    font-style:normal;
    display:none;
    width:42px;
    height:27px;
    margin:20px auto;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.res-nav_click:hover, .res-nav_click:active, .res-nav_click:focus {
    color: #7cc576 !important;
}

.portfolioContainer{
    max-width: 1140px;
}


/* Animation Timers
---------------------------------*/
.delay-02s {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}
.delay-03s {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}
.delay-04s {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.delay-05s {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}
.delay-06s {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.delay-07s {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}
.delay-08s {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.delay-09s {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}
.delay-1s {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}
.delay-12s {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.delay-15s {
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}
/*Instituto*/

.matClase{
    margin-bottom: 10px;
}

td.publicado{
    text-align: right;
}

.tableFrm{
    width: 90%;
}

#descargas{
    padding: 70px 0 40px;
}
/*fin instituto*/