* {
    box-sizing: border-box;
}
body {
    font-family: 'Arimo', sans-serif;
    margin: 0;
}
/* title{
    display: none;
    white-space: nowrap;
} */
.header {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 110px;
    padding: 10px;
    z-index: 10;
    background-color: white;
    overflow-y: auto;
  }

.menu-icon {
    font-size: 4em;
    color: white;
    padding: 0px 15px;
    cursor: pointer;
    text-shadow: 1px 1px 5px #000000;
}


.menu {
    display: flex;
    flex-direction: column;
    padding: 0px 0px 0px 15px;
    cursor: pointer;
  
  }
  
.menu a {
    color: black;
    text-decoration: none;
    text-align: left;
    font-family: "Roboto Slab", serif;
    font-weight: 550;
    font-size: .95em;
    font-kerning:normal;
    padding: 3px 0px;
  }
  
.menu a:hover {
    color: #0000ff;
}
.menu-icon-2 {
    font-size: 4em;
    color: white;
    padding: 0px 10px;
    padding-bottom: 0;
    cursor: help;
    text-shadow: 1px 1px 5px #000000;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    /* background-color: white; */
}
.menu-icon-2 img {
max-width: 90px;
}


img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, p, ul li {
    color: #000000;
    margin: 0;
    padding: 0;
    text-decoration: none;
    cursor: default;
}

h1, h3, h4, p, ul li {
    font-family: 'Arimo', sans-serif;
}

h2 {
    font-family: 'Arimo', sans-serif;
}

h1 {
    font-size: 1.375rem;
    line-height: 1.65rem;
}

h3 {
    font-size: 0.875rem;
    line-height: 1.125rem;
}
em {
    font-family: 'Arimo';
}

.homebody h1 a:hover, .homebody h1 a:active {
    color: #0000FF;
}

.underline, .underlinediv h3 a {
    text-decoration: none;
    position: relative;
}

.underline:after, .underlinediv h3 a:after {
    position: absolute;
    content: '';
    height: 1px;
    bottom: -2px;
    left: 0;
    right: 0;
    background: currentColor;
}

#container {
    width: calc(100% - 1.64rem);
    position: relative;
    margin: 0px 10px 0px 10px;
    justify-content: flex-start;
    display: flex;
}
.footer {
    color: black;
    text-decoration: none;
    font-size: .8em;
    justify-content: center;
    position: relative;
    margin-top: auto;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer p {
    text-align: center;
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
  }
  .footer img {
    position: relative;
    justify-content: center;
    display:inline;
    padding-bottom: 10px;
    width: 75px;
    opacity: 100%;
  }

.hr {
    border-bottom: #000000 solid 1px !important;
    border-color: #000000 !important;
    width: 100%;
    padding: 0;
    margin: 0;
    outline: none;
}

#pgcontainer {
    flex-grow: 1;
    width: 100%;
    position: relative;
    padding-left: 120px;
    text-align: center;
}
.pgcontent{
    width:100%;
    overflow-x: hidden;
    padding-top: 20px;
}
/* .grid {
    display: grid;
    gap: .7rem;
    width: 100%;
    left: 0;
    margin-bottom: 0;
}

.grid img {
    cursor: pointer;
}
.grid h3 {
    text-align: center;
    font-family: 'Atlas Grotesk Web Medium', Helvetica, Arial, sans-serif;
    padding: 1rem 0 0;
    cursor: pointer;
    
}
.grid h3:hover{
    color: #0000FF;
} */


/* Container holding the grid of images */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* gap: 1.5rem; */
    
    gap: calc(2vw + 1rem);
    margin: 0 auto; /* Center the grid in the container */
    max-width: 95vw; /* Limit the maximum width of the grid */
}

/* Each individual grid item */
.gridobj {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

/* Images within grid items */
.gridobj img {
    max-height: 300px;
    width: 100%;
    height: 100%; /* Maintain aspect ratio */
    object-fit: scale-down; /* Ensure images cover the grid cell */
    /* border-radius: 0.5rem;  */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Grid item hover effect */
.gridobj:hover img {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Optional: Style the titles below images */
.gridobj h3 {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Atlas Grotesk Web Medium', Helvetica, Arial, sans-serif;
    color: black; /* Adjust color as needed */
}
.grid h3:hover{
    color: #0000FF;
    cursor: pointer;
}
@media screen and (min-width: 1681px) {
    .grid {
      grid-template-columns: repeat(6, 1fr);
      gap: calc(1.5vw + 1rem);
      margin: 0 auto; /* Center the grid in the container */
      max-width: 85vw;
    }
    .gridobj img {
        max-height: 450px;
        max-width: 450px;
        height: 100%; /* Maintain aspect ratio */
        object-fit: scale-down; /* Ensure images cover the grid cell */
        /* border-radius: 0.5rem;  */
        transition: transform 0.3s ease; /* Smooth hover effect */
    }
}
@media (max-width: 500px) {
    .grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .gridobj img {
        max-height: 150px;
        width: 100%;
        height: 100%; 
        object-fit: scale-down; 
        /* border-radius: 0.5rem;  */
        transition: transform 0.3s ease; 
    }
    .gridobj h3 {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        font-family: 'Atlas Grotesk Web Medium', Helvetica, Arial, sans-serif;
        color: black; /* Adjust color as needed */
    }

}
@media (max-width: 350px) {
    .grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .gridobj img {
        max-height: 300px;
        width: 100%;
        height: 100%; 
        object-fit: scale-down; 
        /* border-radius: 0.5rem;  */
        transition: transform 0.3s ease; 
    }
    .gridobj h3 {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        font-family: 'Atlas Grotesk Web Medium', Helvetica, Arial, sans-serif;
        color: black; /* Adjust color as needed */
    }

}


/* @media screen and (min-width: 1500px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: .7rem;
        width: calc(100vw - 120px);
        left: 0;
        margin-bottom: 0;
    
    }

    .gridobj {
        padding-bottom: 1.25rem;
    }
    .gridobj img{
        height: 250px;
        width: 250px;
        cursor: pointer;
        object-fit: scale-down;
    }

    .gridmob {
        display: none;
    }
    
}
@media screen and (max-width: 1080px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 300px;
        width: 300px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 20px;
    }
}
@media screen and (max-width: 945px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 250px;
        width: 250px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 20px;
    }
}
@media screen and (max-width: 825px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }
    .gridobj img{
        height: 400px;
        width: 400px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .gridmob {
        display: none;
    }
}

@media screen and (min-width: 826px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 250px;
        width: 250px;
        cursor: pointer;
        object-fit: scale-down;
    }

    .gridmob {
        display: none;
    }
}
@media screen and (max-width: 790px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 325px;
        width: 325px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 20px;
    }
}
@media screen and (max-width: 680px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 300px;
        width: 300px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 20px;
    }
}
@media screen and (max-width: 630px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 250px;
        width: 250px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 20px;
    }
}
@media screen and (max-width: 530px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 200px;
        width: 200px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 15px;
    }
}
@media screen and (max-width: 430px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: 1rem;
    }
    .gridobj img{
        height: 175px;
        width: 175px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 10px;
    }
}
@media screen and (max-width: 380px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: .25rem;
    }
    .gridobj img{
        height: 175px;
        width: 175px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 5px;
    }
    
}
@media screen and (max-width: 379px) {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }

    .gridobj {
        padding-bottom: .25rem;
    }
    .gridobj img{
        height: 160px;
        width: 160px;
        cursor: pointer;
        object-fit: scale-down;
    }
    .pgcontent{
        padding-top: 5px;
    }
    
} */

@media screen and (max-width: 1200px) {
    
    #container {
        width: 100%;
        position: relative;
        margin: 0px;
        justify-content: center;
        display: flex;
    }
    
        .container {
        display: block;
        width: 100%;
    }
    .header {
        display: flex;
        flex-direction: row;
        height: 80px; 
        position: fixed;
        top: 0;
        left: 0; 
        width: 100vw;
        padding: 20px 0px 10px 0px;
        z-index: 10;
        background-color: white;
        justify-content: space-between;
        overflow-y: hidden;
        overflow-x: hidden;
        align-items: center;
    }
    .menu {
        display: flex;
        flex-direction: row;
        padding: 18px 6px 18px 6px;
        cursor: pointer;
        z-index: 10;
    
      }
    .menu a {
        color: black;
        text-decoration: none;
        text-align: left;
        font-family: "Roboto Slab", serif;
        font-weight: 550;
        font-size: .95em;
        font-kerning:normal;
        padding: 3px 0px;
        padding: 14px 7px 14px 7px;
      }
      
    .menu a:hover {
        color: #0000ff;
    }

    .menu-icon-2 {
        font-size: 4em;
        color: white;
        padding: 10px;
        padding-top: 0px;
        padding-bottom: 0;
        cursor: help;
        text-shadow: 1px 1px 5px #000000;
        position: relative;
        top: 0;
        right: 0;
        z-index: 12;
        margin-left: auto;
    }
    .menu-icon-2 img {
        max-width: 90px;
        height: auto;
    }
    .content {
        margin: 0px;
        padding: 0;
        background-color: white;
        width: 99vw;
        display: block;
        flex-direction: column;
        align-items: center;
        
    }
    #pgcontainer {
        flex-grow: 1;
        width: 100%;
        position: relative;
        padding-left: 0px;
        padding-top: 70px;
        text-align: center;
    }
}
@media screen and (max-width: 470px) {
    .header {
        display: flex;
        flex-direction: row;
        height: 70px; 
        position: fixed;
        top: 0; 
        left: 0; 
        width: 100vw;
        padding: 0px 0px 0px 5px;
        z-index: 10;
        background-color: white;
        overflow-y:hidden;
        overflow-x: hidden;
      }
    .menu {
        display: flex;
        flex-direction: row;
        padding: 18px 0px 18px 6px;
        cursor: pointer;
        z-index: 10;
    
      }
    .menu a {
        display: flex;
        color: black;
        text-decoration: none;
        text-align: left;
        font-weight: 550;
        font-size:.8em;
        padding: 9px 3px 9px 3px;
    }
    .menu-icon {
        font-size: 3.5em;
        color: white;
        padding: 0px 2px 0px 2px;
        cursor: pointer;
        text-shadow: 1px 1px 5px #000000;
    }
      
    .menu a:hover {
        color: #0000ff;
    }  
    .menu-icon-2 img {
        width: 1.15em;
    }
    
    
    .footer {
        color: black;
        text-decoration: none;
        font-size: .7em;
        justify-content: center;
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footer img {
        position: relative;
        justify-content: center;
        display:inline;
        padding-bottom: 10px;
        width: 60px;
        opacity: 100%;
    }
}
@media screen and (max-width: 360px) {

    .header {
        display: flex;
        flex-direction: row;
        height: 60px;
        position: fixed;
        top: 0; 
        left: 0; 
        width: 100vw;
        padding: 0px 0px 0px 5px;
        z-index: 10;
        background-color: white;
        overflow-y:hidden;
      }
    .menu {
        display: flex;
        flex-direction: row;
        padding: 18px 6px 10px 6px;
        cursor: pointer;
        z-index: 10;
    
      }
    .menu a {
        display: flex;
        color: black;
        text-decoration: none;
        text-align: left;
        font-weight: 550;
        font-size:.7em;
        padding: 1px 2px 9px 3px;
    }
    .menu-icon {
        font-size: 2.5em;
        color: white;
        padding: 0px 3px 0px 0px;
        cursor: pointer;
        text-shadow: 1px 1px 3px #000000;
    }
      
    .menu a:hover {
        color: #0000ff;
    }  
    .menu-icon-2 {
        font-size: 4em;
        color: white;
        padding: 0px 10px 0px 0px;
        padding-bottom: 0;
        cursor: help;
        text-shadow: 1px 1px 5px #000000;
        position:sticky;
        top: 0;
        right: 0;
        z-index: 12;
       
    }
    .menu-icon-2 img {
        width:.9em;
        display: block;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: .7rem;
        width: 100%;
        left: 0;
        margin-bottom: 0;
    }
    .gridobj img{
        height: 280px;
        width: 280px;
        cursor: pointer;
        object-fit: scale-down;
    }
    
    .footer {
        color: black;
        text-decoration: none;
        font-size: .7em;
        justify-content: center;
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footer img {
        position: relative;
        justify-content: center;
        display:inline;
        padding-bottom: 10px;
        width: 60px;
        opacity: 100%;
    }
}