body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

body * {
    letter-spacing: 0.05rem;
    line-height: 1.8rem;
}

.container.no-hero {
    margin-top: 10rem;
}

h1, h2, h3, h4, h6
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Arvo', serif;
    text-shadow: 0.05em 0.075em 0 rgb(0 0 0 / 10%);
    text-transform: uppercase;
}

h1 {
    line-height: 2.5rem;
}


h2, .h2 {
    font-size: 1.25rem;
}

/* --------- HEADER -----------------------*/

header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 100;
}

header .navbar-brand img {
    max-height: 5rem;
}

header li {
    margin: 0 1rem;
}

header .nav-link {
    font-size: 1.2rem;
    font-weight: bolder;
    text-transform: uppercase;
    color: #fff !important;
    letter-spacing: 0.2rem;
    text-shadow: 0.05em 0.075em 0 rgb(0 0 0 / 10%);
    font-family: 'Arvo', serif;
}

header .nav-link:hover {
    text-decoration: underline;
}

.navbar-toggler {
    background: #fff;
}

/*.main-search {
    display: none;
}
*/
@media (max-width: 992px) {
    header {
        background: #000;
    }

    header ul {
        margin-top: 1.5rem;
    }
}

@media (max-width: 2000px) {
    header .nav-link {
        font-size: 1.1rem;
    }
}


/* --------- SEARCH -----------------------*/
.main-search .input-group {
}

/* --------- PRODUCTS -----------------------*/
.product-card {
    position: relative;
    box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
    overflow: hidden;
}

.product-card a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5rem;
}

.product-card .card-title span {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
}

.product-card a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.product-card a:hover {
    text-decoration: underline;
}

.product-card img {
    transition: transform 0.5s ease;
    width: 100%;
    max-height: 18rem;
    height: 100%;
    object-fit: cover;
}

.product-card:hover img {
    transform: scale(1.15) rotate(3deg);
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
}
/*.product a {
    color: #000;
    text-decoration: none;
}

.product a:hover > .product-title {
    text-decoration: underline;
}

.product:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease-in-out;
}

.product a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}*/
/* --------- REGIONS -----------------------*/
.hero {
    width: 100%;
    height: 65vh;
}

.hero h1 {
    color: #fff;
    text-shadow: 0px 0px 1rem #000;
}


/* --------- FOOTER -----------------------*/

footer .social-media-links a {
    text-decoration: none;
}

footer .copyright {
    background: #3B0E0E none;
    background: -moz-linear-gradient(top,#3B0E0E 0,#120202 100%);
    background: -webkit-linear-gradient(top,#3B0E0E 0,#120202 100%);
    background: linear-gradient(to bottom,#3B0E0E 0,#120202 100%);
}


footer .footer-columns h2 {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}


.ImageGalleryBlock {
    margin-top: 5rem;
}

@media (max-width: 769px) {
    .product-card img {
        max-height: initial;
    }

    .hero {
        background-attachment: scroll !important;
    }
}

.blockLink:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.blockLink {
    color: initial;
    font-size: 1.7rem;
}

/*.AddBanner {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

    .AddBanner .text-content {
        flex: 1;*/ /* 2/3 space */
    /*}

    .AddBanner .image-content {
        flex: 0 0 33%;*/ /* 1/3 width */
    /*}

    .AddBanner img {
        max-width: 100%;
        height: auto;
    }*/
