/* 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: 52px;

}
.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: 26px;
}
.H5 {
    font-size: 18px;
}

.container {
    max-width: 1160px !important;
}

.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;
}

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

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

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

#Rectangle-95:hover {
	fill:#FF6E0D;
}

@media (min-width: 768px) and (max-width: 1199px) {
	.H1, h1 {
    font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: 42px;
	}
	
	.H5 {
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
	}
	
	.H3 {
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		line-height: 26px;
	}
}

@media (max-width: 767px) {
	
	.breadcrumb {
		display: flex;
		gap:  10px;
	}
		
	.products-breadcrumbs {
		padding-top: 20px;
	}
	
	.products-breadcrumbs a{
		font-size: 12px;
	}
	
	.products-breadcrumbs img{
		height: 10px;
	}
	
	.H1, h1 {
		font-size: 22px;
	}
	
	.H5 {
		font-size: 14px;
		font-style: normal;
		font-weight: 300;
		line-height: 16px;
	}
	
	.H3 {
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 24px;
	}
	
	.products-link div {
		font-size: 18px;
	}
	
	.products-link {
		padding: 5px 10px;
	}
	
	.new-img {
		width: 40px;
		height: 40px;
	}
}	