/*News Css*/
.box-page .news-item {
	display: flex;
	padding: 30px;
    box-shadow: 0 0 5px #0000005c;
    margin-bottom: 30px;
    transition: box-shadow .4s ease;
}

.box-page .news-item:hover {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) 
}

.box-page .news-item .news__img {
	width: 50%;
}

.box-page .news-item .news__body {
	padding: 15px 0 0 15px;
	width: 50%;
	padding-top: 0;
}

.box-page .news-item .news__body .news-category {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
	display: block;
}

.box-page .news-item .news__body .news-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	color: #333333b8;
}

.box-page .news-item .news__body .news-title:hover {
	color: var(--second-color) !important;
}

.box-page .news-item .news__body .desc {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 15px;
	color: #333333b8;
	line-height: 24px;
	font-size: 14px;
}

.btn-readmore {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--second-color);
	padding: .5em 2em;
	border-radius: 5px;
	border: 1px solid var(--second-color);
	font-weight: 600;
}

.btn-readmore:hover {
	background-color: var(--second-color);
	color: #fff !important;
}

.aside-item {
	padding: 20px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
}

.aside-item:last-child {
	margin-bottom: 0;
}

.aside-title {
	position: relative;
	font-size: 18px;
	padding-bottom: .5em;
	margin-bottom: 1em;
	text-align: center;
	font-weight: 600;
	color: #333333b8;
}

.aside-title:before {
	content: '';
	width: 50px;
	height: 3px;
	background-color: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.aside-news-item {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px dashed #ccc;
}

.aside-news-item .aside-news-title {
	font-size: 14px;
}

.navigation {
	margin-bottom: 0;
}


.product-item .product__body {
    padding: 15px 0 0 0;
    text-align: center;
}

.product-item .product__body .product-title {
    font-weight: 500;
}
/*
.product-item .product__body .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 20px;
    color: var(--main-color);
    font-weight: 600;
    font-family: "UTM-Avo";
}

.product-item .product__body .price ins {
    padding: 0 10px;
    order: 1;
    color: transparent;
}

.product-item .product__body .price ins span {
    color: var(--main-color);
}

.product-item .product__body .price del {
    padding: 0 10px;
    order: 2;
    color: #999999;
    font-size: 18px;
}*/

.aside-videos-slide .video-item{margin-bottom: 30px;}
.aside-videos-slide .video-item:last-child{margin-bottom: 0;}
.aside-videos-slide .video-item .short-content{line-height: 22px;color: #333333c7;}

.news-detail {
	padding: 30px;
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}

/*Responsive CSS*/

@media (max-width: 1199px) {
	
}

@media (max-width: 991px) {
    
}

@media (max-width: 767px) {
	 .box-page .news-item {
	 	flex-direction: column;
	 	padding: 0;
	 	box-shadow: 0;
	 }

	 .box-page .news-item .news__img {
	 	width: 100%
	 }

	 .box-page .news-item .news__body {
	 	width: 100%;
	 	padding: 15px;
	 	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
	 }

	 .news-detail {
	 	padding: 15px;
	 }

	 .news-detail .box-page .head-title {
	 	font-size: 21px;
	 }
}

@media (max-width: 320px) {
	
}

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	.aside {
		display: flex;
		margin-left: -15px;
		margin-right: -15px;
	}	

	.aside .aside-item {
		width: 50%;
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 1024px){
	
}

@media (min-width: 1200px){
	
}