/* 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-weight: 600;
    line-height: 52px;

}
.H2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
}
.H3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

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

.tech-col {
    border-right: 3px solid #B0B0B0;
}

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

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

.prod-item {
	height: 300px;
	background-image: url("[[pdoField? &id=`[[+parent]]` &field=`ProductsImage`]]");
	background-size: cover;
}



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

	.prod-item {
		width: 100%;
	}
}

@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 {
		font-size: 22px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
	}
	
	.H2 {
		font-size: 22px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
	}
	
	.H4 {
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 20px;
	}
	
	.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 {
		padding: 5px 20px;
	}
	

	
}	