@charset "utf-8";
/* CSS Document */

font {
	font-family: 'Montserrat', sans-serif;
}

body {
	overflow-x: hidden;
	font-family: 'Raleway', sans-serif;
}

/*TYPOGRAPHY-----------*/

a {
	text-decoration: none;
}

a.txt-link {
	color: #9b2321;
}

p {
	line-height: 1.7;
	font-family: 'Raleway', sans-serif;
	color: #6f6f6f;
}

h1 {
	font-family: 'Raleway', sans-serif;
	font-weight: 800;
	font-size: 80px;
	color: #414141;
}

h2 {
	font-family: 'Raleway', sans-serif;
	font-weight: 800;
	font-size: 60px;
	color: #414141;
}

.service-layout-1-txt-title small, .service-layout-2-txt-title small {
	display: block;
	font-size: 20px;
	color: #9b2321;
}

h3 {
	font-family: 'Playfair Display', serif;
	font-size: 45px;
	font-weight: 400;
	color: #333333;
	font-weight: 400;
}

h3.underlined-title {
	position: relative;
	margin-bottom: 50px;
	display: inline-block;
}

h4 {
	font-family: 'Playfair Display', serif;
	font-size: 35px;
	color: #333333;
	font-weight: 400;
	position: relative;
	margin-bottom: 50px;
	display: inline-block;
}

h4.underlined-title:before, h3.underlined-title:before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 35%;
	height: 5px;
	background-color: #9b2321;
}

.txt-in-color {
	color: #9b2321;
	font-weight: 600;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1100px) {
	h2 {
		font-size: 45px;
	}
}

@media screen and (max-width: 1000px) {
	h1 {
		font-size: 60px;
	}
}

@media screen and (max-width: 485px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 40px;
	}
}

/*FORMS-----------*/

input, select, textarea {
	border: none;
	background-color: #f3f1f1;
	width: 100%;
	height: 45px;
	padding: 10px;
}

textarea {
	height: 250px;
}

/*BUTTONS-----------*/

button, .button {
	border: none;
	background-color: transparent;
	padding: 25px;
	font-family: 'Raleway', sans-serif;
	display: inline-block;
	cursor: pointer;
	transition: all .3s ease;
}

.button--primary {
	background-color: #9b2321;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.button--primary:hover {
	background-color: #f7b500;
}

.button--secondary {
	background-color: #333333;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
}

.button--secondary:hover {
	background-color: #f7b500;
}

.button--with-arrow {
	display: flex;
	align-items: center;
	padding: 0;
}

.button--with-arrow svg {
	width: 20px;
	height: 20px;
	fill: #fff;
	margin-left: 20px;
	transition: all .3s ease;
}

.button--with-arrow-dark {
	font-weight: 700;
	color: #333;
}

.button--with-arrow-dark svg {
	fill: #333333;
}

.button--with-arrow:hover svg {
	margin-left: 10px;
}

/*HEADER-----------*/

.header .container {
	overflow: visible;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-nav {
	display: flex;
	align-items: center;
	padding-bottom: 30px;
}

.sub-nav {
	background-color: #9b2321;
	position: absolute;
	flex-direction: column;
	z-index: 200;
	padding: 20px;
	top: 48px;
	left: 30px;
	min-width: 200px;
	display: none;
}

.sub-nav__item {
	color: #fff;
	font-weight: 700;
	margin-bottom: 15px;
	transition: all .3s ease;
	display:block;
}

.sub-nav__item:hover {
	opacity: 0.8;
}

.sub-nav__item:last-child {
	margin-bottom: 0;
}

.header-nav__item {
	position: relative;
}

.header-nav__link {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #373f48;
	margin-left: 30px;
	transition: all .3s ease;
	position: relative;
	padding-bottom: 30px;
}

.header-nav__link:after {
	content: "";
	position: absolute;
	height: 0px;
	width: 100%;
	background-color: #f7b500;
	bottom: 0;
	left: 0;
	transition: all .3s ease;
}

.header-nav__link:hover:after {
	height: 10px;
}

.header-nav__link-active:after {
	content: "";
	position: absolute;
	height: 10px;
	width: 100%;
	background-color: #f7b500;
	bottom: 0;
	left: 0;
	transition: all .3s ease;
}

.header-social-media {
	text-align: right;
	margin: 20px 0;
}

.header-social-media a {
	margin-left: 2px;
	padding-bottom: 30px;
}

.header-social-media svg {
	width: 32px;
	height: 30px;
	fill: #9b2321;
	transition: all .3s ease;
}

.header-social-media a:hover svg {
	fill: #f7b500;
}

.header-nav-small {
	display: none;
}

.header-logo {
	padding-top: 40px;
}

.header-logo svg {
	width: 255px;
	height: auto;
}

/*hero*/

.header-hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero {
	height: 800px;
	background-size: cover;
	background-position: right center;
	float: right;
}

.hero--small {
	height: 350px;
}

.hero-1 {
	background-image: url(../images/hero-1.jpg);
	background-repeat: no-repeat;
}

.hero-2 {
	background-image: url(../images/hero-2.jpg);
	background-repeat: no-repeat;
	background-position:bottom;
} 

.hero-3 {
	background-image: url(../images/hero-3.jpg);
	background-repeat: no-repeat;
} 

.hero-4 {
	background-image: url(../images/hero-4.jpg);
	background-repeat: no-repeat;
	background-position:bottom;
} 

.hero-5 {
	background-image: url(../images/hero-5.jpg);
	background-repeat: no-repeat;
	background-position:bottom;
} 

.hero-6 {
	background-image: url(../images/hero-6.jpg);
	background-repeat: no-repeat;
} 

.hero-7 {
	background-image: url(../images/hero-7.jpg);
	background-repeat: no-repeat;
}


.hero-txt-wrap {
	flex: 1;
	margin-right: -300px;
	background-color: #fff;
	padding: 80px 40px 80px 20px;
	position: relative;
	z-index: 20;
}

.hero-txt-wrap--small {
	padding: 40px 40px 34px 20px;
}

.hero-txt {
	width: 550px;
	float: right;
}

.hero-txt-content {
	color: #6f6f6f;
	margin-top: 40px;
	font-family: 'Playfair Display', serif;
}

/*MEDIA QUERIS*/

@media screen and (max-width: 1060px) {
	.header-top {
		padding: 20px 0;
	}
	.header-nav, .header-social-media {
		display: none;
	}
	.header-nav-small {
		padding: 10px 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.header-nav-small-pasive {
		position: relative;
		height: 30px;
		width: 35px;
	}
	.header-nav-small-pasive__item {
		width: 35px;
		height: 5px;
		background-color: #9b2321;
		display: block;
		position: absolute;
		right: 0;
		border-radius: 10px;
	}
	.header-nav-small-pasive__item:nth-child(2) {
		top: 11px;
	}
	.header-nav-small-pasive__item:nth-child(3) {
		top: 23px;
	}
	.header-nav-small-active-wrap {
		background-color: #9b2321;
		position: absolute;
		left: 0;
		top: 90px;
		width: 100%;
		min-height: 100vh;
		z-index: 300;
		padding: 30px;
		text-align: right;
		display: none;
	}
	.header-nav-small-active-item {
		display: block;
		color: #fff;
		font-weight: 700;
		font-size: 20px;
		border-bottom: 1px dashed #fff;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.header-nav-small-active-item a {
		color: #fff;
		display: block;
	}
	.header-nav-small-active-item:last-child {
		border-bottom: none;
	}
	.header-nav-small-active-item__sub {
		margin-top: 20px;
	}
	.header-nav-small-active-item__sub a {
		display: block;
		font-size: 20px;
		font-weight: 700;
		color: #fff;
		opacity: 0.8;
		margin-bottom: 20px;
	}
	.header-nav-small-active-item__sub a:last-child {
		margin-bottom: 0;
	}
	.header-logo {
		padding-top: 0;
	}
	.hero {
		width: 100%;
		height: 550px;
	}
	.hero--small {
		height: 350px;
	}
	.hero-txt-wrap {
		position: absolute;
	}
}

@media screen and (max-width: 650px) {
	.hero-txt-wrap {
		flex: auto;
		margin-right: 0;
		padding: 40px;
		margin: 20px;
	}
	.hero-txt {
		width: auto;
	}
	.hero-txt-content {
		margin-top: 10px;
	}
}

@media screen and (max-width: 485px) {
	.header-logo svg {
		width: 180px;
	}
	.header-top {
		padding: 5px 0;
	}
	.header-nav-small-active-wrap {
		top:60px;
	}
	.header-nav-small-pasive__item {
		width: 30px;
	}
	.header-nav-small-pasive__item:nth-child(2) {
		top: 9px;
	}
	.header-nav-small-pasive__item:nth-child(3) {
		top: 18px;
	}
	.hero {
		height: 350px;
	}
	.hero--small {
		height: 200px;
	}
}

/*CONTENT-----------*/

.content-no-head {
	border-top: 3px solid #9b2321;
}

/*about*/

.about {
	background-color: #9b2321;
	overflow: hidden;
	/*background-image:url(../images/about_bg.jpg); background-repeat:no-repeat; background-position:center left;*/
}

.about-txt {
	margin: 80px 0 80px 180px;
	padding: 80px;
	float: right;
	position: relative;
}

.about-txt:before {
	content: "";
	width: 25px;
	height: 100%;
	position: absolute;
	left: -25px;
	top: 0;
	background-color: #fff;
}

.about-txt-wrap {
	max-width: 860px;
}

.about-txt-title, .about-txt-content {
	color: #fff;
}

.about-txt-title {
	margin-bottom: 60px;
}

.about-txt-content {
	font-size: 18px;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1000px) {
	.about-txt {
		width: 100%;
		float: none;
		margin: 0 0 0px 0;
		padding: 60px 20px;
	}
	.about-txt-wrap {
		width: auto;
	}
	.about-txt-title {
		margin-bottom: 30px;
	}
}

/*service-1*/

.product-1 {
	margin: 135px 0 100px 0;
}

.product-1 .container {
	overflow: visible;
}

.product-1-txt {
	text-align: center;
}

.product-1-txt-title {
	margin-bottom: 50px;
}

.product-1-txt-content {
	font-size: 20px;
}

.product-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 80px;
}

.product-list__item {
	text-align: center;
	margin-bottom: 80px;
}

.product-list-txt {
	text-align: center;
	margin-top: 30px;
}

.product-list-txt-title {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #9b2321;
	font-weight: 700;
	margin-bottom: 5px;
}

.product-list-txt-content {
	font-family: 'Playfair Display', serif;
}

.button-wrap {
	/*background-color:#9b2321;*/
	position: relative;
	padding: 50px;
	margin-top: -80px;
	margin-left: 140px;
}

.button-wrap:before {
	background-color: #9b2321;
	content: '';
	position: absolute;
	height: 100%;
	left: 0px;
	bottom: 0px;
	width: 1000%;
	box-sizing: border-box;
	z-index: -1;
	-webkit-box-shadow: 0px 7px 0px 0px rgba(255, 255, 255, 1), 0px 20px 0px 0px rgba(237, 189, 11, 1);
	-moz-box-shadow: 0px 7px 0px 0px rgba(255, 255, 255, 1), 0px 20px 0px 0px rgba(237, 189, 11, 1);
	box-shadow: 0px 7px 0px 0px rgba(255, 255, 255, 1), 0px 20px 0px 0px rgba(237, 189, 11, 1);
}

.button-wrap a {
	color: #fff;
	font-weight: 700;
}

/*service-2*/

.service-layout-1 {
	display: flex;
	align-items: center;
}

.service-layout-1-img {
	background-repeat: no-repeat;
	background-size: cover;
	height: 720px;
	max-width: 1000px;
	width: 100%;
	float: right;
}

.service-2-img {
	background-image: url(../images/index-stakla.jpg);
}

.service-layout-1-txt {
	max-width: 485px;
}

.service-layout-1-txt-wrap {
	background-color: #f9f7f7;
	margin-left: -280px;
	position: relative;
	border-left: 10px solid #f7b500;
	padding: 100px 20px 100px 80px;
}

.service-layout-1-txt-wrap:after {
	content: "";
	background-color: #f9f7f7;
	position: absolute;
	right: -330px;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.service-layout-1-txt-title {
	margin-bottom: 30px;
}

.service-layout-1-txt-content {
	font-size: 18px;
	margin-bottom: 30px;
}

/*service-3*/

.service-3-img {
	background-image: url(../images/index-pelet.jpg);
}

.service-layout-2-img {
	background-repeat: no-repeat;
	background-size: cover;
	height: 720px;
	max-width: 1000px;
	width: 100%;
	float: left;
	background-size: cover;
}

.service-layout-2 .container {
	display: flex;
	align-items: center;
}

.service-layout-2-txt {
	max-width: 485px;
}

.service-layout-2-txt-wrap {
	padding: 100px 40px 100px 20px;
}

.service-layout-2-txt-title {
	margin-bottom: 30px;
}

.service-layout-2-txt-content {
	font-size: 18px;
	margin-bottom: 30px;
}

/*service-4*/

.service-4-img {
	background-image: url(../images/index-polikarbonat.jpg);
}

/*service-5*/

.service-5-img {
	background-image: url(../images/index-geosintetika.jpg);
}

/*service-6*/

.service-6-img {
	background-image: url(../images/index-ostalo.jpg);
}

@media screen and (max-width: 1000px) {
	.product-1 {
		margin: 50px 0px 50px 0px;
	}
	.product-1-txt-title {
		margin-bottom: 30px;
	}
	.product-list__item {
		width: 50%;
		margin: 0 0 30px 0;
	}
	.product-list-txt {
		margin-top: 10px;
	}
	.button-wrap {
		padding: 40px 20px;
	}
	.service-layout-1 .grid_6 {
		width: 70%;
	}
	.button-wrap {
		margin-top: 0;
		width: 100%;
		text-align: center;
		margin-left: 0;
	}
	.button-wrap:before {
		content: none;
	}
	.button-wrap .button--with-arrow {
		background-color: #9b2321;
		display: inline-block;
		padding: 25px;
	}
	.button-wrap .button--with-arrow svg {
		display: none;
	}
	.button-wrap .button--with-arrow:hover {
		background-color: #f7b500;
	}
}

@media screen and (max-width: 845px) {
	.service-layout-1 {
		flex-direction: column;
	}
	.service-layout-1 .grid_6 {
		width: 100%;
	}
	.service-layout-1-txt-wrap, .service-layout-2-txt-wrap {
		margin-left: 0;
		padding: 40px 20px 40px 20px;
		border-left: 10px solid #f7b500;
	}
	.service-layout-1-txt-wrap::after {
		content: none;
	}
	.service-layout-1-img, .service-layout-2-img {
		height: 400px;
		background-position: center;
	}
	.service-layout-2 .container {
		flex-direction: column-reverse;
		padding: 0;
	}
	.service-layout-2 .grid_5, .service-layout-2 .grid_7 {
		width: 100%;
	}
	.service-layout-1-txt, .service-layout-2-txt {
		max-width: 100%;
	}
}

@media screen and (max-width: 600px) {
	.product-list {
		margin-top: 40px;
	}
	.product-list__item {
		width: 100%;
		margin: 0 0 20px 0;
	}
}

/*PRODUCTS*/

.sidebar-product-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-list__item a {
	transition: all .3s ease;
}

.product-list__item a img {
	border: 8px solid transparent;
	border-radius: 50%;
	transition: all .3s ease;
}

.product-list__item a:hover img {
	border: 8px solid #f7b500;
	border-radius: 50%;
}

.product-content {
	margin-top: 70px;
}

.product-dimensions {
	margin-top: 20px;
}

.txt-list {
	list-style-type: disc;
	list-style-position: inside;
}

.txt-list li {
	margin-top: 5px;
}

.txt-list p {
	display: inline-block;
}

.product-gallery {
	margin-top: 60px;
}

.product-gallery div {
	margin-bottom: 20px;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1000px) {
	.product-content {
		margin-top: 40px;
	}
}

@media screen and (max-width: 785px) {
	.product-gallery .grid_3 {
		width: 100%;
		margin: 0 0 20px 0;
	}
}

/*CONTACT*/

.contact-content {
	margin-top: 70px;
}

.contact-form {
	margin-top: 40px;
}

.contact-form__item {
	margin-bottom: 25px;
}

.contact-form__button {
	text-align: right;
}

.button-contact {
	float: right;
}


/*privole*/
.c-box {
	clear:both;
}
.c-box div {
	display:flex; 
	align-items:center; 
	margin:0px 0px 15px 0px;
}
.c-box__label {
	float:none; 
	width:auto; 
	min-height:auto; 
	margin-left:5px; 
	font-size:12px; 
	line-height:1.4;
}
input[type=checkbox] {
	width:auto; 
	height:auto; 
	margin:0;
}

#recaptcha_upit {
	margin:15px 0 25px 0;
}


@media screen and (max-width: 1000px) {
	.contact-content {
		margin-top: 40px;
	}
}

@media screen and (max-width: 600px) {
	.contact-form__item {
		width: 100%;
		margin: 0 0 20px 0;
	}
}

/*FOOTER -----------*/

.footer {
	background-color: #9b2321;
	padding: 50px 0 50px 0;
	margin-top: 180px;
	font-family: 'Montserrat', sans-serif;
}

.footer-contact {
	display: flex;
	justify-content: center;
}

.footer-contact__item {
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1.7;
	border-right: 5px solid #fff;
	padding: 35px 0;
}

.footer-contact__item:last-child {
	border-right: none;
}

.footer-contact__item a {
	color: #fff;
	transition: all .3s ease;
}

.footer-contact__item a:hover {
	opacity: 0.8;
}

.footer-contact__item svg {
	width: 60px;
	height: 60px;
	fill: #fff;
	display: block;
	margin: 0 auto 20px auto;
}

.footer-bottom {
	background-color: #fff;
	margin-top: 55px;
	display: flex;
	padding: 50px 30px;
	margin-bottom: 50px;
}

.footer-bottom-right-col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: -5px 0 0 40px;
}

.footer-links {
	display: flex;
}

.footer-links__item a {
	color: #373f48;
	font-weight: 600;
	font-size: 17px;
	margin-right: 15px;
	border-bottom: 5px solid transparent;
	transition: all .3s ease;
}

.footer-links__item a:hover {
	border-bottom: 5px solid #f7b500;
}

.footer-about p {
	color: #868484;
	margin: 30px 0;
}

.footer-social-media {
	font-weight: 700;
}

.footer-social-media strong {
	display: block;
	color: #373f48;
	line-height: 1.5;
	margin-bottom: 15px;
}

.footer-social-media svg {
	width: 40px;
	height: 40px;
	fill: #9b2321;
	transition: all .3s ease;
}

.footer-social-media a:hover svg {
	fill: #f7b500;
}

.footer-crafted-by {
	font-size: 14px;
	color: #333333;
}

.footer-crafted-by a {
	color: #333;
	transition: all .3s ease;
}

.footer-crafted-by a:hover {
	opacity: 0.8;
}

.footer-end {
	color: #fff;
	text-align: center;
	font-size: 14px;
}

.footer-end a {
	color: #fff;
	transition: all .3s ease;
}

.footer-end a:hover {
	opacity: 0.8
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1000px) {
	.footer {
		margin-top: 50px;
	}
	.footer-bottom {
		flex-direction: column;
	}
	.footer-bottom-right-col {
		margin: 0 0 0 0;
	}
	.footer-about .button {
		display: none;
	}
	.footer-crafted-by {
		margin-top: 20px;
	}
}

@media screen and (max-width: 845px) {
	.footer {
		padding: 10px 0 10px 0;
	}
	.footer-bottom {
		margin-top: 10px;
		padding: 30px;
	}
	.footer-contact {
		flex-direction: column;
		align-items: center;
	}
	.footer-contact__item {
		border-right: none;
		border-bottom: 1px solid #fff;
		padding-bottom: 20px;
		margin-bottom: 20px;
		width: 50%;
	}
	.footer-contact__item:last-child {
		border-bottom: none;
	}
	.footer-links {
		display: none;
	}
	.footer-about p {
		margin: 0 0 30px 0;
	}
}

@media screen and (max-width: 485px) {
	.footer-contact__item {
		width: 100%;
	}
}

.cookies {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	z-index: 99999999;
}

.cookies-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

.cookies p {
	font-size: 14px;
	text-align: left;
	color: #f2f2f2;
	padding-bottom: 0;
}

.cookies p a {
	text-decoration: underline;
	color: #f2f2f2;
}

.cookies p a:hover {
	opacity: 0.8;
}

.cookies a.button {
	padding: 10px 8px;
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 0 40px;
	background-color: rgba(255, 255, 255, 1);
	color: #3c3c3c;
	text-transform: uppercase;
	transition: all .3s ease;
}

.cookies a.button:hover {
	background-color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

@media screen and (max-width:700px) {
	.cookies-wrap {
		flex-direction: column;
	}
	.cookies p {
		text-align: center;
	}
	.cookies a.button {
		margin: 20px 0 0 0;
	}
}