/*#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;
}

.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("../gfx/decorative.png");
}
#departments .department.decorative ul {
  background-image: url("../gfx/decorative-gray.png");
}
#departments .department.industrial {
  background-image: url("../gfx/industrial.png");
}
#departments .department.industrial ul {
  background-image: url("../gfx/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("../gfx/isolation.png");
}
#departments .department.isolation ul {
  background-image: url("../gfx/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) {
  #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 */
