@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,latin-ext);

/**********************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* !CSS RESET */
/**********************************************************************************************************************/
/* SELECTIONS KILL OUT */

:focus {
    outline: 0;
}
::selection
{
    background-color:transparent;
}
::-moz-selection
{
    background-color:transparent;
}
::-webkit-selection
{
    background-color:transparent;
}

/**********************************************************************************************************************/

html, body {
    font-family: 'Open Sans', Verdana, sans-serif;
    /*box-sizing: border-box;*/

    /* With smoothing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -moz-crisp-edges;          /* Firefox */
    image-rendering: -o-crisp-edges;            /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

/**********************************************************************************************************************/

h1 {
    margin: 1rem;
    color: #e84e0e;
    font-size: 1.5rem;
}

h2 {
    margin: 1rem;
    line-height: 2rem;
    font-family: "Futura", sans-serif;
    font-size: 1.25rem;
    color: white;
    text-transform: uppercase;
}

h3 {
    margin: 1em;
    line-height: 1.5em;
    font-size: 1em;
    color: #735346;
}
h4 {
    margin: 1.25em;
    line-height: 1.5em;
    font-size: 0.875em;
    color: #735346;
}

h5 {
    line-height: 1.5em;
    font-size: 0.75em;
    color: #ffffff;
}

h6 {
    line-height: 1.5em;
    font-size: 0.5em;
    color: #ffffff;
}

p {
    margin: 1.25em;
    font-size: 0.875em;
    line-height: 1.5em;
    color: #735346;

}

a {
    color: #ffffff;
    text-decoration: none;
}

.text-link {
    margin: 1.25em;
    font-size: 0.875em;
    line-height: 1.5em;
}

b {
    font-weight: bold;
}

/**********************************************************************************************************************/

.hu {
    display: block;
}

.en {
    display: none;
}

/**********************************************************************************************************************/
/* HEADER */
/**********************************************************************************************************************/

.fixed-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 12rem;
    background: transparent;
}

.header-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 12rem;
    padding-top: 1px;
    margin-top: -1px;
}

.header-container a {
    text-decoration: none;
}

/**********************************************************************************************************************/
/* LOGO */
/**********************************************************************************************************************/

.logo {
    position: relative;
    margin: 1rem auto;
    width: 11rem;
    height: 11rem;
    padding: 0;

}

.logo img {
    max-width: 100%;
    height: auto;
}

/**********************************************************************************************************************/
/* LOGO GLOWING ANIMATION */
/**********************************************************************************************************************/

.logo img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: all 2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.logo .glow-wrap{
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.logo .glow{
    display: block;
    position:absolute;
    width: 40%;
    height: 200%;
    background: rgba(247,247,247,.7);
    top: 0;
    filter: blur(5px);
    transform: rotate(45deg) translate(-450%, 0);
    transition: all 2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.logo:hover .glow{
    transform: rotate(45deg) translate(450%, 0);
    transition: all 2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.logo .animation{
    transform: rotate(45deg) translate(450%, 0);
    transition: all 2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/**********************************************************************************************************************/
/* ICONS */
/**********************************************************************************************************************/

.mobile-icons {

    display: none;
}

.mobile-icons {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    padding: 0;
    text-align: right;
    z-index: 999;
}

.mobile-icons li a {
    font-size: 60%;
}

.mobile-icons  {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 0.75rem 0.75rem 0.5rem;
    text-align: right;
    z-index: 9999;
}

.icons  {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem 1rem 1rem 3rem;
    text-align: right;
    z-index: 9999;
}

.icons a, .mobile-icons a {
    display: block;
    font-size: 0.875rem;
    text-decoration: none;
    color: #735346;
    transform: scale(1.0);
    -webkit-transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: linear;
    transition-delay: 0s;
    cursor: pointer;
}

.icons a:hover, .mobile-icons a:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
}

.icons li, .mobile-icons li {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    float: left;
}

/**********************************************************************************************************************/
/* INFO */
/**********************************************************************************************************************/

.mobile-info {

    display: none;
}

.mobile-info {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    padding: 0;
    text-align: left;
    z-index: 999;
}

.mobile-info li a {
    font-size: 60%;
}

.mobile-info  {
    position: absolute;
    top: 3rem;
    left: 0;
    padding: 0.5rem 0.75rem 0.75rem 0.5rem;
    text-align: left;
    z-index: 9999;
}

.info  {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2rem 1rem 1rem 3rem;
    text-align: left;
    z-index: 9999;
}

.info a, .mobile-info a {
    display: block;
    font-size: 0.875rem;
    text-decoration: none;
    color: #735346;
    transform: scale(1.0);
    -webkit-transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: linear;
    transition-delay: 0s;
    cursor: pointer;
}

.info a:hover, .mobile-info a:hover {

}

.info li {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    line-height: 2rem;
    float: none;
}

.mobile-info li {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    line-height: 1rem;
    float: none;
}

/**********************************************************************************************************************/
/* MAIN, SECTION, ARTICLE */
/**********************************************************************************************************************/

/**********************************************************************************************************************/
/* MAINHEADER */
/**********************************************************************************************************************/

main {

    position: relative;
    margin: 12rem auto 2rem;
    max-width: 1920px;
}

main header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    background: transparent;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

main header img {
    box-sizing: border-box;
    max-width: 100%;
    height: auto;
    border: 5px solid white;
}

main header h1 {
    color: white;
    text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.4px;
    font-family: "Raleway", sans-serif;
}

main section {
    position: relative;
    max-width: 100vmax;
    display: -webkit-flex; /* Safari */
    display: flex;
    background: transparent;
}

main article {
    margin: 0;
    display: block;
    flex-grow: 1;
    width: 15%;
}

/**********************************************************************************************************************/
/* BACKGROUND ANIMATION */
/**********************************************************************************************************************/
html {
    height:100%;
}

.bg {
    animation:slide 4s ease-in-out forwards alternate;
    animation-iteration-count: 2;
    background-image: linear-gradient(300deg, #f0f0f0 50%, #ffffff 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}

.bg3 {
    animation-duration:5s;
}

@keyframes slide {
    0% {
        transform:translateX(-25%);
    }
    100% {
        transform:translateX(25%);
    }
}

/**********************************************************************************************************************/
/* SHADOW */
/**********************************************************************************************************************/

.hover-shadow {
    box-shadow: 0 4px 8px 0 rgba(98,162,144,0.5), 0 6px 20px 0 rgba(98,162,144,0.5);
}

.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 1px 2px 0 rgba(98,162,144,0.5), 0 2px 4px 0 rgba(98,162,144,0.5);
}


/**********************************************************************************************************************/
/* FACEBOOK */
/**********************************************************************************************************************/

.fb-like-wrapper {
    max-width: 320px;
    padding: 1em;
    margin: 2rem auto;
    position: relative;
    text-align: center;
}

/**********************************************************************************************************************/
/* CONTENTBOF FOR PRESELECTION, ROUTING */
/**********************************************************************************************************************/

section.content {
    position: relative;
    max-width: 100vmax;
    display: block!important;
    margin-top: 18rem;
    background: transparent;
}

.content-selection-wrapper {
    position: relative;
    margin: 1rem auto 1rem;
    width: 100%;
    max-width: 1280px;
    background: white;
    flex-wrap: wrap;
    height: auto;
    display: flex;
    align-content: flex-start;
    flex-direction: row;
}

.content-selection-wrapper::after {
    content: "";
    flex: auto;
    width: 40%;
}

.content-selection-wrapper > div.table {
    position: relative;
    margin: 0.5rem 0.5rem;
    flex-grow: 1;
    width: 40%;
    height: auto;
    min-height: 50vmin;
    background: rgba(255,255,255,0.7);
    /*background: linear-gradient(to bottom, rgba(174,142,127,0.025) 0%, rgba(174,142,127,0.5) 25%, rgba(174,142,127,0.5) 75%, rgba(174,142,127,0.025) 100%);*/

}

.content-selection-wrapper > .nav-bar {
    position: relative;
    width: 100%;
    height: 4rem;
    background: rgba(128,76,32,0.7);
}

.content-selection-wrapper > .nav-bar h1:first-of-type {
    display: block;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: left;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);

}

.content-selection-wrapper > .nav-bar h1:nth-of-type(2) {
    display: block;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: right;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);

}

.content-selection-wrapper > div.table img {
    position: relative;
    left: 50%;
    margin-right: -50%;
    margin-bottom: 10%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}

.content-selection-wrapper > div.table .divider {
    text-align: center;
}

.content-selection-wrapper > div.table h1 {
    margin: 0;
    padding: 1.25rem;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    color: #f26829;

}

.content-selection-wrapper > div.table h2 {
    margin: 0;
    padding: 1rem;
    font-size: 1.25rem;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    color: #735346;

}

.content-selection-wrapper > div.table h4 {
    margin: 0;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #735346;
    float: left;
    display: inline-block;

}

.content-selection-wrapper > div.table h5 {
    margin: 0;
    padding: 1rem;
    font-size: 1rem;
    color: #735346;
    display: inline-block;
    float: right;

}

.content-selection-wrapper > div.table blockquote {
    margin: 1rem;
    padding: 1rem;
    border-left: 5px solid #f0f0f0;
    word-wrap: break-word;
    background: linear-gradient(60deg, #f5f5f5, #ffffff);

}

.content-selection-wrapper > div.table blockquote p {
    font-style: italic;

}

.content-selection-wrapper > div.table blockquote i:nth-of-type(1) {
    opacity: 0.1;
}

.content-selection-wrapper > div.table blockquote i:nth-of-type(2) {
    float: right;
    opacity: 0.1;
}

.content-selection-wrapper > div.table.hover-shadow {
    box-shadow: 0 4px 8px 0 rgba(98,162,144,0.5), 0 6px 20px 0 rgba(98,162,144,0.5);
}

.content-selection-wrapper > div.table.hover-shadow {
    transition: 0.3s;
}

.content-selection-wrapper > div.table.hover-shadow:hover {
    box-shadow: 0 1px 2px 0 rgba(98,162,144,0.5), 0 2px 4px 0 rgba(98,162,144,0.5);
}

.content-selection-wrapper .button-wrapper {
    position: absolute;
    bottom: 0rem;
    width: 100%;
}

.content-selection-wrapper .button-wrapper button {
    border: 1px solid #7d4d18;
    width: 15rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(90deg, #7d4d18, #000000 );
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: 1s background;
}

.content-selection-wrapper .button-wrapper button a {
    color: #ffffff;
}

.content-selection-wrapper .button-wrapper button:hover {
    background: linear-gradient(270deg, #7d4d18, #000000 );
    border: 1px solid #ffffff;
    color: #fff;
}

.content-selection-wrapper .button-wrapper button:hover a {
    color: #ffffff;
}

.dropdown-wrapper {

    position: relative;
    width: 100%;

}

.dropdown-wrapper form select
{
    width:100%;
    height:3rem;
    border:0;
    margin: 1rem 0;
    padding: 0.5rem;
    background: linear-gradient(270deg, #7d4d18, #000000 );
    box-shadow: none;
    color:#ffffff;
    font-family:Verdana, Geneva, sans-serif;
    font-size: 1rem;
    font-weight:bolder;
    text-transform:uppercase;
}

.dropdown-wrapper form select option
{
    width:100%;
    height:3rem;
    padding-left: 1rem;
    font-family:Verdana, Geneva, sans-serif;
    font-size: 1rem;
    background: linear-gradient(90deg, #7d4d18, #000000 );
    color:#000000;
    transition-duration:0.5s;
    box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4);
}

.dropdown-wrapper form .button-wrapper {
    position: absolute;
    bottom: 0rem;
    width: 100%;
    text-align: center;
}

.dropdown-wrapper form .button-wrapper button {
    border: 1px solid #7d4d18;
    width: 15rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(90deg, #7d4d18, #000000 );
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: 1s background;
}

.dropdown-wrapper form .button-wrapper button a {
    color: #ffffff;
}

.dropdown-wrapper form .button-wrapper button:hover {
    background: linear-gradient(270deg, #7d4d18, #000000 );
    border: 1px solid #ffffff;
    color: #fff;
}


.buttonfield {

    margin: 1rem auto;
    width: 96%;
    text-align: center;
}

.buttonfield h4 {

    margin: 0;
    display: inline-block;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
}

.buttonfield input {
    font-size: 0.875rem;
    margin: 0.5rem;
    padding: 0.5rem;
    color: #818181;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
    width: 3rem;
}

.buttonfield button {
    border: 1px solid #7d4d18;
    width: 15rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(90deg, #7d4d18, #000000 );
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: 1s background;
}

.buttonfield button:hover {
    background: linear-gradient(270deg, #7d4d18, #000000 );
    border: 1px solid #ffffff;
    color: #fff;
}

/**********************************************************************************************************************/
/* CONTENT BLOG, SERVICES */
/**********************************************************************************************************************/

/* CONTENT */

.content-wrapper {

    position: relative;
    margin: 1rem auto 1rem;
    width: 100%;
    max-width: 1280px;
    background: white;
    height: auto;
}

.content-wrapper h1 {
    margin: 1rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    font-weight: bold;
    color: #735346;
    text-transform: uppercase;
}

.content-wrapper > .nav-bar {
    position: relative;
    width: 100%;
    height: 4rem;
    background: rgba(128,76,32,0.7);
}

.content-wrapper > .nav-bar h1:first-of-type {
    display: block;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: left;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);
}

.content-wrapper > .nav-bar h1:nth-of-type(2) {
    display: block;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: right;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);
}

.content-wrapper .title-box {
    position: relative;
    margin: 0.5rem auto;
    padding: 1rem 0;
    width: 100%;
    height: 7rem;
    background: transparent;
}

.content-wrapper .title-box h1 {
    margin: 1rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #735346;
    text-transform: uppercase;
    float: left;
}

.content-wrapper .title-box h2 {
    margin: 1rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: left;
    color: #735346;
    text-transform: none;
    clear: both;

}

.content-wrapper .title-box h3 {
    margin: 1rem 0;
    display: block;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
    color: #735346;
    text-transform: none;
    float: right;

}

.content-wrapper .description p {
    margin: 2rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    color: #735346;
    text-transform: uppercase;
    clear: both;

}

.content-wrapper .product .product-table {
    position: relative;
    margin: 0.5rem auto;
    width: 100%;
    height: 12rem;
    background: transparent;
}

.content-wrapper .product .product-table h1 {
    margin: 1rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #735346;
    text-transform: uppercase;
    float: left;
}

.content-wrapper .product .product-table h2 {
    margin: 1rem 0;
    display: block;
    padding-right: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: right;
    color: #735346;
    text-transform: none;
    float: right;

}

.content-wrapper .product .product-table h3 {
    margin: 1rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
    color: #735346;
    text-transform: none;
    float: left;


}

.content-wrapper .product .product-table h4 {
    margin: 1rem 0;
    display: block;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: right;
    color: #735346;
    text-transform: none;
    float: right;

}

.content-wrapper .product .product-table h5 {
    margin: 1rem 0;
    display: block;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
    color: #735346;
    text-transform: none;
    float: left;

}

.content-wrapper .button-wrapper {
    margin: 2rem auto;
    width: 15rem;
    z-index: 999;
}

.content-wrapper .button-wrapper button {
    border: 1px solid #7d4d18;
    width: 15rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(90deg, #7d4d18, #000000 );
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: 1s background;
}

.content-wrapper .button-wrapper button a {
    color: #ffffff;
}

.content-wrapper .button-wrapper button:hover {
    background: linear-gradient(270deg, #7d4d18, #000000 );
    border: 1px solid #ffffff;
    color: #fff;
}

.content-wrapper .button-wrapper button:hover a {
    color: #ffffff;
}

.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 1px 2px 0 rgba(98,162,144,0.5), 0 2px 4px 0 rgba(98,162,144,0.5);
}

.content-wrapper article.article {
    margin: 0;
    display: block;
    flex-grow: 0;
    width: 100%;
}

.content-wrapper article.article h1 {
    margin: 1rem;
    padding: 0;
    font-size: 2rem;
    line-height: 2rem;
    text-align: left;
    text-transform: none;
    color: #735346;

}

.content-wrapper article.article h2 {
    margin: 0;
    padding: 1.25rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: left;
    text-transform: none;
    color: #735346;

}

.content-wrapper article.article h3 {
    margin: 0;
    padding: 1rem;
    font-size: 1.25rem;
    line-height: 1.25rem;
    text-align: center;
    text-transform: none;
    color: #735346;

}

.content-wrapper article.article h4 {
    margin: 0;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    color: #735346;

}

.content-wrapper article.article h5 {
    margin: 0 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: left;
    font-weight: bold;
    color: #735346;

}

.content-wrapper article.article h6 {
    margin: 0;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
    font-weight: bold;
    color: #735346;

}

.content-wrapper article.article p{
    margin: 0;
    padding: 1rem 2rem;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #735346;
}

.content-wrapper article.article p a {

    color: #735346;
    text-decoration: underline;
}

.content-wrapper article.article p:empty {
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.content-wrapper article.article p img {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.content-wrapper article.article div {
    box-sizing: border-box;
    padding: 2rem 2rem 0 2rem;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.content-wrapper article.article iframe {
    box-sizing: border-box;
    padding: 2rem 2rem 0 2rem;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.content-wrapper article.article hr {

    height: 1px;
    border: none;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.75) 0%, rgba(98,162,144,0.3) 40%, rgba(98,162,144,0.3), rgba(255, 255, 255, 0.75) 100%);
    width: 100%;
    margin: 1.5rem auto;
}

.content-wrapper article.article strong {

    font-weight: bold;
}

.content-wrapper article.article em {
    font-style: italic;
}

.content-wrapper article.article ol{
    list-style-type: decimal;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #735346;
}

.content-wrapper article.article ul{
    list-style-type: disc;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #735346;
}

.content-wrapper article.article li{
    padding: 0.5rem;
    text-align: left;
    font-size: 0.875rem;
    color: #735346;
}

/**********************************************************************************************************************/
/* PRESELECTION - IMAGEGALLERY */
/**********************************************************************************************************************/


section.gallery {
    position: relative;
    max-width: 100vmax;
    display: block!important;
    margin-top: 18rem;
    background: transparent;
}

.gallery-selection-wrapper {
    position: relative;
    margin: 1rem auto 1rem;
    width: 100%;
    max-width: 1280px;
    background: white;
    flex-wrap: wrap;
    height: auto;
    display: flex;
    align-content: flex-start;
    flex-direction: row;
}

.gallery-selection-wrapper::after {
    content: "";
    flex: auto;
    width: 40%;
}

.gallery-selection-wrapper > div.table {
    position: relative;
    margin: 0.5rem 0.5rem;
    flex-grow: 1;
    width: 40%;
    height: auto;
    text-align: center;
    background: rgba(255,255,255,0.7);
    /*background: linear-gradient(to bottom, rgba(174,142,127,0.025) 0%, rgba(174,142,127,0.5) 25%, rgba(174,142,127,0.5) 75%, rgba(174,142,127,0.025) 100%);*/

}

.gallery-selection-wrapper > .nav-bar {
    position: relative;
    width: 100%;
    height: 4rem;
    background: rgba(128,76,32,0.7);
}

.gallery-selection-wrapper > .nav-bar h1:first-of-type {
    display: block;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: left;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);

}

.gallery-selection-wrapper > .nav-bar h1:nth-of-type(2) {
    display: block;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: right;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);

}

.gallery-selection-wrapper > div.table img {
    max-width: 100%;
    height: auto;
}

.gallery-selection-wrapper > div.table .divider {
    text-align: center;
}

.gallery-selection-wrapper > div.table h1 {
    margin: 0;
    padding: 1.25rem;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    color: #f26829;

}

.gallery-selection-wrapper > div.table h2 {
    margin: 0;
    padding: 1rem;
    font-size: 1.25rem;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    color: #735346;

}

.gallery-selection-wrapper > div.table h4 {
    margin: 0;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #735346;

}

.gallery-selection-wrapper > div.table h5 {
    margin: 0;
    padding: 1rem;
    font-size: 1rem;
    color: #735346;
    display: inline-block;

}

.gallery-selection-wrapper > div.table.hover-shadow {
    box-shadow: 0 4px 8px 0 rgba(98,162,144,0.5), 0 6px 20px 0 rgba(98,162,144,0.5);
}

.gallery-selection-wrapper > div.table.hover-shadow {
    transition: 0.3s;
}

.gallery-selection-wrapper > div.table.hover-shadow:hover {
    box-shadow: 0 1px 2px 0 rgba(98,162,144,0.5), 0 2px 4px 0 rgba(98,162,144,0.5);
}

.gallery-selection-wrapper .button-wrapper {
    position: absolute;
    bottom: 0rem;
    width: 100%;
}

.gallery-selection-wrapper .button-wrapper button {
    border: 1px solid #7d4d18;
    width: 15rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(90deg, #7d4d18, #000000 );
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: 1s background;
}

.gallery-selection-wrapper .button-wrapper button a {
    color: #ffffff;
}

.gallery-selection-wrapper .button-wrapper button:hover {
    background: linear-gradient(270deg, #7d4d18, #000000 );
    border: 1px solid #ffffff;
    color: #fff;
}

.gallery-selection-wrapper .button-wrapper button:hover a {
    color: #ffffff;
}

/**********************************************************************************************************************/
/* IMAGEGALLERY FLEX */
/**********************************************************************************************************************/
.flex-gallery-table-wrapper {
    position: relative;
    margin: 1rem auto 1rem;
    width: 100%;
    max-width: 1280px;
    background: white;
    flex-wrap: wrap;
    height: auto;
    display: flex;
    align-content: flex-start;
    flex-direction: row;
}

.flex-gallery-table {
    flex-wrap: wrap;
    margin: 2rem auto 2rem;
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    align-items: center;
}

.flex-gallery-table-wrapper > .nav-bar {
    position: relative;
    width: 100%;
    height: 4rem;
    background: rgba(128,76,32,0.7);
}

.flex-gallery-table-wrapper > .nav-bar h1:first-of-type {
    display: block;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: left;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);

}

.flex-gallery-table-wrapper > .nav-bar h1:nth-of-type(2) {
    display: block;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    float: right;
    text-shadow: 1px 3px 4px rgb(0 0 0 / 40%);

}


.flex-gallery-column {
    margin: 2rem 2rem;
    width: 30rem;
    background: rgba(255,255,255,0.7);
    text-align: center;
}

.flex-gallery-column.hover-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.flex-gallery-column img {
    display: inline-block;
    margin: 1rem 0 1rem;
    width:  auto;
    max-width: 100%;
    height: 200px;
    background-size: cover;
    cursor: pointer;
}

.flex-gallery-column h5 {
    color: #9c9285;
    font-size: 1rem;
    margin: 1rem 0;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 1rem;
    display: block;
    overflow: hidden
}

.flex-gallery-column.hover-shadow h5 {
    color: #9c9285;
    font-size: 1rem;
    margin: 1rem 0;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 1rem;
    display: block;
    overflow: hidden
}

/* The Modal (background) */

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100vmax;
    height: 100vmin;
    overflow: auto;
    background-color: black;
    background-color: rgba(0,0,0,0.9);
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #f1f1f1;
    margin: auto;
    padding: 0;
    width: 100vmax;
    height: 100vmin;
    overflow: scroll;
    font-size: 0;
}

/* The Close Button */
.close {
    color: #999;
    position: fixed;
    top: 1rem;
    left: 1rem;
    font-size: 35px;
    font-weight: bold;
    z-index: 9999;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* The ZOOM Button */
.zoom-in {
    color: #999;
    position: fixed;
    top: 1rem;
    left: 4rem;
    font-size: 35px;
    font-weight: bold;
    z-index: 9999;
}

.zoom:hover,
.zoom:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* The ZOOM Button */
.zoom-out {
    color: #999;
    position: fixed;
    top: 1rem;
    left: 7rem;
    font-size: 35px;
    font-weight: bold;
    z-index: 9999;
}

.zoom:hover,
.zoom:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
    display: none;
    text-align: center;
}

.mySlides img {

    max-width: 50vmin;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    width: 3rem;
    padding: 16px;
    margin-top: -50px;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0,0,0,0.7);
}

/* Position the "next button" to the right */
.next {
    right: 1rem;
}

.prev {
    left: 1rem;
}

.numbertext {
    color: #999;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    position: fixed;
    top: 1rem;
    left: 9rem;
}

.caption-container {
    position: fixed;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.7);
    padding: 0.5rem 1rem;
    bottom: 2rem;
}

.caption-container p{
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
}

.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.19);
}

.divider {
    margin: 0;
    padding: 2rem 0 2rem;
    color: #e6e8ea;
}

.contrast {
    color: #000000!important;
}

.big-font {
    font-size: 1rem!important;
}

.bigger-font {
    font-size: 1.1rem!important;
}

.bigger-12-font {
    font-size: 1.2rem!important;
}

.bigger-13-font {
    font-size: 1.3rem!important;
}

.bigger-13-font {
    font-size: 1.3rem!important;
}

.bigger-14-font {
    font-size: 1.4rem!important;
}

.bigger-15-font {
    font-size: 1.5rem!important;
}

/**********************************************************************************************************************/
/* MAP */
/**********************************************************************************************************************/

.map-wrapper {

    position: relative;
    margin: 1rem auto 1rem;
    width: 100%;
    max-width: 1280px;
    background: white;
    height:auto;
}

.map-wrapper h1 {
    display: block;
    margin: 1rem auto;
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    font-weight: bold;
    color: #804c20;
    text-transform: uppercase;

}

.map {

    position: relative;
    margin: 0 auto 0;
    padding: 1rem 0;
    width: 100%;
    background: white;

}

.newsletter {

    position: relative;
    margin: 0 auto 0;
    padding: 1rem 0;
    width: 80%;
    background: white;

}


/**********************************************************************************************************************/
/* FOOTER */
/**********************************************************************************************************************/

footer {
    position: relative;
    margin: 0;
    border-top: 0.5rem solid #804c20;
    padding: 0;
    background: #603118;
}

footer .logo {
    position: relative;
    margin: 1rem auto;
    width: 8rem;
    height: 8rem;
    padding: 0;

}

footer .logo img {
    max-width: 100%;
    height: auto;
}

footer .content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

footer .content > div {
    padding: 1rem 0;
    width: 33%;
    text-align: center;
}

footer .content:last-of-type > div {
    padding: 1rem 0;
    width: 50%;
    text-align: center;
}

.content > div h5 {
    color: #ffffff;
}

.content > div h5 b{
    color: #f3c360;
}

a.scrollup {
    width: 2rem;
    height: 2rem;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    color: white;
    text-shadow: 0px 0px 5px #62A290;
    z-index: 9999;
}

/**********************************************************************************************************************/


.curved-corner-bottomright{
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
}

.curved-corner-bottomright:before {
    content: "";
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    border-radius: 50%;
}

.curved-corner-bottomright:before {
    bottom: 0;
    right: 0;
    box-shadow: 50px 50px 0 0 #735346;
    opacity: 0.3;
}

.curved-corner-bottomright {
    bottom: 0;
    right: 0;
}