:root {
    --Roboto: "Roboto";
    --Montserrat: "Montserrat";
    --Open_Sans: "Open_Sans";
    --Text-White: #ffffff;
    --Text-LightBlue: #43aff2;
    --Text-Blue: #0497f2;
    --Text-Pink: #e83ebc;
    --Text-Orange: #f2913c;
    --Text-SecondaryOrange: #f4511e;
    --Text-LightGrey: #222f3f;
    --Text-DarkGrey: #101c28;
    --Text-Background: #F1F1F4;
    --transition: all 0.5s ease;
    --box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
* {
    margin: 0;
    padding: 0;
}
main {
    min-height: 100vh;
    width: 100%
}
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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 {
    box-sizing: border-box;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
@media (min-width: 768px) {
    .container-fluid {
        max-width: 1680px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
}
/*.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}
*/
.section {
    padding: 60px 20px;
}

.card-icon {
    font-size: 2rem;
    color: #0d6efd;
}
.floating-search-link {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.floating-search-link a {
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
}

.floating-search-link a:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.card {
    border: none;
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    border-radius: 0;
}
.card-img-top {
    width: 100%; /* Adjust the width to fit the card */
    height: 250px !important; /* Fixed height */
    object-fit: cover; /* This will prevent distortion */
    border-radius: 0;
}

.card-header {
    border: none;
    border-radius: 0;
    border-width: 0;
    line-height: .25px;
    background-color: var(--Text-Blue);
}

.card-header:hover {
    background-color: var(--Text-Orange)
}

.card-header p {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
}

.card-header h6 {
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
    line-height: 1.5rem
}

.card-header h6 a {
    color: var(--Text-White);
    font-size: 1rem;
    font-weight: 400;
}

.card-header h6 a:hover {
    color: var(--Text-Blue);
    font-size: 1rem;
    font-weight: 400;
}

/*.card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;*/ /* Number of lines to show */
    /*-webkit-box-orient: vertical;
    height: 100%;*/ /* Adjust height as needed */
    /*flex-grow: 1;
}*/

.card-body .btn {
    align-self: flex-start;
    margin-top: auto;
}