@-webkit-keyframes lightboxLoader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes lightboxLoader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes gfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes gfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes gfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes gfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes gslideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: visible
    }
}

@keyframes gslideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: visible
    }
}

@-webkit-keyframes gslideOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: visible
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
        visibility: hidden
    }
}

@keyframes gslideOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: visible
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
        visibility: hidden
    }
}

@-webkit-keyframes gslideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes gslideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes gslideOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: visible
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0)
    }
}

@keyframes gslideOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: visible
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0)
    }
}

@-webkit-keyframes gzoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 1
    }
}

@keyframes gzoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes gzoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes gzoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes bounce {
    0% {
        transform: translateY(-6px)
    }

    15% {
        transform: translateY(0)
    }

    30% {
        transform: translateY(-6px)
    }

    45% {
        transform: translateY(0)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes appear {
    0% {
        transform: translateY(-100px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes stream {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@keyframes reveal {
    0% {
        opacity: .8;
        translate: 0 50px
    }

    to {
        opacity: 1;
        translate: 0 0
    }
}

@keyframes revealSection {
    0% {
        opacity: .8;
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

*,
:after,
:before {
    box-sizing: border-box
}

body {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
    min-width: 300px;
    padding: 0;
    position: relative;
    text-size-adjust: 100%;
    background-color: #fff;
    font-family: Red Hat Display, sans-serif;
    letter-spacing: .005em;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@media only screen and (min-width:64rem) {
    body {
        overflow-x: hidden
    }
}

a {
    text-decoration: none
}

p {
    letter-spacing: .5px;
    margin: 0 0 15px
}

p:last-child {
    margin: 0
}

b,
strong {
    font-family: Red Hat Display, sans-serif;
    font-weight: 600
}

em {
    font-style: italic
}

picture {
    display: inline-block
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle
}

ol,
ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0
}

hr {
    margin-left: auto;
    margin-right: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Red Hat Display, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 0
}

@media only screen and (min-width:27rem) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 30px
    }
}

button {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: normal;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto
}

img:not([src]) {
    display: none
}

.container {
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    width: 100%
}

@media only screen and (min-width:27rem) {
    .container {
        padding: 0 1.875rem
    }
}

@media only screen and (min-width:48rem) {
    .container {
        padding: 0 3.75rem
    }
}

@media only screen and (min-width:80rem) {
    .container {
        max-width: 75rem;
        padding: 0
    }
}

@media only screen and (min-width:94.5rem) {
    .container {
        max-width: 80rem
    }
}

.section {
    padding-top: 50px
}

@media only screen and (min-width:64rem) {
    .section {
        padding-top: 95px
    }
}

.viewport {
    margin: 0 auto;
    max-width: 94.5rem
}

.svg {
    display: inline-block
}

.svg svg {
    height: 100%;
    width: 100%
}

.headline .title {
    font-size: 30px
}

@media only screen and (min-width:64rem) {
    .headline .title {
        font-size: 45px
    }
}

@media only screen and (min-width:80rem) {
    .headline .title {
        font-size: 50px
    }
}

.headline .subtitle {
    font-size: 30px
}

@media only screen and (min-width:80rem) {
    .headline .subtitle {
        font-size: 40px
    }
}

.header {
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid hsla(0, 0%, 100%, .502);
    display: flex;
    height: 96px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

@media only screen and (min-width:64rem) {
    .header {
        height: 104px
    }
}

.header .container {
    display: flex;
    justify-content: center
}

@media only screen and (min-width:64rem) {
    .header .container {
        justify-content: left
    }
}

.header .header__logo {
    display: inline-block;
    line-height: 0;
    width: 112px
}

@media only screen and (min-width:64rem) {
    .header .header__logo {
        width: auto
    }
}

.header .header__logo svg {
    width: 100%
}

.footer {
    background-color: #2c0b71;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding: 96px 0 220px;
    position: relative
}

@media only screen and (min-width:64rem) {
    .footer {
        padding: 96px 0 86px
    }
}

.footer a {
    color: #fff
}

.footer .logo svg path {
    fill: #fff
}

.footer .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    row-gap: 35px
}

@media only screen and (min-width:64rem) {
    .footer .container {
        flex-direction: row;
        justify-content: space-between
    }
}

.footer .address {
    display: inline-flex;
    gap: 6px
}

.footer .socials nav {
    column-gap: 24px;
    display: flex
}

@media only screen and (min-width:64rem) {
    .footer .socials {
        order: 2
    }
}

.button {
    align-items: center;
    border: 2px solid #000;
    border-radius: 40px;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    height: 64px;
    justify-content: center;
    min-width: 320px;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    transition: transform .3s, color .3s, border .3s, background .3s
}

@media only screen and (min-width:64rem) {
    .button {
        font-size: 30px;
        height: 74px;
        min-width: 398px;
        padding: 0 50px
    }
}

.button:active {
    transform: translateY(1px)
}

@keyframes loading {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.button.--purple {
    border-color: #4211aa;
    color: #4211aa
}

@media only screen and (min-width:64rem) {
    .button.--purple:hover {
        background-color: #790df4;
        border-color: #790df4;
        color: #fff
    }
}

.button.--yellow {
    border-color: #fddf13;
    color: #fddf13
}

.button.--white {
    border-color: #fff;
    color: #fff
}

.modal {
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 1
}

.modal.js--open {
    opacity: 1;
    visibility: visible;
    z-index: 1000
}

.modal.js--open .modal__overlay {
    opacity: 1;
    transform: translateY(0)
}

.modal.js--open .modal__close {
    visibility: visible
}

.modal__overlay {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: all .5s ease-in-out .2s
}

.modal__container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 16px 2px rgba(0, 0, 0, .09);
    margin: 20px;
    min-width: 300px;
    padding: 50px 20px;
    position: relative
}

@media only screen and (min-width:27rem) {
    .modal__container {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
        padding-left: 30px;
        padding-right: 30px
    }
}

@media only screen and (min-width:48rem) {
    .modal__container {
        max-width: 600px;
        padding-left: 40px;
        padding-right: 40px
    }
}

.modal__close {
    background-color: transparent;
    border: 1.6px solid #000;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 27px;
    line-height: 27px;
    margin-right: 10px;
    margin-top: 10px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all .3s linear .2s;
    width: 27px
}

.modal__close:after,
.modal__close:before {
    background-color: #000;
    border-radius: 1px;
    content: "";
    display: block;
    height: 1.6px;
    left: 50%;
    margin-left: -7px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    width: 14px
}

.modal__close:before {
    transform: rotate(45deg)
}

.modal__close:after {
    transform: rotate(-45deg)
}

.tabs__options {
    margin: 0 -20px 10px;
    overflow: auto;
    padding: 0 20px 5px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@media only screen and (min-width:27rem) {
    .tabs__options {
        margin: 0 -30px 10px;
        padding: 0 30px 5px
    }
}

@media only screen and (min-width:64rem) {
    .tabs__options {
        margin: 0 0 10px;
        padding: unset
    }
}

.tabs__options .tabs {
    display: flex;
    gap: 30px;
    margin: auto;
    width: fit-content
}

@media only screen and (min-width:64rem) {
    .tabs__options .tabs {
        gap: 42px
    }
}

.tabs__options .tab {
    width: max-content
}

.tabs__options .tab:hover {
    color: blue
}

.tabs__options .tab.active {
    color: red
}

.tabs__content>div {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .9s ease-in-out, height .3s
}

.tabs__content>div.active {
    height: auto;
    opacity: 1
}

.tabs__content>div .tabs__content-tab {
    padding-top: 20px
}

.whatsapp-btn {
    align-items: flex-end;
    animation-direction: alternate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-name: bounce;
    bottom: 13%;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    transition: all .3s;
    z-index: 10
}

@media only screen and (min-width:48rem) {
    .whatsapp-btn {
        right: 60px
    }
}

@media screen and (min-height:600px) {
    .whatsapp-btn {
        bottom: 12%
    }
}

@media screen and (min-height:700px) {
    .whatsapp-btn {
        bottom: 10%
    }
}

@media screen and (min-height:700px)and (min-width:64rem) {
    .whatsapp-btn {
        bottom: 8%
    }
}

.whatsapp-btn a {
    display: inline-block;
    filter: drop-shadow(0 3.88824px 18.4691px rgba(18, 140, 126, .16));
    line-height: 1;
    padding: 14px
}

.whatsapp-btn svg {
    height: 62px;
    width: 62px
}

.whatsapp-btn span {
    background-color: #1f80ff;
    border-radius: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    position: relative;
    right: 20px;
    top: -14px
}

@media only screen and (min-width:64rem) {
    .whatsapp-btn span {
        font-size: 12px;
        padding: 6px 16px;
        top: -10px
    }
}

.whatsapp-btn span:after {
    background-color: #1f80ff;
    border-radius: 1px;
    content: "";
    display: block;
    height: 14px;
    position: absolute;
    right: 15px;
    top: -6px;
    transform: rotate(45deg);
    user-select: none;
    width: 14px;
    z-index: -1
}

.paginator ul {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 30px
}

@media only screen and (min-width:64rem) {
    .paginator ul {
        margin-top: 50px
    }
}

.paginator ul a,
.paginator ul span {
    align-items: center;
    border-radius: 10px;
    color: #000;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    height: 32px;
    justify-content: center;
    line-height: 22px;
    width: 32px
}

@media only screen and (min-width:64rem) {

    .paginator ul a,
    .paginator ul span {
        font-size: 16px;
        height: 42px;
        line-height: 24px;
        width: 42px
    }
}

.paginator ul a.active,
.paginator ul span.active {
    background-color: #285bea;
    color: #fff
}

.paginator ul .paginator__next,
.paginator ul .paginator__prev {
    background-color: transparent;
    background-image: url(/wp-content/themes/projectname/assets/img/icon-arrow-paginator.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    font-size: 0;
    height: 40px;
    width: 40px !important
}

@media only screen and (min-width:64rem) {

    .paginator ul .paginator__next,
    .paginator ul .paginator__prev {
        height: 56px;
        width: 56px !important
    }
}

.paginator ul .paginator__prev {
    margin-right: 10px
}

@media only screen and (min-width:64rem) {
    .paginator ul .paginator__prev {
        margin-right: 20px
    }
}

.paginator ul .paginator__next {
    margin-left: 10px;
    transform: scaleX(-1)
}

@media only screen and (min-width:64rem) {
    .paginator ul .paginator__next {
        margin-left: 20px
    }
}

.back-to-top {
    border: none;
    bottom: 30px;
    cursor: unset;
    opacity: 0;
    padding: 10px;
    position: fixed;
    right: 10px;
    transition: opacity .3s ease, visibility .3s;
    visibility: hidden;
    z-index: 3
}

@media only screen and (min-width:27rem) {
    .back-to-top {
        bottom: 30px;
        right: 20px
    }
}

@media only screen and (min-width:48rem) {
    .back-to-top {
        bottom: 70px;
        right: 60px
    }
}

.back-to-top>div {
    align-items: center;
    background-color: #851315;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px
}

.back-to-top svg {
    flex-shrink: 0
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.consentpopup {
    background-color: rgba(0, 0, 0, .6);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity .3s .3s, visibility .3s .3s;
    visibility: hidden;
    z-index: 15
}

.consentpopup.active {
    opacity: 1;
    visibility: visible
}

.consentpopup.active .consentpopup-body {
    transform: translateY(0)
}

.consentpopup .consentpopup__container {
    height: 100%
}

.consentpopup-body {
    background-color: #fff;
    bottom: 0;
    display: flex;
    left: 0;
    padding: 26px 0 100px;
    position: absolute;
    right: 0;
    transform: translateY(100%);
    transition: transform .3s 1s
}

@media only screen and (min-width:64rem) {
    .consentpopup-body {
        padding: 26px 0 40px
    }

    .consentpopup-body .container {
        display: flex;
        gap: 120px
    }
}

.consentpopup-body h2 {
    color: #707070;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px
}

.consentpopup-body p {
    color: #707070;
    font-size: 13px
}

.consentpopup-body p b {
    color: #000
}

.consentpopup-body .info {
    margin: 0 auto;
    max-width: 580px
}

@media only screen and (min-width:64rem) {
    .consentpopup-body .info {
        max-width: 700px
    }
}

.consentpopup-body .buttons {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

@media only screen and (min-width:64rem) {
    .consentpopup-body .buttons {
        flex-shrink: 0
    }
}

.consentpopup-body .buttons .button {
    background-color: #851315;
    font-weight: 400;
    height: 44px;
    min-width: 200px;
    text-transform: unset
}

@media only screen and (min-width:64rem) {
    .consentpopup-body .buttons .button {
        background-color: #fff;
        border: 1px solid #851315;
        color: #000
    }
}

.consentpopup-body .buttons a {
    color: #851315;
    text-decoration: underline
}

.accordion-box {
    border-bottom: 1px solid #000
}

.accordion-box:last-child {
    border-bottom: 0
}

.accordion-box.js--open .accordion-box__button .arrow:before {
    transform: translateY(-50%) rotate(-45deg)
}

.accordion-box.js--open .accordion-box__button .arrow:after {
    transform: translateY(-50%) rotate(45deg)
}

.accordion-box.js--open .accordion-box__content {
    height: auto
}

.accordion-box__button {
    background: #fff;
    background-color: transparent;
    border: 0;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    gap: 24px;
    justify-content: space-between;
    letter-spacing: .0025em;
    line-height: 1.2;
    padding: 24px 0;
    position: relative;
    text-align: left;
    width: 100%
}

.accordion-box__button>* {
    pointer-events: none
}

@media only screen and (min-width:80rem) {
    .accordion-box__button {
        font-size: 25px;
        padding: 24px 0
    }
}

.accordion-box__button .arrow {
    flex-shrink: 0;
    position: relative;
    width: 30px
}

.accordion-box__button .arrow:after,
.accordion-box__button .arrow:before {
    background-color: #000;
    border-radius: 2px;
    content: "";
    height: 2px;
    position: absolute;
    top: 50%;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    width: 9px
}

@media only screen and (min-width:80rem) {

    .accordion-box__button .arrow:after,
    .accordion-box__button .arrow:before {
        width: 12px
    }
}

.accordion-box__button .arrow:before {
    right: 6px;
    transform: translateY(-50%) rotate(45deg)
}

@media only screen and (min-width:80rem) {
    .accordion-box__button .arrow:before {
        right: 18px
    }
}

.accordion-box__button .arrow:after {
    right: 1px;
    transform: translateY(-50%) rotate(-45deg)
}

@media only screen and (min-width:80rem) {
    .accordion-box__button .arrow:after {
        right: 10px
    }
}

.accordion-box__content {
    font-size: 20px;
    font-weight: 400;
    height: 0;
    overflow: hidden;
    transition: height .3s
}

.accordion-box__content>* {
    padding: 5px 5px 24px
}

.accordion-box__content p {
    line-height: 26px;
    margin: 0 0 20px
}

.accordion-box__content p:last-child {
    margin: 0
}

.thumb {
    align-items: center;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
    text-align: center
}

@media only screen and (min-width:64rem) {
    .thumb {
        flex-shrink: 0;
        margin-top: 120px
    }
}

.thumb:hover .btn-play {
    transform: scale(1.1);
    background-color: transparent !important;
}

.thumb .btn-play:focus {
    background-color: transparent !important;
}

.thumb .btn-play {
    display: inline-block;
    line-height: 0;
    position: absolute;
    transition: transform .3s
}

.input,
.input-select,
.textarea {
    margin-bottom: 24px;
    width: 100%
}

.input input,
.input textarea,
.input-select input,
.input-select textarea,
.textarea input,
.textarea textarea {
    padding: 0 10px
}

@media only screen and (min-width:48rem) {

    .input input,
    .input textarea,
    .input-select input,
    .input-select textarea,
    .textarea input,
    .textarea textarea {
        padding: 0 14px
    }
}

.input input::placeholder,
.input textarea::placeholder,
.input-select input::placeholder,
.input-select textarea::placeholder,
.textarea input::placeholder,
.textarea textarea::placeholder {
    color: #7f7f7f
}

.input .select,
.input input,
.input textarea,
.input-select .select,
.input-select input,
.input-select textarea,
.textarea .select,
.textarea input,
.textarea textarea {
    background-color: #fdfdfd;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    color: #000;
    display: block;
    font-family: Red Hat Display, sans-serif;
    font-size: 14px;
    font-weight: 300;
    height: 40px;
    position: relative;
    text-overflow: ellipsis;
    user-select: none;
    white-space: nowrap;
    width: 100%
}

@media only screen and (min-width:48rem) {

    .input .select,
    .input input,
    .input textarea,
    .input-select .select,
    .input-select input,
    .input-select textarea,
    .textarea .select,
    .textarea input,
    .textarea textarea {
        border-radius: 8px;
        font-size: 14px;
        height: 45px
    }
}

.input .label,
.input label,
.input-select .label,
.input-select label,
.textarea .label,
.textarea label {
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px
}

@media only screen and (min-width:48rem) {

    .input .label,
    .input label,
    .input-select .label,
    .input-select label,
    .textarea .label,
    .textarea label {
        font-size: 14px
    }
}

.input-select.error .select,
.input-select.error input,
.input-select.error textarea,
.input.error .select,
.input.error input,
.input.error textarea,
.textarea.error .select,
.textarea.error input,
.textarea.error textarea {
    border-color: #ff1033
}

.input .help,
.input-select .help,
.textarea .help {
    color: #ff1033;
    font-size: 12px;
    line-height: 1;
    margin-top: 4px;
    position: absolute;
    transition: opacity .3s
}

.textarea textarea {
    height: 100px;
    padding-bottom: 14px;
    padding-top: 14px;
    resize: vertical
}

.radio {
    display: inline-block;
    vertical-align: top
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 1px transparent
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 0, 0, .1)
    }

    to {
        box-shadow: 0 0 0 6px transparent
    }
}

.radio input {
    border: 0;
    color: transparent;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0)
}

.radio .box {
    align-items: center;
    background-color: #fff;
    border: 1px solid #676879;
    display: flex;
    height: 24px;
    justify-content: center;
    left: 0;
    position: relative;
    top: 0;
    transition-duration: .3s;
    transition-property: background-color, border-color;
    width: 24px
}

.radio .box:before {
    content: "";
    position: absolute;
    transform: scale(0);
    transition-duration: .3s;
    transition-property: transform
}

.radio label {
    align-items: center;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    gap: 10px;
    position: relative;
    text-align: left;
    vertical-align: bottom
}

@media only screen and (min-width:48rem) {
    .radio label {
        font-size: 14px
    }
}

.radio label a {
    color: #000;
    left: 0;
    padding: 0;
    position: relative;
    top: 0
}

.radio label a:before {
    background-color: transparent;
    bottom: -3px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transition: background .3s
}

.radio label a:hover:before {
    background-color: rgba(0, 0, 0, .6)
}

.radio.error .box {
    border: 1px solid #ff1033
}

.radio.error .help {
    display: none
}

.radio .box {
    border-radius: 50%
}

.radio .box:before {
    background: transparent;
    border-radius: 50%;
    height: 10px;
    width: 10px
}

.radio input:checked+label .box {
    animation: ripple .3s linear forwards;
    background-color: #000
}

.radio input:checked+label .box:before {
    background-color: #fff;
    transform: scale(1) !important
}

@media only screen and (min-width:48rem) {
    .select {
        height: 56px
    }
}

.select[state=open] .select__content {
    opacity: 1;
    visibility: visible
}

.select[state=open] .select__button:after {
    transform: rotate(180deg)
}

.select.error {
    border-color: #ff1033 !important
}

.select.error .help {
    color: #ff1033 !important
}

.select__button {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 0 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@media only screen and (min-width:48rem) {
    .select__button {
        padding: 0 14px
    }
}

.select__button input {
    cursor: pointer;
    user-select: none
}

.select__button input:disabled {
    pointer-events: none
}

.select__button:after {
    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI2IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMTAgNiI+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTUgNS4zNzVhLjYyLjYyIDAgMCAxLS40NS0uMTc2TC44IDEuNDVBLjYuNiAwIDAgMSAuOC41N2EuNi42IDAgMCAxIC44OCAwTDUgMy44NzFsMy4zLTMuM2EuNi42IDAgMCAxIC44OCAwIC42LjYgMCAwIDEgMCAuODc4TDUuNDMgNS4yYS42LjYgMCAwIDEtLjQzLjE3NiIgb3BhY2l0eT0iLjUiLz48L3N2Zz4=);
    line-height: 0;
    pointer-events: none;
    position: absolute;
    right: 16px;
    transition: transform .3s
}

.select__content {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    color: #333;
    max-height: 242px;
    opacity: 0;
    overflow-y: auto;
    position: absolute;
    right: -1px;
    top: 102%;
    transition: opacity .1s, visibility .2s;
    visibility: hidden;
    width: 100%;
    width: calc(100% + 2px);
    z-index: 1
}

.select__content::-webkit-scrollbar {
    height: 6px;
    width: 6px
}

.select__content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
    border-top-right-radius: 0
}

.select__content::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
    border-top-right-radius: 0
}

.select__item {
    color: #333;
    cursor: pointer;
    font-weight: 400;
    height: 40px;
    padding: 0 10px;
    position: relative;
    transition: all .2s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.select__item:hover,
.select__item[state=selected] {
    background: #f3f9fd;
    color: #1f80ff;
    text-shadow: 0 0 0 #1f80ff
}

.select__item[state=selected] {
    height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden
}

.select__item:after {
    background-color: #e8e8e8;
    content: "";
    height: 1px;
    left: 8px;
    position: absolute;
    right: 8px;
    top: 0
}

@media only screen and (min-width:48rem) {
    .select__item:after {
        left: 13px;
        right: 13px
    }
}

.select__item:first-child:after,
.select__item:first-child[state=selected]+div:after {
    content: none
}

.select__item>* {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between
}

.select__item span {
    all: unset !important
}

.card-client {
    animation: reveal linear both;
    background-color: #790df4;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    color: #fff;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 681px;
    min-height: 200px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    text-align: left;
    animation-timeline: view();
    animation-range: entry 10% cover 20%
}

@media only screen and (min-width:80rem) {
    .card-client {
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 1
    }
}

.card-client:hover .image img {
    transform: scale(1.05)
}

.card-client .title {
    flex-grow: 1;
    font-size: 20px;
    font-weight: 500;
    margin: 41px 0
}

.card-client .data {
    font-size: 16px;
    margin-top: 16px
}

.card-client .data p:first-of-type {
    color: #fddf13;
    margin-bottom: 8px
}

.page__home .hero {
    background-color: #790df4;
    background: linear-gradient(.697turn, #790df4, #4211aa);
    color: #fff;
    padding-bottom: 60px;
    padding-top: 126px;
    position: relative
}

@media only screen and (min-width:64rem) {
    .page__home .hero {
        padding-bottom: 110px;
        padding-top: 204px
    }

    .page__home .hero .wrapper {
        display: flex;
        gap: 30px
    }
}

@media only screen and (min-width:40rem) {
    .page__home .hero .hero-content {
        margin: 0 auto;
        max-width: 700px;
        text-align: center
    }
}

@media only screen and (min-width:64rem) {
    .page__home .hero .hero-content {
        margin: unset;
        max-width: 650px;
        text-align: left
    }
}

.page__home .hero .hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 24px
}

@media only screen and (min-width:80rem) {
    .page__home .hero .hero-content h1 {
        font-size: 55px
    }
}

.page__home .hero .hero-content strong {
    color: #fddf13;
    font-weight: 700
}

.page__home .hero .hero-content .text {
    font-size: 30px;
    margin-bottom: 0
}

.page__home .hero picture {
    flex-shrink: 0;
    margin-top: 50px;
    text-align: center;
    width: 100%
}

@media only screen and (min-width:64rem) {
    .page__home .hero picture {
        margin: 0;
        width: auto
    }
}

.page__home .hero .btnwrap {
    background-color: #2c0b71;
    bottom: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    left: 0;
    padding: 20px 30px 25px;
    position: fixed;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 1
}

@media only screen and (min-width:64rem) {
    .page__home .hero .btnwrap {
        background-color: transparent;
        box-shadow: none;
        margin-top: 40px;
        padding: 0;
        position: static;
        text-align: left
    }
}

.page__home .hero .btnwrap p {
    font-size: 21px;
    margin-bottom: 15px
}

@media only screen and (min-width:64rem) {
    .page__home .hero .btnwrap p {
        font-size: 25px
    }
}

.page__home .hero .btnwrap .mobfixed {
    background-color: #fddf13;
    border-color: #fddf13;
    color: #000;
    font-size: 24px;
    max-width: 320px;
    min-width: auto;
    width: 100%
}

@media only screen and (min-width:64rem) {
    .page__home .hero .btnwrap .mobfixed {
        background-color: transparent;
        border-color: #fff;
        color: #fff;
        font-size: 24px;
        max-width: 360px
    }

    .page__home .hero .btnwrap .mobfixed:hover {
        background-color: #fddf13;
        border-color: #fddf13;
        color: #4211aa
    }
}

.page__home .campaigns {
    background-color: #fddf13;
    color: #4211aa;
    padding: 50px 0 40px;
    text-align: center
}

@media only screen and (min-width:64rem) {
    .page__home .campaigns {
        padding: 70px 0 60px
    }
}

.page__home .campaigns p {
    font-size: 20px
}

@media only screen and (min-width:64rem) {
    .page__home .campaigns p {
        font-size: 30px
    }
}

.page__home .campaigns h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 30px auto 20px;
    max-width: 350px
}

@media only screen and (min-width:80rem) {
    .page__home .campaigns h3 {
        font-size: 35px;
        margin-bottom: 30px;
        max-width: unset
    }
}

.page__home .campaigns .logos {
    background-color: #ffec61
}

.page__home .campaigns .logos .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 68px;
    justify-content: center;
    padding: 21px 0
}

@media only screen and (min-width:64rem) {
    .page__home .campaigns .logos .wrap {
        gap: 130px
    }
}

.page__home .ads {
    padding: 60px 0
}

@media only screen and (min-width:64rem) {
    .page__home .ads {
        padding: 90px 0 100px
    }
}

.page__home .ads .headline {
    color: #4211aa;
    margin: 0 auto 50px;
    max-width: 350px;
    text-align: center
}

@media only screen and (min-width:48rem) {
    .page__home .ads .headline {
        max-width: 850px
    }
}

.page__home .ads .headline .title {
    margin-bottom: 0
}

.page__home .ads .headline .title strong {
    font-weight: 700
}

.page__home .ads__pills {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 50px;
    row-gap: 20px
}

@media only screen and (min-width:64rem) {
    .page__home .ads__pills {
        margin: 50px 0;
        row-gap: 18px
    }
}

.page__home .ads__pill {
    align-items: center;
    background-color: #790df4;
    border-radius: 20px;
    display: flex;
    gap: 22px;
    max-width: 440px;
    padding: 15px 24px;
    width: auto
}

@media only screen and (min-width:40rem) {
    .page__home .ads__pill {
        max-width: unset
    }
}

@media only screen and (min-width:64rem) {
    .page__home .ads__pill {
        border-radius: 77px;
        padding: 15px 24px
    }
}

.page__home .ads__pill:nth-child(2n) {
    flex-direction: row-reverse;
    text-align: right
}

.page__home .ads__pill .text {
    color: #fff
}

@media only screen and (min-width:64rem) {
    .page__home .ads__pill .text {
        font-size: 25px
    }
}

.page__home .ads__solutions {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}

.page__home .ads__solutions p {
    color: #4211aa
}

.page__home .how {
    background-color: #4211aa;
    color: #fff;
    padding: 70px 0 80px;
    text-align: center
}

@media only screen and (min-width:64rem) {
    .page__home .how {
        padding: 100px 0
    }
}

.page__home .how .headline {
    margin-bottom: 60px
}

.page__home .how .headline .title {
    font-size: 35px;
    font-weight: 700
}

@media only screen and (min-width:64rem) {
    .page__home .how .headline .title {
        font-size: 45px
    }
}

@media only screen and (min-width:80rem) {
    .page__home .how .headline .title {
        font-size: 50px
    }
}

.page__home .how .headline .subtitle {
    margin: 0 auto 10px;
    max-width: 300px
}

@media only screen and (min-width:48rem) {
    .page__home .how .headline .subtitle {
        margin: 0 0 20px;
        max-width: unset
    }
}

.page__home .how .grid {
    display: grid;
    gap: 28px;
    justify-content: center
}

@media only screen and (min-width:64rem) {
    .page__home .how .grid {
        gap: 24px;
        grid-template-columns: 1fr 1fr
    }
}

@media only screen and (min-width:80rem) {
    .page__home .how .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr
    }
}

.page__home .how .card-how {
    background-color: #fff;
    border-radius: 24px;
    color: #4211aa;
    cursor: pointer;
    font-size: 25px;
    margin: 0 auto;
    max-width: 440px;
    padding: 24px;
    text-align: left;
    transition: background .3s
}

@media only screen and (min-width:48rem) {
    .page__home .how .card-how {
        margin: unset;
        max-width: unset
    }
}

@media only screen and (min-width:64rem) {
    .page__home .how .card-how:hover {
        background-color: #fddf13
    }

    .page__home .how .card-how:hover .icon {
        background-color: #790df4
    }

    .page__home .how .card-how:hover .icon svg path {
        fill: #fddf13
    }
}

.page__home .how .card-how p {
    font-size: 20px
}

@media only screen and (min-width:64rem) {
    .page__home .how .card-how p {
        font-size: 25px
    }
}

.page__home .how .icon {
    align-items: center;
    background-color: #fddf13;
    border-radius: 50%;
    display: inline-flex;
    height: 52px;
    justify-content: center;
    margin-bottom: 24px;
    transition: background .3s;
    width: 52px
}

.page__home .how .icon svg path {
    transition: fill .3s
}

.page__home .plus {
    background: linear-gradient(101.46deg, #fffbe5 .1%, #fff 29.6%, #fcfaff 67.04%, #f0e4fe 99.9%);
    color: #4211aa;
    padding: 60px 0;
    text-align: center
}

@media only screen and (min-width:64rem) {
    .page__home .plus {
        padding: 80px 0
    }
}

.page__home .plus .headline {
    margin-bottom: 40px
}

.page__home .plus .headline .title {
    background-color: #fddf13;
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    padding: 5px 24px
}

@media only screen and (min-width:64rem) {
    .page__home .plus .headline .title {
        font-size: 45px
    }
}

@media only screen and (min-width:80rem) {
    .page__home .plus .headline .title {
        font-size: 50px
    }
}

.page__home .plus .headline .subtitle {
    font-weight: 600
}

.page__home .plus .headline p {
    margin: 0 auto;
    max-width: 930px
}

@media only screen and (min-width:64rem) {

    .page__home .plus .btn-text,
    .page__home .plus .headline p {
        font-size: 25px
    }
}

.page__home .plus .videowrap .thumb {
    background-color: #a696b7;
    min-height: 247px;
}

@media only screen and (min-width:64rem) {
    .page__home .plus .videowrap .thumb {
        min-height: 508px;
        min-width: 903px
    }
}

.page__home .plus .btn-play {
    height: 60px;
    width: 54px
}

.page__home .plus .btn-play svg {
    height: 100%;
    width: 100%
}

@media only screen and (min-width:64rem) {
    .page__home .plus .btn-play {
        height: 166px;
        width: 150px
    }
}

.plyr--video .plyr__control:hover,
.plyr__control--overlaid {
    background-color: #2c0b71
}

.page__home .clients {
    background-color: #fddf13;
    padding: 60px 0 70px
}

@media only screen and (min-width:64rem) {
    .page__home .clients {
        padding: 80px 0 100px
    }
}

.page__home .clients .headline {
    color: #4211aa;
    margin-bottom: 50px;
    text-align: center
}

@media only screen and (min-width:64rem) {
    .page__home .clients .headline {
        margin-bottom: 65px
    }
}

.page__home .clients .headline .title {
    font-weight: 700
}

.page__home .clients .grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between
}

@media only screen and (min-width:80rem) {
    .page__home .clients .grid {
        flex-direction: row;
        gap: 34px
    }
}

.page__home .faqs {
    padding: 60px 0
}

@media only screen and (min-width:64rem) {
    .page__home .faqs {
        padding: 100px 0 110px
    }
}

.page__home .faqs .headline {
    color: #4211aa;
    margin-bottom: 64px;
    text-align: center
}

.page__home .faqs .headline .title {
    font-weight: 700
}

.page__home .faqs .accordion {
    color: #4211aa
}

.page__home .faqs .accordion-box {
    border: 1px solid #b488f2;
    border-radius: 24px;
    margin-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px
}

.page__home .faqs .accordion-box.js--open {
    background-color: #eeeaf3
}

.page__home .faqs .accordion-box__button {
    color: #4211aa;
    font-size: 20px;
    font-weight: 600
}

.page__home .faqs .accordion-box__button:hover,
.page__home .faqs .accordion-box__button:focus {
    background-color: transparent !important;
}

@media only screen and (min-width:64rem) {
    .page__home .faqs .accordion-box__button {
        font-size: 25px
    }
}

.page__home .faqs .accordion-box__button .title {
    line-height: 1.4;
    white-space: normal !important;
}

@media only screen and (min-width:64rem) {
    .page__home .faqs .accordion-box__button .title {
        white-space: nowrap !important;
    }
}

.page__home .faqs .accordion-box__button .arrow:after,
.page__home .faqs .accordion-box__button .arrow:before {
    background-color: #4211aa
}

.page__home .faqs .accordion-box__content {
    font-size: 20px
}

.page__home .faqs .accordion-box__content p {
    line-height: 1.4
}

.page__home .slogan {
    border-radius: 24px;
    color: #fff;
    margin: 0 auto 50px;
    max-width: 1340px;
    text-align: center
}

.page__home .slogan .wrap {
    background-color: #790df4;
    border-radius: 24px;
    padding: 46px 0
}

@media only screen and (min-width:40rem) {
    .page__home .slogan .wrap {
        padding: 46px 40px
    }
}

@media only screen and (min-width:80rem) {
    .page__home .slogan .wrap {
        padding: 80px 60px
    }
}

.page__home .slogan h2 {
    font-size: 30px;
    line-height: 1.4;
    margin: 0 auto 48px;
    max-width: 240px
}

@media only screen and (min-width:40rem) {
    .page__home .slogan h2 {
        max-width: unset
    }
}

@media only screen and (min-width:64rem) {
    .page__home .slogan h2 {
        font-size: 50px;
        line-height: 1.2
    }
}

.page__home .slogan h2 strong {
    font-weight: 700
}