/* Import fonts from google font */
@import url('https://fonts.googleapis.com/css?family=Lobster|Montserrat&display=swap');

html, body{
    /*height: 100%;*/
    /*overflow: hidden;*/
    background: #ccc;
    /*background: var(--gray-gradient);*/
    background-image: url('../img/bgloyout.png');
    background-repeat: no-repeat;
    background-size: cover;
}

/* Variables */
:root{
    --primary-gradient: linear-gradient(to right, #00a8e8, #01313e);
    --mango-gradient : linear-gradient(to right, #ffa751, #ffe259);
    --gray-gradient: linear-gradient(to top right, #e8e8e8 0%, #cccccc 100%);
    --text-color: #F7F9F9;
    --Montserrat: "Montserrat", cursive;
    --Lobster: "Lobster", cursive;
    --primary-shadow: 3px 4px 7px rgba(27, 27, 27, 0.534);
    --border-color: rgba(0,0,0,0.329);
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
/*    height: 98%;
    max-height: 610px;*/
    padding-top: 5%;
}

.container .panel{
    width: 60%;
    height: 75%;
    min-width: 800px;
    max-width: 840px;
    box-shadow: var(--primary-gradient);
}

.row{
    display: grid;
    grid-template-columns: 60% 40%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    -moz-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
}

.row2{
    display: grid;
    grid-template-columns: 55% 45%;
}
.row2 h3,h4{
    font-family: var(--Montserrat);
    font-size: 14px;
}
.row2 h3,h4 a{
    text-decoration: none;
    color: #000017;
}
.row2 h3,h4 a:hover{
    color: #007ea7;
    transition: 0.3s;
}
.row3{
    padding-right: 10%;
}
.row3 h3,h4{
    text-align: left;
    font-family: var(--Montserrat);
    font-size: 14px;
}
.row3 h3,h4 a{
    text-decoration: none;
    color: #000017;
}

.row4{
    display: grid;
}
.row4 h3,h4{
    text-align: center;
    font-family: var(--Montserrat);
    font-size: 14px;
}
.row4 h3,h4 a{
    text-decoration: none;
    color: #000017;
}
.row4 h3,h4 a:hover{
    color: #007ea7;
    transition: 0.3s;
}

.row-logos{
    display: grid;
    grid-template-columns:50% 50%;
    width: 65%;
    margin-top:1rem;
}

.liquid{
    background: url('../img/bg-blue.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px 0 0 20px;
}

.liquid h4{
    text-align: left;
    padding: 0 2rem;
    color: whitesmoke;
    font-family: var(--Montserrat);
}

.owl-carousel{
    width: 100%;
    height: 320px;
    max-height: 330px;
}

.owl-carousel .owl-item .login_img{
    float: right;
    width: auto;
    height: 265px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-right: 3rem;
}

.owl-dots{
    position: fixed;
    padding: 0rem 0rem 0rem 0.5rem;
    display: flex !important;
    flex-direction: column;
    transform: translateY(-240px);
}

.owl-dots button{
    border-radius: 5rem;
    margin: .3rem 0;
}

.owl-dots button span{
    background: var(--text-color) !important;
    margin: 0rem .5rem !important;
}

/*.owl-dots .active{
    border: 1px solid #ffd765 !important;
}*/

.owl-dots .active span{
    background: #00a8e8
     !important;
    margin: .0rem .5rem !important;
}

.owl-h3{
    text-align: center;
    font-family: var(--Montserrat);
    font-size: 18px;
    color: white;
    line-height: 1;
}

.owl-h5{
    text-align: center;
    font-family: var(--Montserrat);
    font-size: 14px;
    font-weight: 100;
    color: white;
    line-height: 0;
}

.follow{
    padding: 2.5rem 0 1rem 0.5rem;
    /*color: whitesmoke;*/
    position: relative;
    /*font-size: 1.3rem;*/
}

.follow::after{
    content: "";
    position: absolute;
    left: 14%;
    width: 50px;
    /*border: 1px solid whitesmoke;*/
    border-radius: 4rem;
    margin-top: .5rem;
}

.follow i:first-child{
    /*margin-left: 4rem;*/
}


.icone{
    height: 20px;
}
.tooltip {
     position: relative;
     display: inline-block;
     text-decoration: none;
}
 .tooltip:hover .tooltip__text {
     opacity: 1;
     visibility: visible;
}
 .tooltip__text {
     font-family: montserrat;
     position: absolute;
     min-width: 150px;
     padding: 5px 10px;
     transition: 0.5s;
     border-radius: 5px;
     background-color: #00a8e8;
     opacity: 0;
     color: #fff;
     font-size: 14px;
     font-weight: 500;
     text-align: center;
     visibility: hidden;
     z-index: 1;
}
 .tooltip__text::after {
     display: inline-block;
     position: absolute;
     content: '';
}
 .tooltip__text--top {
     bottom: calc(100% + 10px);
     left: 50%;
     transform: translateX(-50%);
}
 .tooltip__text--top::after {
     bottom: -5px;
     left: 50%;
     transform: translateX(-50%);
     border-top: 5px solid #00a8e8;
     border-right: 5px solid transparent;
     border-left: 5px solid transparent;
}
 .tooltip__text--bottom {
     top: calc(100% + 10px);
     left: 50%;
     transform: translateX(-50%);
}
 .tooltip__text--bottom::after {
     top: -4px;
     left: 50%;
     transform: translateX(-50%);
     border-right: 5px solid transparent;
     border-bottom: 5px solid #4d1091;
     border-left: 5px solid transparent;
}
 .tooltip__text--left {
     top: 50%;
     right: calc(100% + 10px);
     transform: translateY(-50%);
}
 .tooltip__text--left::after {
     top: 50%;
     right: -4px;
     transform: translateY(-50%);
     border-top: 5px solid transparent;
     border-bottom: 5px solid transparent;
     border-left: 5px solid #4d1091;
}
 .tooltip__text--right {
     top: 50%;
     left: calc(100% + 10px);
     transform: translateY(-50%);
}
 .tooltip__text--right::after {
     top: 50%;
     left: -4px;
     transform: translateY(-50%);
     border-top: 5px solid transparent;
     border-right: 5px solid #4d1091;
     border-bottom: 5px solid transparent;
}
 .tooltip__button {
     padding: 9px 10px;
     border: 0;
     border-radius: 50px;
     background-color: #fff0;
     border: solid 1px #fff0;
     color: #fff;
     font-size: 12px;
     font-weight: 300;
     text-align: center;
     text-decoration: none;
     text-transform: uppercase;
     cursor: pointer;
     transition: 0.3s;
}
.tooltip__button:hover {
    background: #00a8e8;
    border: solid 1px #00a8e8;
    transition: 0.3s;
}
.tooltip-2 {
     position: relative;
     display: inline-block;
     text-decoration: none;
}
 .tooltip-2:hover .tooltip__text-2 {
     opacity: 1;
     visibility: visible;
}
 .tooltip__text-2 {
     font-family: montserrat;
     position: absolute;
     min-width: 350px;
     padding: 5px 10px;
     transition: 0.5s;
     border-radius: 5px;
     background-color: #00a8e8;
     opacity: 0;
     color: #fff;
     font-size: 14px;
     font-weight: 500;
     text-align: left;
     visibility: hidden;
     z-index: 1;
}
 .tooltip__text-2::after {
     display: inline-block;
     position: absolute;
     content: '';
}
 .tooltip__text-2--top {
     bottom: calc(100% + 10px);
     left: 50%;
     transform: translateX(-50%);
}
 .tooltip__text-2--top::after {
     bottom: -5px;
     left: 50%;
     transform: translateX(-50%);
     border-top: 5px solid #00a8e8;
     border-right: 5px solid transparent;
     border-left: 5px solid transparent;
}
 .tooltip__text-2--bottom {
     top: calc(100% + 10px);
     left: 50%;
     transform: translateX(-50%);
}
 .tooltip__text-2--bottom::after {
     top: -4px;
     left: 50%;
     transform: translateX(-50%);
     border-right: 5px solid transparent;
     border-bottom: 5px solid #4d1091;
     border-left: 5px solid transparent;
}
 .tooltip__text-2--left {
     top: 50%;
     right: calc(100% + 10px);
     transform: translateY(-50%);
}
 .tooltip__text-2--left::after {
     top: 50%;
     right: -4px;
     transform: translateY(-50%);
     border-top: 5px solid transparent;
     border-bottom: 5px solid transparent;
     border-left: 5px solid #4d1091;
}
 .tooltip__text-2--right {
     top: 50%;
     left: calc(100% + 10px);
     transform: translateY(-50%);
}
 .tooltip__text-2--right::after {
     top: 50%;
     left: -4px;
     transform: translateY(-50%);
     border-top: 5px solid transparent;
     border-right: 5px solid #4d1091;
     border-bottom: 5px solid transparent;
}

}
/* Second Column Login */

.cell{
    display: none;
}

.btn{
    padding: .5rem 1.5rem;
    border: none;
    border-radius: 4rem;
    background: #2b5876;
    color: whitesmoke;
    font-size: .7rem;
    font-family: var(--Montserrat);
    /*box-shadow: var(--primary-shadow);*/
    cursor: pointer;
}

.login .btn-signup, 
form .btn-login {
    background: #00a8e8;
    font-weight: bold;
    float: right;
    margin: 1rem;
    text-transform: uppercase;
}

form .btn-login:hover {
    background: #007ea7;
    transition: 0.3s;
}

.titles{
    margin-bottom: 1.5rem;
}

.titles h2{
    display: none;
}

.titles h3{
    margin: auto;
    padding-left: 0;
    text-align: center;
    margin-right: 2rem;
    padding-top: 10px;
}

form{
    height: 55%;
    max-height: 300px;
    margin-top: 3.5rem;
    margin-bottom: .4rem;
}

form h3, form h6{
    font-family: var(--Montserrat);
    padding: 0;
    margin: 0;
    padding-left: 4.7rem;
}

form h6{
    padding-left: 4.5rem;
    font-family: var(--Lobster);
    color: #444444d2;
}

form .form-group{
    text-align: left;
    border: 1px solid var(--border-color);
    margin-top: .9rem;
    margin-right: 2rem;
    border-radius: 3rem;
}
/*focus nao funcionou*/
form .form-group:focus{
    border: 1px solid #00a8e8;
    -webkit-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.29);
    box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.29);
}

form .form-group .form-input{
    padding: 0.5rem 3rem 0.5rem 1rem;
    background: transparent;
    border: none;
    font-family: var(--Montserrat);
    font-size: .9rem;
    overflow: hidden;
}

form input:focus{
    outline: none;
}

form .input-icon{
    display: inline;
    color: var(--border-color);
}

form .btn-login{
    padding: .5em 1em;
    font-size: 1.10em;
    width: 60%;
}

.centraliza_elementos_coluna {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.powered{
    font-family: var(--Montserrat);
    padding: 0;
    margin: 0;
    color: #444444d2;
    font-size: 0.50em;
}

.white{
    color: white;
    padding: 0px 5px;
}

.white:hover {
    color: #00a8e8;
    transition: 0.3s;
}

.footer{
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #ffffff75;
   text-align: center;
}
.footer h3,h4{
    text-align: center;
    font-family: var(--Montserrat);
    font-size: 14px;
}
.footer h3,h4 a{
    text-decoration: none;
    color: #000017;
}
.footer h3,h4 a:hover{
    color: #007ea7;
    transition: 0.3s;
}

/*Cookie*/
.cookie-message {
    font-family: var(--Montserrat);
    border-radius: 10px;
    padding: 15px 0;
    background: #f7f8fb;
    border: 1px solid rgba(0,0,0,.15);
    -webkit-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    -moz-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    font-size: 12px;
    line-height: 40px;
    border-top: 1px solid #e4e4e4;
    position: fixed;
    z-index: 100;
    bottom: 15%;
    right: 2%;
    margin: auto;
    max-width: 540px;
    display: -ms-flexbox;
    display: flex;
}
.cookie-message img {
    height: 50px;
    width: 50px;
    margin: 0 15px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
.cookie-message span {
    display: inline-block;
    line-height: 1.5;
    padding-right: 16px;
    border-right: 1px solid rgba(0,0,0,.1);
}
.cookie-message a.close {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: none;
    font-size: 24px;
    padding: 0 20px 0 16px;
    position: relative;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    color: #919191;
    transition: color 0.2s;
}
.cookie-message a.close:hover { color: #007ea7; }
.cookie-message a {
    display: inline-block;
    color: #01313e;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.cookie-message a:hover { color: #007ea7; }
/*End Cookie*/

/*Whatsapp*/
.whatsapp-button{
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    -moz-box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
    box-shadow: 0px 0px 33px -8px rgba(0,0,0,0.49);
}

.whatsapp-button:hover{
    background-color: #1ca24e;
    transition: 0.3s;
}
/*Fim Whatsapp*/

/*Ajustes Responsividade*/
/* Media Query for Mobile Devices */ 
@media (max-width: 720px) { 
    .liquid { 
        display: none; 
    } 
    .container .panel {
        min-width: 400px;
    }
    .row{
        display: block;
        border-radius: 5px;
    }
    .titles{
        margin-bottom: 0px;
    }
    .titles h2{
        font-family: var(--Montserrat); 
        display: block;
        text-align: center;
        margin: 0px;
        padding: 1rem 0 3rem;
    }
    .cell{
    padding: 0.5rem 7rem;
    display: block;
    }
    form {
        margin-top: 2.5rem;
        margin-bottom: 3.5rem;
        max-height: 400px;
    }
    form .form-group{
        margin-right: 1rem;
        margin-left: 1rem;
    }
    form h3{
        padding-left: 0;
        text-align: center;
    }
    form .form-group .form-input {
        padding: 0.5rem 6.5rem 0.5rem 1rem;
    }
    .row3 {
        padding-right: 0; 
        padding-bottom: 1rem;
    }
} 
/* Media Query for low resolution  Tablets, Ipads */ 
@media (min-width: 721px) and (max-width: 810px) { 
    .container .panel {
        min-width: 720px;
    }
    .liquid{
        background-position: right;
    }
    .row{
        grid-template-columns: 50% 50%;
    }
    form .form-group{
        margin-right: 2rem;
        margin-left: 2rem;
    }
    .owl-carousel .owl-item .login_img {
        height: 200px;
        padding-right: 1.5rem;
    }
    .owl-dots {
        padding: 3rem 0rem 0rem 0.5rem;
    }
} 