html,
body {
    height: 100%
}

.display {
    display: none;
}

.layout-boxed html,
.layout-boxed body {
    height: 100%
}

body {
    font-family: 'Roboto', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
    width: 100%;
    background-image: url('../img/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapper {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: inset 0 2px 3px 0 rgba(255, 255, 255, .3), inset 0 -3px 6px 0 rgba(0, 0, 0, .2), 0 3px 2px 0 rgba(0, 0, 0, .2);
}

.wrapper:before,
.wrapper:after {
    content: " ";
    display: table;
}

.wrapper:after {
    clear: both;
}

.main-header {
    height: 30%;
}

.img-logotipo {
    display: flex;
    height: 75%;
    margin: 0 auto;
}

.img-melhor-forma {
    display: flex;
    margin: 0 auto;
    width: 35%;
}

.img-seguradora {
    width: 75% !important;
}

.btn-cotacao {
    margin: 0 auto;
}

.btn-cotacao,
.img-btn-whats {
    cursor: pointer;
}

@media (max-width: 767px) {
    .img-btn-whats {
        height: 45px;
        width: 45px;
    }
}

.btn-cotacao:hover,
.img-btn-whats:hover {
    opacity: 0.6;
}

.mw-70p {
    max-width: 70%;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.btn-ripple:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

.right-bottom {
    right: 0;
    bottom: 0;
}