/* Prednastavene farby pouzitelne neskor pomocou var(--farba) */
:root {
    --bgdark: #1a1a24;
    --bgdarker: #171620;
    --fontwhite: #dee0e6;
    --fontcolor: #3ce9c1;
    --fontcolorshadow: hsla(166, 80%, 57%, 0.123);
    --fontcolor2: #3cc9e9;
    --fontcolor2shadow: hsla(191, 80%, 57%, 0.226);
    --fontcolor3: rgb(174, 40, 236);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: var(--bgdarker);
    color: var(--fontwhite);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Vlastny scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border: 5px solid #232943;
    box-shadow: inset 0 0 2.5px 2px var(--fontcolor);
}
  
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        90deg, var(--fontcolor) 0%, var(--fontcolor2) 100%);
    border-radius: 0.2em;
}

/* Vlastna farba pre oznacenie textu */
::selection {
    background-color: var(--fontcolor2shadow);
}

/* Nastavenie navigacneho baru */
#navitems a {
    color: var(--fontwhite);
}

.text-logo {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
    flex: 1 0 auto;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    padding: 0.1em 0;
    padding-right: 55vw;
}

.text-logo:hover {
    letter-spacing: -0.15em;
    margin-right: 0.225em;
    margin-left: 0.225em;
    text-shadow: rgba(255, 255, 255, 0.459) 1px 0 0.5em;
}

#topnav {
    width: 100%;
    background-color: var(--bgdarker);
    position: sticky;
    top: 0;
    border-bottom: solid 1px var(--fontcolor2);
    box-shadow: 0em 1em 2em var(--fontcolor2shadow);
    z-index: 100;
    display: flex;
}

#navitems {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
}

#navitems a.link {
    flex: 1 0 auto;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    padding: 1em 0;
}

#navitems a.link:hover {
    text-shadow: var(--fontwhite) 1px 0 0.5em;
}

#navitems label,input {
    display: none;
}

.link:before {
  transition: 0.4s ease;
  position: absolute;
}

.link:before {
  top: 0;
  display: block;
  height: 1px;
  width: 0%;
  content: "";
  background-color: var(--fontcolor2);
}

.link:hover:before {
  opacity: 1;
}

/* Burger v mobilnej verzii */
.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--fontwhite);
    margin: 5px;
}

.burger {
    display: none;
    margin: 0.7em;
    margin-right: 7.5%;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.bar-active {
    transform: translateY(0%) !important;
}

.burger-active {
    transform: rotate3d(1, 1, 1, 360deg);
}

/* Zmena elementov podla sirky okna */
@media only screen and (max-width: 1200px) {
    .text-logo {
        padding-right: 25vw;
    }
    .text-logo:hover {
        letter-spacing: -0.15em;
        margin-right: 0.225em;
        margin-left: 0.225em;
        text-shadow: rgba(255, 255, 255, 0.459) 1px 0 0.5em;
    }
}

@media only screen and (max-width: 640px) {
    .demo-footer {
        top: 1800px !important;
    }
}

@media only screen and (max-width: 768px) {
    .burger {
        display: block;
        margin-top: 15px;
    }

    #navitems a:before {
        display: none !important;
    }

    #navitems {
        background-color: rgb(27, 28, 36);
        box-shadow: rgb(0, 0, 0) 0px 0px 10px;
        border: solid 1px var(--fontcolor2);
        border-radius: 0.5em;
        box-sizing: border-box;
        position: absolute;
        flex-direction: column;
        margin-top: 3em;
        width: 50%;
        right: 25%;
        transform: translateY(-150%);
    }

    

    .clickable2 {
        height: 50% !important;
    }
}

@media only screen and (max-width: 1002px) {
    .showcase {
        flex-direction: column;
    }
}

/* index.html video */
.hero-main {
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 30em;
}

.hero-vid {
    width: 100vw;
    height: 30em;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6);
}

.overlay {
    position: absolute;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 99999;
    width: 50%;
}
.onasteam {
	color: white;
	font-size: 45px;
    text-shadow: var(--bgdarker) 0px 0px 10px;
    font-weight: 800;
}
.team {
  font-size: 45px;
  color: black;
  text-align: center;
}
.txtlava{
	color: black;
	text-align: left;
	padding: 1.2em;
	font-size: 1.5em;
	float: left;
	width: 640px;
}
.strong{
	color: #00ccaa;
	
}
.hero-img {
    width: 100vw;
    height: 30em;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.7);
}
.txtstred{
	color: black;
	text-align: center;
	padding: 1.2em;
	font-size: 1.5em;
	width: 650px;
}
.txtstred-alt{
	color: black;
	text-align: center;
	padding: 1.2em;
	font-size: 1.5em;
}
.instapp {
  width: 32%;
  padding: 0.6%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  
}
.instafoto::after {
  content: "";
  clear: both;
  display: table;
}
.instafoto {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

/* Zmena elementov podla sirky okna */
@media only screen and (max-width: 867px) {
    .instafoto {
        flex-direction: column;
        align-items: center;
    }
    .instapp {
        width: 90%;
    }
  }
.instadiv {
	margin: 0 auto;
}
.text {
  float: left;
}
@media only screen and (max-width: 590px) {
    .poradie {
        flex-direction: column;
    }
  }
.poradie {
	display: flex;
    width: 100%;
}
.profilovka {
  border: thick;
  border-radius: 50%;
  width: 55%;
  border-color: black;
}
.pismenka {
	color: black;
	text-align: center;
	padding: 1.2em;
	font-size: 1.5em;
	width: 640px;
}
.footer_banner {
	padding-top: 20px;
	padding-bottom:20px;
	margin-bottom: 0px;
	background-color:black;
	background-repeat: repeat;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color:black;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
.pokemon {
	text-align: center;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 18px;
	color: white;
}
.ikonky {
	text-align: center;
	padding: 0.5em;
	
}
.ikonky a{
	color: white;
	font-size: 15pt;
	margin: auto 0.25em;
	
}
.ikonky a:hover{
	color: white;
}
.spodnytxt {	
	color: black;
	text-decoration: none;
}
.spodnytxt a {
	color: black;
	text-decoration: none;
}
.spodnytxt :hover{
	color: black !important;
}
.mb-0 {
	text-align: center;
}
.googlemaps {
	width: 100%;
	padding: 1em;
	margin: 0 auto;
}
.footer-black {
	background-color: var(--bgdarker) !important;
	color: var(--fontwhite) !important;
}
.page-footer {
	background-color: var(--bgdarker) !important;
	color: var(--fontwhite);
}

.overlay p {
    margin-top: 0;
    font-size: 2em;
    font-weight: 800;
}

.shadowF {
    text-shadow: var(--bgdark) 4px 4px 10px;
}

.overlay a {
    color: white;
    text-decoration: none;
    padding: 1em;
    border-radius: 1em;
    border: solid var(--fontcolor2) 2px;
    box-shadow: var(--fontcolor2) 0 0 2em;
    transition: 0.2s;
    font-weight: 600;
}

.overlay a:hover {
    color: white;
    text-decoration: none;
    background-color: var(--fontcolor2shadow);
    box-shadow: var(--fontcolor2) 0 0 1.25em;
}

.bold-font {
    font-weight: 800;
}

.overlay .bold-font {
    background: var(--fontcolor);
    background: linear-gradient(90deg, var(--fontcolor) 0%, var(--fontcolor2) 35%, var(--fontcolor3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% auto;
    animation: hue 3s ease-in-out infinite alternate;
}

@keyframes hue {
  from {
    -webkit-filter: hue-rotate(90deg);
  }
  to {
    -webkit-filter: hue-rotate(-90deg);
  }
}

.showcase-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("/img/astronomy.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.showcase {
    display: flex;
    flex-direction: row;
    width: 80%;
    line-height: 20pt;
    align-items: center;
    margin: 2em 0;
}

.showcase * {
    margin: 1em;
}

.showcase h1 {
    margin: 0.5em;
}

.showcase img {
    align-self: center;
    cursor: pointer;
    box-shadow: 0 0 2em var(--fontcolorshadow);
}

/* Zmena elementov podla sirky okna */
@media screen and (max-width: 1000px) {
    .showcase {
        flex-direction: column !important;
    }
    #forzoom {
        width: 100% !important;
    }
}

.shwcs2 {
    flex-direction: row-reverse;
    margin-top: 0;
}

.demo-bg video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    filter: hue-rotate(0deg);
    z-index: 0;
    transition: 1s;
}

.demo-bg {
    height: auto;
    display: block;
}

.demo-bg section {
    z-index: 10;
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: 4em;
    color: var(--fontwhite);
    text-shadow: #171620 0px 0px 10px;
}

.audios {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 1em;
    justify-content: center;
}

.player {
    position: relative;
    max-width: 20em;
    padding: 10px;
    border-radius: 4em;
}

.player img {
    display: block;
    flex-basis: 100%;
    box-sizing: border-box;
    max-width: 20em;
    border-radius: 2em;
    transition: 0.2s;
}

.player i {
    position: absolute;
    top: 50%; 
    right: 50%;
    transform: translate(52.5%,-75%);
    margin: 0 auto;
    border-radius: 1em;
    color: var(--fontwhite);
    font-size: 6em;
    text-align: center;
    transition: 0.2s;
    pointer-events: none;
}

.player img {
    border-radius: 0.75em;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
    max-width: 100%;
}

.player img {
    cursor: pointer;
}

.bgVidDim {
    filter: hue-rotate(180deg) !important;
}

.bg-div {
    filter: blur(5px);
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url(/img/neon-loop_moment.jpg);
}

.clickable {
    position: fixed;
    top: 50%; 
    right: 50%;
    z-index: 500;
    transform: translate(50%,-50%);
    width: 80vw;
    max-width: 60em;
    box-shadow: #0c0c0c 0em 0em 100em;
    display: none;
}

.clickable2 {
    position: fixed;
    top: 50%; 
    right: 50%;
    z-index: 500;
    transform: translate(50%,-50%);
    width: auto;
    height: 70vh;
    box-shadow: #0c0c0ca6 0em 0em 100em;
    display: none;
}

.fa-times {
    position: fixed;
    cursor: pointer;
    top: 10%; 
    right: -50%;
    font-size: 35pt;
    z-index: 600;
    transform: translate(50%,-50%);
}

.pre-footer {
    text-align: center;
    width: 80%;
    margin: 4em 10%;
    background-color: var(--bgdarker);
}

.pre-footer h2 {
    font-weight: 800;
}

.pre-footer a {
    color: white;
    text-decoration: none;
    padding: 1em;
    border-radius: 1em;
    border: solid var(--fontcolor2) 2px;
    box-shadow: var(--fontcolor2) 0 0 1em;
    transition: 0.2s;
    font-weight: 600;
    margin: 1em;
}

.pre-footer a:hover {
    box-shadow: var(--fontcolor2) 0 0 1.5em;
}

.secondA {
    background-color: var(--fontcolor2);
}

.choose-product {
    display: flex;
    width: 100%;
    padding: 5%;
    justify-content: center;
    align-items: center;
    background-image: url(/img/bgp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product {
    width: 30%;
    max-width: 20em;
    margin: 0 1%;
    text-align: center;
    background-color: var(--fontwhite);
    color: var(--bgdarker);
    border: solid var(--fontcolor2) 2px;
    border-radius: 2em;
    padding: 4% 2%;
    box-shadow: 0em 0em 1em var(--fontcolor2shadow);
}

.product img {
    width: 100%;
}

.product a {
    background-color: var(--fontcolor2);
    font-weight: 800;
    text-decoration: none;
    padding: 0.8em 2em;
    color: var(--fontwhite);
    border-radius: 1em;
}

.product hr {
    color: rgba(230, 230, 230, 0.568);
    border-radius: 10px;
}

.product h3 {
    margin-bottom: 1em;
}

.product h1 {
    width: 60%;
    margin-left: 20%;
}

#order {
    display: flex;
    margin: 10%;
    width: 80%;
    justify-content: space-around;
}

#order form {
    width: 60%;
}

/* Kopia produktu - zrkadla */
.mirror {
    width: 40%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
    background-color: var(--fontwhite);
    color: var(--bgdarker);
    border-radius: 0.25em;
}

.mirror img {
    width: 100%;
}

a:hover {
    color: var(--fontwhite) !important;
}

/* Zmena elementov podla sirky okna */
@media screen and (max-width: 751px) {
    .choose-product {
        flex-direction: column;
    }
    .product {
        width: 80%;
        margin: 1em;
    }
    #order {
        flex-direction: column-reverse;
        width: 80%;
    }
    #order form {
        width: 105%;
    }
    #order .mirror {
        width: 50%;
        margin-left: 25%;
        margin-bottom: 1em;
    }
}

.about-us-main {
    background-color: whitesmoke;
}

#order-anchor {
    transform: translateY(-1vw);
}

.demo-footer {
    position: absolute;
    top: 1050px;
    width: 100%;
}

.small-width {
    width: 80%;
    margin-left: 10%;
}

.blocker {
    height: 100%;
    width: 100%;
    position: absolute;
    display: none;
}

/* Zmena elementov podla sirky okna */
@media screen and (max-width: 400px) {
    .firstA {
        display: block;
    }
    .secondA {
        display: block;
    }
}

/* Slider */
.slideshow {
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    margin: auto;
}

.photo-s {
    display: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
  
.photo-s {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2.5s;
    animation-name: fade;
    animation-duration: 2.5s;
}
  

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
  
@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
