body {
    margin: 0;
    font-family: 'Source Sans Pro',sans-serif;
}
header {
    position: sticky;
    top: -36px;
    background: #fff;
    padding-bottom: 1px;
	z-index: 100;
}
h2 {
    font-weight: 400;
}
.content-width {
    margin: 0 auto;
    max-width: 1200px;
}
.flex {
    display: flex;
}
button {
    background: #8c1515;
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-weight: 800;
    letter-spacing: 1px;
}
button:hover {
    background: #000;
    cursor: pointer;
}
.center {
    text-align: center;
}
.main-content p {
    font-size: 17px;
    line-height: 30px;
}
.main-content li {
    font-size: 17px;
    line-height: 30px;
}
@media (max-width: 1200px) {
    .content-width {
        max-width: 900px;
    }
}
@media (max-width: 989px) {
    .content-width {
        max-width: 90%;
    }
    button {
        font-size: 12px;
    }
}
@media (max-width: 475px) {
    .content-width {
        max-width: 350px;
    }
}
/* Header and Nav */
.announcement-bar {
    background: #8c1515;
    padding: 8px 0 4px;
}
.search-section {
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
    gap: 20px;
}
.search-bar input[type="search"] {
    border: 2px solid #000;
    width: 325px;
    height: 40px;
    font-size: 17px;
    padding-left: 14px;
}
.search-bar img {
    position: absolute;
    margin: 10px 0 0 -30px;
}
.desktop-nav ul {
    padding: 0;
}

.desktop-nav .menu > li,
.mobile-nav .menu > li {
    list-style: none;
    padding: 5px 40px 5px 0;
    font-size: 17px;
    font-weight: 500;
}
.desktop-nav .sub-menu li,
.mobile-nav .sub-menu li {
    list-style: none;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
}
.desktop-nav .sub-menu.more,
.mobile-nav .sub-menu.more {
    left: 225px;
    bottom: 37px;
    width: 315px;
    display: none;
}
.desktop-nav .sub-menu.more:hover,
.desktop-nav .sub-menu li:hover .sub-menu.more {
    display: block;
}
.desktop-nav .menu li a {
    padding: 4px 0;
    text-decoration: none;
    color: #000;
}
.desktop-nav .menu > li > a:hover {
    border-bottom: 5px solid #000;
    cursor: pointer;
}
.desktop-nav .sub-menu {
    position: absolute;
    background: #fff;
    border: 1px solid #000;
    border-style: none solid solid solid;
    margin-top: 8px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.desktop-nav .sub-menu:hover,
.desktop-nav .menu li:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
}
.sub-menu li {
    padding: 10px;
}
.desktop-nav .sub-menu li:hover {
    background: #ddd;
    cursor: pointer;
}
.mobile-nav {
    display: none;
}
.mobile-nav .menu {
    flex-direction: column;
}
.mobile-nav button {
    background: none;
    border: none;
}
.mobile-nav .side-nav button {
    position: absolute;
    top: 20px;
    right: 20px;
}
.mobile-nav ul {
    display: none;
    
}
.mobile-nav.open ul#MobileNavId,
.mobile-nav.open #mobileOverlay,
.mobile-nav.open .sub-menu.open  {
    display: block;
}
.mobile-nav .sub-menu {
    padding-left: 10px;
}
.mobile-nav .sub-menu.more {
    padding-left: 20px;
}
.mobile-nav .sub-menu li {
    padding: 10px 0;
}
.side-nav {
    height: 100%;
    width: 0;
    margin: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: #fff;
    overflow-x: hidden;
    padding-top: 60px;
    box-shadow: 0 0 20px 0 #00000050;
}
#mobileOverlay {
    background: #00000050;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.overlay {
    background: #000;
    width: 100%;
}
.heading {
    background: #8c1515;
    border-bottom: 20px solid #000;
    color: #fff;
    padding: 15px 0;
}
.heading h1 {
    font-weight: normal;
    font-size: 45px;
}


@media (max-width: 989px) {
    
    .mobile-nav {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
    .header-section {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .announcement-bar img {
        height: 15px; 
        padding-left: 10px; 
    }
    .search-section > img {
        height: 24px;
    }
    .search-section input {
        height: 30px;
    }
    
    .heading h1 {
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .header-section nav {
        width: 20%;
    }
    .search-section {
        flex-wrap: wrap;
    }
}
@media (max-width: 475px) {
    .search-section > img {
        height: 22px;
    }
    .search-bar input[type="search"] {
        width: 280px;
    }
    button#mobileMenuIcon {
        padding: 0 20px 0 0;
    }
    .announcement-bar > div {
        text-align: center;
    }
    
}
/* Home Page */
.hero-section {
    background-image: url(images/Building1.jpg);
    background-position: 0 55%;
    height: 375px;
}
.hero-section .core-values {
    flex-direction: column;
    align-items: center;
    width: fit-content;
}
.multi-column {
    background: #eee;
    margin: 0 15px;
}
.multi-column > div {
    gap: 20px;
    margin: 20px auto;
    padding: 20px;
    justify-content: center;
}
.multi-column .content-box {
    width: 50%;
    max-width: 515px;
}
.multi-column .alerts-section {
    gap: 20px;
}
.multi-column .alerts-section .content-box {
    max-width: unset;
}
.content-box,
.long-content-box {
    padding: 20px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
.content-box > img {
    height: 250px;
    object-fit: cover;
    object-position: 60% 7%;
}
.main-content .content-box p {
    font-size: 17px;
    line-height: 24px;
}
.six-block-section {
    padding: 40px 0;
}
.six-block-section > div {
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
}
.six-block-section .content-box {
    flex-direction: column;
    width: 350px;
    padding: 0;
}
.six-block-section h3 {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
}
.six-block-section .buttons {
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.six-block-section .buttons button {
    padding: 10px 20px;
}
.six-block-section .content-box .description {
    padding: 20px 20px 30px 20px;
    gap: 10px;
    flex-direction: column;
}
.apps {
    gap: 20px;
    margin: 10px;
}
.apps img {
    height: 30px;
}
.find-us-map {
    margin: 20px auto;
    justify-content: center;
}
.find-us-map iframe {
    border: 1px solid #000;
    box-shadow: 0 0 15px 0 #00000040;
}
@media (max-width: 1200px) {
    .multi-column .alert-su .content-box {
        width: unset;
        max-width: unset;
    }
}
@media (max-width: 989px) {
    .hero-section .core-values {
        width: unset;
    }
    .multi-column > div {
        flex-direction: column;
    }
    .multi-column .content-box {
        width: unset;
        max-width: unset;
    }
    .six-block-section > div {
        gap: 20px;
    }
    .alerts-section {
        flex-direction: column;
        gap: 20px;
    }
}
/*Chief's Message*/
.chief-message {
    min-height: 65vh;
    display: flex;
}
.main-content.chief-message .summary  {
    margin: auto;
    height: fit-content;
}
.chief-message li {
    font-size: 17px;
}
/*Lost & Found*/
.main-content.lost-found {
    min-height: 65vh;
    display: flex;
}
.main-content.lost-found .summary  {
    margin: auto;
    height: fit-content;
}



/* Clery Page */
.main-content .summary-bg {
    background-image: url(./images/1200x0.jpg);
    padding: 20px;
    background-position: 0 60%;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-content .summary {
    border: 1px solid #000;
    box-shadow: 0 0 20px 0 #00000050;
    padding: 20px 30px;
    margin: 20px auto;
    background: #ffffffef;
}
.main-content .form-section {
    border: 5px solid #000;
    border-style: double none;
}
.main-content .form-section .buttons {
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
}
.main-content .employment {
    margin: 50px auto; 
    width: fit-content;
}
.main-content .employment .content-box > img {
    height: 20vw;
    object-fit: unset;
    object-position: unset;
}
.main-content .faq {
    margin: 50px auto;
}
.main-content .faq-section {
    margin-bottom: 50px;
}
.main-content .multi-column h2,
.main-content .faq h2,
.main-content .security-reports h2 {
    margin: 0 0 10px 0;
}
.main-content .faq-section table {
    border: 1px solid #000;
    border-spacing: 0;
}
.main-content .faq-section table thead {
    background: #eee;
}
.main-content .faq-section table td {
    padding: 20px;
    border: 1px solid #000;
}
.main-content .alert-su {
    flex-wrap: wrap;
}
@media (max-width: 989px) {
    .main-content .summary {
        width: 85%;
    }
    .main-content .form-section .buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 300px;
    }
    .main-content .form-section a button {
        width: 300px;
    }
}
@media (max-width: 475px) {
    .main-content .summary {
        width: 80%;
    }
    .main-content .faq-section table td {
        padding: 15px;
    }
    .main-content h2 {
        font-weight: 600;
        font-size: 18px;
    }
    .main-content p,
    .main-content li {
       font-size: 15px; 
    }
    .heading h2 {
    font-weight: normal;
    font-size: 30px;
}
}

/* Previous Alerts */
.main-content .previous-alerts {
    padding: 40px 20px;
    border: 1px solid #eee;
    background: #fff;
    margin: 30px auto;
    min-height: 500px;
}
.main-content .left-column {
    width: 35%;
    border-right: 1px solid #eee;
}
.main-content .right-column {
    width: 65%;
}
.main-content .alert-heading {
    flex-direction: column;
    align-items: center;
}
.main-content .alert-heading h3 {
    opacity: .8;
    font-weight: 500;
}
.main-content .alert-links {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}
.main-content .alert-links a {
    color: #337ab7;
    text-decoration: none;
}
.main-content .alert-links a:hover {
    color: #23527c;
    text-decoration: none;
}
.main-content .left-column input{
    height: 36px;
    width: 90%;
}
.previous-alerts .pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    padding: 0;
}
@media (max-width: 768px) {
    .main-content .previous-alerts {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 20px;
    }
    .main-content .left-column,
    .main-content .right-column {
        width: unset;
    }
    .main-content .left-column {
        border-right: unset;
        border-bottom: 1px solid #eee;
        padding-top: 20px;
    }
}
/*Announcements*/
.announcement-container {
    display: flex;
}
#sdps-intro.announcements {
    width: 35%;
}
@media (max-width: 768px) {
    .announcement-container {
        flex-direction: column;
    }
    #sdps-intro.announcements {
        margin-top: 20px;
        width: unset;
    }
    #main-content.announcements {
        padding-top: unset !important;
    }
}
/* Our Team */
.our-team img {
    width: 40%;
    object-fit: cover;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
.our-team .content-box p,
.our-team .content-box li {
    font-size: 17px;
}
@media (max-width: 989px) {
    .our-team img {
        display: none;
    }
}

/* Security Reports */
.security-reports {
    background-image: url(images/mathcorner.jpg);
    background-position: 0 55%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 65vh;
}
.security-reports .left-column {
    gap: 10px;
    flex-direction: column;
    width: 50%;
    border: none;
}
.security-reports .report {
    gap: 10px;
}
.security-reports .past-reports {
    flex-wrap: wrap;
    gap: 30px;
}
.security-reports > div {
    padding: 20px;
    justify-content: center;
    gap: 50px;
}
.security-reports .content-box {
    background: #ffffffec;
}
.security-reports .hard-copy .content-box {
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.security-reports .hard-copy {
    width: 35%;
}
.security-reports .hard-copy img {
    object-fit: unset;
    height: auto;
    width: 350px;
}

dialog button.close {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    color: #000;
}
dialog::backdrop {
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .security-reports .hard-copy {
        width: 45%;
    }
}
@media (max-width: 989px) {
    dialog:modal {
        margin: auto 20px;
    }
    .security-reports > div {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    .security-reports {
        background-image: url(images/mathcorner.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: unset;
    }
    .security-reports .left-column, 
    .security-reports .hard-copy {
        width: unset;
    }
}
@media (max-width: 650px) {
    .security-reports .report {
        flex-direction: column;
        align-items: center;
    }
    .security-reports .hard-copy img {
        width: 325px;
    }
}

/* Event Security */
.event-hero-section {
    background-image: url(images/Trucks.jpg);
    background-repeat: no-repeat;
    background-position: 0 55%;
    background-size: cover;
    height: 500px;
}
.event-hero-section .hero-info {
    border: 1px solid #000;
    box-shadow: 0 0 20px 0 #00000050;
    padding: 20px 30px;
    background: #fff;
    position: relative;
    top: 30px;
    width: 500px;
}
.event-hero-section .hero-info .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.event-security-services {
    width: 100%;
    margin: 20px auto;
}
.event-security-services .content-width {
    gap: 80px;
}
.event-security-services .long-content-box.services {
    width: 100%;
}
.image-grid .content-box {
    padding: 0;
}
.image-grid {
    display: flex;
    gap: 20px;
    height: 550px;
}
.image-grid .right-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.image-grid .content-box.right {
    display: flex;
}
.image-grid .content-box > img {
    object-position: 65% 50%;
    height: 255px;
}
.image-grid .content-box.left > img {
    height: 100%;
}

.hero-buttons > a {
    width: 100%;
    display: flex;
    background: #8c1515;
    justify-content: center;
    text-decoration: none;
}
.hero-buttons a button {
    background: transparent;
}
.hero-buttons a:not(.link):hover {
    background: #000;
}
.event-security dialog {
    width: 600px;
    height: fit-content;
    margin: auto;
    padding: 48px;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
}
.event-security dialog#paymentOptions {
    width: 80%;
    padding: 20px;
}
.event-security dialog#contactEvents {
    padding: 20px;
    width: 600px;
}
.event-security dialog#contactEvents h1{
    font-size: 24px;
}
.event-security dialog h1 {
    text-align: center;
}
.event-security dialog a:not(.link) {
    display: flex;
    justify-content: center;
    text-decoration: none;
}
.event-security dialog a.link {
    text-decoration: none;
}
.event-security dialog div {
    background-color: #fff;
    padding: 10px 30px 30px 30px;
    height: fit-content;
}
.event-security .content-box dialog p {
    font-size: 17px;
    line-height: 32px;
}
.event-security .payment-option,
.event-security .contact-us {
    color: -webkit-link;
}
.event-security .payment-option:hover,
.event-security .contact-us {
    cursor: pointer;
}
@media (max-width: 1200px) {
    .image-grid {
        display: none;
    }
}
@media (max-width: 1200px) and (min-width: 990px) {
    .event-security .six-block-section > div {
        gap: 10px;
    }
    .event-security .six-block-section .content-box {
        width: 290px;
    }
}
@media (max-width: 989px) {
    .event-hero-section .hero-info {
        width: 80%;
        margin: 0 auto;
    }
    .event-security dialog {
        width: 80%;
    }
}
@media (max-width: 600px) {
    .event-security dialog {
        width: 80%;
        height: calc(100% - 100px);
        padding: 10px;
    }
    .event-security .content-box dialog p {
        font-size: 16px;
    }
    .event-security dialog#parties .close {
        color: #000;
    }
    .event-security dialog#paymentOptions div {
        padding: 10px 0px 30px 0px;
    }
    .event-security dialog#contactEvents {
        width: 80%;
    }
}

/* Core Values */
.core-values-img {
    margin: 30px auto;
    width: fit-content;
}
.core-values-img img {
    width: 90vw;
    padding: 20px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
/* Bike Abatement */
.bikes {
    gap: 30px;
    margin: 30px auto;
}
.bikes h2 {
    margin: 0 0 10px 0;
}
.bikes .content-box {
    width: 45%;
}
.bikes img {
    width: 48%;
    object-fit: cover;
    border: 1px solid #000;
    box-shadow: 0 0 15px 0 #00000040;
}
.bike-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.bike-buttons a {
    text-decoration: none;
}
.bike-buttons button {
    background: transparent;
}
.bike-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.bike-buttons a {
    width: 400px;
    justify-content: center;
    display: flex;
    background: #8c1515;
}
.bike-buttons a:hover {
    background: #000;
}
.accordion-section {
    margin: 40px auto;
}
#accordion {
    margin: 0 auto;
    flex-direction: column;
    padding: 0;
}
#accordion > li {
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
}
#accordion li label {
    cursor: pointer;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    background: #c0c0c0;
    color: #000;
    margin: 0;
}
#accordion li label span {
    padding-right: 10px;
}
#accordion li label + input[type="checkbox"] {
    display: none;
}
#accordion ol {
    padding-bottom: 30px;
}
#accordion ol li {
    padding: 5px 0;
}
#accordion .content {
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
    background: #fff;
}

#accordion .content p {
    padding: 0 20px;
}
#accordion .content button {
    margin: 10px 0 20px 20px;
}
#accordion label + input[type="checkbox"]:not(:checked) + .content {
    transition: 0s;
}
#accordion label + input[type="checkbox"]:checked + .content {
    max-height: 2000px;
    border: 2px solid #000;
    margin-top: 10px;
    transition: 0s;
}
.bikes.locks {
    height: 200px;
}
.bikes.donations {
    height: 300px;
}
@media (max-width: 1200px) {
    .bikes.locks {
        height: 250px;
    }
    .bikes.donations {
        height: 300px;
    }
    .bikes img {
        display: none;
    }
    .bikes .content-box {
       width: 90%;
    }
    .bikes.storage {
        flex-direction: column;
    }
}
@media (max-width: 989px) {
    #accordion {
        max-width: 600px;
    }
    #accordion li label {
        font-size: 16px;
    }

}
@media (max-width: 645px) {
    .bikes.locks {
        height: 300px;
    }
    .bikes.donations {
        height: 350px;
    }
    #accordion {
        max-width: 350px;
    }
    #accordion li label {
        font-size: 14px;
    }
    .bike-buttons a {
        width: 325px;
    }

}
/* Register Bike */
.register-bike {
    flex-direction: column;
    width: 50%;
    justify-content: space-between;
}
.register-bike img {
    max-width: 555px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;

}
.register-bike .content-box {
    width: 100%;
}
.bike-sales .content-width{
    flex-direction: column;
}
.bike-sales .content-width,
.register-bike {
    align-items: center;
}
.bike-sales .content-box {
    width: 90%;
    margin: 20px 0;
}
.register-bike {
    width: 100%;
}
@media (max-width: 1200px) {
    
}
/* House Checks */
.house-check {
    min-height: 65vh;
    display: flex;
}
.house-check-request {
    margin: auto;
    max-width: 800px;
    padding: 20px 30px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
@media (max-width: 989px) {
    .house-check-request {
        margin: 20px;
    }
}
/* Security Assessment */
.security-assessment {
    min-height: 65vh;
    display: flex;
}
.security-assessment .summary{
    height: fit-content;
}

/* SafeZone */
.safe-zone .info-section {
    margin: 30px auto;
    gap: 20px;
}
.get-app {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.info-section a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin-top: 30px;
}
.info-section img:not(.star) {
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
.center {
    text-align: center;
}
.qr-code-section {
    justify-content: space-evenly; 
    margin: 30px auto;
}
.safe-zone .qr-code-section.content-box img {
    height: 200px;
}
.qr-code-description {
    width: 55%;
}
.qr-codes {
   align-items: center;
   gap: 20px; 
}
.quote {
    background: #eee;
    padding: 40px 0;
    margin: 30px 0;
}
.more-information {
    background-image: url(images/Phone-in-hand-on-dark-blue.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    height: 800px;
}
.more-information > div {
    display: flex;
    color: #fff;
    height: 100%;
}
.more-information h1 {
    font-size: 66px;
    letter-spacing: 2px;
    font-weight: 400;
}
.more-information h2 {
    font-size: 22px;
}
.more-information .info-inner {
    font-size: 66px;
    letter-spacing: 2px;
    font-weight: 400;
    max-width: 800px;
    line-height: 36px;
    margin: auto;
}
.more-information a {
    color: #fff;
}
.overlay {
    position: relative;
    background: #00000080;
}

@media (max-width: 1200px) {
    .safe-zone .info-section {
        flex-direction: column;
    }
}
@media (max-width: 989px) {
    .qr-code-section {
        flex-direction: column;
        align-items: center;
    }
    .qr-code-description {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .qr-codes {
        flex-direction: column;
        align-items: center;
    }
    .more-information h1 {
        font-size: 40px;
    }
    .more-information h2 {
        font-size: 16px;
    }
    .more-information .info-inner {
        max-width: 350px;
    }
    .more-information {
        background-position: 50% 0;
    }
    .quote {
        text-align: center;
    }
}

/* Employment Positions - PSO, Deputy, SEP */
.heading h1.employment {
    margin: 0;
}
.employment-heading {
    justify-content: space-between;
    align-items: center;
}
.employment-heading button {
    border: 2px solid #fff;
}
.toc.content-box {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 10px; 
    padding-bottom: 20px;
}
.toc.content-box img {
    height: 200px;
}
.toc a {
    width: 305px;
    background: #8c1515;
}
.toc a:hover {
    background: #000;
}
.toc a button {
    width: 315px;
    background: transparent;
}
.about-section,
.minimum-section,
.special-section,
.salary-section,
.additional-section {
    margin: 30px auto;
    gap: 30px;
}
.special-section {
    height: 400px;
}
.about-section .content-box p,
.about-section li {
    font-size: 17px;
}
.section-imgs {
    flex-direction: column;
    width: 40%;
    justify-content: space-between;
    gap: 10px;
}
.pso .multi-column img:not(.star),
.sep .multi-column img:not(.star),
.section-imgs img,
.minimum-section img,
.special-section img,
.salary-section img {
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
.minimum-section li,
.special-section li {
    font-size: 17px;
    line-height: 24px;
}
.minimum-section ul,
.special-section ul {
    padding-left: 20px;
}
.essential-section {
    flex-wrap: wrap;
    background: unset;
    gap: 20px;
    margin: 20px auto;
    padding: 20px;
    justify-content: center;
}
.essential-section .content-box {
    width: 45%;
}
.essential-section .content-box h2 {
    margin: 0 0 10px 0;
}
.deputy .minimum-section li {
    font-size: 17px;
}
.deputy .multi-column img.deputy-employment {
    height: 535px;
    width: 50%;
    object-fit: cover;
    object-position: 0 35%;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
@media (max-width: 1200px) {
    .minimum-section img,
    .special-section img {
        display: none;
    }
    .additional-section {
        flex-direction: column;
    }
    .additional-section .content-box {
        width: unset;
    }
}
@media (max-width: 989px) {
    .main-content.deputy img:not(.star),
    .main-content.pso img:not(.star),
    .main-content.sep img:not(.star),
    .section-imgs {
        display: none;
    }
    .special-section {
        height: fit-content;
    }
    .deputy li {
        font-size: 14px;
    }

}

/* Parking Enforcement */
.parking .summary-bg {
    background-image: url(./images/Building1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}
.parking .summary {
    margin: 0 auto;
    position: relative;
    top: 20px;
    background: #ffffffe1;
    max-width: 800px;
}
.parking .content-box {
    margin: 20px auto;
}

@media (max-width: 768px) {
    .parking .summary-bg {
        height: 475px;
    }

}

/* City Protect Map */
.crime-map .city-map {
    max-width: unset;
}
img.protect-map {
    width: 50%;
    height: 650px;
    object-fit: cover;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}

.crime-map .multi-column .content-box {
    max-width: unset;
    width: unset;
}
.crime-map .multi-column {
    background: unset;
}
.crime-map .multi-column > div > div {
    width: 50%;
}
@media (max-width: 1200px) {
    .crime-map img {
        display: none;
    }
    .crime-map .multi-column > div > div {
        width: 100%;
    }
}

/* Stanford Dish */
.trail-markers iframe {
    width: 700px;
    height: 450px;
    border: none;
}
.stanford-dish .multi-column .content-box {
    max-width: unset;
    width: unset;
}
.stanford-dish .multi-column {
    background: unset;
}
.stanford-dish .general-info {
    flex-direction: column; 
    gap: 20px; 
    width: 35%
}
.stanford-dish img {
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}

.stanford-dish table {
    border-spacing: 0;
    border: 1px solid #000;
}
.stanford-dish thead th {
    background: #8c1515;
    color: #fff;
    padding: 10px;
    width: 50%;
}
.stanford-dish thead th:first-child,
.stanford-dish tr td:first-child {
    border-right: 1px solid #000;
}
.stanford-dish tbody tr td {
    padding: 14px;
    border-top: 1px solid #000;
}

@media (max-width: 1200px) {
    .trail-markers iframe {
        width: 75vw;
    }
    .stanford-dish .multi-column > div {
        flex-direction: column-reverse;
    }
    .stanford-dish .general-info {
        width: 100%
    }
    .stanford-dish img {
        display: none;
    }
    .stanford-dish .hours {
        display: flex;
        flex-direction: column;

    }
}
@media (max-width: 400px) {
    .stanford-dish .hours td {
        font-size: 12px;
    }
}

/* Hate Violence */
.hate-violence {
    margin: 30px auto;
}
.hate-violence .report {
    max-width: 600px;
    margin: 0 auto;
}
.hate-violence .past-reports {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.hate-violence .statistics {
    justify-content: center;
    margin-top: 20px;
}
table.hate-report {
    border-spacing: 0;
    border: 1px solid #000;
    margin: 50px auto;
    overflow: hidden;
    overflow-x: scroll;
    display: block;
}
.hate-report thead {
    text-align: left;
}
.hate-report th {
    padding: 20px 12px;
    background: #ddd;
    border: 1px solid #000;

}
.hate-report td {
    border: 1px solid #000;
    padding: 10px;
}
@media (max-width: 768px) {
    .hate-report th,
    .hate-report td {
        font-size: 14px;
    }
}

/* Memorandum of Understanding */

.mou-section .description {
    background-image: url(./images/Building1.jpg);
    background-position: 0 30%;
    border-bottom: 2px solid #000; 
    padding-bottom: 20px;
    height: 350px;
}
.mou-section .mou {
    position: relative;
    top: 20px;
}
.mou-section .meaning {
    margin: 30px auto;
}
.mou-section ul.meaning li {
    list-style: none;
    margin: 20px auto;
}
.mou-section .meaning ol li {
    list-style: decimal;
}
@media (max-width: 1200px) {
    .mou-section .star {
        display: none;
    }

}
@media (max-width: 989px) {
    .mou-section .description {
        height: 450px;
    }

}
@media (max-width: 500px) {
    .mou-section .description {
        height: 550px;
    }

}

/* Policies */
.links {
    flex-direction: column;
    padding: 20px 0;
}
.links a {
    padding: 8px 0;
    font-weight: 700;
    color: #337ab7;
    width: fit-content;
}

/* Personnel Training */
.personnel-training {
    background-image: url(./images/Building1.jpg);
    background-position: 0 40%;
    height: 400px;
    min-height: 55vh
}
.personnel-training > div {
    position: relative;
    top: 20px;
    gap: 20px;
}
.personnel-training .content-box {
    width: 50%;
}
.personnel-training .training-links button {
    background: transparent;
}
.personnel-training .training-links {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.personnel-training .training-links a {
    width: 100%;
    background: #8c1515;
    text-align: center;
}
.personnel-training .training-links a:hover {
    background: #000;
}

@media (max-width: 989px) {
    .personnel-training > div {
        flex-direction: column;
    }
    .personnel-training .content-box {
        width: unset;
    }
    .personnel-training {
        height: calc( 550px + 60px );
    }
}
@media (max-width: 648px) {
    .personnel-training {
        height: calc( 600px + 60px );
    }
}
@media (max-width: 500px) {
    .personnel-training {
        height: 800px;
    }
}

/* Contact Us Emails and County Contacts */
.email {
    justify-content: space-between;
    gap: 20px;
    margin: 20px auto 10px;
}
.email .content-box {
    width: 50%;
}
.email h2 {
    margin: 0 0 10px 0;
}
.email a {
    color: #337ab7;
    font-weight: 700;
}
.phone a {
    text-decoration: none;
    color: #000;
}
@media (max-width: 989px) {
    .email {
        flex-direction: column;
    }
    .email .content-box {
        width: unset;
    }
}
/* Active Threats */
@media (max-width: 1200px) {
    .threat-links {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .threat-links {
        gap: 20px;
        flex-direction: column;
    }
}

/* Campus Policies */
.campus .content-width {
    justify-content: space-between;
    gap: 20px;
    margin: 20px auto;
}
.campus .content-width .content-box {
    width: 30%;
    padding: 30px;
    height: 215px;
}
.campus h2 {
    margin: 0 0 10px 0;
}
.main-content.campus {
    min-height: 65vh;
}

@media (max-width: 989px) {
    .campus {
        flex-direction: column;
    }
    .campus .content-box {
        width: unset;
    }
}
/* Domestic Violence */
.legal {
    flex-direction: column;
}
@media (max-width: 989px) {
    .legal {
        flex-direction: unset;
        gap: 30px;
    }
}
@media (max-width: 500px) {
    .legal {
        flex-direction: column;
        gap: 0;
    }
}
/* Sexual Assult */
.assult {
    flex-wrap: wrap;
}
.assult .multi-column {
    background: unset;
    gap: 20px;
    margin: 0 auto;
}
.assult .multi-column .content-box {
    padding: 30px;
}
.assult .content-box .buttons {
    gap: 20px;
    margin: 20px auto;
}
.assult .multi-column .content-box {
    width: 50%;
    padding: 30px;
}
.no-list-style li {
    list-style: none;
    font-size: 17px;
}
.logo-group {
    justify-content: space-between;
    margin: 50px auto;
    align-items: center;
}
.logo-group img {
    width: 200px;
    object-fit: contain;
    max-height: 200px;
}

@media (max-width: 989px) {
    .assult .multi-column {
        flex-direction: column;
    }
    .assult .multi-column .content-box {
        width: 80%;
    }
    .logo-group img {
        height: 100px !important;
    }
    .assult .content-width {
        width: 80%;
    }
}
@media (max-width: 600px) {
    .assult .content-box .buttons {
        flex-direction: column;
    }
    .logo-group {
        flex-direction: column;
        gap: 40px;
    }
}

/* Fraud Awareness */
.scam {
    gap: 20px;
    margin: 20px auto;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}
.scam img {
    width: 50%;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
}
.scam .content-box {
    padding: 20px;
    width: auto;
}
.scam .content-box p {
    padding: 15px 30px 0;
}
.scam h2 {
    margin: 20px 30px;
}
.scam ul {
    margin: 10px 30px 20px;
}

@media (max-width: 500px) {
    .scam .content-box {
        padding: 0;
    }
}

/* Victim Resources */
.victim .six-block-section h3 {
    font-size: 22px;
}
.victim {
    margin: 30px auto;
}
.victim img.marsy {
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 15px 0 #00000040;
    max-width: 575px;
}
.victim .content-box {
    width: 50%;
    flex-direction: column;
}
.victim .content-box:not(.marsy-card) {
    padding: 0;
}
.victim .content-box .description {
    flex-direction: column;
    padding: 20px;
}

@media (max-width: 1200px) {
    img.marsy {
        display: none;
    }
}

/* Transparency Dashboard */
.transparency .content-box {
    margin: 30px auto;
}
.transparency .content-box img {
   object-fit: contain;
}
.transparency iframe {
    width: 100%;
    margin: 30px auto;
}

@media (max-width: 989px) {
    .transparency iframe {
        display: none;
    }
}

/* Footer */
footer {
    background: #8c1515;
    padding: 20px 0;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #ffffffd3;
}
footer img {
    height: 50px;
}
footer p {
    margin-left: 150px;
    color: #fff;
}
footer .footer-nav {
    flex-direction: column;
    color: #fff;
}
footer .footer-nav p {
    padding-left: 40px;
}
footer .footer-nav ul,
footer .footer-nav p {
    margin: 5px 0;
}
footer .footer-nav ul li {
    padding-right: 30px;
    list-style: none;
    font-size: 17px;
}

@media (max-width: 989px) {
    footer .footer-nav ul li {
        padding-right: 15px;
    } 
    footer .footer-nav ul li,
    footer .footer-nav p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
   footer p {
        margin-left: 0px;
        font-size: 14px;
        text-align: center;
    }
    footer .footer-nav {
        flex-direction: row;
    } 
   footer .footer-nav ul {
        flex-direction: column;
        margin: 0;
        width: 140px;
        gap: 5px;
    }
    footer .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    } 
    footer img {
        height: 45px;
        width: 100px;
    }
}
@media (max-width: 475px) {
    footer .footer-nav ul {
        gap: 5px;
        align-items: center;
        padding: 0;
    }
    footer .footer-nav ul li {
        padding-right: 0;
    }
    footer .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    footer p {
        font-size: 12px;
    }
}