* {
    border: 0px none;
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #ffffff;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #222222;
}

div {
    box-sizing: border-box;
    position: relative;
}

header {
    background-color: transparent;
    padding: 0px 0px;
    display: block;
    position: relative;
}

main {
    background-color: transparent;
    padding: 0px 0px;
    display: block;
    position: relative;
}

section {
    background-color: transparent;
    padding: 0px 0px;
    display: block;
    position: relative;
}

footer {
    background-color: transparent;
    padding: 80px 0px 0px 0px;
    display: block;
    position: relative;
}

h1 {
    padding-bottom: 16px;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    padding-bottom: 36px;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

h3 {
    padding-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

p {
    padding-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #222222;
}

svg {
    display: block;
}

img {
    display: block;
}

.subtitle {
    font-size: 30px;
}

.header-container {
    position: relative;
}

.header-logo {
    background-color: transparent;
}

.logo {
    height: auto;
    width: 100%;
}

.logo g.logo path {
    fill: #cccccc;
}

.header-title {
    background-color: transparent;
    padding: 160px 40px 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.main-container {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.section-container {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.content {
    background-color: transparent;
    display: block;
    position: relative;
}

.content-container {
    padding: 160px 40px 40px 40px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.content {
    display: block;
    position: relative;
}

.gallery {
    background-color: #eeeeee;
    display: block;
    position: relative;
}

.gallery-container-col1 {
    padding: 40px 40px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    position: relative;
}

.gallery-container-col2 {
    padding: 40px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.gallery-container-col3 {
    padding: 40px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.item-container {
    display: grid;
    grid-auto-flow: column;
    gap: 40px;
}

.gallery-image {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    position: relative;
}

.gallery-image-img {
    height: 100%;
    width: 100%;
    position: relative;
}

.gallery-image-overlay-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.gallery-image-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.icons {
    background-color: transparent;
    display: block;
    position: relative;
}

.icons-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.icons-image {
    background-color: #eeeeee;
    padding: 20px 20px 20px 20px;
    height: 120px;
    width: 120px;
    position: relative;
}

.icons-image-img {
    height: 100%;
    width: 100%;
    position: relative;
}

.footer-container {
    background-color: #222222;
    padding: 40px 40px;
    position: relative;
    color: #ffffff;
}

.footer-container a:link, a:visited {
    color: #ffffff;
}

.footer-container a:hover {
    color: hsl(0, 0%, 60%);
}

.footer-logo {
    background-color: transparent;
    padding-bottom: 40px;
}

.f-logo {
    height: auto;
    width: 200px;
}

.f-logo g.logo path {
    fill: #eeeeee;
}

.footer-about {
    padding-bottom: 20px;
}

.footer-links {
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-legal {
    padding-bottom: 0px;
}


.wr-animation-show {
    animation-name: show;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    opacity: 0;
}

@keyframes show {
    0% { opacity: 0;}
    20% { opacity: 0;}
    25% { opacity: 1;}
    75% { opacity: 1;}
    80% { opacity: 0;}
    100% { opacity: 0;}
}

.merlin-animation-target {
    animation-name: target;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes target {
    0% { transform: scale(1,1) rotate(0deg); }
    40% { transform: scale(1,1) rotate(180deg); }
    80% { transform: scale(1,1) rotate(360deg); }
    85% { transform: scale(0.9,0.9) rotate(360deg); }
    90% { transform: scale(1.1,1.1) rotate(360deg); }
    100% { transform: scale(1,1) rotate(360deg); }
}

.merlin-animation-bounce {
    transform-origin: bottom;
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes bounce {
    0% { transform: scale(1,1) translateY(0); }
    10% { transform: scale(1.1,.9) translateY(0); }
    30% { transform: scale(.9,1.1) translateY(-80px); }
    50% { transform: scale(1.05,.95) translateY(0); }
    57% { transform: scale(1,1) translateY(-2px); }
    64% { transform: scale(1,1) translateY(0); }
    100% { transform: scale(1,1) translateY(0); }
}

.merlin-animation-vibrate {
    animation-name: vibrate;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes vibrate {
    0% { transform: translate(0,0); }
    20% { transform: translate(2px,-2px); }
    40% { transform: translate(2px,2px); }
    60% { transform: translate(-2px,2px); }
    80% { transform: translate(-2px,-2px); }
    100% { transform: translate(0,0); }
}

.merlin-animation-spin {
    transform-origin: bottom;
    animation-name: spin;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes spin {
    0% { transform: scale(1,1) rotate3d(0); }
    90% { transform: scale(1,1) rotate3d(0); }
    100% { transform: scale(1,1) rotate3d(0,1,0,360deg); }
}

@media only screen and (max-width: 1023px) {

    .content-container {
        grid-template-columns: 1fr;
    }
    .gallery-container-col2 {
        grid-template-columns: 1fr;
    }
    .gallery-container-col3 {
        grid-template-columns: 1fr;
    }
}