/*                          ---                          */
/* -------------------- Fonts MAIN --------------------- */
@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------ Dimensions MAIN ------------------ */
:root {
  --header-height: 90%;
  --header-height-img: 90%;
  /* --header-min-height: 500px; */
  --header-min-height: 70vh;
  --header-max-height: 90vh;


  --gap: 20px;



  --margin-half:  50px;
  --padding-half:  50px;



  --padding-accordion-panel: 20px;


  --horizontal-shadow-width: 50%

}
@media screen and (min-width: 1241px) {
  :root {
    --margin-body:  100px;
    
    --padding-body: 100px;
  
    --max-width:  1920px;
  
    --nav-height: 70px;





  --main-left-width: 40%;
  --main-right-width: 60%;

  --kontakt-left-width: 40%;
  --kontakt-right-width: 60%;
  }
}
@media screen and (max-width: 1240px) {
  :root {
    --margin-body:  100px;
    
    --padding-body: 100px;
  
    --max-width:  1920px;
  
    --nav-height: 70px;





    --main-left-width: 100%;
    --main-right-width: 100%;
  
    --kontakt-left-width: 100%;
    --kontakt-right-width: 100%;
  }
}
@media screen and (max-width: 744px) {
  :root {
    --margin-body:  50px;
    
    --padding-body: 50px;
  
    --max-width:  1920px;
  
    --nav-height: 70px;


    --header-height: auto;


    --margin-half:  25px;
    --padding-half:  25px;


    --img-header-height-phone: 40vh;



    --main-left-width: 100%;
    --main-right-width: 100%;

    --kontakt-left-width: 100%;
    --kontakt-right-width: 100%;
  }
}
@media screen and (max-width: 428px) {
  :root {
    --margin-body:  25px;
    
    --padding-body: 25px;
  
    --max-width:  1920px;
  
    --nav-height: 70px;


    --img-header-height-phone: 40vh;

  }
}
@media only screen and (max-width: 320px) {
  :root {
    --margin-body:  15px;
    
    --padding-body: 15px;
  
    --max-width:  1920px;
  
    --nav-height: 70px;
  }
}





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

/*                          ---                          */
/* -------------------- Colors MAIN -------------------- */
:root {
  --white:                #ffffff;
  --black:                #000000;
  --red:                  #ff0000;

  --autor-bg-color:       #494949;
  --autor-aj-color:       #959595;
  --autor-bg-color-hover: #959595;
  --autor-aj-color-hover: #cbfb45;

  --primary:          #BEA87D;
  --gray:             #717171;
  --gray-light:       #C4C4C4;
  --gray-dark:        #272526;

  --page-bg-color:    #151515;
  --page-text-color:  #ffffff;
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------- Settings MAIN ------------------- */
* {
  font-family: 'Montserrat', Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  min-height: 100% !important;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  /* font-size: clamp(16px, 4vw, 24px); */
  color: var(--page-text-color);
  background-color: var(--page-bg-color);
}
body.disable-scrollbar {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.disable-scrollbar::-webkit-scrollbar {
  display: none;
}
h1, h2, h3, h4, h5, h6, button {
  margin: 0;
  padding: 0;
}
h2 {
  display: none;
}
a, img, strong, button, span, svg, path, rect, polygon, input, label {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
a {
  text-decoration: none;
}
p, ul, li {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img {
  border-style: none;
  width: 100%;
  height:  100%;
  display: block;
  object-fit: cover;
  transform-origin: center;
}
button {
  cursor: pointer;
  border: 0;
}
input, textarea {
  border-radius: 0;
}
textarea {
  resize: none;
}
.transition-animation-300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.transition-animation-500 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------ Buttons & Links ------------------ */
main a[target=_blank] {
  background-color: yellow;
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ----------------------- Fonts ----------------------- */
/* ----------------------------------------------------- */


/*                          ---                          */
/* ----------------------- Titles ---------------------- */
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------- Navigation BAR ------------------ */
nav.main-menu {
  width: 100%;
  padding: 0 var(--padding-body);
  position: absolute;
  top: 0;
  z-index: 11111111111111111111111;
  background-color: var(--page-bg-color);
}
nav .wrapper-nav {
  width: 100%;
  height: var(--nav-height);
  max-width: var(--max-width);
  position: relative;
}

/* -- PC usporiadanie */
@media screen and (min-width: 745px) {
  nav .wrapper-nav {
    width: 100%;
    height: var(--nav-height);
    max-width: var(--max-width);
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
  }
  nav .wrapper-nav::before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
    background-color: var(--gray-dark);
    z-index: -1;
  }
  nav .wrapper-items {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
  }

  /* -- Menu phone hamburger button */
  .menu-toggle,
  .phone-nav-icons {
    display: none;
  }


  /* -- Hlavne menu */
  nav.main-menu ul.menu  {
    display: flex;
    gap: 50px;
  }
  nav.main-menu .menu > li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px 0 0;
  }
  nav.main-menu .menu > li > a {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-light);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
  }
  nav.main-menu .menu li:hover > a {
    color: var(--primary);
  }
  nav.main-menu li:hover .submenu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
    padding: 0 0 0 0;
    height: auto;
    z-index: 1111;
  }

  /* -- Submenu arrow */
  nav.main-menu .submenu-arrow {
    width: 10px;
    height: 6px;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;justify-content: flex-end;
    align-items: center;
  }
  nav.main-menu .submenu-arrow svg {
    width: 100%;
    height: auto;
    fill: var(--gray-light);
    transition: transform 0.3s ease;
  }
  nav.main-menu .menu > li:hover .submenu-arrow svg {
    fill: var(--primary);
    transform: scaleY(-1);
  }
  
  /* -- Submenu */
  nav.main-menu ul.submenu {
    display: none1;
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    height: 0;
    overflow: hidden;
  }
  nav.main-menu ul.submenu li {
    height: 34px;
    margin: 0 0 2px 0;
  }
  nav.main-menu ul.submenu li a {
    width: 100%;
    height: 100%; 
    font-size: 0.75rem;
    font-weight:600;
    text-transform: uppercase;
    display: flex;
    padding: 0 15px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    color: var(--gray-light);
  }
  nav.main-menu ul.submenu li a:hover {
    color: var(--primary);
  }
  nav.main-menu ul.submenu li a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    background-color: white;
    opacity: 0.1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  nav.main-menu ul.submenu li a:hover::after {
    opacity: 0.2;
  }

  nav.main-menu ul.submenu li {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  nav.main-menu ul.submenu.sub-nav-animation li {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0) scale(1);
  }
  nav.main-menu ul.submenu.sub-nav-animation li:nth-child(1) {
    transition-delay: 0.1s;
  }
  nav.main-menu ul.submenu.sub-nav-animation li:nth-child(2) {
    transition-delay: 0.2s;
  }
  nav.main-menu ul.submenu.sub-nav-animation li:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  /* -- Active menu a submenu */
  nav.main-menu .active-nav {
    position: relative;
  }
  nav.main-menu .active-nav::after {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    right: 0px;
    bottom: -17px;
    border-radius: 3px;
    z-index: 1;
    background-color: var(--primary);
  }
  nav.main-menu ul.submenu li a.active-sub-nav {
    color: var(--primary);
  }

}

/* -- Phone usporiadanie */
@media screen and (max-width: 744px) {
  nav.main-menu {
    height: var(--nav-height);
    overflow: hidden;
  }
  nav .wrapper-nav {
    height: 76vh;
    flex-direction: column;
  }
  nav .wrapper-nav-top {
    width: 100%;
    height: var(--nav-height);
    border-bottom: 1px solid var(--gray-dark);
  }
  nav .wrapper-items {
    width: 100%;
    height: 100%; 
    display: flex;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
    position: relative;
    padding: var(--padding-body) 0 0 0;
  }
  nav.main-menu.menu-open {
    height: 90vh;
    z-index: 1111111;
    outline: 1000px solid var(--page-bg-color);
  }
  .menu-open .wrapper-items {
    display: flex;
    justify-content: space-between;
  }

  /* -- Hlavne menu */
  nav.main-menu ul.menu  {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  nav.main-menu .menu > li {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: 0 0 2px 0;
    background-color: var(--black);
  }
  nav.main-menu .menu > li a {
    color: var(--gray-light);
    font-weight: 700;
    padding: 25px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    position: relative;
  }

  /* -- Submenu arrow */
  nav.main-menu .submenu-arrow {
    width: 73px;
    height: 73px;
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: transparent;
    border: 0;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav.main-menu .submenu-arrow svg {
    width: 15px;
    height: 15px;
    fill: var(--gray-light);
    transition: transform 0.3s ease;
  }
  nav.main-menu .submenu-arrow.flipped svg {
    fill: var(--primary);
    transform: scaleY(-1);
  }

  /* -- Submenu */
  nav.main-menu ul.submenu {
    width: 100%;
    display: none;
  }
  nav.main-menu ul.submenu li {
    width: 100%;
  }
  nav.main-menu ul.submenu li a {
    width: 100%;
    display: block;
    color: var(--gray);
    font-weight: 400;
    padding: 20px 20px 20px 30px;
    background-color: #272727;
    font-size: 1rem;
    border-bottom: 1px solid var(--page-bg-color);
  }

  /* -- Active menu a submenu */
  nav.main-menu .menu > li a.active-nav {
    color: var(--primary);
  }
  nav.main-menu ul.submenu li a.active-sub-nav {
    color: var(--primary);
  }

  nav.main-menu .menu > li a.active-nav::after {
    content: '';
    width: 100px;
    height: 2px;
    position: absolute;
    left: 30px;
    bottom: -1px;
    background-color: var(--primary);
    z-index: 1111;
  }

  /* -- Menu phone hamburger button */
  .menu-toggle {
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 15px;
    margin: auto;
  }
  .bar {
    width: 100%;
    width: 16px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  .bar:nth-child(1) {
    top: 15px;
    background-color: var(--gray);
  }
  .bar:nth-child(2) {
    top: 20px;
    background-color: var(--gray);
  }
  .bar:nth-child(3) {
    top: 20px;
    background-color: var(--gray);
  }
  .bar:nth-child(4) {
    top: 25px;
    background-color: var(--gray);
  }
  .menu-open .bar:nth-child(1) {
    opacity: 0;
  }
  .menu-open .bar:nth-child(2) {
    transform: rotate(45deg);
    background-color: var(--primary);
  }
  .menu-open .bar:nth-child(3) {
    transform: rotate(-45deg);
    background-color: var(--primary);
  }
  .menu-open .bar:nth-child(4) {
    opacity: 0;
  }

  /* -- Phone menu social icons */
  .phone-nav-icons {
    width: 100%;
    display: flex;
    gap: var(--gap);
    padding: var(--margin-body) 0 0 0;
  }
  .phone-nav-icons span {
    display: none;
  }  
  .phone-nav-icons svg {
    width: 60px;
    height: 60px;
    display: block;
  }
  .phone-nav-icons .icon-fb-bg,
  .phone-nav-icons .icon-instagram-bg {
    fill: var(--gray);
  }
  .phone-nav-icons .icon-fb-logo,
  .phone-nav-icons .icon-instagram-logo {
    fill: var(--page-bg-color);
  }
}

.footer-menu .active-nav {
  color: var(--primary);
}






/* -- Hlavne logo */
nav .logo {
  width: 150px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
nav .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 0 8px 0;
}
nav .logo svg {
  width: 100%;
  height: auto;
  display: block;
}
nav svg .main-logo-gold {
  fill: var(--primary);
}
nav svg .main-logo-text {
  fill: var(--white);
}
nav .logo a:hover svg .main-logo-text {
  fill: var(--primary);
}




.index-animation {
  position: fixed;
  width: 100vw;
  height: 100%;
  background-color: var(--black);
  z-index: 111111111111111;
  display: flex;
  justify-content: center;
  align-items: center;
}



.logo-index-animation {
  min-width: 200px;
  width: 90vw;
  max-width: 600px;
}
.logo-index-animation .main-logo-gold {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke-width: 2;
  stroke: var(--primary);
  fill: transparent;
  animation: fillChangeStar 3s linear forwards;

}
.logo-index-animation .main-logo-text {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke-width: 2;
  stroke: var(--white);
  fill: transparent;
  animation: fillChangeText 3s linear forwards;
}

@keyframes drawLogoOutline {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillChangeStar {
  from {
    fill: transparent;
  }
  to {
    fill: var(--primary);
  }
}
@keyframes fillChangeText {
  from {
    fill: transparent;
  }
  to {
    fill: var(--white);
  }
}

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

/*                          ---                          */
/* ------------------------ Headers -------------------- */
header {
  width: 100%;
  /* height: var(--header-height); */


  min-height: -webkit-calc(100% - 64px);
  min-height: expression(100% - 64px);
  min-height: -moz-calc(100% - 64px);
  min-height: -o-calc(100% - 64px);
  min-height: calc(100% - 64px);


  /* min-height: var(--header-min-height); */
  /* max-height: var(--header-max-height); */
  padding: calc(var(--padding-body) + var(--nav-height)) var(--padding-body) -webkit-calc(var(--padding-body) / 2) var(--padding-body);
  padding: calc(var(--padding-body) + var(--nav-height)) var(--padding-body) expression(var(--padding-body) / 2) var(--padding-body);
  padding: calc(var(--padding-body) + var(--nav-height)) var(--padding-body) -moz-calc(var(--padding-body) / 2) var(--padding-body);
  padding: calc(var(--padding-body) + var(--nav-height)) var(--padding-body) -o-calc(var(--padding-body) / 2) var(--padding-body);
  padding: calc(var(--padding-body) + var(--nav-height)) var(--padding-body) var(--padding-body) var(--padding-body);
  position: relative;
}
.wrapper-header {
  width: 100%;
  height: 100%;
  display: flex;
  margin: auto;
}

/* -- Horny tien nad hlavnym obrazkom */
header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 300px;
  left: 0;
  right: 0;
  top: var(--nav-height);
  margin: auto;
  z-index: -1;
  background: -moz-linear-gradient(180deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
  background: linear-gradient(180deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
}

/* -- Hlavny obrazok a tiene */
/* .background-img {
  position: absolute;
  width: 100%;
  height: var(--header-height-img);
  min-height: var(--header-min-height);
  max-height: var(--header-max-height);
  top: 0;
  left: 0;
  z-index: -11;
} */
.background-img-pc {
  position: absolute;
  width: 100%;
  height: var(--header-height-img);
  min-height: var(--header-min-height);
  top: 0;
  left: 0;
  z-index: -11;
}
.background-img-phone {
  position: absolute;
  width: 100%;
  height: var(--header-height-img);
  min-height: var(--header-min-height);
  max-height: var(--header-max-height);
  top: 0;
  left: 0;
  z-index: -11;
}
#background-img {
  pointer-events: none;


  min-height: -webkit-calc(100% - 64px);
  min-height: expression(100% - 64px);
  min-height: -moz-calc(100% - 64px);
  min-height: -o-calc(100% - 64px);
  min-height: calc(100% - 64px);
}
.background-img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: -1px;
  left: 0;
  opacity: 1;
  z-index: 1;
  background: -moz-linear-gradient(0deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
  background: linear-gradient(0deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
}
.background-img-url {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -11;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.background-img-shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--horizontal-shadow-width);
  height: 100%;
}
.background-img-shadow::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  z-index: -1;
  background: -moz-linear-gradient(-90deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
  background: linear-gradient(-90deg, rgba(21,21,21,1) 0%, rgba(21,21,21,0) 100%);
}
.background-img-shadow::after {
  content: '';
  position: absolute;
  width: 30%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  z-index: -1;
  background-color: var(--page-bg-color);
}

/* -- Header rozlozenie */
header .wrapper-header {
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  display: flex;
  gap: var(--padding-body);
  position: relative;
  z-index: 111111;
}
header .header-left {
  width: var(--main-left-width);
  height: 100%;
}
header .header-right {
  width: var(--main-right-width);
  height: 100%;
  position: relative;
}
header .header-left-kontakt {
  width: var(--kontakt-left-width);
}
header .header-right-kontakt {
  width: var(--kontakt-right-width);
}

/* -- Header left top */
.header-left-top {
  display: flex;
  padding: 0 21px 0 0; /*  Pri zmene treba zmenit aj position right v .header-left-title h1 span::after */
}
.header-left-back {
  width: 60px;
  height: 40px;
}
.header-left-title {
  width: 100%;
  max-width: 350px;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
  position: relative;
}
.header-left-title-kontakt {
  max-width: 290px;
}

/* -- Nadpis a zlata kocka ako dekoracia */
.header-left-title h1 {
  font-size: 1.5rem;
  padding: 0 0 0 var(--gap);
}
.header-left-title h1 span {
  position: relative;
}
.header-left-title h1 span::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  right: -21px; /*  Pri zmene treba zmenit aj pading v .header-left-top */
  bottom: 6px;
  background-color: var(--primary);
}

/* -- Tlacitko spat s animaciou */
.header-left-back a {
  width: 100%;
  height: 100%;
  display: block;
}
.header-left-back svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: visible;
}
.header-left-back svg .btn-back-border {
  stroke-width: 2px;
  stroke: var(--primary);
  fill: none;
}
.header-left-back svg .btn-back-arrow {
  fill: var(--white);
  transform-origin: center;
  transition: transform 0.3s ease-in-out; 
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
}
.header-left-back:hover svg .btn-back-arrow { 
  transform: translateX(-40px); 
  -webkit-transform: translateX(-40px); 
}











/* -- Kontaktne informacie na stranke kontakt */
.header-left-kontakt-info {
  width: 280px;
  width: 100%;
  max-width: 350px;
  padding: var(--padding-half);
  margin: var(--margin-half) 0 0 0;
  position: relative;
}
.header-left-kontakt-info::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(23, 23, 23, 0.2);
}


.kontakt-items-row {
  margin: 0 0 var(--margin-half) 0;
}
.kontakt-items-row:last-child {
  margin:0;
}


.kontakt-items-row h5 {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin: 5px 0 10px 0;
}
.kontakt-items-row h4 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
  margin: 5px 0 10px 0;
}
.kontakt-items-row h4 strong {
  font-weight: 600;
}


.kontakt-value-row {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}
.kontakt-value-row:last-child {
  margin:0;
}
.align-row-top {
  align-items: flex-start;
}


.kontakt-value-row svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 15px 0 0;
}
.kontakt-value-row svg .icon-border {
  fill: var(--primary);
}
.kontakt-value-row svg .icon-address,
.kontakt-value-row svg .icon-phone,
.kontakt-value-row svg .icon-email {
  fill: var(--white);
}
.kontakt-value-row a {
  width: 100%;
  font-size: .8rem;
  line-height: 1.25rem;
  color: var(--gray-light);
}
.kontakt-value-row a strong {
  color: var(--white);
}
.kontakt-value-row a:hover,
.kontakt-value-row a:hover strong {
  color: var(--primary);
}

.kontakt-items-row .soc-icons {
  display: flex;
  gap: var(--gap);
}
.kontakt-items-row .soc-icons a {
  width: 40px;
  height: 40px;
  display: block;
}
.kontakt-items-row .soc-icons span {
  display: none;
}
.soc-icons a svg #icon-fb-bottom {
  fill: #3b5998;
}
.soc-icons a svg #bg-fb-bottom {
  fill: var(--gray-dark);
}
.soc-icons a svg #icon-insta-bottom {
  fill:url(#icon-insta-bottom_gradient);
}
.soc-icons a svg #icon-insta {
  fill: var(--white);
}
.soc-icons a:hover svg #icon-insta-bottom {
  fill: var(--primary);
}
.soc-icons a:hover svg #icon-fb-bottom {
  fill: var(--primary);
}
/* ----------------------------- ??? vymazat ikonu polohy? ???-------------------------------- */


.header-left-kontakt-position {
  display: none;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(200, 0, 255, 0.2);
}.location-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  animation: pulseAnimation 3s infinite alternate;
  transform-origin: center;
  opacity: 0.8;
}

.icon-1 {
  background-color: rgba(44, 168, 160, 0.7);
  animation-duration: 2.5s;
}

.icon-2 {
  background-color: rgba(44, 168, 160, 0.5);
  width: 30px;
  height: 30px;
  animation-duration: 3s;
}

.icon-3 {
  background-color: rgba(44, 168, 160, 0.3);
  width: 50px;
  height: 50px;
  animation-duration: 3.5s;
}

@keyframes pulseAnimation {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
@-webkit-keyframes pulseAnimation {
  0%, 100% {
    -webkit-transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.2);
    opacity: 0.5;
  }
}

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

















/* -- Header select product */
article.main-select-product {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: var(--gap);
}
.select-product-box {
  height: 100%;
  min-height: 65vh;
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.select-product-box a {
  color: var(--white);
}
.select-product-box-text {
  z-index: 11111;
  display: flex;
  height: 29px;
  left: -webkit-calc(var(--gap) + 29px); /* Ak sa zmeni height, tak sa musi zmenit aj toto */
  left: expression(var(--gap) + 29px); /* Ak sa zmeni height, tak sa musi zmenit aj toto */
  left: -moz-calc(var(--gap) + 29px); /* Ak sa zmeni height, tak sa musi zmenit aj toto */
  left: -o-calc(var(--gap) + 29px); /* Ak sa zmeni height, tak sa musi zmenit aj toto */
  left: calc(var(--gap) + 29px); /* Ak sa zmeni height, tak sa musi zmenit aj toto */
  position: absolute; 
  bottom: var(--gap);
  transform-origin: bottom left;
  transform: rotate(-90deg);
}
.select-product-box-text h3 {
  font-size: 1.25rem;
  white-space: nowrap;
}
.select-product-box-text h3::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  right: -21px;
  bottom: 9px;
  background-color: var(--primary);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.select-product-box-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.select-product-box-img img {
  filter: grayscale(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.select-product-box-img::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  background: var(--primary);
  background: -moz-linear-gradient(0deg, rgba(190,168,125,1) 0%, rgba(190,168,125,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(190,168,125,1) 0%, rgba(190,168,125,0) 100%);
  background: linear-gradient(0deg, rgba(190,168,125,1) 0%, rgba(190,168,125,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bea87d",endColorstr="#bea87d",GradientType=1);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.select-product-box-img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 1;
  background: var(--black);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
/* Hover animacie selectoru produktov */
.select-product-box:hover {
  z-index: 1;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 0, 0, 1);
}
.select-product-box:hover img {
  filter: grayscale(1);
}
.select-product-box:hover .select-product-box-img::before {
  opacity: 1;
}
.select-product-box:hover .select-product-box-img::after {
  opacity: 0;
}
.select-product-box:hover h3 ::after {
  background-color: var(--black);
}







/* -- Header accordion main */
article.main-accordion {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* -- Header accordion button */
.btn-accordion {
  width: 100%;
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.25rem;
  text-align: left;
  border: none;
  /* background-color: var(--black); */
  background-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  display: flex;
  padding: var(--gap);
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.btn-accordion::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(23, 23, 23, 0.2);
}
.btn-accordion-active, .btn-accordion:hover {
  color: var(--white);
  background-color: var(--primary);
}
.btn-accordion:hover .btn-accordion-arrow svg {
  fill: var(--white);
}
.btn-accordion-text {
  width: 100%;
  flex: 1;
  padding: 0 var(--gap) 0 0;
}
.btn-accordion-arrow {
  width: 12px;
  height: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateX(0deg);
}
.btn-accordion-arrow svg {
  width: 100%;
  height: auto;
  display: block;
  fill: var(--gray-light);
}
.btn-accordion.accordion-active .btn-accordion-arrow {
  transform: rotateX(180deg);
}

/* -- Header accordion text panel */
.accordion-panel {
  max-height: 0;
  background-color: white;
  overflow: hidden;
  color: var(--black);
}
.accordion-panel p {
  padding: var(--padding-accordion-panel);
}





/* -- Header kontakt form */
article.kontakt-form {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  padding: var(--padding-half);
  margin: -webkit-calc(var(--padding-half) + 40px) 0 0 0;
  margin: expression(var(--padding-half) + 40px) 0 0 0;
  margin: -moz-calc(var(--padding-half) + 40px) 0 0 0;
  margin: -o-calc(var(--padding-half) + 40px) 0 0 0;
  margin: calc(var(--padding-half) + 40px) 0 0 0;
  position: relative;
}
article.kontakt-form::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(23, 23, 23, 0.2);
}
.kontakt-form-row-phone-mail {
  display: flex;
  width: 100%;
  gap: var(--gap);
  border: 0;
}
.kontakt-form-row-message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.kontakt-form-row-phone-mail label,
.kontakt-form-row-message label {
  display: none;
}
.kontakt-form-row {
  width: 100%;
}
.kontakt-form-row-phone-mail input,
.kontakt-form-row-message textarea {
  padding: 15px;
  position: relative;
  font-size: 1rem;
}
.kontakt-form-row-phone-mail input {
  width: 100%;
  margin: 0;
  display: block;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: var(--gray);
  border-bottom: 1px solid var(--white);
  background-color: transparent;
}
.kontakt-form-row-message textarea {
  width: 100%;
  margin: 0;
  display: block;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: var(--gray);
  border-bottom: 1px solid var(--white);
  background-color: transparent;
}

.kontakt-form-row-phone-mail input::placeholder {
  position: absolute;
  left: 0;
}
.kontakt-form-row-message textarea::placeholder {
  position: absolute;
  left: 0;
  bottom: 15px;
}
.kontakt-form-row-phone-mail input:focus,
.kontakt-form-row-message textarea:focus {
  color: var(--white);
  border-bottom: 1px solid var(--primary);
  background-color: var(--primary);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.kontakt-form-row-phone-mail input::placeholder,
.kontakt-form-row-message textarea::placeholder {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.kontakt-form-row-phone-mail input:focus::placeholder,
.kontakt-form-row-message textarea:focus::placeholder {
  color: transparent;
}

/* Form rows */
.form-row-checkbox-button {
  width: 100%;
  display: flex;
}

/* Form rows checkbox */
.kontakt-form-row-checkbox {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 0.75rem;
}
.kontakt-form-row-checkbox label {
  width: 100%;
  margin: 0 0 0 10px;
  cursor: pointer;
}
.kontakt-form-row-checkbox label:hover {
  color: var(--primary);
}
.checkbox-input {
  display: none;
}
.checkbox-icon {
  width: 20px; 
  height: 20px;
  position: relative;
  cursor: pointer;
}
.checkbox-icon svg {
  fill: var(--primary);
}
.checkbox-icon svg .chech {
  fill: transparent;
}
.checkbox-icon svg .chech-border {
  fill: transparent;
  stroke: transparent;
  stroke-width: 3;
}
.checkbox-icon svg .border {
  stroke: var(--white);
  fill: transparent;
}
.checkbox-input:checked + .checkbox-icon svg .chech {
  fill: var(--primary);
}
.checkbox-input:checked + .checkbox-icon svg .chech-border {
  fill: var(--black);
  stroke: var(--black);
  stroke-width: 3;
}
.checkbox-input:checked + .checkbox-icon svg .border {
  stroke: var(--primary);
}

/* Form rows button */
.kontakt-form-row-button button {
  height: 40px;
  padding: 0 40px;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--primary);
  position: relative;
}
.kontakt-form-row-button button:hover {
  color: var(--black);
  background-color: var(--white);
}
.kontakt-form-row-button button:hover svg {
  fill: var(--primary);
}
.kontakt-form-row-button button svg {
  width: 43px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  fill: var(--white);
  transform: translateX(-20px);
}

/* -- Header right text */
article.main-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  padding: var(--padding-half);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
article.main-text::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(23, 23, 23, 0.2);
}
.custom-scrollbar {
  width: -webkit-calc(100% + 2px);
  width: expression(100% + 2px);
  width: -moz-calc(100% + 2px);
  width: -o-calc(100% + 2px);
  width: calc(100% + 2px);
  height: 100%;
  overflow: auto;
  padding: 0 var(--padding-half) 0 0;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 2px;
  outline: 1px solid var(--primary);
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--white);
  outline: 1px solid var(--white);
}
.custom-scrollbar::-webkit-scrollbar-track {
  background-color: var(--gray-dark);
}

/* -- Text styling */
.main-text h4 {
  font-size: 1.25rem;
  color: var(--primary);
}
.main-text h5 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.main-text p {
  color: var(--white);

  margin: 0 0 var(--gap) 0;
}
.main-text p:last-child {
  margin: 0;
}
.main-text ul {
  margin: 0 0 var(--gap) 0;
}
.main-text ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.main-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background-color: var(--primary);
}
.divider-padding-half {
  width: 100%;
  height: var(--padding-half);
  background-color: transparent;
}

/* -- Header carousel */
section.main-carousel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: var(--gap);
}
section.main-carousel a {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  background-color: var(--black);
  position: relative;
}
section.main-carousel a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.no-record { 
  text-align: center;
  grid-area: 1 / 1 / 2 / 5; 
  display: none;
}
section.main-carousel a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  background: -moz-linear-gradient(0deg, rgba(190,168,125,1) 0%, rgba(190,168,125,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(190,168,125,1) 0%, rgba(190,168,125,0) 100%);
  background: linear-gradient(0deg, rgba(190,168,125,1) 0%, rgba(190,168,125,0) 100%);
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
section.main-carousel a:hover::after {
  opacity: 1;
  outline: 2px solid var(--primary);
}

/* -- Header sponzori */
section.main-sponsors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: var(--gap);
  margin: var(--margin-half) 0 0 0;
}
.sponsors_box {
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsors_box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
}
.sponsors_box a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(23, 23, 23, 0.2);
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sponsors_box a:hover::before {
  background-color: var(--primary);
}

/* -- Sponzori custom color */
.sponsors_box svg {
  width: 80%;
  max-width: 120px;
  height: 80%;
  max-height: 60px;
  display: block;
  fill: var(--gray);
}

/* -- Sponzori custom color */
.sponsors_box img {
  max-width: 60%;
  height: auto;
}
svg.logo-robus {
  fill: #ee2e24;
}
svg.logo-witzenmann {
  fill: #034791;
}
svg.logo-technogym .logo {
  fill: var(--black);
}
svg.logo-technogym .bg {
  fill: #ffff7d;
}
svg.logo-slovenska-posta .logo {
  fill: #022e82;
}
svg.logo-slovenska-posta .bg {
  fill: #fcb814;
}
svg.logo-weishaupt {
  fill: #cc0000;
}
svg.logo-doprastav .logo {
  fill: #013d7f;
}
svg.logo-doprastav .bg {
  fill: #92948d;
}

svg.logo-renoving .logo {
  fill: #05a34f;
}
svg.logo-renoving .bg {
  fill: var(--black);
}


/* -- Header custom settings */
article.text-min-height {
  min-height: 400px;
  height: 70vh;
  max-height: 500px;
}

/* -- Hlavne strankovanie */
.pagination {
  margin: var(--margin-half) 0 0 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.pagin-wrapper {
  display: flex;
  gap: 5px;
  font-weight: 300;
}
.pagin-wrapper a {
  width: 40px;
  height: 40px;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}
.pagin-wrapper a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: -1;
  opacity: 0.3;
}
.pagin-wrapper a:hover {
  font-weight: 700;
  color: var(--primary);
  background-color: var(--white);
}
.pagin-wrapper div.active {
  width: 40px;
  height: 40px;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary);
}
.arrow-left a,
.arrow-right a {
  width: 40px;
  height: 40px;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}
.arrow-left a::before,
.arrow-right a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: -1;
  opacity: 0.1;
}
.arrow-left a:hover,
.arrow-right a:hover {
  color: var(--primary);
  background-color: var(--white);
}








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

/*                          ---                          */
/* ------------------------ Header INDEX ----------------------- */



.wrapper-index {
  width: 100%;
  height: 100%;
  min-height: var(--header-min-height);


  min-height: -webkit-calc(100% - 64px);
  min-height: expression(100% - 64px);
  min-height: -moz-calc(100% - 64px);
  min-height: -o-calc(100% - 64px);
  min-height: calc(var(--header-min-height) - 76px);


  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* -- Boxy s textami na indexe */
.index-change-area {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* -- Box s textom a logo */
.index-default-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.index-main-logo svg {
  min-width: 150px;
  width: 70vw;
  max-width: 500px;
}
.index-main-logo svg .main-logo-gold {
  fill: var(--primary);
}
.index-main-logo svg .text {
  fill: var(--white);
}
.index-main-text {
  max-width: 750px;
  margin: var(--margin-half) 0 0 0;
}
.index-main-text h3 {
  color: var(--white);
  text-align: center;
  font-size: clamp(16px, 4vw, 2rem);
  line-height: clamp(1.5rem, 6vw, 3rem);
  text-transform: uppercase;
  font-weight: 500;
}

/* -- Box s textom folie */
.index-o-nas-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}

/* -- Box s textom o nas */
.index-folie-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}

/* -- Box s textom reklama */
.index-reklama-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.index-default-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-o-nas-box,
.index-folie-box,
.index-reklama-box {
  border: 1px solid var(--primary);
  padding: var(--padding-half);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}




.index-o-nas-box::after,
.index-folie-box::after,
.index-reklama-box::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: auto;
  background-color: var(--page-bg-color);
  opacity: 0.5;
  z-index: -1;
}


.index-default-box h2,
.index-o-nas-box h2,
.index-folie-box h2,
.index-reklama-box h2 {
  text-transform: uppercase;
  font-size: clamp(16px, 2rem, 3rem);
  text-align: center;
  display: block;
  margin: 0 0 var(--gap) 0;
}
.index-default-box h2 a,
.index-o-nas-box h2 a,
.index-folie-box h2 a,
.index-reklama-box h2 a {
  color: var(--primary);
}
.index-default-box h3,
.index-o-nas-box h3,
.index-folie-box h3,
.index-reklama-box h3 {
  max-width: 600px;
  color: var(--white);
  text-align: center;
  font-size: clamp(16px, 1.25rem, 1.5rem);
  line-height: clamp(1.5rem, 2rem, 2.5rem);
  text-transform: uppercase;
  font-weight: 500;
}



.index-default-box {
  display: none;
  opacity: 0;
}
.index-o-nas-box {
  display: none;
  opacity: 0;
}
.index-folie-box {
  display: none;
  opacity: 0;
}
.index-reklama-box {
  display: none;
  opacity: 0;
}
.active-box {
  display: block;
  opacity: 1;
}







/* -- Buttony na indexe */
.index-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1111;
  gap: var(--margin-half);
}
.index-buttons button {
  max-width: 225px;
  width: 33%;
  height: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid var(--primary);
  cursor: pointer;
  opacity: 0;
  opacity: 1;
}
.index-buttons button:hover {
  background-color: var(--primary);
}
.index-buttons button.active {
  background-color: var(--primary);
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ Footer --------------------- */
footer {
  width: 100%;
  padding: 0 var(--padding-body);
}
footer .wrapper-footer {
  width: 100%;
  max-width: var(--max-width);
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  /* justify-content: space-between;
  align-content: space-between; */
  padding: 10px 0 14px 0;
  z-index: 1111111;
}
footer .wrapper-footer::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-color: var(--white);
  z-index: -1;
  opacity: 0.2;
}
footer .wrapper-footer::after {
  content: '';
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: auto;
  background-color: var(--primary);
  z-index: -1;
}

/* -- Footer copyright */
footer .copyright {
  width: 215px;
  display: flex;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray-light);
}
footer .copyright a {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0 5px;
}
footer .copyright a:hover {
  color: var(--primary);
}

/* -- Footer navigation */
footer nav.footer-menu {
  flex: 1;
  display: flex;
  flex-direction: row;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
footer nav.footer-menu ul {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}
footer nav.footer-menu ul li {
  position: relative;
}
footer nav.footer-menu ul li::after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  right: -22px;
  bottom: 0px;
  margin: auto;
  background-color: var(--gray);
}
footer nav.footer-menu ul li:last-child:after {
  width: 0;
  height: 0;
  background-color: transparent;
}
footer nav.footer-menu ul li a {
  display: block;
  padding: 5px 10px;
  color: var(--gray-light);
}
footer nav.footer-menu ul li a:hover {
  color: var(--primary);
}

/* -- Footer autor */
footer .autor {
  width: 215px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.75rem;
}
footer .autor span {
  color: var(--gray-light);
  font-weight: 300;
  margin: 0 10px 0 0;
}
footer .autor:hover span {
  color: var(--gray-light);
}

/* -- Autor logo + animation */
footer .navaron-logo {
  width: 100px;
  height: auto;
  display: block;
  fill: #545454;
  display: none;
}
footer .autor a:hover .navaron-logo {
  fill: #bafd00;
}
footer .jakubca-logo {
  width: 40px;
  height: auto;
  display: block;
}
footer .jakubca-logo .logo_bg {
  fill: var(--autor-bg-color);
}
footer .jakubca-logo .logo_aj {
  fill: var(--autor-aj-color);
  /* animation: pulse-autor-logo 4s infinite ease-in-out; */
}
footer .autor a:hover .jakubca-logo .logo_bg {
  fill: var(--autor-bg-color-hover);
}
footer .autor a:hover .jakubca-logo .logo_aj {
  fill: var(--autor-aj-color-hover);
}
@keyframes pulse-autor-logo {
  0% {
    /* transform: scale(1); */
  }
  50% {
    /* fill: var(--autor-primary); */
    /* transform: scale(1.05); */
  }
  100% {
    /* transform: scale(1); */
  }
}
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ xxx ------------------------ */
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ xxx ------------------------ */
/* ----------------------------------------------------- */

/*                          ---                          */
/* ------------------------ Responsive ----------------- */
@media screen and (min-width: 1241px) {  
}
@media screen and (max-width: 1240px) {




  /* -- Header sponzori */
  section.main-sponsors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /* -- Footer */
  footer .wrapper-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  footer .copyright { 
    grid-area: 2 / 1 / 3 / 2;
  }
  footer nav.footer-menu { 
    grid-area: 1 / 1 / 2 / 3;
  }
  footer .autor { 
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }
}
@media screen and (max-width: 744px) {



  .header-left-title {
    max-width: none;
  }

  .index-default-box,
  .index-o-nas-box,
  .index-folie-box,
  .index-reklama-box {
    border: 0px solid var(--primary);
    padding: var(--padding-half);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  .index-default-box h2,
  .index-o-nas-box h2,
  .index-folie-box h2,
  .index-reklama-box h2 {
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    display: block;
    margin: 0 0 var(--gap) 0;
  }
  .index-default-box h3,
  .index-o-nas-box h3,
  .index-folie-box h3,
  .index-reklama-box h3 {
    max-width: 600px;
    color: var(--white);
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* -- Produkt grid count */
  section.main-carousel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* -- Header left and right */
  .wrapper-header {
    display: flex;
    flex-direction: column;
  }
  /* -- Header margin top na mobile aby bolo vidiet lavy obrazok */
  header .header-left {
    padding: 0 0 var(--img-header-height-phone) 0;
  }
  #background-img {
    pointer-events: none;
  }
  .background-img-shadow::before,
  .background-img-shadow::after {
    width: 0;
    height: 0;
    background-color: transparent;
    display: none;
  }
  /* -- Header select product */
  article.main-select-product {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .select-product-box {
    width: 100%;
    height: 25vh;
    min-height: auto;
  }
  .select-product-box-text {
    align-items: flex-end;
    transform: rotate(0deg);
    left: var(--gap);
  }
  .select-product-box-text h2::after {
    bottom: 4px;
  }
  /* -- Header right text */
  article.main-text {
    overflow: visible;
  }
  .custom-scrollbar {
    height: auto;
    overflow: visible;
    padding: 0;
  }
  article.text-min-height {
    min-height: none;
    height: auto;
    max-height: none;
  }
  /* -- Header sponzori */
  section.main-sponsors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* -- Footer */
  footer .wrapper-footer {
    padding: 0 0 4px 0;
  }
  footer .wrapper-footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
  footer .copyright { 
    width: 100%;
    justify-content: center;
    grid-area: 2 / 1 / 3 / 2;
    padding: 50px 0;
    position: relative;
  }
  footer .copyright::before {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 23px;
    margin: auto;
    background-color: var(--gray-dark);
  }
  footer .copyright::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    margin: auto;
    background-color: var(--gray-dark);
  }
  footer nav.footer-menu { 
    width: 100%;
    justify-content: center;
    grid-area: 1 / 1 / 2 / 2;
    padding: 20px 0 0 0;
  }
  footer .autor { 
    width: 100%;
    justify-content: center;
    grid-area: 3 / 1 / 4 / 2;
  }
  footer nav.footer-menu ul {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 10px 0 0 0;
  }
  footer nav.footer-menu ul li {
    font-size: 1rem;
  }
  footer nav.footer-menu ul li::after {
    width: 8px;
    height: 8px;
    left: 0;
    right: 0;
    top: auto;
    bottom: -8px;
    background-color: var(--gray);
  }
  footer nav.footer-menu ul li a {
    padding: 15px 10px;
  }
  footer .autor {
    padding: 0 0 -webkit-calc(var(--padding-body) / 2) 0;
    padding: 0 0 expression(var(--padding-body) / 2) 0;
    padding: 0 0 -moz-calc(var(--padding-body) / 2) 0;
    padding: 0 0 -o-calc(var(--padding-body) / 2) 0;
    padding: 0 0 calc(var(--padding-body) / 2) 0;
  }
}
@media screen and (max-width: 428px) {
  article.kontakt-form {
    margin: 0;
  }

  /* -- Produkt grid count */
  section.main-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* -- Buttony na indexe */
  .index-buttons button {
    width: 100%;
    max-width: none;
  }
  .index-buttons {
    flex-direction: column;
  }
  header .header-left-kontakt-info {
    max-width: none;
    margin: var(--img-header-height-phone) 0 0 0;
  }
  header .header-left {
    padding: 0 0 var(--img-header-height-phone) 0;
  }
  header .header-left-gallery {
    padding: 0;
  }

  /* -- Hlavne strankovanie */
  .pagination {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 20px;
  }
  .arrow-left { 
    grid-area: 1 / 1 / 2 / 2; 
    display: flex;
    justify-content: flex-end;
  }
  .pagin-wrapper { 
    grid-area: 2 / 1 / 3 / 3; 
    justify-content: center;

  }
  .arrow-right { 
    grid-area: 1 / 2 / 2 / 3; 
  }

  /* Kontakt form */
  .form-row-checkbox-button {
    flex-direction: column;
  }
  .kontakt-form-row-button {
    margin: var(--gap) 0 0 0;
    display: flex;
    justify-content: center;
  }
  .kontakt-form-row-phone-mail {
  flex-direction: column;
  }
}
@media only screen and (max-width: 320px) {
  /* -- Header sponzori */
  section.main-sponsors {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/* ----------------------------------------------------- */
/* 
.background-img::after {
  background-color: #ff000082;
  border: 1px solid #ff0000ff;
}
.background-img-shadow::before {
  background-color: #00ddff82;
  border: 1px solid #00ddff;
}
.background-img-shadow::after {
  background-color: #bafd0082;
  border: 1px solid #bafd00;
} */