/* General */


/* apply a natural box layout model to all elements, but allowing components to change */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 1em !important;
    color: #000 !important;
    font-family: 'Montserrat' !important;
}


/* CHATBOX
=============== */

.chatbox {
    position: fixed;
    bottom: 120px;
    right: 30px;
    z-index: 10;
}


/* CONTENT IS CLOSE */

.chatbox__support {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 300px;
    height: 350px;
    z-index: 8;
    opacity: 0;
    transition: all .5s ease-in-out;
}


/* CONTENT ISOPEN */

.chatbox--active {
    transform: translateY(-40px);
    z-index: 8;
    opacity: 1;
}


/* BUTTON */

.chatbox__button {
    text-align: right;
}

.chatbtn {
    background-color: #3ee45d;
    color: #fff;
    width: 55px;
    border-radius: 50%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    font-size: 32px;
}


/* HEADER */

.chatbox__header {
    position: fixed;
    display: inline-block;
    width: 100%;
    top: 0;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #0082CA;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* MESSAGES */

.chatbox__messages {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    flex-direction: column-reverse;
}

.messages {
    padding: 10px;
}

.messages__item {
    background: #0082CA;
    max-width: 60.6%;
    width: fit-content;
    margin-top: 10px;
}

.messages__item--operator {
    margin-left: auto;
    margin-top: 10px;
}

.messages__item--visitor {
    margin-right: auto;
    margin-top: 40px;
}


/* FOOTER */

.chatbox__footer {
    position: fixed;
    display: inline-block;
    bottom: 0;
    padding: 10px;
}

.message-form {
    width: 250px;
    background-color: #efeeee;
    border: none;
    border-radius: 3px;
    padding-left: 10px;
    font-size: 14px;
}

.chatbox__send {
    color: #0082CA;
    font-size: 18px;
}


/* Header */

.logo-img {
    width: 40%;
}

@media (max-width: 768px) {
    .logo-img {
        width: 100%;
    }
}

.espacio-logo-img {
    text-align: center;
}

.espaciotext {
    text-align: end;
}

.top {
    height: 165px;
    position: fixed;
    z-index: 2;
    padding-top: 30px;
    margin-bottom: 30px;
    background-color: #fff;
}

.head {}

.logo {
    width: 11%;
}

.escas {
    width: 125%;
}

@media (max-width: 768px) {
    .escas {
        width: 100%;
    }
}

.info {}

.head-icon {
    font-size: 30px;
    position: absolute;
    top: 12%;
    padding-left: 105px;
    position: fixed;
}

.head-text {
/*    position: fixed;
*/
    font-size: 14px;
    margin-left: 120px;
    margin-top: 20px;
    padding-left: 25px;
/*    top: 10%;
*/
}

.head-text2 {
    position: fixed;
    font-size: 14px;
    margin-left: 120px;
    padding-left: 25px;
}

.head-text3 {
    position: fixed;
    font-size: 14px;
    margin-left: 120px;
    padding-left: 25px;
    top: 9%;
}

.redes {
    padding-top: 4%;
}

.social {
    font-size: 25px;
    margin-right: 20px;
    color: #248fca;
    top: 50%;
}

.social:hover {
    text-decoration: none;
    color: #003da6;
    transition: .3s;
}

@media screen and (max-width: 768px) {
    .logo {
        visibility: visible;
        width: 20%
    }
}

@media (max-width:1280px) {
    .redes {
        visibility: hidden;
        display: none;
    }
    .info {
        visibility: hidden;
        display: none;
    }
}


/* Nav */

.main-nav {
    margin-top: 12%;
    background-color: #333333;
    height: 60px;
    position: fixed;
    display: block;
    left: 8%;
    z-index: 3;
    font-size: 14px;
}

@media screen and (max-width: 1280px) {
    .main-nav {
        visibility: hidden;
        display: none;
    }
}

.bar-content {
    display: inline-block;
    list-style-type: none;
    position: relative;
    top: 25%;
    left: 48%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.nav-list {
    position: relative;
    float: left;
    padding: 10px;
}

.nav-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    padding: 25px 35px 25px 35px;
}

.nav-link:hover {
    background-color: #0082CA;
    color: #fff;
    transition: .3s;
}

.nav-link:active {
    background-color: #0082CA;
    color: #fff;
    text-decoration: none;
}

.dropdown-menu {
    display: none;
    background-color: #0082CA;
}

.dropdown-item {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .dropdown-menu {
        visibility: hidden;
        display: none;
    }
}

.bar-link {
    text-decoration: none;
    color: #101010;
    font-size: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    position: fixed;
}

.bar-link:hover {
    color: #0082CA;
    transition: .3s;
}

@media only screen and (max-width: 1280px) {
    .bar-link {
        display: block;
    }
}

.texto-centroen {
    text-align: center;
}


/* Modal */

.nav-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    background: #efeeee;
    padding-top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 5;
}

.nav-modal:target {
    visibility: visible;
    opacity: 1;
}

.nav-modal-link {
    display: block;
    text-decoration: none;
    font-size: 35px;
    color: #101010;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
}

.nav-modal-link:hover {
    text-decoration: none;
    color: #fff;
    background-color: #0082CA;
}

.dropdown-mov {
    list-style-type: none;
}

.dropdown-menu-mov {
    display: none;
    list-style-type: none;
    text-align: center;
    width: 100%;
    padding-top: 20px;
}

.dropdown-item-mov {
    position: static;
    color: #101010;
    text-decoration: none;
    font-size: 20px;
    padding-top: 10px;
}

.dropdown-mov:hover .dropdown-menu-mov {
    display: block;
    margin-top: 0;
}

.nav-redes {
    text-align: center;
    padding-top: 20px;
}

.nav-social {
    font-size: 25px;
    align-items: center;
    margin-right: 40px;
    margin-left: 40px;
    color: #101010;
    top: 50%;
}

.nav-social:hover {
    text-decoration: none;
    color: #0082CA;
    transition: .3s;
}

.open {
    z-index: 4;
}

.open:target {
    visibility: hidden;
    display: none;
}

.close {
    z-index: 5;
}


/* Portada */

.desktop {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 17%;
}

@media only screen and (max-width: 768px) {
    .desktop {
        display: none;
        visibility: hidden;
    }
}

.mov {
    position: static;
    display: none;
    width: 100vh;
    height: auto;
    margin-top: 40%;
    visibility: hidden;
}

@media only screen and (max-width: 768px) {
    .mov {
        display: block;
        visibility: visible;
    }
}

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

.logo-blanco {
    position: absolute;
    display: inline-block;
    z-index: 1;
    top: 55%;
    padding-left: 80%;
}

@media only screen and (max-width: 768px) {
    .logo-blanco {
        max-width: 200%;
        right: 50%;
        top: 50%;
    }
}

.titulo {
    position: absolute;
    width: 100%;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cover-text {
    color: #fff;
    font-size: 70px;
    font-weight: 600;
}

.cover-text2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .titulo {
        top: 60%;
    }
    .cover-text {
        font-size: 35px;
        white-space: pre-wrap;
    }
}


/* Inicio - Carrusel */

.carousel-indicators {
    top: -11%;
    z-index: 1;
}

.carousel-indicators li {
    text-indent: 0;
    margin: 0 2px;
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 0;
    line-height: 30px;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.carousel-indicators li.active {
    border-bottom: 5px solid #0082CA;
    font-weight: 600;
}

.carousel-indicators li:hover {
    border-bottom: 5px solid #0082CA;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .carousel-indicators {
        top: -10%;
        font-size: 10px;
        text-align: left;
        white-space: nowrap;
        position: relative;
        align-items: center;
        ;
    }
    .carousel-indicators li {
        padding: 5px;
        font-size: 8px;
    }
}

.carousel-home {
    background-color: #efeeee;
    height: auto;
    display: block;
    top: -50%;
    margin-top: 80px;
}

@media only screen and (max-width: 768px) {
    .carousel-home {
        width: 100%;
        height: 570px;
        padding-bottom: 90px;
        top: 50%;
    }
    .carousel-inner {
        height: 350px;
    }
}

.carousel-inner {
    height: 32rem;
}

.carousel-item {
    height: 32rem;
    color: #fff;
    position: relative;
}

.carousel-title {
    font-size: 18px;
    font-weight: 600;
}

.carousel-caption {
    position: relative;
    padding-top: 5%;
    left: 5%;
}

.carousel-title {
    text-align: left;
    color: #333333;
    font-weight: bold;
}

.line {
    border: none;
    width: 10%;
    height: 30px;
    border-width: 0px;
    color: #0082CA;
    background-color: #0082CA;
    size: 30;
}

.carousel-desc {
    text-align: left;
    color: #333333;
    list-style-type: none;
    line-height: 18px;
    font-size: 14px;
}

.button {
    border: none;
    color: white;
    background-color: #0082CA;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    display: inline-block;
    z-index: 1;
    font-size: 16px;
    margin: 4px 2px;
    margin-top: 30px;
    cursor: pointer;
    left: -1%;
}

.button:hover {
    background-color: #003da6;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

.button-mov {
    display: none;
    visibility: hidden;
}

.button-mov:hover {
    background-color: #003da6;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

.img-column {
    position: absolute;
    display: inline-block;
    right: 20%;
    top: 5%;
    width: 40%;
}

.carousel-img-1 {
    width: 100%;
}

.carousel-img-2 {
    width: 80%;
}

.carousel-img-3 {
    width: 90%;
}

.carousel-img-4 {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .carousel.caption {
        position: absolute;
        margin-top: -5%;
        left: 0%;
    }
    .carousel.desc {
        font-size: 10px;
        white-space: nowrap;
    }
    .carousel-title {
        font-size: 14px;
    }
    .button {
        display: none;
        visibility: hidden;
    }
    .button-mov {
        position: absolute;
        display: inline-block;
        visibility: visible;
        border: none;
        color: white;
        background-color: #0082CA;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        margin: 4px 2px;
        cursor: pointer;
        margin-top: 10px;
        bottom: 10px;
    }
    .img-column {
        position: relative;
        display: inline-block;
        right: -10%;
        width: 100%;
    }
    .carousel-img-1 {
        width: 80%;
        position: relative;
        margin-top: -40px;
    }
    .carousel-img-2 {
        width: 80%;
        position: relative;
        margin-top: -40px;
    }
    .carousel-img-3 {
        width: 90%;
        position: relative;
        margin-top: -40px;
    }
    .carousel-img-4 {
        width: 80%;
        position: relative;
        margin-top: 40px;
    }
}

.carousel-control {
    color: #333333;
    text-decoration: none;
    font-size: 60px;
    border: none;
    padding-bottom: 100px;
}

.carousel-control:hover {
    color: #0082CA;
    transition: .3s;
}

@media only screen and (max-width: 768px) {
    .carousel-control {
        padding-top: 50%;
    }
}


/* Footer */

.footer {
    position: relative;
    display: inline-block;
    background-color: #0082CA;
    margin-top: 2rem;
    text-align: center;
}

.footer-content {
    position: relative;
    display: inline-block;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    font-size: 14px;
}

.footer-contact {
    position: absolute;
    display: inline-block;
    list-style-type: none;
    font-weight: 600;
    left: 10%;
}

.footer-location {
    position: relative;
    display: inline-block;
    left: -1%;
    text-align: center;
    width: 100%;
    list-style-type: none;
    font-weight: 600;
}

.footer-schedule {
    position: absolute;
    display: inline-block;
    list-style-type: none;
    font-weight: 600;
    right: 10%;
}

footer img {
    height: 12rem;
    margin: 1.5rem 0;
}

hr.socket {
    border-top: .2rem solid white;
    width: 100%;
}

.copyright {
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-weight: 200;
}

@media only screen and (max-width: 768px) {
    .footer {
        height: 35rem;
    }
    .footer-content {
        position: absolute;
        display: inline;
        font-size: 14px;
    }
    .footer-contact {
        left: 1%;
    }
    .footer-schedule {
        right: 1%;
    }
    .copyright {
        margin-top: 80px;
        font-size: 10px;
    }
}


/* Nosotros */

.about {
    margin-top: 60px;
}

.quienes-somos {
    font-weight: 600;
    font-size: 30px;
    color: #333333;
}

.somos {
    font-weight: 700;
    font-size: 14px;
    color: #000000 !important;
}

.boxes {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
}

.textbox {
    background-color: #0082CA;
    color: #fff;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 30px;
}

.about-icon {
    font-size: 50px;
    margin-bottom: 20px;
    padding-top: 60px;
}

.box-title {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 600;
}

.white-line {
    border: none;
    width: 10%;
    height: 30px;
    border-width: 0px;
    color: #0082CA;
    background-color: #fff;
    size: 30;
    margin-bottom: 30px;
}

.about-text {
    font-weight: 400;
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    .boxes {
        display: inline-block;
    }
    .textbox {
        width: 100%;
        margin-bottom: 30px;
    }
}


/* Productos */

.submenu {
    margin-top: 30px;
}

.dropbtn {
    background-color: #fff;
    border: 1px solid #333333;
    padding: 16px;
    font-size: 14px;
    cursor: pointer;
    width: 320px;
    height: 60px;
    text-align: left;
}

.caret {
    float: right;
}

.dropdown-category {
    position: relative;
    display: inline-block;
}

.category-list {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 300px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.category-list a {
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.category-list a:hover {
    background-color: #efeeee
}

.dropdown-category:hover .category-list {
    display: block;
}

.dropdown-category:hover .dropbtn {
    background-color: #efeeee;
}

@media only screen and (max-width: 768px) {
    .category1 {
        position: absolute;
        display: inline-block;
        width: 10%;
    }
    .category-2 {
        position: absolute;
        display: inline-block;
        width: 10%;
        left: 30%;
    }
    .dropbtn {
        width: 150px;
    }
}

.shop {
    margin-top: 60px;
}

.products {
    display: flex;
    justify-content: space-around;
}

.product-block {
    display: inline-block;
    border: 1px solid #efeeee;
    height: auto;
    width: 30%;
    padding: 30px;
    margin-bottom: 30px;
}

.product-img {
    width: 100%;
    object-fit: contain;
}

.product-caption {
    margin-top: 20px;
}

.product-desc {
    font-size: 1.4rem;
    font-weight: 700;
}

.espec-desc {
    font-weight: 700;
    font-size: 1rem
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    margin-top: -15px;
}

.product-button {
    position: relative;
    background-color: #0082CA;
    color: #fff;
    font-size: 14px;
    white-space: pre-wrap;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    margin-top: 50px;
}

.product-button:hover {
    background-color: #003da6;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    .product-block {
        width: 90%;
    }
}

.pag {
    margin-top: 30px;
}

.num-pag {
    text-align: left;
    margin-top: 10px;
}

.current {
    font-size: 14px;
    font-weight: 400;
}

.pag-nav {
    text-align: center;
    font-size: 30px;
    word-spacing: 25px;
}

.prev-pag {
    color: #333333;
    text-decoration: none;
}

.prev-pag:hover {
    color: #0082CA;
    transition: .3s;
}

.next-pag {
    color: #333333;
    text-decoration: none;
}

.next-pag:hover {
    color: #0082CA;
    transition: .3s;
}

.jump-to {
    text-align: right;
}

.pagbtn {
    background-color: #fff;
    border: 1px solid #333333;
    padding: 16px;
    font-size: 14px;
    cursor: pointer;
    width: 80px;
    height: 60px;
    text-align: left;
}

.dropdown-pag {
    position: relative;
    display: inline-block;
}

.pag-list {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 80px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.pag-list a {
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.pag-list a:hover {
    background-color: #efeeee
}

.dropdown-pag:hover .pag-list {
    display: block;
}

.dropdown-pag:hover .pagbtn {
    background-color: #efeeee;
}

@media only screen and (max-width: 768px) {
    .num-pag {
        position: absolute;
        display: inline-block;
    }
    .pag-nav {
        position: relative;
        display: inline-block;
        z-index: 2;
        margin: auto;
        width: 30%;
    }
    .jump-to {
        position: absolute;
        display: inline-block;
        z-index: 1;
    }
}


/* Servicios */

.tabs {
    margin-top: 30px;
}

.nav-pills {
    margin-bottom: 30px;
    justify-content: center;
}

.tab-item {
    position: relative;
    display: block;
    padding: 30px;
}

.tab-link {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
}

.tab-link.active {
    border-bottom: 5px solid #0082CA;
    font-weight: 600;
}

.tab-link:hover {
    border-bottom: 5px solid #0082CA;
    color: #333333;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .nav-pills {
        justify-content: center;
    }
    .tab-item {
        padding: 10px;
    }
    .tab-link {
        font-size: 11px;
        white-space: nowrap;
    }
}

.servicios-block {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 100%;
    padding-bottom: 30px;
}

.servicios img {
    width: 100%;
}

.servicio {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
}

.servicio-overlay {
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transition: .3s;
    color: #fff;
}

.service-icon {
    color: white;
    font-size: 68px;
    position: absolute;
    top: 28%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.service-text {
    color: white;
    font-size: 1.3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    word-wrap: break-word;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .servicios-block {
        width: 80%;
        left: 8%;
    }
    .service-icon {
        padding: 10px;
    }
    .service-text {
        font-size: 16px;
        white-space: pre-wrap;
    }
}


/* Noticias */

.news {
    margin-top: 60px;
}

.news-block {
    position: relative;
    display: block;
    overflow: hidden;
    height: auto;
    padding-right: 0;
    padding-left: 0;
}

.news-block img {
    width: 100%;
}

.tama-img {
    width: 100%;
}

.tama-video {
    width: 100%;
    height: auto;
}

.article {
    position: relative;
    display: block;
    height: auto;
}

.overlay {
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .3s;
    background: rgba(0, 61, 166, 0.6);
    color: #fff;
}

.overlay:hover {
    opacity: 0;
}

.article-date {
    color: white;
    font-size: 12px;
    position: absolute;
    top: 20%;
    left: 30%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
    font-weight: 200;
}

.article-title {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 30%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
    white-space: pre-wrap;
    font-weight: 600;
}

.article-desc {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 55%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
    white-space: pre-wrap;
    line-height: 18px;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .news-block {
        width: 80%;
        left: 10%;
    }
    .article-date {
        top: 10%;
    }
    .article-title {
        top: 23%;
    }
    .article-desc {
        top: 60%;
    }
}


/* Reclutamiento */

.empleos {
    margin-top: 60px;
}

.recluta {
    margin-top: 30px;
}

.jobs-block {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    padding: 30px;
}

.jobs-block img {
    max-width: 100%;
}

.plazas {
    position: relative;
    display: block;
    height: auto;
    max-width: 100%;
}

.overlay-jobs {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    color: #fff;
}

.overlay-2 {
    height: 80% !important;
}

.job-title {
    color: white;
    font-size: 40px;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: pre-line;
    font-weight: 600;
    line-height: 48px;
}

.job-desc {
    color: white;
    font-size: 16px;
    position: relative;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: pre-wrap;
    margin-bottom: 15px;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .jobs-block {
        width: 90%;
        left: 20px;
    }
    .job-title {
        font-size: 28px;
        line-height: 28px;
    }
}

.solicitud {
    margin-top: 90px;
    text-align: center;
}

.descarga {
    border: none;
    color: #fff;
    background-color: #0082CA;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
}

.descarga:hover {
    background-color: #003da6;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}


/* Contacto */

.paddingform {
    padding-top: 0px;
}

@media (max-width: 768px) {
    .paddingform {
        padding-top: 5rem;
    }
}

.contact {
    position: relative;
    display: block;
    background-color: #efeeee;
    height: 120vh;
    margin-top: 18%;
    padding-top: 60px;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .contact {
        height: auto;
        margin-top: 25%;
    }
}

.contact-text {
    text-align: center;
}

.contact-us {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-paragraph {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-input {
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
    font-size: 14px;
    padding-left: 10px;
}

.message-input {
    width: 100%;
    height: 280px;
    margin-bottom: 30px;
    padding-bottom: 240px;
    padding-left: 10px;
}

.contact-button {
    border: none;
    color: #fff;
    background-color: #0082CA;
    padding: 15px 32px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.contact-button:hover {
    background-color: #003da6;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

@media (min-width: 768px) {
    .contactotam {
        max-width: 600px;
    }
}

@media only screen and (max-width: 768px) {
    .contact {
        padding: 60px 30px 60px 30px;
    }
}

.alingbutton {
    text-align: end;
}


/**Login**/

.login-text {
    text-align: center;
}


/**whats**/

.whatsfloat {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    left: 24px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}