* {
    box-sizing: border-box;
}

/* .pageWrapper {
    max-width: 1170px;
    padding: 20px;
    margin-inline: auto;
} */

.pageWrapper h1,
.pageWrapper h2,
.pageWrapper h3,
.pageWrapper h4,
.pageWrapper h5,
.pageWrapper h6 {
    font-weight: bold;
    font-family: 'Gilroy' Helvetica, sans-serif;
}

.italText {
    font-style: italic;
}

.centerText {
    text-align: center;
}

.centerObj{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.colorWhite {
    color: white;
}

.pageButton{
    background-color: rgb(33, 33, 37);
    padding: 10px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 60px;
    transition:all .3s ease-in-out;
    cursor:pointer;
    min-height:60px;
}

.pageButton:hover,
.pageButton:focus {
    color: white;
    text-decoration:none;
    background-color: rgb(33, 64, 119);
}

.merPerc__button{
    color:white;
}

.fullWidth{
    width: 99.08vw;
    margin-inline-start: 50%;
    transform: translateX(-50%);
    overflow-x: hidden;
}

.grid {
    display: grid;
    place-items: center;
}

.twoxtwoGrid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr)); 
    gap:16px;
}

.flexColumn {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.Headers{
    margin-bottom:18px;
    margin-top:-15px;
}


/* TEMPLATE END */

.button__Wrapper{
    max-width:1170px;
    margin-inline:auto;
    padding-left:16px;
    padding-right:16px;
}

.button__Wrapper__BG{
    background-color: rgb(231, 231, 233);
    padding: 30px 0;
    border-top:2px solid rgb(186, 187, 200);
    border-bottom:2px solid rgb(186, 187, 200);
}

.resourceGrid{
    display:grid;    
    grid-template-columns: repeat(auto-fit, minmax(min(250px,100%), 1fr)); 
    align-items: stretch;    
    justify-items: stretch; 
    gap:32px 8px;
}

.resouce__Container{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    background-color:rgb(245, 246, 249);
    padding:16px;
    border-radius: 16px;
    border:1px solid rgb(180, 168, 197);
    
}
.resource__Image{
    max-width:200px;
    margin-bottom:12px;
    margin-inline:auto;
    border:1px solid rgb(192, 192, 192);
}

.resource__Title, .resource__Author{
    margin:0;
    text-align:center;
}

.resource__Button{
    margin-top:16px;
    min-height:30px;
}

.resource__Title{
    padding:0 8px;    
    margin-bottom:.5em;
    line-height:1.3;
}

.resource__Author{
    font-size:.8em;
}


/* Media Queries */
/* Desk Only */
@media only screen and (min-width: 820px) {


}

/* Mobile Only */

@media only screen and (max-width: 820px) {

    .HeaderMobile {
        display: none;
    }

.pageButton:nth-of-type(even){   
    background-color: rgb(92, 92, 93);
}

}
