.landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    border-radius: 0 0 4rem 4rem;
    padding: 50px 0;
    margin-right: 25px;
}

.logo {
    width: 15%;
    margin: 0 auto;
}

.title {
    font-size: 35px;
    font-weight: bold;
}

.row-center {
    display: flex;
    justify-content: center;
}

.col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    margin: 0;
    padding: 32px;
    border-radius: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-color: rgb(244 244 245);
    border-width: 1px;
    position: relative;
}

.card h2 {
    font-weight: 700;
    color: #ff541e;
    margin-bottom: 5px;
}

.card h3 {
    margin-top: 5px;
}

.custom-arrow {
    position: absolute;
    transform: translate(475px, -150px);
}

.custom-arrow .arrow-text {
    font-size: 22px;
    font-weight: bold;
    color: #3c434a;
    text-align: center;
    display: flex;
    flex-direction: column;
    transform: rotate(-15deg);
}

.custom-arrow .arrow-text small {
    color: #5f6773;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 500;
}

.button-clonable {
    background: #ff541e !important;
    border-color: #e14f1e !important;
    color: #fff !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

.button-clonable:hover {
    background: #e14f1e !important;
}