.main-body {
    max-width: 110rem;
    width: 100%;
    margin: auto;
    max-height: initial;
    margin: 0px auto;
}
.options {
    display: flex;
    margin-bottom: 60px;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
}
.option {
    position: relative;
    width: 100%;
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-shrink: 0;
    flex: 1;
    border-radius: 1.2rem;
    overflow: hidden;
    height: 24rem;
    cursor: pointer;
}
.image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    z-index: -1;
}
.image img {
    width: 100%;
    height: 100%;
    object-fit: cover ;
}
.info {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    width: 100%;
    border: 1px solid rgb(232, 232, 232);
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 10px 20px 16px;
}
.info-title {
    text-align: left;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
}
.info-discription {
    color: rgb(79, 79, 79);
    font-weight: 400;
    font-size: initial;
    line-height: 1.5;
    margin: 0px;
    font-size: 16px;

}
