/* General Body and Typography */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    padding: 0;
   font-family: "PT Serif", serif;
    font-size: 18px;
    font-weight: 500;
    color: #53555c;
}

.logo {
    max-width: 300px;
}

h1, h2, h3, h4, h5 {
    font-size: 32px;
    margin: auto;
    padding: initial;
}

a {
    color: #ff002d;
    text-shadow: 0px 1px 0px #0d0d0d7a;
    text-decoration: underline;
    font-weight: bold;
}

/* Active State */
.active {
    border-bottom: 4px solid #eee !important;
}

/* Info Section */
#infoot {
    max-width: 1600px;
    margin: auto;
}

#infoot pre {
    font-family: Raleway, sans-serif;
}

/* Footer */
#footer {
    padding-top: 50px;
    color: #000000;
    z-index: 99;
    font-size: 14px;
    background: #d7d7d7;
}

#footer a {
    color: #000000;
}

/* Top Bar */
#topBar {
    width: 100%;
    background-color: #ffffff;
    z-index: 10001;
}

#banner {
    padding: 15px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    max-width: 1600px;
}

div#topSocials {
    text-decoration: none;
    text-align: right;
}

div#topSocials a {
                 color: #073252;
                 text-decoration:none;
                 }

/* Three Footer Section */
#threeFooter {
    text-align: center;
    margin: auto;
}

#threeFooter div {
    width: 31%;
    overflow: hidden;
    padding-bottom: 17px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    z-index: 100;
    position: relative;
}

#threeFooter h3 {
    color: #000000;
    text-transform: capitalize;
}

#threeFooter div:first-child {
    margin-left: 0 !important;
    text-align: left;
    float: left;
}

#threeFooter div:last-child {
    margin-right: 0 !important;
    float: right;
    text-align: right;
}

#threeFooter ul {
    list-style: none;
    padding: 0;
}

#threeFooter li a {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #585d69;
    padding: 7px;
    font-size: 19px;
    padding-right: 20px;
    text-transform: lowercase;
    text-shadow: none;
}

/* Misc Layout */
.textBoxes {
    position: relative;
    margin: auto;
}

.readingBit {
    padding-top: 1px;
    display: flow-root;
    margin: auto;
    margin-top: -1px;
}

/* Flexbox Utility */

.setStyle > div {
    max-width: 1600px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;
    flex: 1;
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
}

.setStyle > div > div {
    display: inline-block;
    text-align: left;
    padding: 1%;
    box-sizing: border-box;
    flex: 1;
}
 div#bread {
    background: #efefef;
    padding: 10px;
}
/*BLog Section */

main.news {
    width: 100%;
    margin: auto;
}

.news section {
    border: 1px solid #d7d7d7;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    content-visibility: auto;
    margin-bottom: 20px;
}

img.blogIcon {
    float: left;
    margin-right: 30px;
    max-width: 200px;
}

#galBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

#galBoxes div {
    flex: 1 1 calc(20% - 10px); /* Adjust to control how many items per row */
    max-width: calc(20% - 10px);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

#galBoxes img {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

#galBoxes div:hover {
    transform: translateY(-5px);
}

#galBoxes div:hover img {
    transform: scale(1.1);
}

.setStyle.bigStrap {
    background: #006699;
    color: white;
    padding: 50px;
    box-sizing: border-box;
    font-size: 25px;
}
.setStyle.lightGrey {
    background: rgb(129 148 153 / 18%);
}
.setStyle.cta {
    background: #073252;
    color: white;
    font-size: 24px;
}