@font-face {
    font-family: 'Peanut Butter';
    src: url('../assets/fonts/Peanut Butter/Peanut-Butter.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Peanut Butter/Peanut-Butter.woff2') format('woff2'),
        url('../assets/fonts/Peanut Butter/Peanut-Butter.woff') format('woff'),
        url('../assets/fonts/Peanut Butter/Peanut-Butter.ttf') format('truetype'),
        url('../assets/fonts/Peanut Butter/Peanut-Butter.svg#Peanut Butter') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto/Roboto-Regular.eot');
    src: url('../assets/fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
         url('../assets/fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
         url('../assets/fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
         url('../assets/fonts/Roboto/Roboto-Regular.woff') format('woff'),
         url('../assets/fonts/Roboto/Roboto-Regular.ttf')  format('truetype'),
         url('../assets/fonts/Roboto/Roboto-Regular.svg#Roboto') format('svg');
}


.fancy-font {
    font-family: 'Peanut Butter', sans-serif;
    font-weight: 10;
    font-size: xx-large;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
}

.content::after {
    content: "";
    flex: auto;
}

.background-column {
    background-color: #f8f9fa;

}

.custom-control-label {
    padding-right: 2.5rem;
}

.custom-control-label:before,
.custom-control-label:after {
    left: unset;
    right: 0;
}

.custom-control-label:after {
    right: 1.5rem;
}

/* .navbar-nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
} */

.form-check {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-check-input {
    margin-top: 0.8rem;
}

.nav-divider {
    border-right: 1px solid var(--bs-gray);
    height: 40px;
}

/*.jumbotron-container {*/
/*    background-color: #f8f9fa;*/
/*    top: 10px;*/
/*    margin-bottom: 10px;*/
/*}*/

.card-as-button {
    text-decoration: none;
    cursor: pointer;
    color: var(--bs-body-color);
    transition: transform 0.2s ease;
    border-radius: 0;
    margin: 10px;
}

.card-as-button:hover {
    transform: scale(1.05);
}

.row {
    --bs-gutter-x: 0;
}

.card {
    width: 18rem;
    height: auto;
    box-shadow: 5px 5px #878787;
}

.card-body {
    min-height: 10rem;
    display: flex;
    flex-direction: column;
}

.card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.card-blog-body {
    min-height: 6rem;
    display: flex;
    flex-direction: column;
}

.card-text-blog {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.card-blog {
    width: 70%;
}

.hero-banner {
    position: relative;
    height: 340px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 50px;
}


.background-layer {
    background-image: url('https://placehold.co/400x340');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
}

.banner-text h1 {
    font-size: 4em;
    /* Adjust as needed */
}

.banner-text p {
    font-size: 2em;
    /* Adjust as needed */
}

.divider {
    border: none;
    height: 4px;
    background-color: black;
    width: 90%;
    margin: 20px auto;
}

.text-banner {
    font-size: 80px !important;
}

.text-title {
    font-size: 55px;
}

.table th,
.table td {
    border-top: none;
    border-bottom: none;
}

.table th:not(:first-child),
.table td:not(:first-child) {
    border-left: 1px solid #dee2e6;
}

.image-left {
    float: left;
    margin-left: 20px;
}

.image-right {
    float: right;
    margin-right: 20px;
}

.image-center {
    vertical-align: middle;
    text-align: center;
}

.image-shrink {
    width: 200px;
    height: 200px;
}

.text-left {
    text-align: left;
    vertical-align: middle;
    padding-left: 20px !important; 
}

.text-right {
    text-align: right;
    vertical-align: middle;
    padding-right: 20px !important; 
}

.text-shrink {
    font-size: auto;
}



.equal-width-table {
    table-layout: fixed;
  }
  .equal-width-table th,
  .equal-width-table td {
    width: 25%;
  }

@media screen and (max-width: 991px) {
    .nav-divider {
        border-right: none;
        border-top: 1px solid var(--bs-gray);
        width: 100%;
        height: auto;
        /* margin: 10px 0; */
    }

    .card-text-blog {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .card-blog-body {
        min-height: 8rem;
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 750px) {
    .text-shrink {
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 597px) {
    .card-text-blog {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .card-blog-body {
        min-height: 8rem;
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 580px) {
    .text-shrink {
        font-size: 0.8rem;
    }

    .image-shrink {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 350px) {
    .text-shrink {
        font-size: 0.6rem;
    }

    .image-shrink {
        width: 130px;
        height: 130px;
    }
}

@media screen and (max-width: 320px) {
    .image-shrink {
        width: 90px;
        height: 90px;
    }
}