header .text-wrapper h1 {
    font-size: 65px;
    text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);

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

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

header .text-wrapper p {
    width: 55%;

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

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

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

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

header .buttons-wrapper a:hover {
    transform: translateY(-3px);
    box-shadow: 0px 50px 70px -30px rgba(0, 0, 0, 0.5);
}

.first {
    padding:0 10px 110px;
}
.first > div {
    max-width:var(--page-width);
    position:relative;
    margin: auto;
}
.first > div > .card {
    position:relative;
    padding:28px 50px 28px 110px;
    background-color:white;
    max-width:810px;
    min-height:230px;
    margin:0 auto 70px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;

    transition: all .8s;
}

.first > div > .card:first-of-type {
    opacity:0;
    transform: translateY(-10%);
}

.first > div > .card:first-of-type[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

.first > div > .card:nth-of-type(2) {
    opacity: 0;
    transform: translateY(-10%);
    transition-delay: .6s;
}

.first > div > .card:nth-of-type(2)[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

.first > div > .card:nth-of-type(3) {
    opacity: 0;
    transform: translateY(-10%);
    transition-delay: 1.2s;
}

.first > div > .card:nth-of-type(3)[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

.first > div > .card:nth-of-type(4) {
    opacity: 0;
    transform: translateY(-10%);
    transition-delay: 1.8s;
}

.first > div > .card:nth-of-type(4)[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}


.first > div > .card .icon-wrapper {
    width: 152px;
    position:absolute;
    left:0;
    top:50%;
    transform:translate(-50%, -50%);
}

.first > div:nth-of-type(1) > .card .icon-wrapper.icon,
.first > div:nth-of-type(3) > .card .icon-wrapper.icon{
    transform:translate(-50%, -50%) rotate(-8deg);
    left: 5px;
}

.first > div:nth-of-type(2) > .card .icon-wrapper.icon,
.first > div:nth-of-type(4) > .card .icon-wrapper.icon{
    transform:translate(-50%, -50%) rotate(8deg);
    left: -5px;
}

.first > div > .card .icon-wrapper.icon {
    width: 80px;
}

.first > div > .card h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    color:#233754;
    margin-bottom:.5em;
}
.first > div > .card p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #677282;
}

@media screen and (max-width: 1024px) {
    .first > div > .card {
        margin-left: 13%;
    }

    section.huge-button .big-button {
        width: 90%;
    }

    section.huge-button .big-button div {
        gap: 10px;
    }
}


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

    .first {
        padding-top: 100px;
    }

    .first > div {
        padding: 10px;
    }

    .first > div > .card.card {
        padding: 100px 30px 28px;
        border-radius: 20px;
        text-align: center;
        margin-left: auto;
        margin-bottom: 120px;
        width: 90%;
    }

    .first > div > .card.card:not(:last-child) {
        margin-bottom: 150px;
    }

    .first > div > .card .icon-wrapper {
        left: 50%;
        top: 0;
    }

    .first > div:nth-of-type(1) > .card .icon-wrapper.icon,
    .first > div:nth-of-type(3) > .card .icon-wrapper.icon{
        left: 50.5%;
    }

    .first > div:nth-of-type(2) > .card .icon-wrapper.icon,
    .first > div:nth-of-type(4) > .card .icon-wrapper.icon{
        transform:translate(-50%, -50%) rotate(8deg);
        left: 50%;
    }
}

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

    .first > div > .card .icon-wrapper {
        width: 130px;
    }

    .first > div > .card .icon-wrapper.icon {
        width: 70px;
    }

    section.huge-button .big-button {
        min-height: 100%;
        padding: 50px;
    }

    section.huge-button .big-button h2 {
        font-size: 40px;
        line-height: 60px;
    }

    .button.button-terciary {
        width: 80%;
    }
}

@media screen and (max-width: 414px) {
    .first {
        padding-bottom: 0;
    }
}

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

    section.huge-button .big-button h2 {
        font-size: 35px;
    }

    .button.button-terciary {
        width: 85%;
    }

    section.huge-button .big-button {
        padding: 50px 30px;
    }
}