/* 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: 32px;
}

.H4 {
    color: #333;
    font-size: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}

.H5 {
    font-size: 18px;
}

.container {
    max-width: 1160px;
}

.btn-custom {
    background: #FF6E0D;
    color: #fff;
    padding: 10px 80px;
    border: 0;
    display: flex;
    gap: 10px;
}

.btn-custom div {
    font-size: 22px;
	font-style: normal;
	font-weight: 500;
}


/* MAIN - PRODUCTS */

.products-breadcrumbs a {
    color: #69747A;
}

.products-breadcrumbs .last {
    color: #FF6E0D;
}

.breadcrumb {
    display: flex;
    gap: 1rem;
}

.contact-text {padding-right: 40px;}

.contact-col {
    border: 3px solid #FF6E0D;
}

.contact-col input {
    border-bottom: 1px solid #B0B0B0;
    padding-bottom: 10px;
    background: #EFEFEF;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    outline: none;
}
.contact-col textarea {
    border-bottom: 1px solid #B0B0B0;
    background: #EFEFEF;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    resize: none;
    outline: none;
}



@media (min-width: 834px) and (max-width: 1439px) {
	.H1, h1 {
		font-size: 34px;
		font-weight: 600;
		line-height: 52px;
	}
	
	.H3 {
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		line-height: 26px
	}
	
	.H4 {
		font-size: 18px;
		font-style: normal;
		font-weight: 300;
		line-height: 28px;
	}
	
}

@media (max-width: 833px) {
	
	.breadcrumb {
		display: flex;
		gap:  10px;
	}
	
	
	.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: 14px;
		font-style: normal;
		font-weight: 300;
		line-height: 16px;
	}
	
	.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;
	}
	
	.contact-container {
		flex-direction: column;
	}
	
	.office {
		width:100px;
	}
	
	.contacts {
		width:100px;
	}
	
	.contact-text {padding-right: 0px;}
	
	.form-group input::placeholder, textarea::placeholder {
		font-size:14px;
		font-weight:300;
	}
	
	.btn-custom {
		padding: 5px 0;
		width: 100%;
		display: flex;
		justify-content: center
	}

	.btn-custom div {
		font-size: 20px;
	}
}	