#popular-products .content {
    display: flex;
}
#popular-products .main-block {
    width: 100%;
}
#popular-products .content .text-part a {
    font-weight: 600;
    text-decoration: none;
    color: #261654;
    text-align: center;
    display: block;
    font-family: font-2;  
    font-size: 18.5px;
    line-height: 1.1em;
	text-transform: uppercase;
}
#popular-products .content .block-content {
    padding: 0 10px;
}
#popular-products .content .block-content img {
    border-radius: 50%;
    height: 150px;
    object-fit: cover;
    max-width: 150px;
    margin: auto;
    margin-bottom: 20px;
}

#list-cat .text-part a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--c-secondary);
    text-transform: uppercase;
}

#product-list {
  display: flex;
  flex-direction: column;
}
#product-list a {
  font-family: font-2;  
  text-decoration: none;
  color: var(--c-secondary);
  position: relative;
  padding-left: 15px;
  overflow: hidden;
  font-weight: 600;
}
#product-list a:hover {
  color: var(--c-red);
}
#product-list a:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  background-color: var(--c-red);
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}
#product-list .text-part {
    overflow: hidden;
}


/* RESPONSIVE */
@media (max-width: 600px) {
    #popular-products .content .text-part a {
        font-size: 14px;
        line-height: 1;
    }
    #popular-products .content {
        flex-wrap: wrap;
    }
}


/* RESPONSIVE END */

#catalog-section .container{
	padding: 0 2em
}

#catalog-section #list-cat a{
	font-size: 0.9em;
	font-family: font-2;  
}

#catalog-section #list-cat .text-part{

}

#product-section-left #product-list .content{
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-left: 1em;
	grid-gap: 0.75em;
}

#product-section-left #product-list .content .block-content{
	line-height: 1;
}

#product-section-title .title{
	padding-left: 1em;
}

#products-specifications, #product-section-title{
    width: 100vw;
}

#product-section-left{
	margin-left: 2vw;
}

#product-section-left .container{
	justify-content: start;
    align-items: start;
}

#catalog-section #list-cat .content, #catalog-section #list-cat {
	height: 35em;
}

/* RESPONSIVE */
@media (max-width: 600px) {
	#catalog-section #list-cat .content, #catalog-section #list-cat {
		height: 55em;
		padding-left: 0em;
	}
}

@media (min-width: 1500px) {
	#products-specifications, #product-section-title{
    	width: auto;
	}
	
	#product-section-title .title {
		padding: 0;
	}
}
}

/* RESPONSIVE END */
