﻿


html {
    background-image: url("fondo3.jpg");
    font: 18px/1.4 Verdana, Arial, sans-serif;
}

html.noscroll {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 10%;
}

.header .title img{
    width: 100%;
}

.menu-container {
    position: relative;
    margin-right: 46px;
}

.menu-activador {
    width: 33px;
    height: 25px;
    cursor: pointer;
}

.menu-activador-linea {
    height: 5px;
    border-radius: 5px;
    background-color: black;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

.menu-activador a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.menu-activador a.menu-icon-open .menu-activador-linea:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-activador a.menu-icon-open .menu-activador-linea:nth-child(2) {
    opacity: 0;
}

.menu-activador a.menu-icon-open .menu-activador-linea:nth-child(3) {
    transform: translateY(-10px)rotate(-45deg);
}

.menu-options {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.85);
    border: 3px solid #000000b0;
    border-radius: 10px;
    padding: 5px 0;
    list-style: none;
    margin: 15px 0px 0px;
    min-width: 200px;
    z-index: 1;
    display: none;
}

.menu-options li {
    padding: 8px 10px 8px 20px;
}

.menu-options li a {
    color: #b23e00;
    font-weight: 700;
    text-decoration: none;
    display: block;
}

.menu-options.active {
    display: block;
}

.hidden {
    display: none;
}

.section {
    margin-bottom: 20px;
}

.section-title {
    margin-left: 40px;
    cursor: pointer;
}

.section-title span{
    font-size: 22px;
    font-weight: 700;
    color: #b23e00;
    margin-left: 10px;
}

.section-arrow {
    display: inline-block;
    height: 18px;
    width: 18px;
    transform: rotate(135deg);
    transition: transform 0.3s;
}

.section-arrow-down {
    transform: rotate(225deg);
}

.section-content {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 0.3s linear;
}

.image-columns {
    max-width: 90%;
    margin: 20px auto;
}

.stamp1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 5%;
    height: 100px;
}

.stamp2 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20%;
    height: 30px;
}

.grid-sizer {
    width: 5%;
}

.portfolio-image {
    cursor: pointer;
    width: 20%;
}

.portfolio-image.L {
    width: 25%;
}

.portfolio-image.XL {
    width: 30%;
}

.portfolio-image.XXL {
    width: 40%;
}

.portfolio-image img {
    width: 100%;
}

@media only screen and (max-device-width: 576px),
only screen and (max-width: 576px) {
    .grid-sizer {
        width: 50%;
    }

    .portfolio-image {
        width: 50%;
    }

    .portfolio-image.L {
        width: 50%;
    }

    .portfolio-image.XL {
        width: 50%;
    }

    .portfolio-image.XXL {
        width: 100%;
    }

    .stamp1 {
        display: none;
    }

    .stamp2 {
        display: none;
    }
}

@media only screen and (min-width: 577px) and (max-width: 991px),
only screen and (min-device-width: 577px) and (max-device-width: 991px) {
    .grid-sizer {
        width: 25%;
    }

    .portfolio-image {
        width: 25%;
    }

    .portfolio-image.L {
        width: 25%;
    }

    .portfolio-image.XL {
        width: 50%;
    }

    .portfolio-image.XXL {
        width: 50%;
    }

    .stamp1 {
        height: 10px;
        width: 25%;
    }

    .stamp2 {
        height: 18px;
        width: 25%;
    }

    .hide-in-small-res {
        display: none;
    }
}

#veil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

#close-icon {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 33px;
    height: 33px;
    cursor: pointer;
    z-index: 4;
}

#close-icon:before,
#close-icon:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 5px;
    border-radius: 5px;
    background-color: white;
}

#close-icon:before {
    transform: rotate(45deg);
}

#close-icon:after {
    transform: rotate(-45deg);
}

#carousel {
    position: fixed;
    top: 3%;
    left: 0;
    width: 100%;
    height: 94%;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.5s;
    transition-delay: 0.2s;
}

.invisible {
    opacity: 0;
    pointer-events: none;
}

.fotorama__dot {
    border-color: white !important;
}

.fotorama__stage.fotorama__pointer {
    pointer-events: none;
}

.fotorama__img {
    pointer-events: auto;
}

.contact-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #b23e00;
    margin: 0px 20px;
}

.email-title {
    font-weight: bold;
    font-size: 1.5em;
    margin-block-end: 10px;
}

.email {
    width: 100%;
    margin-bottom: 1em;
}

.contact-image {
    max-width: 50%;
    max-height: 60%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 25%;
}

.social-title {
    font-weight: bold;
    font-size: 1.2em;
}

.social-icon {
    max-width: 40px;
    max-height: 40px;
    margin: 0px 10px;
}

.social-link {
    text-decoration: none;
}

.store {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 20px;
}

.store .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 80%;
}

.store .smallcolumn {
    width: 40%;
}

.store .bigcolumn {
    width: 60%;
}

.store .leftcolumn {
    padding-right: 20px;
    text-align: right;
}

.store .rightcolumn {
    padding-left: 20px;
    text-align: left;
}

.store .highlight {
    font-weight: bold;
    color: #b23e00;
}

.store .paypalform {
    margin: 20px;
}

.store .image {
    max-height: 100%;
    max-width: 100%;
}

.store .button {
    max-width: 50%;
    margin: 1em auto 0px;
}

.store .block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
}

.store .dbh_w {
    width: 100%;
    margin: 1em auto 0px;
}

@media only screen and (max-width: 750px),
only screen and (max-device-width: 750px) {
    .store .row {
        flex-direction: column;
        max-width: 90%;
    }

    .store .leftcolumn {
        padding-right: 0px;
        text-align: center;
    }

    .store .rightcolumn {
        padding-left: 0px;
        text-align: center;
    }

    .store .smallcolumn {
        width: 90%;
        order: 1;
    }

    .store .bigcolumn {
        width: 90%;
        order: 2;
    }

    .store .image {
        max-height: 186px;
        max-width: 100%;
    }

    .store .button {
        margin: 0px auto;
    }

    .store .banner {
        display: block;
        margin-top: 10px;
    }

    .store .banner_wide {
        display: none;
    }
}

.footer {
    height: 10vh;
}