:root {
    --light: #F9F9F9;
    --blue: #3C91E6;
    --light-blue: #CFE8FF;
    --grey: #eee;
    --dark-grey: #AAAAAA;
    --dark: #342E37;
	--black: #0b0b0b;
    --red: #DB504A;
    --yellow: #FFCE26;
    --light-yellow: #FFF2C6;
    --orange: #FD7238;
    --light-orange: #FFE0D3;

    /* Classic Gold Variations */
    --gold-light: linear-gradient(135deg, #F9E154 0%, #FFF2A8 50%, #F9E154 100%);
    --gold-dark: linear-gradient(135deg, #8B6914 0%, #B8860B 50%, #8B6914 100%);
    --gold-mid: linear-gradient(135deg, #C5A059 0%, #FDE876 50%, #C5A059 100%);

    /* Multi-tone Golds */
    --gold-royal: linear-gradient(135deg, #8B6914 0%, #C5A059 25%, #FDE876 50%, #FFF8B0 75%, #D4AF37 100%);
    --gold: linear-gradient(70deg, #8B6914 0%,#C5A059 10%,#E5C665 20%,#FDE876 35%,#FFF8B0 50%,#FDE876 65%,#D4AF37 80%,#B8860B 100%);
  
    /* Special Effects */
    --gold-metallic: linear-gradient(135deg, #8B6914 0%, #B8860B 15%, #DAA520 30%, #F0C040 45%, #FFDF00 60%, #FFF8DC 75%, #FFDF00 85%, #DAA520 100%);
    --gold-bronze: linear-gradient(135deg, #6B4C1A 0%, #8B6914 25%, #B8860B 50%, #DAA520 75%, #B8860B 100%);
}

/*********************************
3.7 Main Slider
*********************************/

.main_slider
{
	width: 100%;
	height: 700px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-top: 150px;
}
.main_slider_content
{
	width: 60%;
}
.main_slider_content h6
{
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 29px;
}
.main_slider_content h1
{
	font-weight: 400;
	line-height: 1;
}


/*********************************
4. Banner
*********************************/

.banner
{
	width: 100%;
	margin-top: 30px;
}
.banner_item
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 265px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.banner_category
{
	height: 50px;
	background: var(--gold-royal);
	min-width: 180px;
	padding-left: 25px;
	padding-right: 25px;
}
.banner_category a
{
	display: block;
	color: var(--black);
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	line-height: 50px;
	width: 100%;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.banner_category a:hover
{
	color:var(--grey);
}
/*********************************
5. New Arrivals
*********************************/

.new_arrivals
{
	width: 100%;
}
.new_arrivals_title
{
	margin-top: 74px;
}

/*********************************
5.1 New Arrivals Sorting
*********************************/

.new_arrivals_sorting
{
	display: inline-block;
	border-radius: 3px;
	margin-top: 59px;
	overflow: visible;
}
.grid_sorting_button
{
	height: 40px;
	min-width: 102px;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	border: solid 1px #ebebeb;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	background: #FFFFFF;
	border-radius: 3px;
	margin: 0;
	float: left;
	margin-left: -1px;
}
.grid_sorting_button:first-child
{
	margin-left: 0px;
}
.grid_sorting_button:last-child
{

}
.grid_sorting_button.active:hover
{
	background: var(--gold-light) !important;
}
.grid_sorting_button.active
{
	color: var(--dark);
	background: var(--gold-mid);
}

/*********************************
5.2 New Arrivals Products Grid
*********************************/

.product-grid
{
	width: 100%;
	margin-top: 57px;
}
.product-item
{
	width: 20%;
	height: 380px;
	cursor: pointer;
}
.product-item::after
{
	display: block;
	position: absolute;
	top: 0;
	left: -1px;
	width: calc(100% + 1px);
	height: 100%;
	pointer-events: none;
	content: '';
	border: solid 2px rgba(235,235,235,0);
	border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.product-item:hover::after
{
	box-shadow: 0 25px 29px rgba(63, 78, 100, 0.15);
	border: solid 2px rgba(235,235,235,1);
}
.product
{
	width: 100%;
	height: 340px;
	border-right: solid 1px #e9e9e9;
	position: relative;
	overflow: hidden;
}
.product_image
{
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #f8f8f8;
}
.product_image img
{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.product_info
{
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	z-index: 2;
	background: #FFFFFF;
}
.product_name
{
	margin-top: 27px;
}
.product_name a
{
	color: var(--dark-grey);
	line-height: 20px;
	text-decoration: none;
	transition: color 0.3s ease;
}
.product-item:hover .product_name a
{
	color: var(--dark);
}
.discount .product_info .product_price
{
	font-size: 14px;
}
.product_price
{
	font-size: 16px;
	color: #8B6914;
	font-weight: 600;
}
.product_price span
{
	font-size: 12px;
	margin-left: 10px;
	color: #C5A059;
	text-decoration: line-through;
}
.product_bubble
{
	position: absolute;
	top: 15px;
	width: 50px;
	height: 22px;
	border-radius: 3px;
	text-transform: uppercase;
	z-index: 3;
}
.product_bubble span
{
	font-size: 12px;
	font-weight: 600;
	color: #FFFFFF;
}
.product_bubble_right::after
{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 6px;
	right: auto;
	top: auto;
	bottom: -6px;
	border: 6px solid;
}
.product_bubble_left::after
{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: auto;
	right: 6px;
	bottom: -6px;
	border: 6px solid;
}
.product_bubble_red::after
{
	border-color: transparent transparent transparent #fe4c50;
}
.product_bubble_left::after
{
	border-color: #51a042 #51a042 transparent transparent;
}
.product_bubble_red
{
	background: #fe4c50;
}
.product_bubble_green
{
	background: #51a042;
}
.product_bubble_left
{
	left: 15px;
}
.product_bubble_right
{
	right: 15px;
}
.add_to_cart_button
{
	width: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.add_to_cart_button a
{
	font-size: 12px;
	font-weight: 600;
}
.product-item:hover .add_to_cart_button
{
	visibility: visible;
	opacity: 1;
}
.favorite
{
	position: absolute;
	top: 15px;
	right: 15px;
	color: #b9b4c7;
	width: 17px;
	height: 17px;
	visibility: hidden;
	opacity: 0;
	z-index: 3;
}
.favorite_left
{
	left: 15px;
}
.favorite.active
{
	visibility: visible;
	opacity: 1;
}
.product-item:hover .favorite
{
	visibility: visible;
	opacity: 1;
}
.favorite.active::after
{
	font-family: 'FontAwesome';
	content:'\f004';
	color: var(--gold);
}
.favorite::after
{
	font-family: 'FontAwesome';
	content:'\f08a';
}
.favorite:hover::after
{
	color: var(--gold);
}

/*********************************
6. About Us Section
*********************************/

.about_us {
    width: 100%;
    margin-top: 41px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.about_us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about_us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* About Us Image */
.about_us_img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.about_us_img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about_us_img:hover img {
    transform: scale(1.05);
}

.about_us_img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.about_us_img:hover .about_us_img_overlay {
    opacity: 1;
}

/* Play Video Button */
.play_video_btn {
    text-align: center;
}

.play_video_btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-mid);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.play_video_btn a:hover {
    background: var(--gold-royal);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.play_video_btn i {
    font-size: 16px;
}

/* About Us Content */
.about_us_content {
    padding-left: 30px;
}

.about_section_title {
    text-align: left;
}

.about_section_title::after {
    left: 0;
    transform: translateX(0);
    background: var(--gold-mid);
}

.about_us_text {
    margin-top: 30px;
}

.about_lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 20px;
}

.about_us_text p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* About Features */
.about_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about_feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about_feature:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about_feature i {
    color: var(--gold-solid);
    font-size: 18px;
    transition: all 0.3s ease;
}

.about_feature:hover i {
    transform: scale(1.1);
}

.about_feature span {
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
}

/* Statistics Section */
.about_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 30px;
    padding: 20px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.stat_item {
    text-align: center;
}

.stat_number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-solid);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    background: var(--gold-mid);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat_label {
    font-size: 12px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Us Button */
.about_us_button {
    width: 180px;
    margin-top: 10px;
    background: var(--gold-mid);
}

.about_us_button:hover {
    background: var(--gold-royal);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about_us {
        padding: 60px 0;
    }
    
    .about_us_content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about_stats {
        gap: 15px;
    }
    
    .stat_number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about_features {
        grid-template-columns: 1fr;
    }
    
    .about_stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about_lead {
        font-size: 16px;
    }
    
    .play_video_btn a {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about_us {
        padding: 40px 0;
    }
    
    .about_stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat_item {
        text-align: center;
    }
}

/* Animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat_item {
    animation: countUp 0.6s ease forwards;
    opacity: 0;
}

.stat_item:nth-child(1) { animation-delay: 0.1s; }
.stat_item:nth-child(2) { animation-delay: 0.2s; }
.stat_item:nth-child(3) { animation-delay: 0.3s; }
.stat_item:nth-child(4) { animation-delay: 0.4s; }
/*********************************
6. Deal of the week
*********************************/
/**
.deal_ofthe_week
{
	width: 100%;
	margin-top: 41px;
	background: #f2f2f2;
}
.deal_ofthe_week_img
{
	height: 540px;
}
.deal_ofthe_week_img img
{
	height: 100%;
}
.deal_ofthe_week_content
{
	height: 100%;
}
.section_title
{
	display: inline-block;
	text-align: center;
}
.section_title h2
{
	display: inline-block;
}
.section_title::after
{
	display: block;
	position: absolute;
	top: calc(100% + 13px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 60px;
	height: 5px;
	background: var(--gold);
	content: '';
}
.timer
{
	margin-top: 66px;
}
.timer li
{
	display: inline-block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-right: 10px;
}
.timer li:last-child
{
	margin-right: 0px;
}
.timer_num
{
	font-size: 48px;
	font-weight: 600;
	color: var(--gold);
	margin-top: 10px;
}
.timer_unit
{
	margin-top: 12px;
	font-size: 16px;
	font-weight: 500;
	color: #51545f;
}
.deal_ofthe_week_button
{
	width: 140px;
	background: var(--gold-royal);
	margin-top: 52px;
}
.deal_ofthe_week_button:hover
{
	background: var(--gold-mid) !important;
}
*/
/*********************************
7. Best Sellers
*********************************/

.product_slider_container
{
	width: 100%;
	height: 340px;
	margin-top: 73px;
}
.product_slider_container::after
{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #FFFFFF;
	content: '';
	z-index: 1;
}
.product_slider
{
	overflow: visible !important;
}
.product_slider_item .product-item
{
	height: 340px;
}
.product_slider_item
{
	width: 20%;
}
.product_slider_item .product-item
{
	width: 100% !important;
}

/*********************************
7.1 Slider Nav
*********************************/

.product_slider_nav
{
	position: absolute;
	width: 30px;
	height: 70px;
	background: var(--gold-royal);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.product_slider_container:hover .product_slider_nav
{
	visibility: visible;
	opacity: 1;
}
.product_slider_nav i
{
	color: #FFFFFF;
	font-size: 12px;
}
.product_slider_nav_left
{
	top: 50%;
	left: 0;
}
.product_slider_nav_right
{
	top: 50%;
	right: 0;
}
/*********************************
8. Benefit
*********************************/

.benefit {
    margin-top: 74px;
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.benefit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.benefit::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.benefit_row {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0;
}

.benefit_col {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 20px;
}

.benefit_item {
    height: 120px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 12px;
    padding-left: 25px;
    padding-right: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Hover effect */
.benefit_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
}

/* Overlay effect */
.benefit-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.benefit_item:hover .benefit-overlay {
    left: 100%;
}

/* Icon styling */
.benefit_icon {
    position: relative;
    transition: all 0.3s ease;
}

.benefit_icon i {
    font-size: 40px;
    background: var(--gold-mid);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold-solid);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

/* Icon hover animation */
.benefit_item:hover .benefit_icon i {
    transform: scale(1.15) rotate(5deg);
    color: var(--gold-bronze);
}

/* Icon hover effect ring */
.icon-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.benefit_item:hover .icon-hover-effect {
    width: 80px;
    height: 80px;
}

/* Content styling */
.benefit_content {
    padding-left: 22px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.benefit_content h6 {
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* Underline animation on hover */
.benefit_content h6::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-mid);
    transition: width 0.3s ease;
}

.benefit_item:hover .benefit_content h6::after {
    width: 100%;
}

.benefit_content p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0px;
    color: var(--gray-text);
    transition: all 0.3s ease;
}

/* Hover text that appears */
.benefit-hover-text {
    display: block;
    font-size: 11px;
    color: var(--gold-solid);
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.benefit_item:hover .benefit-hover-text {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.benefit_item:hover .benefit_icon i {
    animation: pulse 1s ease infinite;
}

/* Shine effect on hover */
.benefit_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.benefit_item:hover::before {
    left: 100%;
}

/* Remove right border since we're using card style */
.benefit_col:last-child .benefit_item {
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .benefit_item {
        height: auto;
        padding: 20px 15px;
    }
    
    .benefit_icon i {
        font-size: 35px;
    }
    
    .benefit_content h6 {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .benefit {
        margin-top: 40px;
    }
    
    .benefit_item {
        margin-bottom: 15px;
    }
    
    .benefit_icon i {
        font-size: 30px;
    }
}

/* Optional: Add loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit_col {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.benefit_col:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit_col:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit_col:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit_col:nth-child(4) {
    animation-delay: 0.4s;
}

/* Optional JavaScript for counter animation (add if you want numbers) */
.benefit-counter {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-solid);
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}
/*********************************
9. Blogs
*********************************/

.blogs
{
	margin-top: 72px;
}
.blogs_container
{
	margin-top: 53px;
}
.blog_item
{
	height: 255px;
	width: 100%;
}
.blog_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.blog_content
{
	position: absolute;
	top: 30px;
	left: 30px;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	background: rgba(255,255,255,0.9);
	padding-left: 10px;
	padding-right: 10px;
	visibility: hidden;
	opacity: 0;
	transform-origin: center center;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.blog_item:hover .blog_content
{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}
.blog_title
{
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0px;
}
.blog_meta
{
	font-size: 12px;
	line-height: 30px;
	font-weight: 400;
	text-transform: uppercase;
	color: #51545f;
	margin-bottom: 0px;
	margin-top: 3px;
	letter-spacing: 1px;
}
.blog_more
{
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	color: var(--gold);
	border-bottom: solid 1px var(--gold);
	margin-top: 12px;
}
.blog_more:hover
{
	color: #FE7C7F;
}
