﻿/*#region reset*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

blockquote,
q {
	quotes: none;
}

	blockquote:before,
	blockquote:after,
	q:before,
	q:after {
		content: "";
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

	a:hover {
		text-decoration: none;
	}

/*#endregion*/
/*#region colors*/
/*#endregion*/
strong {
	font-weight: 700;
}

body {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background-color: #f4f4f4;
	color: #505050;
}

#search-form {
	display: flex;
	width: 100%;
}

.container {
	max-width: 1170px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0 auto;
}

#header {
	background-color: #ffffff;
	padding: 30px 0px;
	position: relative;
	overflow: auto;
	z-index: 1;
}

	#header .container {
		position: relative;
	}

	#header #logo {
		display: block;
		height: 40px;
		width: auto;
		margin: 0 auto;
	}

	#header #lang-switch {
		text-align: center;
		font-size: 18px;
		line-height: 32px;
		font-weight: 700;
		position: absolute;
		right: 10px;
		top: 4px;
	}

		#header #lang-switch li {
			display: inline-block;
			margin-left: 4px;
		}

			#header #lang-switch li a {
				display: block;
				width: 32px;
				height: 32px;
				opacity: 0.6;
			}

				#header #lang-switch li a.active {
					opacity: 1;
				}

#departments {
	position: relative;
	height: calc(100vh - 172px);
	min-height: 600px;
	overflow: auto;
	display: flex;
}

	#departments .department {
		flex: 1;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		color: #ffffff;
		overflow: hidden;
	}

		#departments .department h3 {
			font-size: 24px;
			font-weight: 700;
			line-height: 1.2;
			color: #ffffff;
			text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
		}

		#departments .department ul {
			position: absolute;
			width: 100%;
			height: 100%;
			list-style: none;
			background-repeat: no-repeat;
			background-position: center center;
			background-size: cover;
			margin: 0px;
			padding: 0px;
			left: 0px;
			top: 100%;
			transition: all 0.4s ease;
			font-size: 18px;
			font-weight: 600;
			line-height: 1.2;
		}

			#departments .department ul li {
				width: 100%;
				height: 33.3333%;
				border-bottom: 1px solid rgba(255, 255, 255, 0.12);
			}

				#departments .department ul li a {
					display: flex;
					width: 100%;
					height: 100%;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					text-align: center;
				}

					#departments .department ul li a img {
						display: block;
						margin-bottom: 12px;
						max-width: 40px;
						max-height: 40px;
						-webkit-filter: hue-rotate(0deg) saturate(0) brightness(100);
						filter: hue-rotate(0deg) saturate(0) brightness(100);
					}

					#departments .department ul li a:hover {
						background-color: rgba(29, 29, 29, 0.8);
						color: #cf0a2c;
					}

						#departments .department ul li a:hover img {
							-webkit-filter: initial;
							filter: initial;
						}

		#departments .department.decorative {
			background-image: url("../img/decorative.png");
		}

			#departments .department.decorative ul {
				background-image: url("../img/decorative-gray.png");
			}

		#departments .department.industrial {
			background-image: url("../img/industrial.png");
		}

			#departments .department.industrial ul {
				background-image: url("../img/industrial-gray.png");
			}

				#departments .department.industrial ul li {
					width: 33.3333%;
					float: left;
					border-right: 1px solid rgba(255, 255, 255, 0.12);
				}

		#departments .department.isolation {
			background-image: url("../img/isolation.png");
		}

			#departments .department.isolation ul {
				background-image: url("../img/isolation-gray.png");
			}

				#departments .department.isolation ul li {
					height: 50%;
				}

					#departments .department.isolation ul li img {
						max-width: 60%;
						max-height: 60%;
						margin: 0px;
					}

		#departments .department:hover ul, #departments .department.open ul {
			top: 0px;
		}

#not-found {
	background: url("../gfx/bg-404.jpg") no-repeat center center;
	background-size: cover;
	height: calc(100vh - 172px);
	min-height: 400px;
	color: #ffffff;
	text-align: center;
	padding: 80px 0px;
	font-size: 18px;
}

	#not-found h1 {
		font-size: 160px;
		line-height: 1.1;
		font-weight: 700;
	}

#footer {
	background-color: #ffffff;
	padding: 20px 0px;
}

	#footer .footer-logos {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		#footer .footer-logos p {
			margin: 0px;
		}

			#footer .footer-logos p img {
				margin: 0px;
				vertical-align: middle;
				margin: 0px 4px;
			}

				#footer .footer-logos p img.logo-yasar {
					height: 26px;
				}

				#footer .footer-logos p img.logo-dyo {
					height: 32px;
				}

				#footer .footer-logos p img.logo-rambrandt {
					height: 26px;
				}

#popup {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 16px;
}

	#popup iframe {
		display: block;
		aspect-ratio: 16/9;
		width: 800px;
		height: auto;
		max-width: 100%;
	}

	#popup #popup-close {
		width: 36px;
		height: 36px;
		position: absolute;
		right: 12px;
		top: 12px;
		cursor: pointer;
	}

		#popup #popup-close::before, #popup #popup-close::after {
			content: "";
			display: block;
			width: 100%;
			height: 2px;
			background-color: #fff;
			position: absolute;
			left: 0px;
			top: calc(50% - 1px);
		}

		#popup #popup-close::before {
			transform: rotate(-45deg);
		}

		#popup #popup-close::after {
			transform: rotate(45deg);
		}

		#popup #popup-close:hover {
			background-color: rgba(255, 255, 255, 0.1);
		}


@media (max-width: 767px) {

	#search-form {
		margin-top: 45%;
	}

	#search-icon {
		width: 22px;
		height: 22px;
	}

	.modal-content {
		margin: 35% auto;
		padding-left: 25px;
	}

		.modal-content input[type="text"] {
			font-size: 12px;
			padding: 6px 7px;
			margin: 0;
		}

			.modal-content input[type="text"]::placeholder {
				font-size: 14px;
				color: white;
				opacity: 0.8;
			}

		.modal-content svg {
			right: 28px;
			width: 20px;
			height: 20px;
			top: 1px;
		}

	#close-icon {
		z-index: 999;
		cursor: pointer;
		transform: scale(0.8);
		width: 16px;
		height: 16px;
		top: 13px;
	}

	#header {
		padding: 12px 0px;
		position: fixed;
		width: 100%;
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
	}

		#header #lang-switch li {
			margin-left: -2px;
		}

	#departments {
		display: block;
		height: auto;
		padding-top: 64px;
	}

		#departments .department {
			width: 100%;
			height: 520px;
		}

			#departments .department ul {
				font-size: 15px;
				left: 100%;
				top: 0px;
			}

			#departments .department:hover ul, #departments .department.open ul {
				left: 0px;
			}

	#not-found {
		height: calc(100vh - 120px);
		padding-top: 120px;
	}

		#not-found h1 {
			font-size: 60px;
		}

	#footer {
		font-size: 14px;
		text-align: center;
	}

		#footer .footer-logos {
			display: block;
		}

			#footer .footer-logos p {
				margin-bottom: 12px;
			}

}

/*# sourceMappingURL=style.css.map */
/* cyrillic-ext */

@keyframes slideIn {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
	margin: 12% auto;
	padding: 20px;
	width: 80%;
	max-width: 800px;
	text-align: center;
	display: flex;
}

	.modal-content svg {
		cursor: pointer;
		position: relative;
		right: 46px;
		top: 11px;
	}

	.modal-content input[type="text"] {
		width: 0;
		padding: 12px 20px;
		margin: 0;
		box-sizing: border-box;
		border: none;
		border-bottom: 2px solid #ffffff;
		color: white;
		border-radius: 4px;
		font-size: 23px;
		outline: none;
		background-color: transparent;
		line-height: 12px;
		animation: slideIn 1.3s forwards;
	}

		.modal-content input[type="text"]::placeholder {
			font-size: medium;
			color: white;
			opacity: 0.8;
		}

#search-icon {
	position: absolute;
}

#search-icon,
#close-icon {
	transition: opacity 0.3s ease, transform 0.3s ease;
	position: absolute;
	top: 9px;
}

#close-icon {
	z-index: 999;
	opacity: 0;
	cursor: pointer;
	transform: scale(0.8);
}


@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2');
	unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format('woff2');
	unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2');
	unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}