@charset "UTF-8";
/* CSS Document */

*, *:before, *:after{
  -webkit-box-sizing: border-box;
  -moz-box-sizing:border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font: 1rem/1.2 var(--bs-font-sans-serif);
	font-family: 'IBM Plex Mono', sans-serif;
}


a:hover {
    color: #999;
}


.carousel-indicators {
  position: static;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 300px;
    height: 100%;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .8;
    transition: opacity .6s ease;
}


h1 {font-size: 1.3em;text-transform: uppercase; font-weight: 700;}
h2 {font-size: 3.3em;text-transform: uppercase;font-weight: 500;}
h3 {font-size: 2.8em;text-transform: uppercase; font-weight: 300;}
h4 {font-size: 2.5em;text-transform: uppercase; font-weight: 500;}
h5 {font-size: 1.3em;text-transform: normal; font-weight: 300;}
h6 {font-size: 1.8em;text-transform: uppercase; font-weight: 300;color: white;}

.site-romi {
  font-size: 4.7rem;
  text-transform: uppercase;
  font-weight: 700;
}


.cena {font-size: 1.2em;text-transform: uppercase; font-weight: 300;color: silver;}

.border-black10 {border-bottom: 10px solid #000; }
.border-black5 {border-bottom: 5px solid #000; }
.btn {font-size: 0.9em;text-transform: normal; font-weight: 300;}


.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid black;
    border-radius: 0rem;
}

.card-footer {
    background-color: #fff;
    border: 0px solid black;
}

.masonry { /* Masonry container */
    -webkit-column-count: 4;
  -moz-column-count:4;
  column-count: 4;
  -webkit-column-gap: 0em;
  -moz-column-gap: 0em;
  column-gap: 0em;
   margin: 0em;
    padding: 0;

    font-size: 0.85em;
}
.item {
    display: inline-block;
    background: #fff;
    padding: 2em;
    margin: 0 0 0em;
    width: 100%;
	-webkit-transition:1s ease all;
    box-sizing: border-box;
    box-shadow: 0px 0px 0px 0px white;
}
.item img{max-width:100%;}

@media only screen and (max-width: 350px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px){
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1200px){
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media only screen and (min-width: 1201px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}
