.wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wrapper p:first-child {
    margin-top: 0;
}

.wrapper p {
    margin-bottom: 1rem;
}

.wrapper p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1480px) {
    .wrapper {
        max-width: 1200px;
    }
}

@media (max-width: 1240px) {
    .wrapper {
        max-width: 1024px;
    }
}

@media (max-width: 1064px) {
    .wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.wrapper-section {
    width: 100%;
    position: relative;
    background-blend-mode: lighten;
}

.wrapper-style-default {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wrapper-style-small {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.wrapper-style-big {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.wrapper-style-full {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

.wrapper-bg img,
.wrapper-bg svg,
.wrapper-bg video {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

.wrapper-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

.wrapper-img-fill img,
.wrapper-img-fill svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-img-x-center img,
.wrapper-img-x-center svg {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
}

.wrapper-img-y-center img,
.wrapper-img-y-center svg {
    top: 50%;
    transform: translatey(-50%);
}

.wrapper-img-x-center.wrapper-img-y-center img,
.wrapper-img-x-center.wrapper-img-y-center svg {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wrapper-img-x-right img,
.wrapper-img-x-right svg {
    position: absolute;
    width: auto;
    height: auto;
    right: 0;
}

.wrapper-img-left img,
.wrapper-img-left svg {
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
}

.wrapper-img-y-bottom img,
.wrapper-img-y-bottom svg {
    bottom: 0;
}

.wrapper-img-y-top img,
.wrapper-img-y-top svg {
    top: 0;
}

.wrapper-shadow {
    background: var(--wrapper-bg);
    color: var(--wrapper-text);
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--box-shadow);
    padding: 2rem;
}