:root {
    --black: #262626;
    --gray: #c7c7c7;
    --lightgray: #f0f0f0;
    --mediumgray: #8c8c8c;
}

.b-lightgray {
    background-color: var(--lightgray);
}

#newsletter {
    margin-top: 0;
}

#how-hero {
    background-image: url(../../images/redesign/how-it-works/bg-hero.png);
    background-image: -webkit-image-set(url("../../images/redesign/how-it-works/bg-hero.png") 1x, url("../../images/redesign/how-it-works/bg-hero@2x.png") 2x);
}

#how-hero h1 {
    font-size: 50px;
    line-height: 38px;
}

#how-hero h1:before,
#how-hero h1:after {
    content: "";
    position: absolute;
    top: 30px;
    width: 104px;
    height: 3px;
    background: var(--brand-pink);
}

#how-hero h1:before {
    left: -115px;
}

#how-hero h1:after {
    right: -115px;
}

#how-hero p {
    font-size: 18px;
    line-height: 24px;
    max-width: 621px;
}

/* Promise */
#promise {
    padding: 20px 0 87px 0;
    margin-top: 15px;
}

#promise .breadcrumbs,
#promise .breadcrumbs a {
    color: var(--mediumgray);
    font-size: 17px;
}

#promise .breadcrumbs .container {
    padding: 0;
}

#promise .breadcrumbs .bc-inner {
    font-family: "mr-eaves-xl-modern";
    font-weight: 400;
}

#promise .subtitle {
    font-size: 20px;
    max-width: 754px;
}

#promise .container {
    width: 1280px;
}

#promise .button {
    font-size: 24px;
    width: 175px;
    height: 50px;
    line-height: 54px;
    text-decoration: none;
}

#promise h4 {
    font-size: 22px;
}

#promise .item {
    padding: 30px 5px;
}

#promise .item p {
    font-size: 16px;
}


@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
}

@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
}

@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
}


.confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0%;
}

.confetti--animation-slow {
    animation: confetti-slow 5.25s linear 1 forwards;
}

.confetti--animation-medium {
    animation: confetti-medium 4.75s linear 1 forwards;
}

.confetti--animation-fast {
    animation: confetti-fast 4.25s linear 1 forwards;
}



@media screen and (max-width: 992px) {
    #promise .items {
        flex-wrap: wrap;
    }

    #promise .item {
        width: calc(50% - 1rem);
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 567px) {
    #promise {
        margin: 0;
        padding-bottom: 50px;
    }

    #promise .breadcrumbs {
        padding: 0 0 15px 0;
        font-size: 13px;
    }

    #promise .breadcrumbs a {
        font-size: 13px;
    }

    #promise .subtitle {
        font-size: 18px;
    }

    #promise .item {
        align-items: flex-start;
        text-align: left;
        padding: 0 0 32px 0;
        margin: 0;
    }

    #promise .item:last-child {
        padding-bottom: 0;
    }

    #promise .item .flex {
        align-items: flex-start;
        flex-direction: row;
    }

    #promise .item p {
        color: #000;
    }

    #promise h4 {
        margin: 0;
        padding: 0;
    }

    #promise .image {
        padding-right: 27px;
    }

    #promise .item img {
        width: 63px;
    }

    #promise .item.col-3 {
        width: 100%;
    }

    #promise .items {
        margin-top: 40px;
    }

    #promise .button {
        font-size: 17px;
        margin-top: 30px;
    }

}


/* Ownership */
#ownership {
    padding: 120px 0 53px 0;
}

#ownership .blocktitle {
    padding: 15px 23px 10px 23px
}

#ownership .blocktitle h3 span {
    margin-left: -5px;
    font-size: 44px;
}

#ownership .blocktitle img {
    top: -93px;
    right: -103px;
}

#ownership .inner {
    max-width: 800px;
}

#ownership .swiper-slide {
    width: auto
}

#ownership .swiper-button-prev,
#ownership .swiper-button-next {
    display: none;
}

#ownership .step {
    width: 75px;
    height: 75px;
    z-index: 2;
}

#ownership .step span {
    font-size: 51px;
    z-index: 1;
    margin-left: -4px;
    margin-top: -3px;
}

#ownership .step:before {
    content: '';
    position: absolute;
    top: -3px;
    right: 3px;
    background-color: var(--darkblue);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
}

#ownership .step-title {
    font-size: 22px;
}

#ownership li {
    font-size: 16px;
}

#ownership li:before {
    content: '';
    position: absolute;
    left: -21px;
    top: 1px;
    width: 16px;
    height: 16px;
    background-image: url("../../images/redesign/icon-check.png");
    background-image: -webkit-image-set(url("../../images/redesign/icon-check.png") 1x, url("../../images/redesign/icon-check@2x.png") 2x);
    filter: brightness(0) saturate(100%) invert(68%) sepia(49%) saturate(4175%) hue-rotate(84deg) brightness(91%) contrast(113%);
}

#ownership .button {
    font-size: 24px;
    width: 224px;
    height: 50px;
    line-height: 54px;
    text-decoration: none;
}

#ownership .employee {
    right: -175px;
    bottom: -53px;
}


#ownership .swiper-button-next,
#ownership .swiper-button-prev {
    background-image: url('../../images/swiper-arrow.png');
    background-size: 7px 11px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    width: 37.5px;
    height: 37.5px;
    border-radius: 50%;
    border: 1px solid #dedede;
    top: 70%;
}

#ownership .swiper-button-prev {
    left: 0;
}

#ownership .swiper-button-next {
    right: 0;
    transform: scaleX(-1);
}

@media screen and (max-width: 1200px) {
    #ownership .employee {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    #ownership .inner {
        padding-left: 0;
    }

    #ownership .inner>div {
        margin-left: 40px;
    }
}

@media screen and (max-width: 768px) {
    #ownership {
        padding: 70px 0 50px 0;
    }

    #ownership .blocktitle p {
        font-size: 27px;
        top: -15px;
    }

    #ownership .blocktitle h3 span {
        font-size: 33px;
    }

    #ownership .blocktitle h3 {
        font-size: 30px;
        padding-top: 5px;
    }

    #ownership .swiper-button-prev,
    #ownership .swiper-button-next {
        display: block;
    }

    #ownership .inner>.flex {
        align-items: center;
    }

    #ownership .step-title {
        text-align: center;
    }

    #ownership .inner>div {
        margin-left: 0;
        margin-top: 20px;
    }

    #ownership .inner .step {
        margin-top: 0;
        width: 70px;
        height: 70px;
        margin-left: 5px;
    }

    #ownership .blocktitle img {
        width: 100px;
        right: -10px;
        bottom: -88px;
        top: auto;
    }

    #ownership .inner .swiper-slide {
        margin-top: 0;
    }

    #ownership ul {
        margin-left: 22px;
    }
}

@media screen and (max-width: 567px) {
    #ownership {
        padding: 50px 0;
    }

    #ownership .button {
        font-size: 17px;
        width: 190px;
    }

    #ownership .blocktitle {
        padding: 10px 5px 5px 5px;
    }
}

@media screen and (max-width: 380px) {
    #ownership .blocktitle h3 span {
        font-size: 7.9vw;
    }

    #ownership .blocktitle h3 {
        font-size: 7.5vw;
    }
}

#trending .swiper-button-next,
#trending .swiper-button-prev {
    top: 50%;
}

#trending {
    border-bottom: 0;
    margin: 0;
}

@media screen and (max-width: 567px) {
    #how-hero {
        background-image: url(../../images/redesign/how-it-works/bg-hero-m.png);
        background-image: -webkit-image-set(url("../../images/redesign/how-it-works/bg-hero-m.png") 1x, url("../../images/redesign/how-it-works/bg-hero-m@2x.png") 2x);
        padding: 30px 0;
        margin-top: 22px;
    }

    #how-hero h1 {
        font-size: 40px;
        line-height: 40px;
    }

    #how-hero p {
        font-size: 14px;
        line-height: 19px;
        padding-top: 10px;
    }

    #how-hero h1:before,
    #how-hero h1:after {
        top: 25px;
        width: 25px;
    }

    #how-hero h1:before {
        left: -37px;
    }

    #how-hero h1:after {
        right: -37px;
    }

    #trending .nav-wrap {
        margin: 0;
    }

    #trending .text-center.mb4.pb4 {
        padding: 0;
        margin-bottom: 40px;
    }
}