body * {
    font-family: Arial, sans-serif;
}


/* ------------card group-------------------------------------- */

.card_group {
    display: flex;
    flex-wrap: wrap;

}

.my_card {
    width: 50%;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4% 0;
}

.my_card a {
    display: contents;
}

.card_title {
    text-align: center;
    padding: 10px 0;
    font-size: 24px !important;
    background: #0B308E;
    color: white;
    border-radius: 10px 10px 0 0;
    font-weight: 600 !important;

}

.card_info {
    display: flex;
    justify-content: center;
    background-color: #fff;
    flex-grow: 1;
    border-radius: 10px;
    height: 300px;
    padding: 0;
    width: 90%;
    border-width: 0px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

.card_info:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.card_info p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    text-align: justify;
    margin: 20px 20px 0;
}

.card_info span {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    bottom: 20px;
    text-align: left;
    left: 0;
    color: #767676;
}

.card_content {
    width: 100%;
    padding: 0px;
}

.card_content img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

h2.new_title {
    margin-top: 50px;
    font-weight: 600;
}

/* ------------------------------------------ */

.mainVisualContainer {
    display: none;
}