#sticky-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 120px;
    max-height: 20vh;

    display: flex;
    flex-direction: column;      /* stack children vertically */
    flex-wrap: wrap;

    justify-content: flex-start; /* stack from top */
    align-items: flex-start;     /* children align to left */
    background-color: white;
}

.section-white {
    width: 90%;                  /* container width relative to viewport */
    max-width: 1250px;           /* max width cap */
    margin: 0 auto;              /* horizontally center the container */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;      /* stack children vertically */
    flex-wrap: wrap;

    justify-content: flex-start; /* stack from top */
    align-items: flex-start;     /* children align to left */
    
    position: relative;          /* no absolute positioning */
    z-index: 5;
    padding-bottom: 50px;
    padding-top: 10px;
    margin-top: 85px; 
    margin-bottom: 85px;
}


.section-blue {
    padding-top: 0;
    padding-bottom: 150px;
    width: 90%;                  /* container width relative to viewport */
    max-width: 1250px;           /* max width cap */
    margin: 0 auto;              /* horizontally center the container */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;      /* stack children vertically */
    flex-wrap: wrap;

    justify-content: flex-start; /* stack from top */
    align-items: flex-start;     /* children align to left */
    
    position: relative;          /* no absolute positioning */
    z-index: 5;
}

.blue-bar::before {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #123e69;
    clip-path: polygon(
        0 40px, 
        50% 0, 
        100% 40px, 
        100% 100%, 
        50% calc(100% - 40px), 
        0 100%
    );
}

.side-by-side {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.half-wrap {
    text-align: center;
    width: 48%;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  background-color: #eeeeee;
}

.clickable:hover {
    cursor: pointer;
}

@media (max-width: 700px) {
    .expand-when-small {
        width: 100% !important;
    }

    .readjust-center {
        text-align: center;
        justify-content: center;
    }

    .readjust-center .breaks {
        margin: 0 auto !important;
    }

    .disappear-when-small {
        display: none;
        width: 0;
    }
}







#top-header {
    width: 90%;                  /* container width relative to viewport */
    max-width: 1250px;           /* max width cap */
    margin: 0 auto;              /* horizontally center the container */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;      /* stack children vertically */
    flex-wrap: wrap;

    justify-content: flex-start; /* stack from top */
    align-items: center;     /* children align to left */
    
    position: relative;          /* no absolute positioning */
    z-index: 100;
    min-height: 550px;
}

#top-header::before {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 90%;             /* or desired height */
    z-index: -1;
    background-image: url(".//general-photos/Courthouse Background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #123e69;
    list-style: none;
    padding: clamp(2px, 1vw, 10px);
    width: calc(100% - (clamp(2px, 1vw, 10px)) * 2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.pages:hover {
    background-color: #0d559d;
    transform: scale(1.05);
}

.dropdown p {
    display:block;
    text-align: center;
    font-size:clamp(4px, 1.6vw, 15px);;
    font-weight:normal;
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 0.98;
    margin: 0;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: clamp(2px, 1.6vw, 8px);;
}

.dropdown p:hover {
    color:#cecece;
    cursor: pointer;
    text-decoration: underline;
}

.pages {
    transition-duration: 0.5s;
    z-index: 1001;
}

.pages:hover .dropdown {
  display: block;
}

strong {
    font-size:90px; 
    font-weight:bold; 
    color:#ffffff; 
    font-family:"Arial Narrow", Arial, Helvetica, sans-serif; 
    margin-bottom:12px;
    display: inline-block;
}

h2 {
    font-size:90px; 
    font-weight:normal; 
    color:#ffffff; 
    font-family:"Arial Narrow", Arial, Helvetica, sans-serif; 
    margin-bottom:12px;
    display: inline-block;
}

.pages a h2 {
    font-size: clamp(4px, 1.6vw, 20px);
    letter-spacing: 0.7px;
    font-weight:normal; 
    color:#ffffff; 
    font-family:"Arial", Arial, Helvetica, sans-serif; 
    display: inline-block;
}

.pages a {
    padding: clamp(10px, 1.5vw, 40px) clamp(5px, 1.5vw, 20px);
}

h3 {
    font-size:40px; 
    font-weight:normal; 
    color:#cecece; 
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:12px;
    display: inline-block;
}

.section-white h1 {
    font-size:50px;
    font-weight:bold;
    color:#123e69;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:12px;
}

.section-white .breaks {
    width: 200px; 
    height: 2px; 
    background-color: #1e77d1; 
    border-color: #1e77d1; 
    border-radius: 3px; 
    border-width: 1px;
    margin: 0;
}

.section-white p {
    font-size:18px;
    font-weight:normal;
    color:#616161;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:12px;
    display: inline-block;
    max-width: 850px;
}

.section-blue h1 {
    font-size:50px;
    font-weight:bold;
    color:#ffffff;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:12px;
    display: inline-block;
    max-width: 850px;
}

.section-blue .breaks {
    width: 200px; 
    height: 2px; 
    background-color: #1e77d1; 
    border-color: #1e77d1; 
    border-radius: 3px; 
    border-width: 1px;
    margin: 0;
}

.section-blue p {
    font-size:18px;
    font-weight:normal;
    color:#cecece;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:12px;
    display: inline-block;
    max-width: 850px;
}

a img {
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}








.fade-top{
    display:block;
    width:100%;
    height:auto;
    --fade-size: 200px;

    /* Chrome/Safari/Edge */
    -webkit-mask-image: linear-gradient(
        to top,
        black 0,
        black calc(100% - var(--fade-size)),
        transparent 100%
    );
    -webkit-mask-repeat: no-repeat;

    /* Firefox */
    mask-image: linear-gradient(
        to top,
        black 0,
        black calc(100% - var(--fade-size)),
        transparent 100%
    );
    mask-repeat: no-repeat;
}

button h4 {
    font-size:20px;
    font-weight:normal;
    color:white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:0px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top:0px;
    line-height: 1;
    display: inline-block;
}

button {
    border-radius: 20px;
    padding: 10px;
    border-width: 5px;
    background-color: #f00;
    border-style:none;
    transition: 0.5s;
}

button:hover {
    cursor: pointer;
    filter: brightness(1.1);
    transform: scale(1.05);
}

.fade-from-right {
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent 0%, black 30%),
        linear-gradient(to top, transparent 0%, black 30%),
        linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-composite: destination-in;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%, 100% 100%, 100% 100%;

    mask-image: 
        linear-gradient(to bottom, transparent 0%, black 30%),
        linear-gradient(to top, transparent 0%, black 30%),
        linear-gradient(to right, transparent 0%, black 30%);
    mask-composite: intersect;
}

.fade-bottom {
    -webkit-mask-image: 
        linear-gradient(to top, transparent 0%, black 30%);
    -webkit-mask-composite: destination-in;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%, 100% 100%, 100% 100%;

    mask-image: 
        linear-gradient(to top, transparent 0%, black 30%);
    mask-composite: intersect;
}

.fade-all {
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent 0%, black 30%),
        linear-gradient(to top, transparent 0%, black 30%),
        linear-gradient(to right, transparent 0%, black 30%),
        linear-gradient(to left, transparent 0%, black 30%);
    -webkit-mask-composite: destination-in;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%, 100% 100%, 100% 100%;

    mask-image: 
        linear-gradient(to bottom, transparent 0%, black 30%),
        linear-gradient(to top, transparent 0%, black 30%),
        linear-gradient(to right, transparent 0%, black 30%),
        linear-gradient(to left, transparent 0%, black 30%);
    mask-composite: intersect;
}






#bottom-section {
    padding-top: 20px;
    padding-bottom: 10px;
    width: 100%;                  /* container width relative to viewport */
    margin: 0 auto;              /* horizontally center the container */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;      /* stack children vertically */
    flex-wrap: wrap;

    justify-content: flex-start; /* stack from top */
    align-items: center;     /* children align to left */
    
    position: relative;          /* no absolute positioning */
    z-index: 5;
    background-color: #123e69;
}

#bottom-section a h1 {
    font-size:17px;
    font-weight:bold;
    color:white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:0px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top:0px;
    line-height: 1;
    display: inline-block;
    overflow-wrap:break-word;
}

#bottom-section a h1:hover {
    color:#d0d0d0;
}

#bottom-section h2 {
    font-size:13px;
    font-weight:normal;
    color:#9e9e9e;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:5px;
    padding-left: 10%;
    padding-right: 10%;
    margin-top:0px;
    line-height: 0.98;
    display: inline-block;
    overflow-wrap:break-word;
}

#bottom-section a {
    font-size:15px;
    font-weight:normal;
    color:#9e9e9e;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:8px;
    padding-left: 10%;
    padding-right: 10%;
    margin-top:0px;
    line-height: 0.98;
    display: inline-block;
    overflow-wrap: anywhere;
}

#bottom-section a:hover {
    cursor: pointer;
    color:#d0d0d0;
}

#bottom-section div hr {
    width: 50px;
    height: 1px;
    background-color: #1e77d1; 
    border-color: #1e77d1; 
    border-radius: 3px; 
    border-width: 1px;
    margin: 0;
    text-align: center;
}

#bottom-section hr {
    width: 90%;
    height: 1px;
    background-color: #0d559d; 
    border-color: #0d559d; 
    border-radius: 3px; 
    border-width: 1px;
    margin: 0;
    text-align: center;
}