@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --white:       #ffffff;
  --black:       #000000;
  --red:         #ff0000;
  --gray:        #686868;
  --gray-dark:   #212121;
  --gray-light:  #F6F6F6;
  --gray-light-2: #CFCFCF;

  --green:       #76AC21;
  --green-dark:  #527d0d;
  --green-light: #BBD590;

  --blue:        #00347A;
  --blue-dark:   #001A3D;
  --blue-light:  #809ABD;

  --border-radius: 4px;

  --max-width:                1620px;
  --max-width-gallery:        1000px;
  --max-width-services:       1920px;
  --max-width-extra-services: 1620px;
  --max-width-blog:           1000px;
  --max-width-blogs:          1000px;
  --max-width-articles:       1620px;
  --max-width-partners:       1620px;
  --max-width-documents:      1620px;
  --max-width-contact:        1620px;
  --max-width-certificates:   1620px;
  --max-width-services-text:  1000px;
  --max-width-GDPR:           1000px;


}
* {
  font-family: 'Montserrat', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus {
    outline: none;
}
html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100% !important;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body.disable-scrollbar {
  height: 100vh;
  overflow: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
body.disable-scrollbar::-webkit-scrollbar {
  display: none;
}
main {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
h1 {
  display: none;
}
a {
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
/* a[target=_blank] {
  background-color: yellow;
} */
p, ul, li {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img { border-style: none; }
/* ---------------------------------------------------- */



/* -------------------- Color EDIT -------------------- */
body.dark {
  --background: #000000;
}
body.light {
  --background: #ffffff;
}
/* ---------------------------------------------------- */



/* --------------------- Size EDIT -------------------- */
:root {
  --margin-bottom-header: 20px;

  --margin:        20px;
  --margin-top:    20px;
  --margin-right:  20px;
  --margin-bottom: 20px;
  --margin-left:   20px;

  --padding:        20px;
  --padding-top:    20px;
  --padding-right:  20px;
  --padding-bottom: 20px;
  --padding-left:   20px;

  --font-size-sm: 0.75rem;   /* 12px */
  --font-size-base: 1rem;    /* 16px, base */
  --font-size-md: 1.25rem;   /* 20px */
  --font-size-lg: 1.5rem;    /* 24px */
  --font-size-xl: 1.75rem;   /* 28px */
  --font-size-xxl: 2rem;     /* 32px */
  --font-size-xxxl: 2.25rem; /* 36px */

  --header-soc-size:               24px;
  --header-soc-text:               0.65rem;
  --header-soc-icon-margin-bottom: 10px;
}
/* ---------------------------------------------------- */



/* ----------------------- Body ---------------------- */
body {
  background-color: var(--white);
}
/* ---------------------------------------------------- */



/* ------------------------ Titles -------------------- */
article .article-titles {
  text-align: center;
  padding: 100px 0 80px 0;
}
article .gray-titles {
  background-color: var(--gray-light);
}
article .article-titles p {
  font-size: 20pt;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gray);
}
article .article-titles h4 {
  font-size: 30pt;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
article .article-titles h4::after {
  content: "";
  width: 300px;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -15px;
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px dotted var(--gray);
}
article .main-wrapper p {
  padding: 0 0 0 0;
}
article .text-highlight-green {
  color: var(--green);
}
article .text-highlight-blue {
  color: var(--blue);
}
article .text-highlight-600 {
  font-weight: 600;
}
article .text-highlight-800 {
  font-weight: 800;
}
/* ---------------------------------------------------- */



/* ------------------------- Nav ---------------------- */
nav {
  /* width: calc(100% - (var(--margin) * 2)); */
  width: 100%;
  padding: 0 var(--margin);
  max-width: var(--max-width-nav);
  position: fixed;
  position: absolute;
  display: flex;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    z-index: 111111;
}
nav::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  background-color: var(--white);
  opacity: 0.25;
  z-index: 11;
}
nav::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  /* background-color: var(--white); */
  opacity: 1;
  z-index: -11;
}



nav .header-nav-btn {
  width: 75px;
  height: 75px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  align-content: center;
}
nav .menu {
  --color: var(--white);
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  outline: none;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}
nav .menu svg {
  width: 75px;
  height: 75px;
  top: 0px;
  left: 0px;
  stroke: var(--color);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}
nav .menu svg path {
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  transform: translateZ(0);
}
nav .menu svg path:nth-child(2) {
  --duration: 0.7s;
  --easing: ease-in;
  --offset: 100px;
  --array-2: 74px;
}
nav .menu svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}
nav .menu.active svg path {
  --offset: 57px;
}
nav .menu.active svg path:nth-child(1), .menu.active svg path:nth-child(3) {
  --delay: 0.15s;
  --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}
nav .menu.active svg path:nth-child(2) {
  --duration: 0.4s;
  --offset: 2px;
  --array-1: 1px;
}
nav .menu.active svg path:nth-child(3) {
  --offset: 58px;
}



nav .nav-content-left {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
nav .nav-content-left a {
  height: 100%;
  display: flex;
  align-items: center;
}
nav .nav-content-left svg {
  width: auto;
  height: 40px;
  margin: 0 var(--margin-right) 0 0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-content-left svg #DAVOS-LOGO-BLUE {
  fill: var(--blue);
  opacity: 1;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-content-left svg #DAVOS-LOGO-GREEN {
  fill: var(--green);
  opacity: 1;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}



nav .nav-content-right {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}



nav .nav-main-items {
  display: flex;
  flex-direction: row;
}
nav .nav-main-items a {
  position: relative;
  text-decoration: none;
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}
nav .nav-main-items a span {
  color: var(--white);
  opacity: 0.75;
}
nav .nav-main-items a.active span {
  color: var(--white);
  opacity: 1;
}
nav .nav-main-items a::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -14px;
  display: block;
  background-color: var(--green);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  z-index: 1;
  opacity: 0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-main-items a:hover::after {
  background-color: var(--green);
  z-index: 1;
  opacity: 1;
}
nav .nav-main-items a.active {
  color: var(--white);
  opacity: 1;
}
nav .nav-main-items a.active::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -14px;
  display: block;
  background-color: var(--white);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  z-index: 2;
  opacity: 1;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-main-items a.active:hover::after {
  background-color: var(--white);
}



nav .nav-top-price-offer {
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  padding: 0 10px 0 10px;
  margin: 0 10px 0 var(--margin-left);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  background-color: var(--green);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    cursor: pointer;
      display: none;
}
nav .nav-top-price-offer span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}
nav .nav-top-price-offer svg {
  width: 26px;
  height: 26px;
  float: left;
  margin: 0 10px 0 0;
}
nav .nav-top-price-offer svg #icon-price-offer-outer,
nav .nav-top-price-offer svg #icon-price-offer-inner {
  fill: var(--white);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-top-price-offer:hover {
  background-color: var(--blue);
}



nav .nav-top-lang {
  position: relative;
  z-index: 1111111;
}
nav .nav-top-lang-main {
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  background-color: var(--green);
  padding: 0 15px;
  cursor: pointer;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-top-lang-main span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-top-lang-main svg {
  width: 10px;
  height: 5px;
  float: right;
  margin: 2px 0 0  10px;
}
nav .nav-top-lang-main svg #nav-icon-arrow {
  fill: var(--white);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
nav .nav-top-lang-main:hover {
  background-color: var(--green);
}
nav .nav-top-lang-main:hover span {
  color: var(--white);
}
nav .nav-top-lang-main:hover svg #nav-icon-arrow {
  fill: var(--white);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  transform-origin: center;
}



nav .nav-top-lang-items {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  display: none;
}
nav .nav-top-lang-items a {
  margin: 4px 0 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
  text-decoration: none;
  background-color: var(--blue-light);
  padding: 9px 0;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
nav .nav-top-lang-items a:hover {
  color: var(--blue-light);
  background-color: var(--blue);
}

nav .nav-top-lang:hover .nav-top-lang-items {
  display: flex;
}


nav.scrolled {
  width: 100%;
  top: 0;
  background-color: var(--white) !important;
}
nav.scrolled .nav-content-left svg {
  margin: 0 var(--margin-right) 0 var(--margin-right);
}
nav.scrolled svg #DAVOS-LOGO-BLUE {
  fill: var(--blue);
  opacity: 1;
}
nav.scrolled svg #DAVOS-LOGO-GREEN {
  fill: var(--green);
  opacity: 1;
}
nav.scrolled::after {
  height: 0px;
  opacity: 0;
}
nav.scrolled .nav-top-lang {
  margin: 0 var(--margin-right) 0 0;
}
nav.scrolled .nav-main-items a span {
  color: var(--blue);
  opacity: 0.5;
}
nav.scrolled .nav-main-items a.active span {
  color: var(--blue);
  opacity: 1;
}
nav.scrolled .nav-main-items a.active::after {
  background-color: var(--green);
}
nav.scrolled .nav-main-items a.active:hover::after {
  background-color: var(--green);
}
nav.scrolled .menu {
  --color: var(--green);
}
















/* ---------------------------------------------------- */



/* -------------------- Price offer ------------------- */
#price-offer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1111111;
  overflow-y: scroll;
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  display: flex;
  display: none;
}
#price-offer::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--blue);
  opacity: 0.5;
  z-index: 11111;
}
#price-offer .price-offer-wrapper {
  position: relative;
  z-index: 11111111;
  margin: 30px;
}
#price-offer .price-offer-wrapper::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--white);
  opacity: 0.8;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#price-offer .price-offer-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  right: -25px;
  background-color: var(--green);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: var(--font-size-md);
  font-weight: 600;
  cursor: pointer;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#price-offer .price-offer-btn:hover  {
  background-color: var(--blue);
  color: var(--white);
}




#price-offer .form-2-inputs {
  background-color: var(--white);
  padding: 20px;
}
#price-offer .form-2-button {
  line-height: 50px;
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--font-size-base);
  font-weight: 600;
  background-color: var(--green);
  cursor: pointer;
  position: relative;
  text-align: center;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#price-offer .form-2-button-1,
#price-offer .form-2-button-2 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
#price-offer .form-2-button-2 {
  display: none;
}

#price-offer .form-2-button:hover {
  background-color: var(--blue);
}
#price-offer .form-2-inputs input {
  width: 100%;
  color: #B2B2B2;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  line-height: 60px;
  font-weight: 600;
  background-color: #EEEEEE;
  border: 0;
  padding: 0 30px;
  margin: 0 0 20px 0;
}
#price-offer .form-2-inputs input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B2B2B2;
  opacity: 1; /* Firefox */
}
#price-offer .form-2-inputs input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B2B2B2;
}
#price-offer .form-2-inputs input::-ms-input-placeholder { /* Microsoft Edge */
  color: #B2B2B2;
}
#price-offer .form-2-inputs textarea {
  width: 100%;
  color: #B2B2B2;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  line-height: 20px;
  font-weight: 600;
  background-color: #EEEEEE;
  border: 0;
  padding: 30px 30px;
  margin: 0;
  resize: none;
  display: block;
}
#price-offer .form-2-inputs textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B2B2B2;
  opacity: 1; /* Firefox */
}
#price-offer .form-2-inputs textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B2B2B2;
}
#price-offer .form-2-inputs textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: #B2B2B2;
}
/* ---------------------------------------------------- */



/* --------------------- NAV Phone -------------------- */
#nav-phone {
  background-color: var(--blue);
  backdrop-filter: blur(10px) grayscale(100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  z-index: 11;
  overflow-y: scroll;
  display: none;
}
#nav-phone .nav-phone-wrapper {
  margin: 150px 0 0 0;
}
#nav-phone .nav-phone-items {
  display: flex;
  flex-direction: column;
}
@keyframes FadeInMenuItems {
  0% {
    opacity: 0;
    transform: scale(.1);
  }

  85% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#nav-phone .nav-phone-items a {
  width: 80%;
  margin: 15px auto 0 auto;
  animation: FadeInMenuItems 0.5s linear;
  animation-fill-mode: both;
  text-align: center;
  padding: 20px 0 20px 0;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--blue-dark);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#nav-phone .nav-phone-items a:first-child {
  margin: 0 auto 0 auto;
}
#nav-phone .nav-phone-items a:hover {
  color: var(--white);
  background-color: var(--blue-dark);
}
#nav-phone .nav-phone-items a:nth-child(1) { animation-delay: 0.1s }
#nav-phone .nav-phone-items a:nth-child(2) { animation-delay: 0.2s }
#nav-phone .nav-phone-items a:nth-child(3) { animation-delay: 0.3s }
#nav-phone .nav-phone-items a:nth-child(4) { animation-delay: 0.4s }
#nav-phone .nav-phone-items a:nth-child(5) { animation-delay: 0.5s }
#nav-phone .nav-phone-items a:nth-child(6) { animation-delay: 0.6s }
#nav-phone .nav-phone-items a:nth-child(7) { animation-delay: 0.7s }
#nav-phone .nav-phone-items a:nth-child(8) { animation-delay: 0.8s }
#nav-phone .nav-phone-items a:nth-child(9) { animation-delay: 0.9s }
#nav-phone .nav-phone-items a:nth-child(10) { animation-delay: 1.0s }
#nav-phone .nav-phone-items a:nth-child(11) { animation-delay: 1.1s }
#nav-phone .nav-phone-items a:nth-child(12) { animation-delay: 1.2s }
#nav-phone .nav-phone-items a:nth-child(13) { animation-delay: 1.3s }




#nav-phone .nav-phone-lang {
  width: 80%;
  margin: 15px auto 0 auto;
  display: flex;
  flex-direction: row;
}
#nav-phone .nav-phone-lang a {
  width: 50%;
  color: var(--white);
  background-color: var(--green);
  text-decoration: none;
  display: block;
  margin: 0 5% 0 0;
  padding: 10px 0 10px 0;
  text-align: center;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  animation: FadeInMenuItems 0.5s linear;
  animation-fill-mode: both;
}
#nav-phone .nav-phone-lang a:last-child {
  margin: 0 0 0 0;
}
#nav-phone .nav-phone-lang a:hover {
  background-color: #466e07;
}



/* ---------------------------------------------------- */



/* ----------------------- Header --------------------- */
#header {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#header::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  display: block;
  background-image: url('');
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto;
  background-color: var(--green);
  transform: rotate(0deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}



.header-index {
  height: 98%;
  min-height: 600px;
  background-image: url('./../photos/headers/header-9.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-certificates {
  height: 600px;
  background-image: url('./../photos/headers/certificates-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-GDPR {
  height: 600px;
  background-image: url('./../photos/headers/GDPR-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-packaging-materials {
  height: 600px;
  background-image: url('./../photos/headers/packaging-materials-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-wood-production {
  height: 600px;
  background-image: url('./../photos/headers/wood-production-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-metal-production {
  height: 600px;
  background-image: url('./../photos/headers/metal-production-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-engineering {
  height: 600px;
  background-image: url('./../photos/headers/engineering-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-additional-services {
  height: 600px;
  background-image: url('./../photos/headers/additional-services-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-news {
  height: 600px;
  background-image: url('./../photos/headers/news-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.header-blog-typy-paliet {
  height: 600px;
  background-image: url('./../photos/blogs/blog-1/header-typy-paliet-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-blog-spracovanie-dreva {
  height: 600px;
  background-image: url('./../photos/blogs/blog-2/header-spracovanie-dreva-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-blog-vyroba-strojarskych-polotovarov {
  height: 600px;
  background-image: url('./../photos/blogs/blog-3/header-vyroba-strojarskych-polotovarov-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



#header .header-titles {
  width: 100%;
  height: -webkit-calc(100% - 50px);
  height: -moz-calc(100% - 50px);
  height: calc(100% - 60px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 50px;
}
#header .header-titles h4 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
#header .header-titles p {
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  opacity: 0.75;
  margin: 15px 0 0 0;
}



#header .header-content {
  width: 100%;
  height: -webkit-calc(100% - 50px);
  height: -moz-calc(100% - 50px);
  height: calc(100% - 50px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}
#header .header-content-text {
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
#header .header-content-text h4 {
  display: fit-content;
  font-family: 'Nata', sans-serif;
  font-size: 7vw;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.25rem;
  text-align: center;
  margin: 0 50px;
  border: 0px solid orange;
}



#header .header-mouse {
  position: absolute;
  width: 18px;
  height: 36px;
  bottom: var(--margin-bottom-header);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  z-index: 11;
}
.mouse {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  position: relative;
  height: 36px;
  width: 18px;
}
.mouse:before,
.mouse:after {
  animation: mouse-wheel 1.5s ease-in-out infinite;
  background: #fff;
  border-radius: 100px;
  content: '';
  height: 4px;
  width: 4px;
  opacity: 0;
  position: absolute;
  left: 7px;
  top: 16px;
}
.mouse:after {
  animation-delay: 0.75s;
}
@keyframes mouse-wheel {
  0% {
    transform: translateY(-11px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    transform: translateY(11px);
  }
}



#header .header-social {
  position: absolute;
  bottom: var(--margin-bottom-header);
  right: var(--margin-right);
  z-index: 11;
}
#header .header-social h4 {
  display: none;
}
#header .header-social-links {

}
#header .header-social-links a {
  width: var(--header-soc-size);
  height: var(--header-soc-size);
  display: block;
  margin: 0 0 var(--header-soc-icon-margin-bottom) 0;
}
#header .header-social-links a:last-child {
  margin: 0 0 0 0;
}
#header .header-social-links a span {
  display: none;
}
#header .header-social-links a svg {
  width: 100%;
  height: 100%;
}
#header .header-social-links a svg #icon-facebook {
  fill: var(--white);
  opacity: 0.4;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#header .header-social-links a:hover svg #icon-facebook {
  fill: #3b5998;
  opacity: 1;
}
#header .header-social-links a svg #icon-instagram {
  fill: var(--white);
  opacity: 0.4;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#header .header-social-links a:hover svg #icon-instagram {
  opacity: 1;
  fill: url(#icon-instagram_gradient);
}
#header .header-social-links a svg #icon-linkedin {
  fill: var(--white);
  opacity: 0.4;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#header .header-social-links a:hover svg #icon-linkedin {
  opacity: 1;
  fill: #0A66C2;
}



#header .header-contacts {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 10px var(--margin-right) var(--margin-bottom-header) var(--margin-left);
  z-index: 11;
}
#header .header-contacts a {
  font-size: 0.75rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  align-content: center;
  color: var(--white);
  padding: 5px 10px 5px 0px;
  opacity: 0.5;
}
#header .header-contacts a:last-child {
padding: 5px 10px 0px 0px;
}
#header .header-contacts a:hover {
  color: var(--white);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  background-color: rgba(118, 172, 33, 0.4);
  opacity: 1;
}
#header .header-contacts a svg {
  width: 14px;
  height: 14px;
  float: left;
  margin-right: 15px;
}
#header .header-contacts svg #icon-location,
#header .header-contacts svg #icon-phone,
#header .header-contacts svg #icon-email {
  fill: var(--white);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#header .header-contacts a:hover svg #icon-location,
#header .header-contacts a:hover svg #icon-phone,
#header .header-contacts a:hover svg #icon-email {
  fill: var(--white);
}



#header .header-mottos {
  position: absolute;
  top: 90px;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 10px var(--margin-right) var(--margin-bottom) var(--margin-left);
  z-index: 11;
}
#header .header-mottos a {
  font-size: var(--font-size-sm);
  color: var(--white);
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
}
#header .header-mottos a:hover {
  opacity: 1;
}
#header .header-mottos a.active {
  color: var(--green);
  opacity: 1;
}
#header .header-mottos svg {
  width: 12px;
  height: auto;
  opacity: 0.5;
  margin: 0 10px;
}
#header .header-mottos svg #icon-_x2B_space {
  fill: var(--green);
}



#header .header-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 1;
}




#header .scrolling-words-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#header .scrolling-words-container p {
  font-size: 40pt;
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
#header .scrolling-words-box {
  height: 6rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
}
#header .scrolling-words-box ul {
  padding: 0;
  animation: HeaderScrollUp 16s infinite 2.0s;
}
#header .scrolling-words-box ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.5rem;
  font-size: 70pt;
  white-space: nowrap;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

@keyframes HeaderScrollUp {
  12.5% {
    transform: translateY(-20%);
  }
  15% {
    transform: translateY(-20%);
  }
  27.5% {
    transform: translateY(-40%);
  }
  30% {
    transform: translateY(-40%);
  }
  42.5% {
    transform: translateY(-60%);
  }
  45% {
    transform: translateY(-60%);
  }
  57.5% {
    transform: translateY(-80%);
  }
  60% {
    transform: translateY(-80%);
  }
  72.5% {
    transform: translateY(-80%);
  }
  75% {
    transform: translateY(-80%);
  }
  92.5% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(0%);
  }
}

/* @keyframes HeaderScrollUp {
  15%, 25% {
    transform: translateY(-20%);
  }
  40%, 50% {
    transform: translateY(-40%);
  }
  65%, 75% {
    transform: translateY(-60%);
  }
  90%, 100% {
    transform: translateY(-80%);
  }
} */
/* ---------------------------------------------------- */



/* ---------------------- Services -------------------- */
#widget-services {

}
#widget-services .main-wrapper {
  max-width: var(--max-width-services);
  margin: 0 auto 25px auto;
  display: flex;
  flex-direction: row;
}
#widget-services .left {
  width: 40%;
  background-color: var(--green);
}
#widget-services .right {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: #00214C;
}
#widget-services .right-items {
  padding: 100px 0;
}
#widget-services .right-text {
  margin: 50px 50px 0 0;
}



#widget-services .left-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#widget-services .left-content {
  width: 100%;
  height: 100%;
  display: none;
}
#widget-services .left-content img {
  width: auto;
  height: 100%;
  display: block;
  position: absolute;
}



#widget-services .right-text h5 {
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 0 25px;
}
#widget-services .right-text p {
  font-size: var(--font-size-base);
  color: var(--white);
  margin: 25px 0 0 0;
  padding: 0 50px 0 25px;
}
#widget-services .right-text a {
  width: 250px;
  font-size: var(--font-size-base);
  font-weight: 800;
  text-transform: uppercase;
  color: #00214C;
  text-align: center;
  text-decoration: none;
  position: absolute;
  bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px 20px 15px 20px;
  background-color: #234E86;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#widget-services .right-text a:hover {
  background-color: var(--green);
}
#widget-services .right-text-img {
  height: 90px;
  margin: 0 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#widget-services .right-text-img img {
  width: auto;
  height: 90px;
}
#widget-services ul.tabs {
  transform: translateX(-50px);
}
#widget-services ul.tabs li {
  width: 350px;
  padding: 25px 65px 25px 70px;
  margin: 0 0 4px 0;
  position: relative;
  background-color: #234E86;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-services .active {
  background-color: var(--green);
}
#widget-services ul.tabs li:last-child {
  margin: 0 0 0 0;
}
#widget-services ul.tabs li:hover {
  background-color: var(--green);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}
#widget-services ul.tabs li::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  left: 25px;
  top: 0;
  background-image: url('./../img/dots-horizontal-2.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px 8px;
}
#widget-services ul.tabs li.active {
  background-color: var(--green);
}
#widget-services .tab_container {
  clear: both;
  width: 100%;
  height: 100%;
  position: relative;
}
#widget-services .tab_content {
  display: none;
}
#widget-services .tab_drawer_heading {
  display: none;
}
/* ---------------------------------------------------- */



/* ------------------- Extra Services ----------------- */
#widget-extra-services {

}
#widget-extra-services .main-wrapper {
  max-width: var(--max-width-extra-services);
  margin: 0 auto 70px auto;
  padding: 0 0 0 75px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 50px;
}
#widget-extra-services .main-wrapper .box {
  margin: 0 75px 0 0;
  display: flex;
  flex-direction: row;
}
#widget-extra-services .box .icon img {
  width: auto;
  height: 70px;
}
#widget-extra-services .box .text {
  margin: 0 0 0 50px;
}
#widget-extra-services .box .text h5 {
  position: relative;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--blue);
}
#widget-extra-services .box .text h5::after {
  content: "";
  width: 6px;
  height: 10px;
  position: absolute;
  left: -15px;
  top: 5px;
  display: block;
  background-image: url('./../img/dots-vertical.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
#widget-extra-services .text div p {
  font-size: 0.9rem;
  line-height: 1.1rem;
}
/* ---------------------------------------------------- */



/* ------------------------ Blogs --------------------- */
#widget-blogs {
}
#widget-blogs .main-wrapper {
  max-width: var(--max-width-blogs);
  margin: 0 auto 70px auto;
  display: flex;
  flex-direction: column;
}
#widget-blogs .box {
  width: 100%;
  display: flex;
}
#widget-blogs .box:nth-child(even) {
  flex-direction: row-reverse;
}
#widget-blogs .box-left {
  width: 50%;
  aspect-ratio: 1 / 1;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
}
#widget-blogs .box-right {
  width: 50%;
  aspect-ratio: 1 / 1;
  background-color: rgba(255, 0, 0, 0.4);
  position: relative;
}
#widget-blogs .text-content {
  background-color: var(--gray-light);
}
#widget-blogs .box-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
}
#widget-blogs .box span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green)
}
#widget-blogs .box h5 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin: 5px 0 20px 0;
  text-transform: uppercase;
}
#widget-blogs .box h5 a {
  color: var(--black);
  text-decoration: none;
}
#widget-blogs .box h5 a:hover {
  color: var(--blue);
}
#widget-blogs .box p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--black);
}
#widget-blogs .box-wrapper-img {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(255, 0, 0, 0.5);
  overflow: hidden;
}
#widget-blogs .box-wrapper-img img {
  width: 100%;
  height: auto;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-blogs .box-wrapper-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--blue);
}
#widget-blogs .box-wrapper-icon a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#widget-blogs .box-wrapper-icon svg {
  width: 20px;
  height: auto;
}
#widget-blogs .box-wrapper-icon svg .green {
  fill: var(--green);
}
#widget-blogs .box-wrapper-icon svg .blue {
  fill: var(--blue-dark);
}
#widget-blogs .icon-left {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--blue);
}
#widget-blogs .box-left:hover img {
  transform: scale(1.2) rotate(10deg);
}
#widget-blogs .box-right:hover img {
  transform: scale(1.2) rotate(-10deg);
}





/* #width and height {
  aspect-ratio : 1 / 1;
  width: 50%;

  background-color: silver;
  display: inline-block;
  height: 0;
  padding-bottom: 50%;
} */
/* ---------------------------------------------------- */



/* ------------------------- Blog --------------------- */
#widget-blog {

}
#widget-blog .main-wrapper {
  max-width: var(--max-width-blog);
  margin: 70px auto 70px auto;
}
#widget-blog .blog-wrapper-full {
  display: flex;
  flex-direction: column;
  margin: 0 0 100px 0;
}
#widget-blog .blog-wrapper-full:last-child {
  margin: 0 0 0 0;
}
#widget-blog .blog-wrapper-full p {
  text-align: justify;
  margin: 0 0 40px 0;
}
#widget-blog .blog-wrapper-full p:last-child {
  text-align: justify;
  margin: 0 0 0 0;
}
#widget-blog .blog-wrapper {
  display: flex;
  flex-direction: row;
  margin: 0 0 100px 0;
}
#widget-blog .blog-wrapper:last-child {
  margin: 0 0 0 0;
}
#widget-blog .flip {
  display: flex;
  flex-direction: row-reverse;
}
#widget-blog .left {
  width: 40%;
}
#widget-blog .left img {
  width: 100%;
  height: auto;
  display: block;
}
#widget-blog .translate-x-50 img {
  transform: translateX(50px);
}
#widget-blog .translate-x--50 img {
  transform: translateX(-50px);
}
#widget-blog .left a {
  display: block;

  margin: 0 0 50px 0;
}
#widget-blog .left a:last-child {
  margin: 0 0 0 0;
}
#widget-blog .right {
  width: 60%;
}
#widget-blog .right h5 {
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
  margin: 0 0 10px 0;
}
#widget-blog .right p {
  column-count: 1;
  column-gap: 20px;
  text-align: justify;
  margin: 0 0 40px 0;
}
#widget-blog .right div {
  margin: 0 0 40px 0;
}
#widget-blog .right div:last-child {
  margin: 0 0 0 0;
}
#widget-blog .blog-wrapper ul {
  list-style: none;
  margin: 15px 0 0 25px;
}
#widget-blog .blog-wrapper ul li {
  max-width: 800px;
}
#widget-blog .blog-wrapper ul li::before {
  content: "\2022";
  color: var(--green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* ---------------------------------------------------- */



/* ------------------------- AAA ---------------------- */
/* ---------------------------------------------------- */



/* ------------------------- AAA ---------------------- */
/* ---------------------------------------------------- */



/* ------------------------- AAA ---------------------- */
#widget-articles {
  margin: 0 0 100px 0;
}
#widget-articles .main-wrapper {
  max-width: var(--max-width-articles);
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding: 0 50px 0 50px;
}
#widget-articles .main-wrapper::after {
  content: "";
  width: 100%;
  height: 110px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  left: 0;
  right: 0;
  background-color: var(--gray-light);
  z-index: -1;
}
#widget-articles .box-inner-button {
  width: 100%;
  padding: 35px 0 15px 0;
  text-align: center;
}
#widget-articles .main-wrapper .box {
  width: 100%;
  height: 100%;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#widget-articles .main-wrapper .box-inner {
  width: 100%;
  height: -webkit-calc(100% - 80px);
  height: expression(100% - 80px);
  height: -moz-calc(100% - 80px);
  height: -o-calc(100% - 80px);
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  padding: 15px;
}
#widget-articles .main-wrapper .box-inner h5 {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--blue);
  text-transform: uppercase;
  margin: 40px 0 30px 0;
}
#widget-articles .main-wrapper .box-inner p {
  font-size: var(--font-size-base);
  line-height: var(--font-size-lg);
  text-align: center;
  color: var(--black);
  padding: 0 25px 0 25px;
  margin: 0 0 10px 0;
}
#widget-articles .main-wrapper .box-inner a {
  position: relative;
  color: var(--black);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 20px 6px 20px;
  text-decoration: none;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#widget-articles .main-wrapper .box-inner a:hover {
  color: var(--white);
  background-color: var(--blue);
}
#widget-articles .main-wrapper .box-inner a::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  background-image: url('./../img/dots-horizontal.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
#widget-articles .main-wrapper .box-active {
  width: 100%;
  height: 100%;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-dark);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
#widget-articles .main-wrapper .box-inner-active {
  width: 100%;
  height: 100%;
}
#widget-articles .main-wrapper .box-inner-active h5 {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--green);
  text-transform: uppercase;
  margin: 40px 0 30px 0;
}
#widget-articles .main-wrapper .box-inner-active p {
  font-size: var(--font-size-base);
  line-height: var(--font-size-lg);
  text-align: center;
  color: var(--white);
  padding: 0 25px 0 25px;
  margin: 0 0 10px 0;
}
#widget-articles .main-wrapper .box-inner-active a {
  position: relative;
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 20px 6px 20px;
  text-decoration: none;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#widget-articles .main-wrapper .box-inner-active a:hover {
  background-color: var(--green);
}
#widget-articles .main-wrapper .box-inner-active a::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  background-image: url('./../img/dots-horizontal.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
/* ---------------------------------------------------- */



/* ---------------------- Partners -------------------- */
#widget-partners {
  width: 100%;
  padding: 10px 10px 70px 10px;
  background-color: var(--gray-light);
}
#widget-partners .main-wrapper {
  max-width: var(--max-width-partners);
  margin: auto;
  display: flex;
  justify-content: center;
}
#widget-partners .main-wrapper div {
  width: 16.6%;
  height: 70px;
  margin: 0 20px 0 0;
  -webkit-border-radius: 6px 6px 0px 0px;
  -moz-border-radius: 6px 6px 0px 0px;
  border-radius: 6px 6px 0px 0px;
  position: relative;
  background-color: var(--white);
}
#widget-partners .main-wrapper div:last-child {
  margin: 0 0 0 0;
}
#widget-partners .main-wrapper div::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -2px;
  -webkit-border-radius: 0px 0px 2px 2px;
  -moz-border-radius: 0px 0px 2px 2px;
  border-radius: 0px 0px 2px 2px;
  background-color: var(--gray-light-2);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-partners .main-wrapper div a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: var(--white);
}
#widget-partners .main-wrapper div img {
  width: auto;
  height: 70%;
  margin: auto;
  filter: grayscale(1);
  opacity: 0.4;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-partners .main-wrapper div a:hover img {
  filter: grayscale(0);
  opacity: 1.0;
}
#widget-partners div:hover::after {
  background-color: var(--green);
}
/* ---------------------------------------------------- */



/* ---------------------- Documents ------------------ */
#widget-documents {
  width: 100%;
  padding: 10px 0 70px 0;
  position: relative;
  margin: 0 0 0 0;
}
#widget-documents section {
  position: relative;
}
#widget-documents section::after {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--green);
  z-index: -1;
}
#widget-documents .main-wrapper {
  max-width: var(--max-width-partners);
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 50px 0px 50px;
}
#widget-documents .box {
  width: 25%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  transform: translate(0, 50px);
}
#widget-documents .box a {
  text-decoration: none;
}
#widget-documents .box .top {
  position: relative;
}
#widget-documents .box .top-hover {
  position: absolute;
  top: 15px;
  left: 15px;
  width: -webkit-calc(100% - 30px);
  width: expression(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: -o-calc(100% - 30px);
  width: calc(100% - 30px);
  height: -webkit-calc(100% - 30px);
  height: expression(100% - 30px);
  height: -moz-calc(100% - 30px);
  height: -o-calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: var(--blue);
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-documents .box .top-hover svg {
  width: 40px;
  height: 40px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-documents .box .top-hover svg .icon-cross {
  fill: var(--white);
}
#widget-documents .box .top-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0);
  opacity: 1.0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-documents .box .bottom {
  line-height: 50px;
  background-color: var(--blue);
  text-align: center;
  color: var(--white);
  font-size: var(--font-size-base);
  font-weight: 700;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-documents .box .bottom span {
  font-weight: 400;
}
#widget-documents .box:hover .bottom {
  background-color: var(--blue-dark);
}
#widget-documents .box:hover .top-img img {
  filter: grayscale(1);
  opacity: 0.5;
}
#widget-documents .box:hover .top-hover {
  opacity: 0.8;
}
#widget-documents .box:hover .top-hover svg {
  transform: rotate(90deg);
}
/* ---------------------------------------------------- */



/* ---------------------- Documents ------------------ */
#widget-GDPR {
  width: 100%;
  padding: 10px 0 70px 0;
  position: relative;
  margin: 100px 0 100px 0;
}
#widget-GDPR section {
  position: relative;
}
#widget-GDPR section::after {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--green);
  z-index: -1;
}
#widget-GDPR .main-wrapper {
  max-width: var(--max-width-GDPR);
  margin: auto;
  padding: 0px 50px 0px 0px;
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-gap: 20px;
}
#widget-GDPR .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  transform: translate(0, 50px);
}
#widget-GDPR .box a {
  text-decoration: none;
}
#widget-GDPR .box .top {
  position: relative;
}
#widget-GDPR .box .top-hover {
  position: absolute;
  top: 15px;
  left: 15px;
  width: -webkit-calc(100% - 30px);
  width: expression(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: -o-calc(100% - 30px);
  width: calc(100% - 30px);
  height: -webkit-calc(100% - 30px);
  height: expression(100% - 30px);
  height: -moz-calc(100% - 30px);
  height: -o-calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: var(--blue);
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-GDPR .box .top-hover svg {
  width: 40px;
  height: 40px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-GDPR .box .top-hover svg .icon-cross {
  fill: var(--white);
}
#widget-GDPR .box .top-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0);
  opacity: 1.0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-GDPR .box .bottom {
  line-height: 25px;
  background-color: var(--blue);
  text-align: center;
  color: var(--white);
  font-size: var(--font-size-base);
  font-weight: 700;
  padding: 15px 25px 15px 25px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-GDPR .box .bottom span {
  font-weight: 400;
}
#widget-GDPR .box:hover .bottom {
  background-color: var(--blue-dark);
}
#widget-GDPR .box:hover .top-img img {
  filter: grayscale(1);
  opacity: 0.5;
}
#widget-GDPR .box:hover .top-hover {
  opacity: 0.8;
}
#widget-GDPR .box:hover .top-hover svg {
  transform: rotate(90deg);
}
/* ---------------------------------------------------- */



/* ----------------------- Contact -------------------- */
#widget-contact {
}
#widget-contact .main-wrapper {
  max-width: var(--max-width-contact);
  margin: 0 auto 120px auto;
  display: flex;
}
#widget-contact .left {
  width: 50%;
  background-color: var(--blue);
  padding: 100px;
}
#widget-contact .right {
  width: 50%;
  background-color: var(--gray-light);
  position: relative;
}
#widget-contact .left h5 {
  font-size: var(--font-size-lg);
  color: var(--white);
}
#widget-contact .left p {
  font-size: var(--font-size-base);
  color: var(--white);
  margin: 0 0 20px 0;
}
#widget-contact .left p b {
  text-transform: uppercase;
}
#widget-contact .left p a {
  color: var(--white);
  text-decoration: none;
}
#widget-contact .left p a:hover {
  color: var(--green);
}





#widget-contact .map {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black);
}
#widget-contact .map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  opacity: 0.75;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-contact .map:hover iframe {
  filter: grayscale(0%);
  opacity: 1.0;
}
#widget-contact .form {
  position: absolute;
  width: 500px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 25px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}
#widget-contact .form-inputs {
  background-color: var(--white);
  padding: 20px;
  display: none;
}
#widget-contact .form-button {
  height: 50px;
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--font-size-base);
  font-weight: 600;
  background-color: var(--green);
  cursor: pointer;
  position: relative;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-contact .form-button-1,
#widget-contact .form-button-2 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
#widget-contact .form-button-2 {
  display: none;
}

#widget-contact .form-button:hover {
  background-color: var(--blue);
}
#widget-contact .form-inputs input {
  width: 100%;
  color: #B2B2B2;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  line-height: 60px;
  font-weight: 600;
  background-color: #EEEEEE;
  border: 0;
  padding: 0 30px;
  margin: 0 0 20px 0;
}
#widget-contact .form-inputs input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B2B2B2;
  opacity: 1; /* Firefox */
}
#widget-contact .form-inputs input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B2B2B2;
}
#widget-contact .form-inputs input::-ms-input-placeholder { /* Microsoft Edge */
  color: #B2B2B2;
}
#widget-contact .form-inputs textarea {
  width: 100%;
  color: #B2B2B2;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  line-height: 20px;
  font-weight: 600;
  background-color: #EEEEEE;
  border: 0;
  padding: 30px 30px;
  margin: 0;
  resize: none;
  display: block;
}
#widget-contact .form-inputs textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B2B2B2;
  opacity: 1; /* Firefox */
}
#widget-contact .form-inputs textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B2B2B2;
}
#widget-contact .form-inputs textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: #B2B2B2;
}
/* ---------------------------------------------------- */



/* ----------------------- Footer --------------------- */
#footer {
  width: 100%;
  height: 43px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#footer .left,
#footer .right {
  width: -webkit-calc(50% - 18px);
  width: expression(50% - 18px);
  width: -moz-calc(50% - 18px);
  width: -o-calc(50% - 18px);
  width: calc(50% - 18px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
#footer .left {
  background-color: var(--green);
}
#footer .right {
  font-size: var(--font-size-sm);
  color: var(--blue-light);
  font-weight: 400;
  text-transform: uppercase;
  background-color: var(--blue);
}
#footer .left::before {
  content: "";
  width: 21px;
  height: 43px;
  position: absolute;
  top: 0;
  right: -20px;
  background-position: right top;
  background-image: url('./../img/bottom-triangle-green.svg');
  background-repeat: no-repeat;
  background-size: 21px auto;
}
#footer .right::before {
  content: "";
  width: 21px;
  height: 43px;
  position: absolute;
  top: 0;
  left: -20px;
  background-position: right top;
  background-image: url('./../img/bottom-triangle-blue.svg');
  background-repeat: no-repeat;
  background-size: 21px auto;
}
#footer .left a {
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green-light);
  position: relative;
  padding: 0 25px;
}
#footer .left a::after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  right: -9px;
  background-image: url('./../img/bottom-menu-dots.svg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  margin: 0 5px 0 5px;
}
#footer .left a:last-child::after {
  content: "";
  width: 0;
  height: 0;
  margin: 0 0 0 0;
}
#footer .left a:hover {
  color: var(--white);
}
#footer .right a {
  text-decoration: none;
  font-weight: 800;
  color: var(--blue-light);
  padding: 0 5px 0 5px;
}
#footer .right a:hover {
  color: var(--white);
}
/* ---------------------------------------------------- */



/* -------------------- Certificates ----------------- */
#widget-certificates {
  width: 100%;
  padding: 10px 0 70px 0;
  position: relative;
  margin: 0 0 0 0;
}
#widget-certificates .main-wrapper {
  max-width: var(--max-width-certificates);
  margin: auto;
  padding: 0px 50px 0px 50px;
}
#widget-certificates .box-max-width {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 50px 0px 50px;
}
#widget-certificates .box {
  flex-grow: 1;
  width: 33%;
  display: flex;
  flex-direction: column;
  transform: translate(0, 50px);
  padding: 0 50px 50px 0;
}
#widget-certificates .box a {
  text-decoration: none;
}
#widget-certificates .box .top {
  position: relative;
}
#widget-certificates .box .top-hover {
  position: absolute;
  top: 15px;
  left: 15px;
  width: -webkit-calc(100% - 30px);
  width: expression(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: -o-calc(100% - 30px);
  width: calc(100% - 30px);
  height: -webkit-calc(100% - 30px);
  height: expression(100% - 30px);
  height: -moz-calc(100% - 30px);
  height: -o-calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: var(--blue);
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-certificates .box .top-hover svg {
  width: 40px;
  height: 40px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-certificates .box .top-hover svg .icon-cross {
  fill: var(--white);
}
#widget-certificates .box .top-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0);
  opacity: 1.0;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#widget-certificates .box:hover .top-img img {
  filter: grayscale(1);
  opacity: 0.5;
}
#widget-certificates .box:hover .top-hover {
  opacity: 0.8;
}
#widget-certificates .box:hover .top-hover svg {
  transform: rotate(90deg);
}
#widget-certificates .box-text {
  max-width: 1000px;
  margin: 100px auto 0 auto;
}
#widget-certificates .box-text p {
  margin: 0 0 15px 0;
}
/* ---------------------------------------------------- */



/* ----------------- Obalove materialy ---------------- */
#widget-packaging-materials .main-wrapper {
  margin: 50px auto 50px auto;
  padding: 0px 25px 0px 25px;
}
#widget-wood-production .main-wrapper {
  margin: 50px auto 50px auto;
  padding: 0px 25px 0px 25px;
}
#widget-metal-production .main-wrapper {
  margin: 50px auto 50px auto;
  padding: 0px 25px 0px 25px;
}
#widget-engineering .main-wrapper {
  margin: 50px auto 50px auto;
  padding: 0px 25px 0px 25px;
}
#widget-additional-services .main-wrapper {
  margin: 50px auto 50px auto;
  padding: 0px 25px 0px 25px;
}
/* ---------------------------------------------------- */



/* ------------------- Services text ------------------ */
article .services-text {
  max-width: var(--max-width-services-text);
  margin: auto;
}
article .services-text p {
  margin: 0 0 20px 0;
}
article .services-text p:last-child {
  margin: 0 0 0 0;
}
article .services-text p a {
  font-weight: 600;
  color: var(--green);
}
article .services-text p a:hover {
  color: var(--blue);
}
article .services-text ul {
  list-style: none;
  margin: 0 0 0 25px;
}
article .services-text ul li {
  max-width: 800px;
}
article .services-text ul li::before {
  content: "\2022";
  color: var(--green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
article .services-text h5 {
  color: var(--blue);
  font-size: var(--font-size-md);
  font-weight: 800;
  text-transform: uppercase;
  margin: 45px 0 5px 0;
}
article .services-text h6 {
  max-width: 800px;
  color: var(--green);
  font-size: var(--font-size-base);
  font-weight: 600;
  margin: 0 0 15px 0;
}
/* ---------------------------------------------------- */



/* ----------------------- gallery -------------------- */
article .gallery {
  max-width: var(--max-width-gallery);
  margin: 50px auto 50px auto;
}
article .gallery h5 {
  width: 100%;
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--green);
  padding: 0 0 10px 0;
  margin: 0 0 25px 0;
}
article .gallery .gallery-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
article .gallery-items a {
  display: block;
  position: relative;
  margin: 0 30px 30px 0;
    flex: 1 1 30%; /*grow | shrink | basis */
}
article .gallery-items a:nth-child(3n) {
  margin: 0 0px 30px 0;
}
article .gallery-items a::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: var(--green);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
article .gallery-items a img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
article .gallery-items div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
article .gallery-items a:hover img {
  filter: grayscale(0);
  transform: scale(1.05) rotate(2deg);
}
/* ---------------------------------------------------- */



/* -------------------- Scroll button ----------------- */
#scrollUP {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--green);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;

    justify-content: center;
    align-items: center;
    align-content: center;
}
#scrollUP button {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  position: relative;
}
#scrollUP svg {
  width: 70%;
  height: 70%;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#scrollUP svg #arrow-bottom {
  animation-name: scroll-up-animation;
  animation-duration: 2s;
  animation-timing-function: steps(5, end);
  animation-delay: 0s;
  transition-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  fill: var(--blue);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#scrollUP svg #arrow-middle {
  animation-name: scroll-up-animation;
  animation-duration: 2s;
  animation-timing-function: steps(5, end);
  animation-delay: 0.5s;
  transition-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  fill: var(--blue);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#scrollUP svg #arrow-top {
  animation-name: scroll-up-animation;
  animation-duration: 2s;
  animation-timing-function: steps(5, end);
  animation-delay: 1s;
  transition-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  fill: var(--blue);
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#scrollUP:hover {
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#scrollUP:hover svg #arrow-bottom {
  animation-name: none;
  fill: var(--blue);
}
#scrollUP:hover svg #arrow-middle {
  animation-name: none;
  fill: var(--blue);
}
#scrollUP:hover svg #arrow-top {
  animation-name: none;
  fill: var(--blue);
}
@-webkit-keyframes scroll-up-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll-up-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* ---------------------------------------------------- */



/* --------------------- ANIMATION -------------------- */
.anim-wrapper {
  opacity: 0.1;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}

.anim-active .anim-left-to-right {
  animation: animationLeftToRight 0.5s ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0.1s;
  transform-origin: center right;
}
.anim-active .anim-down-to-up {
  animation: animationDownToUp 0.5s ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0.1s;
  transform-origin: bottom center;
}
.anim-active .anim-up-to-down {
  animation: animationUpToDown 0.5s ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0.1s;
  transform-origin: top center;
}
.anim-active .anim-right-to-left {
  animation: animationRightToLeft 0.5s ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0.1s;
  transform-origin: left center;
}

.anim-active .anim-delay-250  { animation-delay: 250ms  }
.anim-active .anim-delay-500  { animation-delay: 500ms  }
.anim-active .anim-delay-750  { animation-delay: 750ms  }
.anim-active .anim-delay-1000 { animation-delay: 1000ms }
.anim-active .anim-delay-1250 { animation-delay: 1250ms }
.anim-active .anim-delay-1500  { animation-delay: 1500ms }
.anim-active .anim-delay-1750 { animation-delay: 1750ms }
.anim-active .anim-delay-2000 { animation-delay: 2000ms }

@-webkit-keyframes animationRightToLeft {
  0% {
    opacity: 0;
    transform: translate(150%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
@keyframes animationRightToLeft {
  0% {
    opacity: 0;
    transform: translate(150%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
@-webkit-keyframes animationLeftToRight {
  0% {
    opacity: 0;
    transform: translate(-150%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
@keyframes animationLeftToRight {
  0% {
    opacity: 0;
    transform: translate(-150%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
@-webkit-keyframes animationDownToUp {
  0% {
    opacity: 0;
    transform: translate(0, 150%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes animationDownToUp {
  0% {
    opacity: 0;
    transform: translate(0, 150%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes animationUpToDown {
  0% {
    opacity: 0;
    transform: translate(0, -150%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0%);
  }
}
@keyframes animationUpToDown {
  0% {
    opacity: 0;
    transform: translate(0, -150%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0%);
  }
}
/* ---------------------------------------------------- */



/* ---------------------------------------------------- */
@media only screen and (min-width: 1241px) {  /* -- PC */
}
@media only screen and (min-width: 429px) and (max-width: 1240px) {  /* -- Tabler */

  #header .header-mottos {
    display: none;
  }



  #header .scrolling-words-container p {
    font-size: 22pt;
  }
  #header .scrolling-words-box {
    height: 4rem;
  }
  #header .scrolling-words-box ul li {
    height: 4rem;
    font-size: 40pt;
  }



  nav .nav-main-items {
    display: none;
  }
  nav .nav-top-lang {
    display: none;
  }
  nav .nav-top-price-offer {
    display: none;
  }
  nav .header-nav-btn {
  display: flex;
  }





  #widget-articles .main-wrapper {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
  }



  #widget-extra-services .main-wrapper {
    grid-template-columns: 1fr;
  }



  #footer {
    flex-direction: column;
    height: auto;
  }
  #footer .left,
  #footer .right {
    width: 100%;
    padding: 15px 0;
  }
  #footer .left::before {
    display: none;
  }
  #footer .right::before {
    display: none;
  }
}
@media only screen and (max-width: 428px) {  /* -- Mobil */



  .header-index {
    background-image: url('./../photos/headers/header-9-phone.jpg');
  }


  article .article-titles {
    text-align: center;
    padding: 50px 0 60px 0;
  }
  article .box-text p {
    padding: 0 25px 0 25px;
    text-align: justify;
    overflow-wrap: break-word;
  }



  article .gallery-items a {
    display: block;
    position: relative;
    margin: 0 0px 30px 0;
    flex: 100%;
  }
  article .gallery-items a:nth-child(3n) {
    margin: 0 0px 30px 0;
  }



  article .services-text h5 {
    margin: 45px 0 5px 0;
  }



  #header .header-mottos {
    display: none;
  }
  #header .header-titles h4 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
  }
  #header .header-titles p {
    font-size: 1rem;
  }



  #header .scrolling-words-container p {
    font-size: 4vw;
  }
  #header .scrolling-words-box {
    height: 2rem;
  }
  #header .scrolling-words-box ul li {
    height: 2rem;
    font-size: 6vw;
  }



  nav .nav-main-items {
    display: none;
  }
  nav .nav-top-lang {
    display: none;
  }
  nav .nav-top-price-offer {
    display: none1;
  }
  nav .nav-top-price-offer span {
    display: none;
  }
  nav .nav-top-price-offer svg {
    margin: 0 0 0 0;
  }
  nav .header-nav-btn {
  display: flex;
  }



  #widget-services .main-wrapper {
    display: flex;
    flex-direction: column;
  }
  #widget-services .left {
    width: 100%;
  }
  #widget-services .right {
    width: 100%;
    padding: 50px 0 25px 0;
    flex-direction: column;
  }
  #widget-services .left-content {
    width: 100%;
    height: 350px;
  }
  #widget-services .right-items {
    margin: 0 0 50px 0;
    padding: 0 0;
  }
  #widget-services .tab_content {
    padding: 0 0 0px 0;
  }
  #widget-services .right-text {
    margin: 0px 0px 0 0;
  }
  #widget-services .right-text p {
    margin: 25px 0 0 0;
    text-align: center;
  }
  #widget-services .right-text a {
    width: 90%;
    left: 0;
    right: 0;
    position: static;
    display: block;
    margin: 25px auto 25px auto;
  }
  #widget-services .right-text-img {
    height: 90px;
    margin: 0 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #widget-services ul.tabs {
    transform: translateX(0px);
  }
  #widget-services ul.tabs li {
    width: 90%;
    margin: 0 auto 4px auto;
  }
  #widget-services ul.tabs li:last-child {
    margin: 0 auto 0 auto;
  }



  #widget-extra-services .main-wrapper {
    grid-template-columns: 1fr;
    padding: 0 0 0 25px;
  }
  #widget-extra-services .main-wrapper .box {
    margin: 0 25px 0 0;
  }



  #widget-blogs .box {
    width: 100%;
    display: block;
  }
  #widget-blogs .box:first-child {
    flex-direction: column-reverse;
  }
  #widget-blogs .box-left {
    width: 100%;
  }
  #widget-blogs .box-right {
    width: 100%;
  }
  #widget-blogs .box-wrapper {
    padding: 0 25px;
  }


  #widget-articles .main-wrapper {
    grid-template-columns: 1fr;
  }
  #widget-articles .main-wrapper .box-inner,
  #widget-articles .main-wrapper .box {
    height: auto;
  }



  #widget-partners .main-wrapper {
    flex-direction: column;
  }
  #widget-partners .main-wrapper div {
    width: 100%;
    margin: 0 0 10px 0;
  }
  #widget-partners .main-wrapper div:last-child {
    margin: 0 0 0 0;
  }
  #widget-partners .main-wrapper div img {
    filter: grayscale(0);
    opacity: 1.0;
  }



  #widget-documents .main-wrapper {
    flex-direction: column;
  }
  #widget-documents .box {
    width: 100%;
    margin: 0 0 50px 0;
  }
  #widget-documents .box:last-child {
    margin: 0 0 0 0;
  }



  #widget-GDPR .main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 50px 0px 50px;
  }
  #widget-GDPR .box {
    width: 100%;
    margin: 0 0 50px 0;
  }
  #widget-GDPR .box:last-child {
    margin: 0 0 0 0;
  }



  #widget-certificates .main-wrapper {
    padding: 0px 0px 0px 0px;
  }
  #widget-certificates .box-max-width {
    padding: 0px 0px 0px 0px;
  }
  #widget-certificates .box {
    width: 50%;
    padding: 0px 25px 0px 25px;
    margin: 0 auto 50px auto;
  }
  #widget-certificates .box:last-child {
    margin: 0 0 0 0;
  }
  #widget-certificates .box-text {
    margin: 50px auto 0 auto;
  }



  #widget-contact .main-wrapper {
    flex-direction: column;
    margin: 0 auto 60px auto;
  }
  #widget-contact .left {
    width: 100%;
    padding: 25px;
    text-align: center;
  }
  #widget-contact .right {
    width: 100%;
    display: none;
  }


  #footer {
    flex-direction: column;
    height: auto;
  }
  #footer .left,
  #footer .right {
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
  }
  #footer .left::before,
  #footer .right::before {
    display: none;
  }
  #footer .left a {
    width: 90%;
    font-size: var(--font-size-md);
    padding: 15px 0;
    text-align: center;
    margin: 0px auto 10px auto;
    font-weight: 800;
    background-color: var(--green-dark);
  }
  #footer .left a:last-child {
    margin: 0px auto 0px auto;
  }
  #footer .left a::after {
    display: none;
  }
  #footer .right span:last-child {
    padding: 10px 0 0 0;
  }
  #footer .phone-hidden {
    display: none;
  }



  #widget-blog .blog-wrapper {
    flex-direction: column;
    margin: 0 0 50px 0;
  }
  #widget-blog .left {
    width: 100%;
  }
  #widget-blog .right {
    width: 100%;
  }
  #widget-blog .flip {
    flex-direction: column;
  }
  #widget-blog .left img {
    width: 90%;
    margin: 0 auto 50px auto;
  }
  #widget-blog .translate-x-50 img {
    transform: translateX(0px);
  }
  #widget-blog .translate-x--50 img {
    transform: translateX(0px);
  }
  #widget-blog .right h5 {
    padding: 0 25px 0 25px;
  }
  #widget-blog .right p {
    padding: 0 25px 0 25px;
    margin: 0 0 0 0;
  }

}
