* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2em;
    line-height: 1.68em;
    color: #444;
}

.p-3 {
    padding: 3vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

td,
textarea,
input[type=text],
input[type=email],
input[type=password] {
    font-size: .9em;
    font-family: 'Raleway', sans-serif;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
    color: rgb(25, 54, 105);
    text-transform: capitalize;
}

h2 {
    font-weight: normal;
}

h3 {
    border-top: 1px solid #eee;
    padding-top: 1em;
    color: #777;
}

a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

a:hover,
.nav a:hover {
    color: #000;
    border-color: #aaa;
}

blockquote {
    margin-left: 0;
    padding-left: 1.5em;
    padding-right: 2em;
    border-left: 4px solid #ddd;
    font-style: italic;
    color: #777;
}

pre,
code {
    background: #eee;
    border: 1px solid #ddd;
}

pre {
    font-size: 14px;
    line-height: 1.4em;
    padding: 1em;
    border-left: 4px solid #ddd;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.topnav {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
    list-style: none;
}

.topnav li {
    padding: 0;
    margin: 0;
    float: left;
    margin-right: 1em;
}

.topnav li:last-child {
    margin: 0;
}

.topnav a {
    padding: .25em .5em;
    text-decoration: none;
    display: block;
    color: #333;
    border-bottom: 1px solid #fff;
    font-size: 0.9rem;
}

.topnav a:hover {
    border-bottom: 1px solid #ffa500;
}

.topnav li.current a {
    border-bottom: 1px solid #ffa500;
}

.topnav li.edit a {
    background: none;
}

form.search {
    float: right;
    margin: 0;
    width: 30%;
}

form.search input {
    margin: 0;
    padding: .25em .5em;
    border: 1px solid #ccc;
    width: 100%;
}

.button a {
    color: #fff;
}

.button,
button {
    border: none;
    padding: .8rem;
    background-color: #167da9;
    color: #ffffff;
}

.breadcrumbs {
    clear: both;
    padding-top: 1em;
}

.breadcrumbs span:after {
    content: ">";
    color: #999;
    padding-left: .5em;
    padding-right: .25em;
}

.gold {
    color: rgb(206, 158, 0);
}

.blau {
    color: rgb(22, 125, 169);
}

#main {
    clear: both;
}

.center {
    text-align: center;
}

#wrap_rubbish {
    visibility: hidden;
    height: 0;
    margin: 0;
}

body.has-sidebar #content {
    width: 65%;
    float: left;
}

.card {
    padding: .5rem 1rem;
    margin: 2rem 0;
    border-left: 10px solid rgb(229 246 255);
    text-align: left;
    box-shadow: 0 0 15px #f2f2f2;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 4px;
}

.column .cover-image {
    filter: grayscale(.6);
    object-fit: cover;
    object-position: 70% 18%;
    width: 49vw;
    max-height: 90vh;
    max-width: inherit;
}

.column .cover-image-left {
    filter: grayscale(.6);
    object-fit: cover;
    object-position: 70% 38%;
    width: 49vw;
    height: 100vh;
    max-width: inherit;
}

.column a {
    border: none;
}

.column .cover-image-left:hover,
.column .cover-image:hover {
    filter: grayscale(.0);
}

.column {
    width: 50%;
    padding: 0 15px;
}

.gscrollbar-fixer {
    margin: 0 auto !important;
}

.gallery {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.gallery a {
    border: none;
    line-height: 0;
    display: block;
    position: relative
}

.gallery img {
    box-shadow: 0 3px 5px 2px rgba(0, 0, 0, .45);
    width: 550px;
    height: 550px;
    object-fit: cover;
}

@keyframes outline-expand {
    from {
        outline-offset: -10px;
        outline: 10px solid rgba(255, 255, 255, 1)
    }

    to {
        outline-offset: 0;
        outline: 0 solid rgba(255, 255, 255, .1);
        background-color: rgba(255, 255, 255, 1)
    }
}

@keyframes display-element {
    from {
        color: rgba(0, 0, 0, .15);
        background-color: rgba(48, 48, 48, 0);
        bottom: 10px
    }

    to {
        color: rgba(120, 120, 120, 1);
        background-color: rgba(255, 255, 255, 1);
        bottom: 50px
    }
}

.gallery h3 {
    position: absolute;
    bottom: 0;
    color: rgba(48, 48, 48, 0);
    width: 100%;
    padding: 25px;
    margin: 0;
    border: none;
    text-align: right;
    line-height: 1.68rem;
    font-family: 'Raleway', sans-serif;
}

.gallery a:hover h3 {
    animation-duration: 100ms;
    animation-delay: 80ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.gallery img:hover {
    outline-offset: -10px;
    animation-name: outline-expand;
    animation-duration: .15s;
    animation-direction: reverse;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards
}

.gallery img:hover {
    clip-path: url(#svgPath);
    background-size: cover;
}

.gallery a .overlay h3 {
    background-color: rgba(0, 0, 0, 0) !important
}

.gallery a .overlay {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    overflow: hidden;
    transition: 300ms ease-out;
    background-color: rgba(0, 0, 0, .2);
    background-image: url(imgs/logo-mask.svg);
    background-size: 00%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.gallery a:hover .overlay {
    background-color: rgba(0, 0, 0, .4);
    background-image: url(imgs/logo-mask.svg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.gallery a .title,
.gallery a .description {
    font-weight: 100;
}

.gallery a .custom-desc {
    display: none;
}

.gallery a .title {
    position: absolute;
    font-size: 1.4rem;
    top: 35%;
    left: 9.4%;
    width: 80%;
    word-break: break-all;
    text-align: center;
    color: #fff;
    line-height: normal;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-break: break-word;
}

.gallery a .description {
    position: absolute;
    color: rgba(0, 0, 0, .0);
    width: 60%;
    top: 50%;
    left: 20%;
    text-align: center;
    margin: 0 auto;
    line-height: normal;
}

.gallery.variation a .title {
    color: rgba(0, 0, 0, 0)
}

.gallery.variation a:hover .title,
.gallery a:hover .description {
    color: rgba(255, 255, 255, 1);
}

.gallery .clip-mask {
    background-color: rgba(0, 0, 0, .1)
}

.clip-mask-col {
    clip-path: url(#colMask);
    display: block;
}

.gallery .clip-mask:hover img {
    clip-path: url(#svgPath);
    display: block;
}

#svgPath path {
    transform: matrix(900, 0, 0, 900, 220, 90);
    transform-origin: top left;
}

#colMask {
    transform: matrix(2000, 0, 0, 2000, 300, 90);
    transform-origin: top left;
}

body.has-sidebar #sidebar {
    width: 35%;
    padding-left: 5%;
    float: left;
}

.nav {
    margin-left: 0;
    list-style: none;
}

.nav li {
    margin: 1em 0;
}

.nav-tree li {
    margin-top: 0;
    margin-bottom: 0;
}

.nav a {
    font-weight: bold;
}

.nav-tree li a {
    color: #777;
}

.nav .current>a {
    color: #333;
}

.align_left {
    float: left;
    margin: 0 1em .5em 0;
    position: relative;
    top: .5em;
    max-width: 50%;
}

.align_right {
    float: right;
    margin: 0 0 .5em 1em;
    max-width: 50%;
}

.align_center {
    display: block;
    margin: 1em auto;
    position: relative;
    top: .5em;
}

figure {
    display: table;
    width: 1px;
    margin: 1em 0;
}

figure img {
    display: table-row;
    margin-bottom: .5em;
}

figure figcaption {
    display: table-row;
    font-size: smaller;
    color: #777;
    line-height: 1.4em;
}

#footer {
    margin-top: 3rem;
    font-size: 80%;
    text-align: center;
}

#contact-form input {
    height: 1.6rem;
}

form .Inputfields li {
    margin: 15px 0 0 0;
}

#contact-form textarea,
#contact-form input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #c4c4c4;
    background-color: #eee;
    padding: 1rem;
    width: 100%;
}

#contact-form input:focus,
#contact-form input:focus-visible,
#contact-form textarea:focus-visible {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ffa724;
    background-color: #fafafa;
    outline: none;
}

#contact-form ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#contact-form {
    text-align: left;
}

@media only screen and (max-width:1200px) {
    .column {
        min-height: 600px
    }

    td,
    textarea,
    input[type=text],
    input[type=email],
    input[type=password] {
        font-size: 110%
    }

    .gallery {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width:800px) {
    .topnav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px 0 0 0;
        list-style: none
    }

    .topnav li {
        margin-right: 0
    }

    .navbar {
        margin-bottom: 2rem
    }

    body,
    td,
    textarea {
        font-size: 110%
    }

    h1 {
        font-size: 8vw;
        line-height: 3rem
    }

    #main {
        padding: 0 1rem
    }

    #content,
    .column {
        padding: 0;
        width: 100%;
        word-wrap: break-word
    }

    .row {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-evenly;
        align-items: stretch;
        flex-wrap: wrap
    }

    .gallery {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(1, 1fr)
    }

    body.has-sidebar #content,
    body.has-sidebar #sidebar {
        float: none;
        width: 100%;
        padding: 0
    }

    form.search {
        float: none;
        width: 100%
    }

    #sidebar {
        border-top: 1px solid #eee;
        padding-top: 1em
    }

    .align_left,
    .align_right,
    .align_center {
        display: block;
        float: none;
        margin: 1em auto;
        max-width: 100%
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    white-space: nowrap;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
}

.element-focusable:focus {
    clip: auto;
    overflow: visible;
    height: auto;
}

.bypass-to-main:focus {
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #333;
    color: #fff;
}

.glightbox,
.gslide-media,
.glightbox img,
.gallery a .overlay {
    border-radius: 10px;
}

.gslide img {
    background-color: white;
}

.ginlined-content {
    position: relative;
}

.ginlined-content h4 {
    margin-top: 0;
}

.gtrigger-close {
    position: absolute;
    padding: 5px;
    top: 0;
    right: 0;
    border: 0;
    margin: 5px;
    line-height: 5px;
}