:root {
  --color-text: #4B5563;
  --color-primary: #0077B6;
  --surface-light: #F8FAFC;
  --color-formation : #eab308;
  --color-bio-marine : #22C55E;
  --color-exploration : #0077B6;
}
.text-primary {
    color: var(--color-primary);
}

html {
    font-size: 16px;
}
body {
    width: 100%;
    overflow-x: hidden;
    font-size: 1rem;
    background-color: #fff;
    color: var(--color-text);
    font-family: "Inter", sans-serif;
    position: relative;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-weight: 700;
}


.global-banner {
    width: 100%;
    height: 20vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    margin-bottom: 8vh;
    color: #fff;
    text-align: center;
}
.global-banner h1 {
    font-weight: 800;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 992px) {
    .global-banner {
        height: 40vh;
    }
    .global-banner h1 {
        font-size: 3.25rem;
    }
}

.pagination {
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.classic-banner {
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.classic-banner h1 {
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 992px) {
    .classic-banner h1 {
        font-size: 2.75rem;
    }
}