@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    width: 100%;
    background-color: #3071a9;
    flex-direction: column;
}


.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/loader.svg) center no-repeat #fff;
}

.header {
    width: 100%;
    height: 15%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.header-title {
    width: 100%;
    height: 10rem;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
}

.header-form {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-right: 1rem;
}

.tittle {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: xx-large;
    margin: 0 1rem;
}

.logo {
    height: 10rem;
    width: auto;
}

.article {
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.container {
    display: flex;
    height: 100%;
    width: 50%;
    flex-direction: column;
}

.left {
    align-items: flex-end;
    justify-content: center;
}

.right {
    align-items: flex-start;
    justify-content: center;
}

.menu-item {
    height: 20%;
    width: 40%;
    margin: 1%;
    background-color: rgba(255, 255, 255, .2);
    color: #FFF;
    text-align: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 0;
    border: #27daff 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;

}

.menu-item:hover {
    background-color: #428bca;
    -webkit-box-shadow: 0 0 0 0 #27daff;
    box-shadow: 0 0 0 0 #27daff;
}

.link-item {
    color: inherit;
    text-decoration: none;
}

.icon-container {
    width: 20%;
}

.modal-titulo {
    font-size: 3.5rem;
    color: #428bca;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

/* The animation code */
@keyframes beat {
    0% {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(39, 218, 255, 1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(39, 218, 255, 1);
        box-shadow: 0px 0px 10px 0px rgba(39, 218, 255, 1);
    }
    50% {
        -webkit-box-shadow: 0px 0px 10px 8px rgba(39, 218, 255, 1);
        -moz-box-shadow: 0px 0px 10px 8px rgba(39, 218, 255, 1);
        box-shadow: 0px 0px 10px 8px rgba(39, 218, 255, 1);
    }
    100% {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(39, 218, 255, 1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(39, 218, 255, 1);
        box-shadow: 0px 0px 10px 0px rgba(39, 218, 255, 1);
    }
}

.btn-modal {
    border: 1px solid #27daff;
    background-color: transparent;
    color: #27daff;
    margin-right: 1rem;
    padding: .5rem 1rem;
    font-weight: bold;

    animation-name: beat;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}


.menu-title {
    flex-grow: 1;
    border-left: 1px solid #27daff;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20%;
}

.gs-form{
    color: #428bca;
}

.ex-item{
    padding: 0 5rem ;
    width: 100%;
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (max-width: 1500px) {
    .menu-item {
        font-size: 10px;
    }
}

@media (max-width: 1050px) {
    body {
        display: flex;
        flex-direction: column;
    }

    .header-form {
        margin-top: 0;
        padding-right: 1rem;
    }

    .menu-title {
        font-size: 2.5rem;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 3rem;
    }

    .header {
        height: 20%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .article {
        height: 80%;
    }

    .logo {
        width: 10rem;
        height: 10rem;
    }

    .article {
        flex-direction: column;
    }

    .tittle {
        font-size: 1.5em;
    }

    .container {
        height: 50%;
        width: 100%;
        align-items: center;

    }

    .left {
        justify-content: flex-end;
    }

    .right {
        justify-content: flex-start;
    }

    .menu-item {
        height: 10%;
        width: 90%;
    }

    .modal-titulo {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .ex-item{
        padding: 0;
    }

    .modal-titulo {
        font-size: 1.5rem;
    }

    .fa-4x {
        width: 2.5rem !important;
    }

    .menu-title {
        font-size: 1.5rem;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 3rem;
    }


    .menu-item {
        font-size: 9px;
        width: 95%;

    }

    .logo {
        height: 100%;
        width: auto;
        margin: 0;
    }

    .tittle {
        display: none !important;
    }

    .header {
        height: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .article {
        height: 75%;
        justify-content: flex-start;
    }
}

