
/* General Body and Typography */
body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Sans sans-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: #006699;
    text-shadow: 0 0 1px #0d0d0d7a;
    text-decoration: underline;
}

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

/* Info Section */
#infoot {
    max-width: 98%;
    margin: auto;
}

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

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

#footer a {
    color: white;
}

/* Top Bar */
#topBar {
    width: 100%;
    background-color: #ffffff;
    z-index: 10001;
    box-shadow: 0px 2px 17px 12px rgb(0 0 0 / 55%);
}

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

div#topSocials {
    color: #4d57fe;
    text-decoration: none;
    text-align: right;
    font-weight: bold;
}

div#topSocials a {
                 color: #ff002d;
                 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: #ffffff;
    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: 12px;
    padding-right: 20px;
    text-transform: lowercase;
}

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

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

/* Flexbox Utility */

.setStyle > div {
    max-width: 1200px;
    text-align: center;
    /* align-items: center; */
    justify-content: center;
    margin: auto;
    flex: 1;
    display: flex;
}

.setStyle > div > div {
    display: inline-block;
    vertical-align: top;
    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);
}