:root {
    --bs-primary: #1947ba;
}

.carousel-item img {
    height: 100vh; /* Full viewport height */
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

input, textarea{
    margin-top: 2px;
    margin-bottom: 8px;
}

.btn-primary {
    background-color: var(--bs-primary);
    border: none;
}

.border-primary {
    border-color: var(--bs-primary);
}

.btn-outline-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
}

.navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

html {
  position: relative;
  min-height: 100%;
}

body {
   min-height:max-content;
}

.blue {
    color: #1947ba;
}

.form-group{
    margin-bottom: 4px;
}

.form-watermark {
    background-image: url('../assets/img/logos/logo-883x883.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
}

footer {
    padding-top: 32px;
    height: 70px;
}

.footer {
    background-image: url('/assets/img/shared/wave.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-size: 100% 70px;
}

/* CSS for large screens */
.site-title {
    color: #1947ba;
    font-size: 28px;
    margin-left: 10px;
}

/* CSS for small screens */
@media (max-width: 768px) {
    .site-title {
        font-size: 24px;
        overflow-wrap: break-word; /* Allow the text to wrap */
        white-space: normal; /* Allow the text to wrap */
    }
}

/* Styles for the cookie consent popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 178, 226, 0.95);
    color: black;
    padding: 16px;
    text-align: center;
    z-index: 1000;
    display: none; /* Hidden by default */
}

.cookie-consent-content {
    max-width: 650px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent p {
    margin: 0;
}

.full-screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .full-screen-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }




