img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-neutral-400);
    background: var(--color-basic-white);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}
footer {
    margin-top: auto;
}
[role="button"] {
    outline: none !important;
}
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headings-color);
    margin-bottom: 1rem;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    letter-spacing: -0.02em;
    font-weight: 600;
    line-height: 1.1;
}
h1, .h1 {
    font-size: 5rem;
}
.h1-second {
    font-size: 4.5rem;
}
h2, .h2 {
    font-size: 3.75rem;
}
.h2-second {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
h3, .h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.h3-second {
    font-size: 2.25rem;
    line-height: 1.2;
}
h4, .h4 {
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h5, .h5 {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
p {
    margin-bottom: 2rem;
}
ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.5rem;
}
ul li {
    list-style: none;
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0;
}
ul li:before {
    content: "";
    border-radius: 50%;
    background: currentColor;
    width: .2em;
    height: .2em;
    position: absolute;
    left: 0.6em;
    top: 0.6em;
}
.safari-browser ul li:before {
    top: 0.7em;
}
blockquote {
    font-weight: 500;
    color: var(--color-primary-500);
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.8rem;
}
blockquote p:after {
    content: "”";
}
blockquote p:before {
    content: "“";
}
blockquote p:last-child {
    margin-bottom: 0;
}
a {
    text-decoration: none !important;
    color: var(--color-primary-500);
    background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
    background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 0.1rem;
    vertical-align: baseline;
    -webkit-transition: background-size var(--animation-fast), color var(--animation-default) !important;
    -o-transition: background-size var(--animation-fast), color var(--animation-default) !important;
    transition: background-size var(--animation-fast), color var(--animation-default) !important;
}
a:hover {
    background-position: 100% 100%;
    background-size: 0 1px;
}
hr {
    opacity: 1;
    background: var(--color-neutral-100);
}