.investments-container {
    height: fit-content;
    padding: 4.5rem 0;
    background-color: #f2f3f4;
}

.investments-flexbox {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
}

.investment-title {
    font-size: 33px;
    font-weight: 600;
}

.investments-subtitle {
    font-size: 18px;
    text-align: center;
}

.investments-card-grid {
    margin-top: 4rem;
    align-self: flex-start;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
}

.invest-card-grid {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invest-card-grid img {
    position: absolute;
    top: -5%;
    width: 170px;
    height: 160px;
}

.invest-card {
    width: 100%;
    background-color: white;
    margin-top: 6.5rem;
    position: relative;
    z-index: 1;
    padding: 6%;
    display: flex;
    flex-direction: column;
    row-gap: 2.2rem;
    border-radius: 20px;
}

.invest-card-title {
    font-size: 26px;
    font-weight: 550;
}

.center-invest-titles {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.invest-card-subtitle {
    font-size: 20px;
    font-weight: 550;
}

.invest-card-text {
    font-size: 14.5px;
}

.invest-btn {
    align-self: flex-start;
    width: 35%;
    padding: 12px;
    font-weight: bold;
    background-color: #FFD700;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    justify-content: center;
    cursor: pointer;
}

.invest-hyper {
    cursor: pointer;
    text-decoration: none;
}
