<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: ABNORMAL
Theme URI: https://bermudastudios.nl/
Author: Bermuda Studios
Author URI: https://bermudastudios.nl/

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normaalize.css/
*/

@font-face {
    font-family: 'Gilmer bold';
    src: url('fonts/GilmerBold.eot');
    src: local('Gilmer Bold'), local('GilmerBold'),
        url('fonts/GilmerBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/GilmerBold.woff2') format('woff2'),
        url('fonts/GilmerBold.woff') format('woff'),
        url('fonts/GilmerBold.ttf') format('truetype'),
        url('fonts/GilmerBold.svg#GilmerBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilmer medium';
    src: url('fonts/GilmerMedium.eot');
    src: local('Gilmer Medium'), local('GilmerMedium'),
        url('fonts/GilmerMedium.eot?#iefix') format('embedded-opentype'),
        url('fonts/GilmerMedium.woff2') format('woff2'),
        url('fonts/GilmerMedium.woff') format('woff'),
        url('fonts/GilmerMedium.ttf') format('truetype'),
        url('fonts/GilmerMedium.svg#GilmerMedium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gilmer medium';
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 14px;
}


::-moz-selection {
    background: #e3ccbe99
}

::selection {
    background: #e3ccbe99
}

a {
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
    color: #fff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilmer bold';
    font-weight: 400;
    font-size: 2.5em;
    margin-bottom: .5em;
    margin-top: 0;
}

h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

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

@-webkit-keyframes fadeInUpSort {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpSort {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDownSort {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.fadeInUpSort {
    -webkit-animation-name: fadeInUpSort;
    animation-name: fadeInUpSort
}

.fadeInDownSort {
    -webkit-animation-name: fadeInDownSort;
    animation-name: fadeInDownSort
}

.logo-wrapper.image {
    margin-bottom: 2em;
}

.section {
    flex-grow: 1;
    padding: 2em;
    text-align: center;
    position: relative;
}

.section-body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-grow: 10;
    width: 70%;
    max-width: 1170px;
    min-height: calc(100vh - 9em);
    margin: 0 auto;
    padding: 60px 20px;
}

.graphic-logo {
    width: auto;
    max-width: 500px;
    max-height: 300px;
    margin: 0 auto;
}

.text-logo {
    font-size: 2em;
}

.section-body p {
    font-size: 1em;
    line-height: 1.5em;
}

#background-wrapper,
#background-image,
#background-color,
.background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#background-wrapper {
    overflow: hidden;
}

#background-image {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#background-image.pattern {
    background-size: initial;
    background-repeat: repeat;
}

.video-banner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

#background-image {
    opacity: 0;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

#background-image.loaded {
    opacity: 1;
}

.video-banner iframe,
.video-banner video {
    -o-transition: opacity 1500ms;
    transition: opacity 1500ms;
}

.social-list {
    height: 3em;
    padding: 0;
    margin: 0;
    z-index: 100;
    text-align: center;
}

.social-list li {
    list-style: none;
    display: inline-block;
    padding: 0 2px;
}

.social-list a {
    display: block;
    height: 3em;
    width: 2.5em;
    line-height: 3em;
    background: transparent;
    -o-transition: background 300ms linear;
    transition: background 300ms linear;
    border-radius: 5px;
}

.social-list i {
    font-size: 1em;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.social-list a:hover i {
    -webkit-animation: spin 300ms linear;
    animation: spin 300ms linear;
}

.lang-switch-wrapper {
    position: absolute;
    top: 50px;
    right: 50px;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1024px) {
    .graphic-logo {
        padding: 20px 0;
    }

}

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


    .text-logo {
        font-size: 1.6em;
    }

    .lang-switch-wrapper {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

@media only screen and (max-width: 560px) {
    .section {
        padding: 4em 1em;
        min-height: calc(100vh - 11em);
    }

    .section-body {
        width: auto;
    }

    .graphic-logo {
        max-height: 200px;
        padding-bottom: 0;
        max-width: 100%;
    }

}

.content {
    margin-top: auto;
    margin-bottom: auto;
}

.footer {
    margin-top: auto;
}

.footer ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer ul li {
    display: flex;
    align-items: center;
}

.footer ul li:after {
    content: '';
    width: 1px;
    height: 21px;
    background: #fff;
    margin-left: 24px;
    margin-right: 24px;
}

.footer ul li:last-child:after {
    display: none;
}

.footer a {
    position: relative;
}

.footer a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    height: 1px;
    width: 100%;
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: right center;
    transform: scaleX(0);
}

.footer a:hover:before {
    transform: scale(1);
    transform-origin: left center;
}

@media only screen and (max-width:812px) {
    body {
        font-size: 12px;
    }

    .content img {
        max-width: 280px;
    }

    h4 {
        margin-bottom: 10px;
        font-size: 16px;
    }
	.footer { 
		margin-bottom: 0;
		padding: 40px 0;
	}
    .footer ul {
        flex-direction: column;
    }

    .footer ul li {
        margin-bottom: 8px;
    }

    .footer ul li:after {
        display: none;
    }
}</pre></body></html>