html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.jp-splash{
    width: 98%;
    margin: auto;
    margin-bottom: 20px;
}

.splash-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1220px;
    min-height: 150px;
    margin: 75px auto;
    background-color: #FFF;
    z-index: 1;
    border-radius: 10px;
}

.splash-image-container img{
    max-height: 75px;
    max-width: 900px;
    z-index: 2;
}

h1{
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}

.partners-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px 0px;
}

.partner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 700px;
    min-height: 125px;
    background-color: #FFF;
    z-index: 1;
    border-radius: 10px;
}

.partner-image-container img{
    z-index: 2;
}

@media (max-width: 600px) {
    .partners-list{
        display: block;
    }
    .partner-image-container {
    width: 98%;
    margin: auto;
    margin-bottom: 20px;
  }
}
