/**
 * theme-styles.css
*/


html {
    font-size: var(--root-font-size);
}

body {
    background: var(--background-white);
    color: var(--body-text-color);
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    color: var(--heading-text-color);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2rem;
    padding-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    padding-bottom: .5rem;
}

h4 {
    font-size: 1.4rem;
    padding-bottom: .5rem;
}

h5 {
    font-size: 1.25rem;
    padding-bottom: .5rem;
}

h6 {
    font-size: 1.2rem;
    padding-bottom: .5rem;
}


a,
a:active,
a:visited,
a:focus,
a:focus-visible {
    color: var(--color-dark);
    text-decoration: none;
}

main {
    min-height: 50vh;
}

.row {
    width: 86%;
    max-width: 1400px;
    margin: 0 auto;
}

.button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: var(--color-white) !important;
    background: var(--background-dark);
    padding: .85rem 1.5rem .85rem 1.5rem;
    font-size: .8rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50%;
    border: none;
    min-height: 0;
    transition: all 400ms ease;
    cursor: pointer;
    z-index: 1;
}

.cta-button-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem 1.5rem;
}

img {
  image-rendering: -webkit-optimize-contrast; /* Chrome/Safari */
  image-rendering: auto;
}
