.header .nav-menu .first-li{
	display: flex;
	align-items: center;
	position: relative;
	height: calc(100 / 1920* 100vw);
}
.header .nav-menu .children{
	display:none;
	position: absolute;	
	left: -150%;
	top: calc(100 / 1920* 100vw);
	width: 500%;
	padding: 15px 0;
	background: #000;
}
.header .nav-menu .children li a{
	display: block;
	padding: 10px 15px;
	color: #B49478;
}
.header .nav-menu .children li a:hover{
	color: #fff;
}
.header .nav-menu .first-li:hover .children{
	display: block;
}

.content-box img{
	max-width: 100%;
	height: auto;
}
.rec-card-details{
	position: relative;
}
.rec-card-details a{
	margin-right: 15px;
	margin-top: 15px;
}
.pane-bullets-list p{
	font-size: calc(22 / 1920* 100vw);
}

.pagination{
	display: flex;
    gap: calc(12 / 1920* 100vw);
    align-items: center;
}
.pagination a {
    width: calc(70 / 1920* 100vw);
    height: calc(40 / 1920* 100vw);
    border-radius: calc(18 / 1920* 100vw);
    background-color: #e9e9e9;
    color: #999999;
    font-size: calc(20 / 1920* 100vw);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    background: #EBEBEB;
    border-radius: 20px;
}
.pagination .active a, .pagination a:hover {
    background-color: #4c3b6f;
    color: #ffffff;
}