body {
    /*padding-top: 20px;*/
    font-family: 'Cabin', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: 'Playball', cursive;*/
    color: darkred;
}


.divLast 
{
   /*top: 0px;*/
   /*margin:0px;*/
  /* padding: 0px 2px 2px 3px;*/    
   border-width: 2px;
   border-bottom: 1px black solid;
   /*width: 100%;*/
}


/* NAV-BAR */

.navbar {
    background-color: #999999d5;
}

#custom-nav {
    -webkit-box-shadow: 0px 0px 4px darkgray;
    -moz-box-shadow: 0px 0px 4px darkgray;
    box-shadow: 0 0 4px darkgray;
    z-index: 999;
}

.custom-navbar-toggler {
    color: #fff;
}

 a {
       text-decoration: none;
}

/* CARD */

.even_cards .card {
    min-height: 320px;
}

.cheese_cards .card {
    min-height: 340px;
}

.tools_cards .card {
    min-height: 360px;
}

.card {
    margin-bottom: 10px;
    margin-left:  -10px;
    margin-right: -10px;
    background-color: rgba(255, 255, 255, 1);

    -webkit-box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.3);
}




@include media-breakpoint-up(sm) {
    html {
        font-size: 16px;
    }
}

@include media-breakpoint-up(md) {
    html {
        font-size: 20px;
    }
}

@include media-breakpoint-up(lg) {
    html {
        font-size: 28px;
    }
}

.pagination {
    margin-bottom: 30px;
}

/* Multi-line truncation utility */
.truncate-3-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3; /* non-standard, added for linters/compat */
    overflow: hidden;
}