﻿@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");

@import url("/SA1961/css/font-awesome.min.css");

html, body {
    font-family: Roboto;
    margin: 0;
    background-color: #E2E9F1;
}

#header {
    border-bottom: solid 3px #003B5C;
    background-color: #fff;
}

    #header img {
        width: 225px;
        margin: 10px 10px 5px 10px;
    }

#content {
    font-size: 16px;
    color: #333;
    margin-bottom: 45px;
}

a {
    color: #0F52BA;
    text-decoration: underline;
}

.flex-container {
    display: flex; /* Sets up a flex container */
    /* Adds space between columns */
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    justify-content: center; /* Centers horizontally */
        align-items:center;
}

.column-1 {
    flex-grow:1; /* Allows it to take up remaining space after initial sizing */
    width: 400px;
    max-width:900px;
    padding: 1rem;
    /*min-width: 400px;*/ /* Prevents columns from becoming too narrow */
}

.column-2 {
    flex-grow: 1;  
    padding: 1rem;
    max-width: 400px;
    /*min-width: 200px;*/ /* Prevents columns from becoming too narrow */
    /*margin-top:-200px;*/
}

.panel-1 {
    min-height: 800px;
    position: relative;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    /*border: 1px solid #d0dbe5;*/
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    padding-bottom: 5px;
}

    .panel-1 img {
        margin-top: 50px;       
    }


.panel-2 {
    height: 300px;
    border-top: solid 3px #003B5C;
    position: relative;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
}

.map {
    margin-top: 25px;
    font-size: 24px;
    color: #D86018;
    font-weight: bold;
}

.buttons {
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .buttons a.primary {
        padding: 10px 15px;
        background-color: #0F52BA;
        color: #fff;
        border: solid 1px #0F52BA;
        border-radius: 10px;
        text-decoration: none;
    }

        .buttons a.primary:hover {
            background-color: #0b3982;
        }




    .buttons a.secondary {
        padding: 10px 15px;
        background-color: #fff;
        color: #0F52BA;
        border: solid 1px #0F52BA;
        border-radius: 10px;
        text-decoration: none;
    }

        .buttons a.secondary:hover {
            background-color: #eee;
        }


.mr10 {
    margin-right: 10px;
}

.flex-margins {
    margin: 25px 75px;
    text-align: left;
}

@media (max-width:925px) {
    .flex-margins {
        margin: 25px 35px;
    }

    .buttons {
        height: 75px;
    }

    .column-2 {
           margin-top:unset;
    }
}



#footer {
    background-color: #f2f2f2 !important;
    color: #6e6d6d;
    height: 25px;
    padding: 10px 0 0 0 !important;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #CECECE;
    background: #2a2725;
    width: 100%;
    position: fixed;
    display: block;
    bottom: 0
}

    #footer a {
        font-weight: bold;
        color: #6e6d6d
    }

        #footer a:hover {
            text-decoration: underline;
        }




.color-jhcobalt-100 {
    color: #003B5C;
}

.color-jhatomic {
    color: #D86018;
}


summary {
    color: #0F52BA;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between; /* Aligns content and potential icon */
    align-items: center;
}

    summary:hover {
       color: #0b3982;
       background-color:#E2E9F1;
    }

details {
    margin-bottom: 0rem; /* Add spacing between items */
    background-color: #fff;
    border-bottom: 2px solid #E2E9F1;
    overflow: hidden; /* Ensures rounded corners work with content */
}





    /* Styles when the accordion is open */
    details[open] summary {
       font-weight:bold;
    }

/* Styles the content area */
details div{
    padding: 5px 25px 15px 35px;
    font-size:14px;
}
