html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .valores {
        display: inline-flex
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Corbel;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 300px;
    object-fit: contain;
}

.to-fade-in {
    opacity: 0;
}

.fade-in {
    animation: fade-in 3s forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.navbar-nav > li {
    padding-left: 30px;
    padding-right: 30px;
}

.cardform {
    box-shadow: 0px 4px 25px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.floating {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    /*background-color: #25d366;*/
    color: #fff;
    /*border-radius: 50px;*/
    text-align: center;
    font-size: 30px;
    /*box-shadow: 2px 2px 3px #999;*/
    z-index: 100;
}

p {
    text-align:justify
}

@media (max-width:768px) {
}