/*********************
  Media Query Classes
**********************/
@media only screen and (max-width: 600px)
{
    .hide-on-small-only,
    .hide-on-small-and-down
    {
        display: none !important;
    }
}

@media only screen and (max-width: 992px)
{
    .hide-on-med-and-down
    {
        display: none !important;
    }
}

@media only screen and (min-width: 601px)
{
    .hide-on-med-and-up
    {
        display: none !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px)
{
    .hide-on-med-only
    {
        display: none !important;
    }
}

@media only screen and (min-width: 993px)
{
    .hide-on-large-only
    {
        display: none !important;
    }
}

@media only screen and (min-width: 1201px)
{
    .hide-on-extra-large-only
    {
        display: none !important;
    }
}

@media only screen and (min-width: 1201px)
{
    .show-on-extra-large
    {
        display: block !important;
    }
}

@media only screen and (min-width: 993px)
{
    .show-on-large
    {
        display: block !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px)
{
    .show-on-medium
    {
        display: block !important;
    }
}

@media only screen and (max-width: 600px)
{
    .show-on-small
    {
        display: block !important;
    }
}

@media only screen and (min-width: 601px)
{
    .show-on-medium-and-up
    {
        display: block !important;
    }
}

@media only screen and (max-width: 992px)
{
    .show-on-medium-and-down
    {
        display: block !important;
    }
}

@media only screen and (max-width: 600px)
{
    .center-on-small-only
    {
        text-align: center;
    }
}

.order-card {
    color: #fff;
}

.bg-c-blue {
    background: linear-gradient(45deg,#4099ff,#73b4ff);
}

.bg-c-green {
    background: linear-gradient(45deg,#2ed8b6,#59e0c5);
}

.bg-c-yellow {
    background: linear-gradient(45deg,#FFB64D,#ffcb80);
}

.bg-c-pink {
    background: linear-gradient(45deg,#FF5370,#ff869a);
}


.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    border: none;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card .card-block {
    padding: 25px;
}

.order-card i {
    font-size: 20px;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

/* SLIDER */


.slider{
    display: flex;
}
.slider .card{
    flex: 1;
    margin: 0 10px;
    background: #fff;
}
.slider .card .img{
    height: 230px;
    width: 100%;
}
.slider .card .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider .card .icons{
    height: 50px;
    width: 100%;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0C2B5A 0%, #0a4364 100%);
    font-weight: 600;
    color:#fff;
    vertical-align: middle;
    padding-top: 12px;
    font-size: 13pt;
}

.slider .card .content{
    padding: 10px 20px;
}

.card:hover{
    cursor: pointer;
    opacity: 0.9;
    background-color: #bbb ;
}

.card .content .title{
    font-size: 25px;
    font-weight: 600;
    text-align: justify;
}

.card .content .sub-title{
    font-size: 20px;
    font-weight: 600;
    color: #0a4364;
    line-height: 20px;
    text-align: justify;
}

.card .content p{
    text-align: justify;
    margin: 10px 0;
    font-size: 12pt;
}
.card .content .btn{
    display: block;
    text-align: left;
    margin: 10px 0;
}
.card .content .btn button{
    background: #e74c3c;
    color: #fff;
    border: none;
    outline: none;
    font-size: 17px;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.card .content .btn button:hover{
    transform: scale(0.9);
}

@media screen and (max-width: 480px) {
    .container-slider{
        padding-left: 5px !important;
        padding-right: 5px !important;
        padding-bottom: 50px !important;
    }
}

/* Telefones em paisagem a tablet em retrato */
@media (max-width: 767px) {
    .container-slider{
        padding-left: 5px !important;
        padding-right: 5px !important;
        padding-bottom: 50px !important;
    }
}

/* Tablet em retrato a paisagem e desktop */
@media (min-width: 768px) and (max-width: 979px) {
    .container-slider{
        padding-left: 90px !important;
        padding-right: 90px !important;
        padding-bottom: 50px !important;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .container-slider{
        padding-left: 90px !important;
        padding-right: 90px !important;
        padding-bottom: 50px !important;
    }
}

.owl-nav{
    margin-top: 30px;
    
}

.owl-prev, .owl-next, .owl-prev span, .owl-next span{
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 4px;
    font-size: 18px !important;
    background-image: linear-gradient(160deg, #0C2B5A 0%, #0a4364 100%);
    color: #fff !important;
    border-radius: 20px !important;
    margin-left: 15px;
    margin-right: 15px;
    outline: #fff !important;
}
/** SLIDER */