.buttons-wrapper {
    opacity: 0;
    transform: translateY(-10%);
    transition: all .8s;
}

.buttons-wrapper[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

section.performance {
    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .8s;
}

section.performance[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

section.performance .dashed-line {
    display: inline-block;
    margin: 130px auto;
    width: 150px;
    height: 0px;
    border-top: 4px dashed #FFA201;
    transform: rotate(90deg);
}

section.performance .performance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.performance .performance-content .performance-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 65px;
    text-align: center;
    color: white;
}

section.performance .performance-card-container {
    width: 1100px;
    margin: 80px auto 50px auto;

    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 20px;
    justify-content: center;
}

section.performance .performance-card-container .performance-card {
    background-color: white;
    border-radius: 20px;
    height:280px;
    padding: 50px 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

section.performance .performance-card-container .performance-card img {
    width: 105px;
}

section.performance .performance-card-container .performance-card:nth-of-type(3) img {
    width: 80px;
}

section.performance .performance-card-container .performance-card .performance-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

section.how-it-works {
    width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .8s;
}

section.how-it-works[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

section.how-it-works .dashed-line {
    display: inline-block;
    margin: 130px auto;
    width: 250px;
    height: 0px;
    border-top: 4px dashed #FFA201;
    transform: rotate(90deg);
}

section.how-it-works .how-it-works-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 75px;
    text-align: center;
    color: white;
    margin-top: 50px;
}

section.how-it-works .how-it-works-title-sub {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    color: #FFA201;
    margin: 10px auto 30px auto;
}

section.how-it-works .how-it-works-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: white;
}

section.how-it-works .how-it-works-table {
    width: 1100px;
    margin-top: 80px;
    background-color: white;
    border-radius: 20px;
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px 0 45px 0;
}

section.how-it-works .how-it-works-table .how-it-works-column {
    position: relative;
}

section.how-it-works .how-it-works-table .how-it-works-column .button {
    position: absolute;
    top: -135px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 90px;
    border-radius: 16px;
    font-size: 30px;
}

section.how-it-works .how-it-works-table .how-it-works-list {
    padding: 0 50px;
    list-style: none;
    margin-top: 30px;
}

section.how-it-works .how-it-works-table .how-it-works-list:first-of-type {
    border-right: 3px solid #6772821A;
}

section.how-it-works .how-it-works-table .how-it-works-list .how-it-works-item {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    padding-left: 40px;
    color: #677282;

    position: relative;
}

section.how-it-works .how-it-works-table .how-it-works-list .how-it-works-item:not(:first-of-type) {
    margin-top: 20px;
}

section.how-it-works .how-it-works-table .how-it-works-list .how-it-works-item::before {
    content: " ";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 7px;
    left: 0;
    background-color: #FF7C01;
}

section.process {
    margin: 150px auto 0;
    padding-bottom:150px;
    width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .8s;
}

section.process[data-scroll="in"] {
    opacity: 1;
    transform: translate(0);
}

section.process .process-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 86px;
    text-align: center;
    color: white;
}

section.process .dashed-line {
    display: inline-block;
    margin: 130px auto;
    width: 150px;
    height: 0px;
    border-top: 4px dashed #FFA201;
    transform: rotate(90deg);
}

section.process .process-card {
    background-color: white;
    border-radius: 20px;
    width: 1000px;
    padding: 60px 100px;
    border: 4px solid #FF7C01;
    text-align: center;
}

section.process .process-card.blue {
    border: 4px solid #76CCE8;
}

section.process .process-card:not(:first-of-type) {
    padding: 60px;
}

section.process .process-card .process-card-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    color: var(--main-color);
}

section.process .process-card:not(:first-of-type) .process-card-title {
    margin-bottom: 40px;
}

section.process .process-card .process-card-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    margin: 20px auto 40px auto;
    color: var(--main-color);
}

section.process .process-card .button {
    color: white;
    box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1080px) {
    section.performance,
    section.how-it-works,
    section.process {
        width: 90%;
    }

    section.performance {
        margin: 0 auto;
    }

    section.performance .performance-card-container,
    section.how-it-works .how-it-works-table{
        max-width: 100%;
    }

    section.how-it-works .how-it-works-table .how-it-works-column .button {
        width: 300px;
    }

    section.process .process-title {
        font-size: 50px;
        line-height: 78px;
    }

    section.process .process-card {
        width: 80%;
    }
}

@media screen and (max-width: 820px) {
    header .text-wrapper .investors-title-text {
        width: 90%;
    }

    .mouse-scroll-icon {
        display: none;
    }

    section.performance .performance-card-container {
        grid-template-columns: 1fr;
        row-gap: 50px;
        place-items: center;
    }

    section.performance .performance-card-container .performance-card {
        width: 60%;
    }

    section.how-it-works .how-it-works-table {
        grid-template-columns: 1fr;
        row-gap: 50px;
        padding-top: 50px;
    }

    section.how-it-works .how-it-works-table .how-it-works-column .button {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    section.process .process-title {
        font-size: 45px;
        line-height: 65px;
    }

    section.process .process-title br {
        display: none;
    }

    section.process .process-card .process-card-title br {
        display: none;
    }

    section.process .process-card .process-card-text br {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    section.performance .performance-content .performance-title br{
        display: none;
    }

    section.performance .performance-card-container .performance-card {
        width: 80%;
    }
}

@media screen and (max-width: 500px) {
    section.process .process-card .button {
        width: 100%;
    }

    section.process .process-card:not(:first-of-type) {
        padding: 60px 30px;
    }

    section.process .process-card:not(:first-of-type) .process-card-title {
        font-size: 25px;
        line-height: 45px;
    }
}

@media screen and (max-width: 414px) {

    header {
        height: 80%;
    }

    section.performance .performance-content .performance-title {
        font-size: 37px;
        line-height: 57px;
    }

    section.process .process-card {
        width: 100%;
    }
}
