*,
*::before,
*::after {
    accent-color: var(--primary);
}

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

html {
    scroll-behavior: smooth;
    font-size: 20px;
    line-height: 24px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-weight: 400;
    overflow-x: hidden;
    width: 100vw;
    scroll-snap-type: y mandatory;
}

body {
    min-height: 100vh;
    color: var(--text-color);
    background: var(--white);
    line-height: 1.6;
    font-family: var(--font-regular);
    font-size: 1rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    width: 100vw;
}

body.scroll {
    max-height: 100vh;
}

.site,
.wrapper {
    background: var(--gray-100);
}

.page-title span {
    font-weight: 300;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-selection {
    background: var(--primary);
    color: var(--white);
}

.bold,
strong {
    font-weight: 600;
}

.medium {
    font-weight: 600;
}

.underline {
    text-decoration: underline;
}

.font-weight-unset {
    font-weight: unset;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-ul {
    text-decoration: underline !important;
}

.text-break {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.text-reset {
    color: inherit !important;
}

.uppercase {
    text-transform: uppercase;
}

a {
    transition: var(--transition);
    -webkit-text-decoration-skip: objects;
    text-decoration: none;
    color: var(--primary);
}

hr {
    border-top: 1px solid var(--gray-500);
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

.vertical-hr {
    display: block;
    margin: 0 auto;
    width: 1px;
    height: 100%;
    background: var(--gray-0);
}

.hide {
    display: none !important;
}

.cursor-pointer {
    cursor: pointer;
}

.fill-white {
    fill: var(--white);
}

.overflow-hidden {
    overflow: hidden;
}

.regular-link {
    cursor: pointer;
}

.regular-link:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: fit-content;
}

figure {
    margin: 0;
}

.hidden-content {
    width: 100%;
    overflow: hidden;
}

.font-light {
    font-weight: 100;
}

.font-italic {
    font-style: italic;
}

.rounded {
    border-radius: var(--rounded-lg);
}

.cutimage {
    display: block;
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.cutimage img,
.center-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    border: 0;
}

.modal-backdrop {
    z-index: 0;
}

.color-black {
    color: var(--black);
}

.landing-section {
    margin: -3rem 1rem 0 1rem;
    position: relative;
    border-radius: 34px;
}

.landing-section:nth-child(1) {
  z-index: 1;
}

.landing-section:nth-child(2) {
  z-index: 2;
}

.landing-section:nth-child(3) {
  z-index: 3;
}

.landing-section:nth-child(4) {
  z-index: 4;
}

.landing-section:nth-child(5) {
  z-index: 5;
}

.landing-section:nth-child(6) {
  z-index: 6;
}

.landing-section:nth-child(7) {
  z-index: 7;
}

.landing-section:nth-child(8) {
  z-index: 8;
}

.landing-section:nth-child(9) {
  z-index: 9;
}

.landing-section:nth-child(10) {
  z-index: 10;
}

@media (min-width: 821px) {
    .landing-section {
        position: sticky;
        top: 1rem;
        display: grid;
        place-items: center;
        min-height: calc(100vh - 2rem);
        border-radius: 34px;
    }
}

.label {
    font-size: 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 500px;
    width: fit-content;
    margin: 0 auto;
    padding: 4px 16px;
    font-weight: 600;
}
