body {
    background-color: #F3F3F3;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

.metadata {
    color: #000000;
    margin-bottom: 30px;
}

.metadata h1 {
    margin-bottom: 30px;
}

.content {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    padding-bottom: 250px;
}

.content aside {
    padding-bottom: 50px;
}

.cta-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 25px 40px;
    position: static;
}

.cta-box ul {
    padding-left: 1.5rem;
}

.cta-box li {
    margin-bottom: 10px;
}

.article {
    background-color: #ffffff;
    border-radius: 10px;
    padding-bottom: 40px;
}

.list-item {
    color: #020202;
    margin-bottom: 30px;
}

.list-item * {
    line-height: 30px;
    margin-bottom: 25px;
}

.list-item .title {
    font-weight: 700;
}

.list-item .image {
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
}

.guarantee-seal {
    left: 5%;
    max-width: 30%;
    position: absolute;
    top: 10%;
}

.yellow-box {
    background-color: #FEF9C5;
    border-radius: 10px;
    padding: 18px 32px 24px 24px;
}

.yellow-box p {
    margin-bottom: 0;
}

.infobox.yellow-box {
    color: #000000;
    padding-bottom: 40px;
    text-align: center;
}

.infobox h2 {
    line-height: 52px;
}

.infobox h3 {
    line-height: 29px;
}

.infobox p {
    line-height: 30px;
}

.step strong {
    font-size: 26px;
    line-height: 29px;
}

.step p {
    margin-top: 15px;
}

.btn-black {
    background-color: #000000;
    border: none;
    border-radius: 40px;
    margin-top: 15px;
    padding: 15px 40px;
    transition: transform .3s ease-in-out;
    width: 100%;
}

.btn-black:hover {
    transform: scale(1.015);
}

.btn-black a {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-weight: bold;
    gap: 10px;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (min-width: 991px) {
    body {
        font-size: 18px;
        line-height: 32px;
    }
    
    .metadata {
        max-width: 53%;
    }

    .metadata h1 {
        font-size: 48px;
    }

    .article {
        flex: 1.3;
    }

    .content aside {
        flex: 1;
    }

    aside {
        position: relative;
    }

    .cta-box {
        animation-name: smoothUp;
        -webkit-animation-name: smoothUp;
        animation-duration: .5s;
        -webkit-animation-duration: .5s;
        margin-right: 1.5rem;
        max-width: 400px;
    }

    .infobox h2 {
        font-size: 38px;
    }

    .showfxd {
        position: fixed;
        top: -25%;
    }

    .absolute {
        transition: all .5s ease-in-out;
    }

    .cta-box.absolute {
        animation-name: smoothDown;
        -webkit-animation-name: smoothDown;
        animation-duration: .7s;
        -webkit-animation-duration: .7s;
        bottom: 0;
        position: absolute;
    }
}

@media screen and (max-width: 991px) {
    .cta_mobile_fixed {
        background-color: #e3e3e3;
        bottom: 0;
        display: flex;
        justify-content: center;
        padding: 1rem;
        position: fixed;
        width: 100%;
    }

    .cta_mobile_fixed .btn-black {
        margin-top: 0;
        max-width: 500px;
    }

    .pulse {
        animation-name: pulse;
        -webkit-animation-name: pulse;
        animation-duration: 1.5s;
        -webkit-animation-duration: 1.5s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
    }

    .content {
        flex-direction: column;
    }

    .guarantee-seal {
        top: 5%;
    }

    .yellow-box {
        padding: 18px 20px;
    }

    .infobox h2 {
        font-size: 24px;
        line-height: 33px;
    }

    .infobox p {
        line-height: 25px;
    }

    .step strong {
        font-size: 22px;
    }

    .btn-black {
        padding: 15px 30px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

@keyframes smoothUp {
    0% {
        top: 270px;
    }
    100% {
        top: -25%;
    }
}

@keyframes smoothDown {
    0% {
        bottom: 204px;
    }
    100% {
        bottom: 0;
    }
}