@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    transition: .3s ease-in-out all;
    -webkit-transition: .3s ease-in-out all;
    -moz-transition: .3s ease-in-out all;
    -ms-transition: .3s ease-in-out all;
    -o-transition: .3s ease-in-out all;

}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #fff;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow-x: hidden;
}

a {
    color: #004d93;
    font-weight: bold;
    text-decoration: none;
}

a:hover{
    text-decoration: none !important;
}

.lds-ripple {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99999;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);

    width: 100px;
    height: 100px;

    display: none;
}

.show_ripple{
    display: block;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
        top: 35px;
        left: 35px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}


label#info{
    display: block !important;
    text-align: center;
    font-size: 1em;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 25px;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.logo {
    background: url("../img/logo.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 80px;
    margin: 20px auto;
    display: block;

    z-index: 99;
}

.hide-text {
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden;
}

.app{
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0px;
    left: 0px;
    overflow: hidden;
    display: block;
    opacity: 0;
}

.show_app{
    opacity: 1;
}

.transition {
    background: #004d93;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    width: 100%;
    z-index: 1000;
}

.show_transition {
    transform: translateX(0%);
}


/* HOME SLIDE */

/* Estilos Slider */

.slide1,.slide2,.slide3,.slide4,.slide5 {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: -0px;
    left: 0px;
    z-index: -1;
}

.slide1 {
    background: url('../img/banner1.png');
    background-repeat: no-repeat;
    background-size: cover;
    animation:fade 15s infinite;
    -webkit-animation:fade 15s infinite;
} 

.slide2 {
    background:url('../img/banner2.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation:fade2 15s infinite;
    -webkit-animation:fade2 15s infinite;
}

.slide3 {
    background: url('../img/banner3.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation:fade3 15s infinite;
    -webkit-animation:fade3 15s infinite;
}

.slide4 {
    background: url('../img/banner4.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation:fade4 15s infinite;
    -webkit-animation:fade4 15s infinite;
}

.slide5 {
    background: url('../img/banner5.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation:fade5 15s infinite;
    -webkit-animation:fade5 15s infinite;
}

@keyframes fade
{
    0%   {opacity:1}
    33.333% { opacity: 0}
    66.666% { opacity: 0}
    100% { opacity: 1}
}
@keyframes fade2
{
    0%   {opacity:0}
    33.333% { opacity: 1}
    66.666% { opacity: 0 }
    100% { opacity: 0}
}
@keyframes fade3
{
    0%   {opacity:0}
    33.333% { opacity: 0}
    66.666% { opacity: 1}
    100% { opacity: 0}
}
@keyframes fade4
{
    0%   {opacity:0}
    33.333% { opacity: 0}
    66.666% { opacity: 0}
    100% { opacity: 1}
}
@keyframes fade5
{
    0%   {opacity:1}
    33.333% { opacity: 0}
    66.666% { opacity: 0}
    100% { opacity: 1}
}

.app .overlay{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    opacity: .6;
    background: #004d93;
}

.location-box{
    position: absolute;
    top: 30px;
    left: 45px;
    width: 250px;

    background-color: #fff;
    border-radius: 13px;
    z-index: 10;
}

.location-box .logo{
    padding: 20px 30px;
}

.form-box{
    position: absolute;
    height: 100vh;
    width: 400px;
    top: 0px;
    right: 150px;
    background-color: rgba(255,255,255,0.1);
    padding: 5% 40px;
}

.btn-maps{
    background-color: #ba433c;
    padding: 18px 10px;
    text-transform: uppercase;
    display: block;
    font-size: .8em;
    color: #fff;
    text-align: center;
    border-radius: 0px 0px 13px 13px;
}

.btn-maps:hover{
    background-color: #004d93;
    color: #fff;
    text-decoration: none;
}

.product-box{
    position: absolute;
    bottom: 30px;
    left: 60px;
    width: 50%;
}

.product-box .item{
    height: 150px;
    background-color: #fff;
}

.item-1{
    background: url(../img/item-1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.item-2{
    background: url(../img/item-2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.item-3{
    background: url(../img/item-3.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.product-box .item a{
    display: block;
    text-align: center;
    padding: 50px 40px;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
}

.product-box h3{
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.7);
}

.product-box h3 i{
    color: yellow;
    margin-right: 10px;
}

.info-box{
    position: absolute;
    top: 50px;
    left: 350px;
    width: 350px;
}

.info-box a{
    color: #fff;
    transition: all ease-in-out .2s;
}

.info-box a:hover{
    transform: scale(1.1);
}

.info-box .divider{
    width: 2px;
    height: 75px;
    position: absolute;
    top: 0px;
    left: 60px;
    background-color: #fff;
}

.info-box .icon-circle{
    display: inline-block;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    background-color: #fff;
    color: blue;
    text-align: center;
    margin-right: 10px;
}

.info-box .icon-circle i{
    font-size: .8em;
    line-height: 22px; 
    position: relative;
    top: -2px;
}

.info-box .list-unstyled a{
    display: block;
    padding: 5px 0px;
}

.info-box .list-inline-item a{
    font-size: 1.6em;
    padding: 0px 6px;
}

.form-control{
    font-size: 1.3rem;
    padding: 1.7rem .75rem;
}

.input-group-text{
    font-size: 1.6rem;
    padding: inherit .80rem;
}

form label{
    font-size: .8em;
    margin-top: 10px;
    margin-bottom: 5px;
}

.form-box h3{
    text-align: center;
    font-weight: bolder;
    font-size: 1.7em;
}

.form-box h4{
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 30px;
}

.form-box .btn-submit{
    display: inline-block;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: .7em;
    background-color: #fff;
    box-shadow: 0px 0px 20px -10px rgba(0,0,0,0.6);
    color: black;
    border-radius: 25px;
    margin: 0 auto;
    margin-top: 30px;
}

.form-box .row .col-md-6{
    padding-right: 10px;
    padding-left: 10px;
}

.location-box .map{
    position: relative;
    margin-top: -100px;
    opacity: 0;
}

.location-box:hover .map{
    margin-top: 0px;
    opacity: 1;
}

.owl-nav{
    position: absolute;
    width: 100%;
}

.owl-nav button{
    background-color: #fff !important;
    width: 45px;
    height: 45px;
    line-height: 30px;
    border-radius: 100%;
    position: absolute;
    box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.8);
}

.owl-nav button span{
    height: 45px;
    font-size: 1.3em;
    line-height: 45px;
    color: black;
}

.owl-nav .owl-prev{
    left: -25px;
    top: -95px;
    z-index: 10;
}

.owl-nav .owl-next{
    right: -25px;
    top: -95px;
    z-index: 10;
}

.notification{
    padding: 30px 0px;
}

.modal-content{
    position: relative;
    overflow: hidden;
}

.modal-content .modal-icon{
    position: relative;
    padding: 15px;
    text-align: center;
    transition: all ease-in-out .2s;
}

.modal-icon img{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.modal-icon .image-wrap{
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.modal-icon:hover{
    transform: scale(1.2);
}

.modal-icon h3{
    text-transform: uppercase;
    font-size: 1em;
    margin-bottom: 30px;
    color: #000 !important;
    font-weight: bold;
}

.btn-whatsapp{
    background-color: #25c866;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 2em;
    text-transform: uppercase;
    border-radius: 100%;
}

.slogan{
    position: absolute;
    top: 43%;
    left: 60px; 
    z-index: 2;
}

.slogan h4{
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.5em;
    letter-spacing: -1px;
}

.slogan p{
    font-size: 1.1em;
    margin-bottom: 20px;
}

.show-sm{
    display: none;
}

.hidden-sm{
    display: block;
}
/* Small Devices, Tablets */
@media only screen and (max-width : 640px) {
    .app {
        width: 100vw;
        height: auto;
        position: relative;
        top: 0px;
        left: 0px;
        overflow: hidden;
        display: block;
    }

    .app .overlay{
        height: 100%;
    }

    .slide1, .slide2, .slide3, .slide4, .slide5{
        height: 100%;
    }

    .slogan {
        position: relative;
        top: 0px;
        left: 0px;
        z-index: 2;
        padding: 120px 70px;
        text-align: center;
        margin-top: 215px;
    }

    .form-box {
        position: relative;
        height: auto;
        width: 80%;
        top: 0px;
        right: 0px;
        margin: 0 auto;
        background-color: rgba(255,255,255,0.1);
        padding: 5% 40px;
        margin-bottom: 60px;
    }

    .product-box{
        position: relative;
        width: 100%;
        bottom: 0px;
        left: 0px;
        padding: 40px 40px;
    }

    .hidden-sm{
        display: none;
    }

    .show-sm{
        display: block;
    }

    .info-box {
        position: absolute;
        top: 50px;
        left: initial;
        right: 50px;
        width: auto;
    }

    .info-box a{
        font-size: 1.3em;
    }

    .info-box li{
        display: block;
        margin-bottom: 10px;
    }
}