.rmbox {
    display: flex;
    justify-content: space-between;
    padding: 20px;

}

.rm-left {
    width: 400px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap:8px; */
    justify-content: space-between;
}
.rm-btn{
    width: 48%;
}

.rm-btn a {
    display: block;
    padding: 12px 20px;
    background-image:linear-gradient(#ffffeb, #fbe9a6);
    color: #e60012;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size:22px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    width: 78%;
    float: left;
    line-height: 40px;
    font-weight: bold;
}
.rm-btn .section {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
   
    background-image:linear-gradient(#ffffeb, #fbe9a6);
    color: #e60012;
}

.rm-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
	background-image: linear-gradient(#ff7335, #df171a);
	color: #fff;
}
.rm-btn .active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
    background-image: linear-gradient(#ff7335, #df171a);
	color: #fff;
}
.rm-more {
    position: absolute;
    bottom: 0;
    left: 20%;
    
}
.rm-more a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    background-image:linear-gradient(#ffffeb, #fbe9a6);
    color: #e60012;
    padding:10px;
    border-radius:30px;
    
    width: 100px;
}

.rm-more a:hover {
    color: #e60012;
}

.rm-right {
    flex: 1;
    margin-left: 30px;
}

.rm-display {
    width: 790px;
    height: 522px;
    border-radius: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
}

.rm-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/line01.png) no-repeat;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 1;
}

.rm-display img {
    width: 99%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 30px;
}

.rm-display img:hover {

}


.rm-btn:first-child a {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
    background-image: linear-gradient(#ffffeb, #fbe9a6);
    color: #e60012;
}


