/* Globalni styly */

* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 15px;
    line-height: initial;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    cursor: default;
    max-width: 100%;
}


html {
    background-color: #fff;
    width: 100%;
    height: 100%;
}

head {
    display: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    opacity: 0;
    min-width: 100%;
    min-height: 100%;
    padding: 20px 0;

    -webkit-animation-name: usvit;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;

    -moz-animation-name: usvit;
    -moz-animation-duration: 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: forwards;

    -ms-animation-name: usvit;
    -ms-animation-duration: 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: ease-in-out;
    -ms-animation-fill-mode: forwards;

    -o-animation-name: usvit;
    -o-animation-duration: 0.5s;
    -o-animation-iteration-count: 1;
    -o-animation-timing-function: ease-in-out;
    -o-animation-fill-mode: forwards;

    animation-name: usvit;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

}


nav,header,footer,main,article,aside,section,figure,figcaption{
    display: block;
}

@-webkit-keyframes usvit{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes usvit{
    0% {-moz-opacity: 0;}
    100% {-moz-opacity: 1;}
}
@-sm-keyframes usvit{
    0% {-moz-opacity: 0;}
    100% {-moz-opacity: 1;}
}
@-o-keyframes usvit{
    0% {-moz-opacity: 0;}
    100% {-moz-opacity: 1;}
}
@keyframes usvit{
    0% {opacity: 0;}
    100% {opacity: 1;}
}




a, a *{
    cursor: pointer;
    color: steelblue;
    text-decoration: none;
}




/* homepage */
.santech{
    margin: 5vw auto;
    text-align: center;
}
.santech span{
    font-size: 10vw;
    font-size: min(max(36px, 10vw),160px);
}
.santech span:nth-child(1){
    color: #000;
}
.santech span:nth-child(2){
    color: #555;
}
.santech div{
    font-stretch: semi-expanded;
    font-size: 3vw;
    font-size: min(max(18px, 3.6vw),46px);
    color: #555;
}
/* homepage */






.vnitrek{
    width: 999px;
    max-width: 100%;
    padding: 0px 10px 0px 10px;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
}


.vnitrek a{
    width: 240px;
    height: 300px;
    border-radius: 20px;
    background-color: #eee;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.2s;
}

.vnitrek a span{
    padding: 20px;

}

.vnitrek a p{
    font-size: 24px;
    text-align: center;
    line-height: 44px;
}
.vnitrek a p.upper{
    text-transform: uppercase;
    font-weight: bold;
}

.vnitrek a[href*="eshop"]{
    background: #eee url(img/basket-start.svg) scroll no-repeat center 30%/75px auto;
}
.vnitrek a[href*="vystavy"]{
    background: #eee url(img/exhibition.svg) scroll no-repeat center 30%/90px auto;
}
.vnitrek a[href*="cenot"]{
    background: #eee url(img/pricing.svg) scroll no-repeat center 30%/110px auto;
}
.vnitrek a:hover{
    background-color: #ddd;
    box-shadow: 0 0 5px -1px #666;
}