/* GENERAL */

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

main {
    background: #EFEFEF;
}

.H1, h1 {
    font-size: 40px;
    font-family: 'Inter';
    font-weight: 600;
    line-height: 120%;

}
.H2 {
    font-size: 40px;
    font-family: 'Inter';
    font-weight: 600;
    line-height: 52px;
}
.H3 {
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 600;
    line-height: 32px;
}
.H5 {
    font-size: 18px;
}

.container {
    max-width: 1160px;
}

.btn-custom {
    background: #00B1AB;
    color: #fff;
    padding: 10px 50px;
    border: 0;
    display: flex;
    gap: 10px;
}

.btn-custom div {
    font-weight: 500;
}


/* MAIN - PRODUCTS */

.products-breadcrumbs a {
    color: #69747A;
}

.products-breadcrumbs .last {
    color: #FF6E0D;
}

.breadcrumb {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.products-link {
    background: #FF6E0D;
    color: #fff; 
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.products-link div {
	font-size: 22px;
	line-height: 120%;
	font-style: normal;
	font-weight: 500;
}

.products-item:hover  .products-link{
	background: #000;
}

.products-img {
    height: 270px;
    object-fit: cover;
}

@media (min-width: 834px) and (max-width: 1439px) {
	.H1, h1 {
    	font-size: 34px;
		line-height: 120%;
	}
	.products-img {
		height: 270px;
		object-fit: cover;
	}
	
	.products-link {
		align-items: end;
	}
	
	.products-link div{
		font-size: 22px;
		line-height: 120%;
		font-weight: 500;
	}
	
	.products-link img{
		width: 20px;
		height: 20px;
		margin-bottom: 5px;
	}
}

@media (max-width: 833px) {
	
	
	.products-breadcrumbs a{
		font-size: 12px;
	}
	
	.products-breadcrumbs img{
		height: 10px;
	}
	
	.H1, h1 {
		font-size: 22px;
		line-height: 120%;
	}
	
	.products-list {
		flex-direction: column;
	}
	
	.products-item{
		width: 100% !important;
	}
	.products-img {
		height: 50vw;
		object-fit: cover;
	}
	
	.products-link {
		align-items: center;
		justify-content: center;
		padding: 8px 8px;
	}
	
	.products-link div{
		font-size: 20px;
		font-weight: 500;
	}
	
	.products-link img{
		width: 20px;
		height: 20px;
		margin-bottom: 5px;
	}
}