body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#whatsapp {
    display: block;
    position: fixed;
    top: 90%;
    right: 0px;
    width: 50px;
    height: 50px;
    background-image: url(../img/what.png);
    background-size: 100%;
    background-repeat: no-repeat;
    animation: what 2s 3 ease-in-out;
    animation-direction: alternate;
    z-index: 999;
}
#botonmenu {
    display: none;
}
p {
    text-align: justify;
}
a {
    text-decoration: none !important;
}
/*fin de seccion header*/

/*NEW RG THEME*/
.text-primary {
    color: #0047AB !important;
}
.text-secondary {
    color: #00CED1 !important;
}
.bg-rg-primary,
.bg-primary,
.btn-primary {
    background-color: #0047AB !important;
}
.bg-rg-secondary,
.bg-secondary,
.btn-secondary {
    background-color: #00CED1 !important;
}
.btn-secondary {
    border-color: #00CED1 !important;
}
/*NEW RG THEME*/



/*NEW PRICING*/
.card {
    border: none;
    padding: 10px 50px;
}
.card::after {
    position: absolute;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:hover {
    transform: scale(1.02, 1.02);
    -webkit-transform: scale(1.02, 1.02);
    backface-visibility: hidden;
    will-change: transform;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .75) !important;
}
.card:hover::after {
    opacity: 1;
}
.card:hover .btn-outline-primary {
    color: white;
    background: #007bff;
}
/*END NEW PRICING*/


/*comienzo de vistas responsive*/
@media handheld,
screen and (min-width:1200px) and (max-width:1799px) {

}

@media handheld,
screen and (min-width:800px) and (max-width:1199px) {
    .amazingslider-title-1 {
        font-size: 30px !important;
    }

    .amazingslider-description-1 {
        font-size: 20px !important;
    }
}

@media handheld,
screen and (min-width:600px) and (max-width:799px) {
    #container-header {
        width: 100%;
        height: 125px;
    }
    .amazingslider-title-1 {
        font-size: 15px !important;
    }

    .amazingslider-description-1 {
        font-size: 15px !important;
    }
}

@media handheld,
screen and (max-width:599px) {
    .amazingslider-wrapper{
        height: 320px !important;
    }
    .amazingslider-title-1 {
        font-size: 20px !important;
        position: relative;
        top: 140px !important;
    }
    .amazingslider-description-1 {
        font-size: 15px !important;
        position: relative;
        top: 140px !important;
    }
}



@keyframes slide {
    from {
        margin-left: -100%;
    }
    to {
        margin-left: 0%;
    }
}

@keyframes what {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.8);
    }
}