:root {
    --primary-color: #002d5d;
    --secondary-color: white;
  }

html, body {
    font-family: Lato,sans-serif;
    font-weight: 200;
    overscroll-behavior-x: none;
}

div, a {
    color: var(--primary-color);
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
    border-bottom: var(--primary-color) 1.6px solid;
    margin-bottom: 1rem;
}

h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
}


.header-logo {
    height: 100%;
    width: 360px;
    @media only screen and (max-width: 767px) {
        width: 320px;
        border: none;
    }
}

.header-logo.default {
    @media only screen and (min-width: 768px) {
        content:url("/images/Logos_Stacked_Left_Align.svg");
        width: 570px;
    }

}

.header {
    background-color:var(--secondary-color);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row {
    background-color: var(--secondary-color);
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
    margin-bottom: 2rem;
}

.footer-logo {
    /* flex: 1; */
    /* aspect-ratio: 3/1; */
    gap: 10px;
    height: 100px;
    width: 250px;
    object-fit: contain;
}


.text-box {
    background-color: var(--secondary-color);
    max-height: 600px;
    padding: 50px 60px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.description {
    max-height: 500px;
    overflow: auto;
}

.document-container {
    background-color: var(--primary-color);
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

table tbody tr td:nth-child(1) {

    @media only screen and (max-width: 1000px) {
        max-width: 180px;
        word-wrap: break-word;
    }
}

.white-text {
color: white;
}

.modal-alert {
    margin-top: 3%;
    display: none;
}

.carousel-inner {
     max-height: 600px;
}

.carousel-item-image {
    object-fit: contain;
    max-height: 600px;
}

.site-map {
    width: 100%;
    height: auto;
}

.page-not-found {
    text-align: center;
    padding-bottom: 20%;
    padding-top: 10%;

    .description {
        font-size:large;
    }

    h1 {
        font-size: xxx-large;
    }
}

.locrating-map {
    width:100%;
    height:600px;
    border:1px solid #CCCCCC;
    display: block !important;
}

.download-all-btn {
    float: right;
}

.checkbox {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 10px;
}