@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    line-height: 1.3em;
}

body {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    height: 100%;
    width: 100%;
    max-width: 1920px;
}

.cMarg {
    margin: 0 auto;
    width: 96%;
}

.content_view {
    margin: 0 auto;
    width: 96%;
    max-width: 900px;
    line-height: 1.5em;
    margin-bottom: 3em;
}

#scroller {
    position: fixed;
    /**position the scroller**/
    bottom: 15px;
    right: 15px;
    /**arrow image**/
    background-image: url(../images/_body/top.svg);
    background-size: 25px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    /**hide it first**/
    display: none;
}

strong,
b {
    font-weight: 700;
}

ul {
    margin: 2em;
}

ul li {
    margin: .5em;
    list-style: circle;
    margin-bottom: 5px;
}

input,
textarea,
select {
    font-family: 'Montserrat', sans-serif;
    outline: none;
    font-weight: 400 !important;
    font-size: .8em;
}

.responsive-nav {
    display: none;
}

.panel {
    display: none;
}

a {
    color: #a13133;
    text-decoration: underline;
    transition: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #a13133 !important;
    text-decoration: none;
}

h1 {
    margin: 0 0 1em 0;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.2em;
}

.breaker {
    text-align: center;
    background-image: url('../images/_body/breaker.jpg');
    background-position: center;
    background-repeat: repeat-x;
    background-color: white;
    width: 100%;
    margin: 2em 0;
}

.breaker strong {
    font-weight: 400;
    background-color: white;
    padding: .5em 1.5em;
}

h2 {
    margin: 1em 0 1.3em 0;
    font-size: 1.8em;
    line-height: 1.2em;
    color: #a13133;
}

h3 {
    margin: 1em 0 1.3em 0;
    font-size: 1.5em;
    line-height: 1.2em;
    font-weight: 500;
    color: #a13133;
}

h4 {
    margin: 1em 0 1.3em 0;
    font-size: 1.2em;
    line-height: 1.2em;
    color: #a13133;
}

.form-place {
    margin-top: 2em;
}

.form-place label {
    font-weight: 500;
    color: #ddd;
}


/*header*/

header {
    width: 100%;
    display: flex;
    padding: 0 0%;
    align-items: center;
    justify-content: center;
    color: white;
    float: left;
    width: 100%;
}

header a {
    color: white;
    text-decoration: none;
}

header a:hover {
    color: #a7a7a7 !important;
}

.logo {
    background-color: white;
    padding: 15px;
    display: flex;
}

.logo img {
    height: 90px;
    width: auto;
}

.up {
    margin-left: auto;
    flex-basis: 200px;
    text-align: right;
    font-size: .9em;
    font-weight: 500;
    padding: 15px;
}

.sBag {
    background-image: url("../images/_body/shopping-bag-top.svg");
    background-position: left center;
    background-size: 15px;
    background-repeat: no-repeat;
    padding-left: 25px;
}

.lgn-link {
    display: inline-block;
    margin-right: 30px;
}

.navigation {
    list-style: none;
    font-size: 1em;
    text-align: center;
    margin: 0 0;
    font-weight: 500;
}

.navigation li {
    display: inline-block;
    margin: 0 10px;
}

.navigation .act a {
    color: #a13133;
}

.navigation li a {
    color: #000;
    text-decoration: none;
}

.navigation li a:hover {
    color: #a13133 !important;
    text-decoration: none;
}

.main-navi li:hover>ul {
    display: block;
    opacity: 1;
    animation: fadein 0.5s;
    margin-top: 0;
}

.main-navi ul ul {
    position: absolute;
    display: none;
    z-index: 10000;
    margin: 0 0 0 -10px;
    padding: 0;
    opacity: 0;
    text-align: left;
    font-size: .9em;
}

.main-navi ul ul li {
    display: block;
    opacity: 1;
    animation: fadein 0.5s;
    text-transform: initial;
}

.submenuHover {
    min-width: 200px;
    height: auto;
    background-color: #000;
    border: 5px solid black;
}

.submenuHover li {
    margin: 0 !important;
    padding-bottom: 0 !important;
    font-size: .8em;
}

.submenuHover li:hover {
    transition: all 0.5s;
    color: white;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.submenuHover a {
    color: white !important;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 10px !important;
}

.submenuHover a:hover {
    text-decoration: none;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        y
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.basketPanel {
    background-color: #fff;
    position: fixed;
    top: 74px;
    right: -320px;
    width: 320px;
    height: 100%;
    min-height: 100%;
    transition: all 0.5s ease;
    padding: 1em;
    overflow: scroll;
    border-left: 8px solid black;
    z-index: 1000;
}

.bakset-flex {
    display: flex;
    flex-direction: column;
}

.close-side {
    font-size: 2em !important;
    position: absolute;
    right: 15px;
    top: 0;
    border: none !important;
    outline: none;
    cursor: pointer;
}

.side-items {
    border: 1px solid #000;
    padding: .7em;
    color: #000;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.side-items img {
    max-height: 70px;
    margin-right: 10px;
}

.basketPanel h3 {
    font-size: 1em;
    font-weight: 400;
    margin: 0 0 .3em 0;
}

.basketPanel div h5 {
    font-size: .8em;
    font-weight: 400;
    margin: 0 0 .3em 0;
}

.basketPanel h2 {
    font-size: 1.8em;
    text-align: center;
    margin: 1em 0 1em 0;
}

.remove-item {
    margin-left: auto;
    cursor: pointer;
}

.remove-item img {
    margin-right: 0 !important;
}

.remove-item img {
    height: 15px !important;
}

.basketVis {
    right: 0;
    transition: all 0.5s ease;
}

.bakset-flex a {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #717171;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    color: white;
    transition: all 0.5s ease;
    display: block;
    cursor: pointer;
    margin-bottom: 15px;
}

.sideBtn {
    font-size: .8em !important;
    background-color: #717171;
    color: white;
}

.cta {
    background-color: #000 !important;
    font-weight: 500;
    color: white !important;
    font-size: .9em !important;
    border: 2px solid black;
}

.cta:hover {
    background-color: white !important;
    color: black;
}

main {
    float: left;
    width: 100%;
    margin-top: 0;
}

.featured-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.pointer {
    cursor: pointer;
}

.feautred-img {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    height: 100vh;
    justify-content: center;
}

.sub-feat {
    height: 400px;
    background-position: center;
    align-items: flex-end;
    margin-bottom: 30px;
}

.feautred-summary {
    width: 96%;
    max-width: 800px;
    color: white;
    text-align: center;
    margin-bottom: 2em;
    font-size: 1.3em;
}

.feautred-summary strong {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.4em;
}

.blogSection {
    width: 100%;
    text-align: center;
    margin: 5em 0;
    padding: 0 2%;
}

.blog-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.blog-item {
    flex-basis: 23%;
    overflow: hidden;
    margin-bottom: 2em;
}

.blog-item img {
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .50s;
    -moz-transition: all .50s;
    -ms-transition: all .50s;
    -o-transition: all .50s;
}

.blog-item-image {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

.blog-item:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.blog-item small {
    font-size: .9em;
    display: block;
    margin: 10px 0;
}

.blog-item-summary h3 {
    font-size: 1.2em;
    margin: 0;
    font-weight: 400;
}

.izpostava {
    display: flex;
    width: 100%;
    text-align: center;
    margin: 0 0 0 0;
    padding: 30px 0;
    align-items: center;
    justify-content: center;
}

.izpostava>div {
    width: 96%;
    max-width: 900px;
}

.izpostava a {
    display: inline-block;
    color: white;
    border: 2px solid white;
    padding: .5em 1em;
    text-decoration: none;
    font-size: .8em;
    margin-top: 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.izpostava a:hover {
    background-color: white;
    color: black;
}

.izpostava h4 {
    margin: 0 0 10px 0;
    font-weight: 400;
    font-size: 1.7em;
}

.izpostava p {
    color: #9d9d9d;
}

.ics {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ico {
    flex-basis: 25%;
    text-align: center;
    margin: 0 0;
    padding: 0 20px;
}

.ico img {
    height: 60px;
    width: auto;
}

.ico h4 {
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.3em;
    margin: 5px 0 0 0;
    color: black;
}

.product-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}

.product-item {
    flex-basis: 23%;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    padding: 10px;
    border: 3px solid #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 2em;
}

.product-item-image {
    line-height: 0;
    overflow: hidden;
    text-align: center;
}

.product-item-image img {
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .50s;
    -moz-transition: all .50s;
    -ms-transition: all .50s;
    -o-transition: all .50s;
}

.product-item:hover {
    border: 3px solid #000;
}

.product-item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.product-price {
    padding-top: .5em;
    font-size: 1.5em;
    color: black;
    font-weight: 500;
    background-image: url("../images/_body/split.png");
    background-position: top center;
    background-repeat: no-repeat;
}

.old-price {
    font-weight: 400;
    text-decoration: line-through;
    color: #4d4d4d;
    margin-right: 10px;
    font-size: 0.8em;
}

.s12 {
    background-color: #000;
}

.s14 {
    background-color: #000;
}

.status {
    position: absolute;
    left: 0;
    padding: 0.5em 1em;
    width: auto;
    top: 20px;
    left: 10px;
    text-align: left;
    color: white;
    font-size: 0.8em;
    z-index: 10;
    font-weight: 500;
}

.statusMain {
    position: absolute;
    left: 0;
    padding: .8em;
    width: auto;
    top: 20px;
    left: 0;
    text-align: left;
    color: white;
    font-size: 1em;
    z-index: 10;
    font-weight: 500;
}

.disc {
    position: absolute;
    display: flex;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #000;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8em;
    font-weight: 500;
    z-index: 10;
}

.product-item-details h3 {
    font-size: 1.3em;
    font-weight: 400;
    margin: 0 0 5px 0;
}

.product-item small {
    color: #777777;
    padding: 0;
}

.product-title-info {
    height: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button-min {
    padding: 1em 2em;
    display: inline-block;
    margin: 1em 0 0;
    text-decoration: none;
    color: black;
    border: 2px solid black;
    font-size: .8em;
    font-weight: 500 !important;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.button-min:hover {
    background-color: black;
    color: white !important;
}

.back {
    text-align: center;
    margin-top: 3em;
}

.breadCrumbs {
    width: 100%;
    text-align: center;
    margin: 15px 0 35px 0;
    font-size: .8em;
    color: #717171;
}

.breadCrumbs a {
    text-decoration: none;
    color: #717171;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 0 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.obrazec {
    width: 100%;
    background-color: #333;
    text-align: center;
    color: #b3b3b3;
    padding: 50px 15px;
}

.obrazec h3 {
    color: white;
    font-weight: 700;
    margin-top: 0;
}

.obrazec a {
    color: white !important;
    text-decoration: underline !important;
}

.footer a {
    color: #717171;
    text-decoration: none;
}

.footer a:hover {
    color: #fff !important;
}

.social {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.social a {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.social img {
    height: 25px;
    margin-right: 7px;
}

.foot-end {
    width: 100%;
    font-size: .9em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: #333;
    color: #949494;
    font-weight: 500;
    padding: 25px 0;
    flex-wrap: wrap;
}

.foot-end>div {
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 1.2em;
}

.foot-end span img {
    height: 30px;
    margin-bottom: 10px;
}

.foot-end a {
    color: white;
}

.foot-end_cert {
    width: 100%;
    font-size: .9em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: #333;
    color: #949494;
    font-weight: 500;
    padding: 15px 0;
    flex-wrap: wrap;
    margin: 0 0 10px 0;
}

.fin {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #949494;
    font-size: .8em;
    padding: 30px 2%;
    flex-direction: column;
    width: 100%;
}

.fin>div {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
    padding: 0 2%;
}

.fin a {
    color: #949494;
    text-decoration: none;
}

.fin a:hover {
    color: white !important;
    text-decoration: none;
}

.imgCover {
    float: left;
    width: 100%;
    height: 35vh;
    background-size: 100%;
    margin: 1em 0 1em 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imgCenter {
    float: left;
    width: 100%;
    height: auto;
    clear: left;
    box-sizing: border-box;
    margin: 1em 0;
}

.imgCenter img {
    width: 100%;
}

.imgRight {
    float: right;
    width: 35%;
    max-width: 400px;
    height: auto;
    clear: right;
    box-sizing: border-box;
    margin: 1em 0 1em 1em;
}

.imgRight img {
    width: 100%;
}

.imgLeft {
    float: left;
    width: 35%;
    max-width: 400px;
    height: auto;
    clear: left;
    box-sizing: border-box;
    margin: 1em 1em 1em 0;
}

.imgLeft img {
    width: 100%;
}

.userGgallery {
    padding: 1em;
    background-color: #f2f2f2;
    margin: 0.5em 0;
    line-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
}

.userGgallery img {
    width: 100%;
}

blockquote {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    padding: 30px 1em 30px 60px;
    margin: 30px 0 30px 0;
    background-color: #a13133;
    color: white;
    font-weight: 500;
    background-image: url("../images/_body/quote.svg");
    background-position: left 15px center;
    background-repeat: no-repeat;
    background-size: 30px;
}

blockquote p {
    margin: 0;
}

.categories {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: 1px 0;
}

.category-item {
    text-align: center;
    display: flex;
    height: 350px;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 1s ease;
    overflow: hidden;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}

.cat-item-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}

.overlay {
    background-color: #a13133;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 20%;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    -o-transition: .5s all;
    z-index: 99;
}

.category-item h3 {
    position: absolute;
    z-index: 100;
    color: white;
    font-weight: 700;
    font-size: 2em;
    margin: 0;
}

.category-item a:hover {
    color: black !important;
}

.category-item:hover .overlay {
    opacity: 0.8;
}

.category-item:hover .cat-item-img {
    transform: scale(1.2);
}

.product-show {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.showImg {
    flex-basis: 500px;
    margin: 0 20px;
    line-height: 0;
    position: relative;
}

.showImg img {
    width: 100%;
}

.showDesc {
    flex-basis: 500px;
    margin: 0 20px;
}

.showDesc h1 {
    margin-bottom: 10px;
}

.showDesc small {
    color: #717171;
    font-size: 1.3em;
}

.showDesc-price {
    background-image: url(../images/_body/price.svg);
    background-size: 0.6em;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 1em;
    font-size: 2em;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.form-add {
    display: flex;
    align-items: center;
}

.form-add span img {
    height: 10px;
}

.form-add span {
    cursor: pointer;
    padding: 0 0.5em;
}

.product-details-qty {
    width: 40px;
    height: 40px;
    border: 1px solid #bdbfc1;
    text-align: center;
    font-size: 1.2em;
    display: inline-block;
    padding: 0 !important;
    margin: 0 5px 0 5px;
}

.product-details-add-btn {
    display: inline-block;
    padding: 0 1em;
    height: 45px;
    text-align: center;
    font-size: 1em;
    border: 2px solid black;
    background-color: white;
    color: black;
    cursor: pointer;
    margin-left: 1em;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 500 !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.product-details-add-btn:hover {
    background-color: #000;
    color: white;
}

.no-stock {
    width: 100%;
    font-size: 1.3em;
    color: #a7a7a7;
    font-weight: 400;
    margin-bottom: 0;
}

.tJust {
    width: 100%;
    margin-top: 2em;
}

.product-details-gallery {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    line-height: 0;
    margin-top: 4em;
    flex-wrap: wrap;
}

.product-details-gallery a {
    border: 2px solid #fff;
    flex-basis: 25%;
}

.product-details-gallery img {
    width: 100%;
}

.default-form-btn {
    background-color: #333;
    border: 2px solid #a13133;
    color: white;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    width: 100%;
    text-align: center;
    font-size: 1em;
    padding: 1em 0;
    font-weight: 700 !important;
}

.default-form-btn:hover {
    background-color: #a13133;
    color: white;
}

.map_big {
    float: left;
    width: 100%;
    height: 450px;
    margin: 0 0 0 0;
}

a.btnMap {
    text-decoration: underline;
}

a.btnMap:hover {
    color: #a13133 !important;
}


/*FORMS*/

.inputF {
    width: 100%;
    height: 50px;
    background-color: #333;
    border-bottom: 1px solid #ddd;
    font-size: 1.1em;
    color: white;
    font-weight: normal;
}

.area-field {
    width: 100%;
    background-color: #333;
    border-bottom: 1px solid #ddd;
    color: white;
    font-size: 1.1em;
    padding-top: 10px;
    font-weight: normal;
}

.form-place {
    margin-top: 2em;
    font-size: 1.5em;
}

.form-place label {
    font-weight: normal;
    text-align: left !important;
}

.form-place {
    margin: 25px auto;
    width: 90%;
    max-width: 500px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    column-gap: 1em;
    margin-bottom: 0 !important;
}

.full-row {
    grid-column: -1/1;
    margin: 0 0 1em 0;
}

.form-place div {
    margin: 0 0 1em 0;
    text-align: left;
}

.check-option {
    display: flex;
    font-size: .9em;
}

.check-option label {
    margin-left: 10px;
    font-weight: 400 !important;
    line-height: 1.2em;
}

.thank-you-page {
    margin: 2em auto;
    max-width: 870px;
    width: 100%;
    padding: 2em;
    margin-bottom: 2em;
    text-align: center;
}

.lost-links a {
    display: inline-block;
    margin: .5em;
}

.thank-you-page img {
    max-width: 30%;
    margin-bottom: 1em;
}

.sharethis-inline-share-buttons img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.press-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.press-img img {
    /*max-width: 350px;*/
    border: 5px solid black;
    margin: 5px;
    max-height: 300px;
    max-width: 100%;
}

.vid-cont {
    display: flex;
    width: 100%;
    height: calc(100vh - 125px);
    background-color: #000;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

#myVideo {
    width: calc(100%);
}

.sound {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 10px;
    bottom: 50px;
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.sound img {
    width: 60%;
}