* {
    box-sizing: border-box;
    font-family: "Helvetica LT W01 Roman", Helvetica, Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
    min-height: 100vh;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: "Helvetica LT W01 Roman", Helvetica, Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6, p, caption, a {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 300ms;
}

a.link:hover {
    opacity: 0.7;
}

button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
    color: black;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li, ul dt, ul dd, dl li, dl dt, dl dd {
    margin: 0;
    display: block;
    height: fit-content;
}

dl dd {
    margin-bottom: 1em;
}

table th, table tr, table td {
    text-align: left;
}

small {
    font-size: 60%;
}

strong {
    font-weight: 500;
}

address {
    font-style: normal;
}

figure {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

img.expand {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.rounded {
  border-radius: 2px;
}

video {
    width: 100%;
    height: auto;
    border: 0;
}

caption {
    text-align: left;
}

::selection {
    background-color: rgb(50, 50, 50);
    color: white;
}

/* 
    Form Newsletter
*/

input[type=text],
input[type=email],
input[type=password],
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid black;
    width: 100%;
    border-radius: 0;
}


.mc-field-group input[type=email] {
    height: 100%;
    display: block;
    padding: 0.3rem 0;
    margin-top: 0.25rem;
}

.mc-field-group.white input[type=email] {
    color: white;
    border-color: white;
}

.mc-field-group.white input[type=email]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mc-field-group {
    position: relative;
}

.mc-field-group .submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    border: 0;
    display: block;
    padding: 0.5rem 0 0.5rem 1rem;
    background-color: transparent;
    z-index: 100;
    cursor: pointer;
    color: black;
    font-weight: 400;
}

.mc-field-group.white .submit {
    color: white;
}

*:focus,
*:focus-visible {
    outline-color: rgba(150, 150, 150, 0.2);
    -webkit-box-shadow: none;
    box-shadow: none;
    
}