/* ==========================================================================
   COMPONENT: Image Compare
   ========================================================================== */

.image-compare {
    --imgc-after-width: 0%;
    --imgc-pseudo-content: none;
    --imgc-transition-function: $imgc-timing-function;
    --imgc-index-tag-before: 20;
    --imgc-index-tag-after: 20;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    font-family: "Prompt", Arial, sans-serif;
}

.image-compare__before,
.image-compare__after {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 100%;
    position: absolute;
    inset: 0;
}

.image-compare__before::before,
.image-compare__after::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    height: 55px;
    width: 95px;
    text-transform: uppercase;
    display: grid;
    place-items: center;
    font-weight: 600;
    line-height: 26px;
    font-size: 17px;
    background: #fff;
    color: #1fd60f;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.image-compare__before img,
.image-compare__after img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-compare__before::before {
    content: "Vorher";
    left: 0;
    border-radius: 0 18px 18px 0;
}

.image-compare__after {
    z-index: 5;
    -webkit-clip-path: polygon(100% 0%, var(--imgc-after-width) 0%, var(--imgc-after-width) 100%, 100% 100%);
    clip-path: polygon(100% 0%, var(--imgc-after-width) 0%, var(--imgc-after-width) 100%, 100% 100%);
}

.image-compare__after::before {
    content: "Nachher";
    right: 0;
    z-index: 10;
    border-radius: 18px 0 0 18px;
}

.image-compare__thumb {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: var(--imgc-after-width);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.image-compare__thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #1fd60f;
    width: 1px;
    height: 100%;
}

.image-compare__thumb svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.image-compare--transition .image-compare__before,
.image-compare--transition .image-compare__after,
.image-compare--transition .image-compare__thumb {
    transition: 0.5s all var(--imgc-transition-function);
}

@media screen and (max-width: 768px) {
    .image-compare__before::before,
    .image-compare__after::before {
        top: 0;
        -webkit-transform: unset;
        transform: unset;
        border-radius: 0;
    }
}

/* ==========================================================================
   CSS RESET
   ========================================================================== */

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;
}

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;
}

/* ========================================
   NORMALIZE CSS v8.0.1
   MIT License | github.com/necolas/normalize.css
======================================== */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* ========================================
   FONT DECLARATIONS - Prompt Font Family
======================================== */

/* Prompt 100 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/prompt-v10-latin-100.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-100.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-100.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-100.woff") format("woff"),
         url("../fonts/prompt-v10-latin-100.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-100.svg#Prompt") format("svg");
}

/* Prompt 100 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 100;
    src: url("../fonts/prompt-v10-latin-100italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-100italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-100italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-100italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-100italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-100italic.svg#Prompt") format("svg");
}

/* Prompt 200 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/prompt-v10-latin-200.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-200.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-200.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-200.woff") format("woff"),
         url("../fonts/prompt-v10-latin-200.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-200.svg#Prompt") format("svg");
}

/* Prompt 200 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 200;
    src: url("../fonts/prompt-v10-latin-200italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-200italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-200italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-200italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-200italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-200italic.svg#Prompt") format("svg");
}

/* Prompt 300 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/prompt-v10-latin-300.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-300.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-300.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-300.woff") format("woff"),
         url("../fonts/prompt-v10-latin-300.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-300.svg#Prompt") format("svg");
}

/* Prompt 300 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 300;
    src: url("../fonts/prompt-v10-latin-300italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-300italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-300italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-300italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-300italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-300italic.svg#Prompt") format("svg");
}

/* Prompt 400 Normal (Regular) */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/prompt-v10-latin-regular.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-regular.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-regular.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-regular.woff") format("woff"),
         url("../fonts/prompt-v10-latin-regular.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-regular.svg#Prompt") format("svg");
}

/* Prompt 400 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/prompt-v10-latin-italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-italic.svg#Prompt") format("svg");
}

/* Prompt 500 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/prompt-v10-latin-500.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-500.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-500.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-500.woff") format("woff"),
         url("../fonts/prompt-v10-latin-500.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-500.svg#Prompt") format("svg");
}

/* Prompt 500 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 500;
    src: url("../fonts/prompt-v10-latin-500italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-500italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-500italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-500italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-500italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-500italic.svg#Prompt") format("svg");
}

/* Prompt 600 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/prompt-v10-latin-600.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-600.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-600.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-600.woff") format("woff"),
         url("../fonts/prompt-v10-latin-600.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-600.svg#Prompt") format("svg");
}

/* Prompt 600 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 600;
    src: url("../fonts/prompt-v10-latin-600italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-600italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-600italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-600italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-600italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-600italic.svg#Prompt") format("svg");
}

/* Prompt 700 Normal (Bold) */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/prompt-v10-latin-700.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-700.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-700.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-700.woff") format("woff"),
         url("../fonts/prompt-v10-latin-700.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-700.svg#Prompt") format("svg");
}

/* Prompt 700 Italic (Bold Italic) */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/prompt-v10-latin-700italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-700italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-700italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-700italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-700italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-700italic.svg#Prompt") format("svg");
}

/* Prompt 800 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/prompt-v10-latin-800.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-800.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-800.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-800.woff") format("woff"),
         url("../fonts/prompt-v10-latin-800.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-800.svg#Prompt") format("svg");
}

/* Prompt 800 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 800;
    src: url("../fonts/prompt-v10-latin-800italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-800italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-800italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-800italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-800italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-800italic.svg#Prompt") format("svg");
}

/* Prompt 900 Normal */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/prompt-v10-latin-900.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-900.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-900.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-900.woff") format("woff"),
         url("../fonts/prompt-v10-latin-900.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-900.svg#Prompt") format("svg");
}

/* Prompt 900 Italic */
@font-face {
    font-display: swap;
    font-family: 'Prompt';
    font-style: italic;
    font-weight: 900;
    src: url("../fonts/prompt-v10-latin-900italic.eot");
    src: local(""),
         url("../fonts/prompt-v10-latin-900italic.eot?#iefix") format("embedded-opentype"),
         url("../fonts/prompt-v10-latin-900italic.woff2") format("woff2"),
         url("../fonts/prompt-v10-latin-900italic.woff") format("woff"),
         url("../fonts/prompt-v10-latin-900italic.ttf") format("truetype"),
         url("../fonts/prompt-v10-latin-900italic.svg#Prompt") format("svg");
}

/* ========================================
   GLOBAL STYLES & BASE SETTINGS
======================================== */

html {
    box-sizing: border-box;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

::-moz-selection {
    background: #232223;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #232223;
    text-shadow: none;
    color: #fff;
}

body {
    background: #fff;
}

#site {
    position: relative;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

/* ========================================
   ENTRY CONTENT & CONTENT LAYOUT
======================================== */

.entry-content>.ce:not(.ce-fw),
.entry-content>h1,
.entry-content>h2,
.entry-content>h3,
.entry-content>h4,
.entry-content>h5,
.entry-content>h6,
.entry-content>p,
.entry-content>ul,
.entry-content>ol,
.entry-content>table,
.entry-content>*[class*="wp-block-"],
.entry-content>section.no-results.not-found {
    max-width: 1400px;
    width: 96%;
    margin: 0 auto 30px;
    margin: 0 auto 1.875rem;
}

.entry-content>section.no-results.not-found {
    margin: 100px auto;
}

.entry-content>ul:not(.wp-block-gallery) li {
    position: relative;
    padding-left: 15px;
    margin: 10px 0;
}

.entry-content>ul:not(.wp-block-gallery) li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: black;
}

.entry-content>ol {
    counter-reset: index;
}

.entry-content>ol li {
    counter-reset: index_sub;
    position: relative;
    padding-left: 15px;
    margin: 10px 0;
}

.entry-content>ol li:before {
    counter-increment: index;
    content: counter(index) ".";
    position: absolute;
    left: 0;
    top: 0;
}

.entry-content>ol li ol li:before {
    counter-increment: index_sub;
    content: counter(index_sub) ".";
}

.entry-content>.wp-block-image>IMG {
    margin: 0 auto;
    display: block;
}

.entry-content>table td {
    padding: 16px;
    padding: 1rem;
}

.entry-content>hr.wp-block-separator {
    width: 20%;
    max-width: 1400px;
    margin: 20px auto 50px;
    margin: 1.25rem auto 3.125rem;
}

.entry-content>hr.wp-block-separator.is-style-wide {
    width: 60%;
}

.entry-content figure {
    max-width: 100%;
}

.entry-content figure img {
    max-width: 100%;
    display: block;
    height: auto;
}

.entry-content figure.alignright {
    float: right;
    margin-left: 20px;
}

.entry-content figure.alignleft {
    float: left;
    margin-right: 20px;
}

.allcont {
    overflow-x: hidden !important;
}

/* ========================================
   BLOG & POST LAYOUT
======================================== */

BODY.blog span.edit-link,
BODY.single span.edit-link,
BODY.archive span.edit-link,
BODY.search span.edit-link {
    display: none;
}

BODY.blog .allcont .cont>.type-post,
BODY.blog .allcont .cont>.item.inner,
BODY.single .allcont .cont>.type-post,
BODY.single .allcont .cont>.item.inner,
BODY.archive .allcont .cont>.type-post,
BODY.archive .allcont .cont>.item.inner,
BODY.search .allcont .cont>.type-post,
BODY.search .allcont .cont>.item.inner {
    max-width: 1400px;
    width: 96%;
    margin: 100px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

BODY.blog .allcont .cont>.type-post .entry-content,
BODY.blog .allcont .cont>.item.inner .entry-content,
BODY.single .allcont .cont>.type-post .entry-content,
BODY.single .allcont .cont>.item.inner .entry-content,
BODY.archive .allcont .cont>.type-post .entry-content,
BODY.archive .allcont .cont>.item.inner .entry-content,
BODY.search .allcont .cont>.type-post .entry-content,
BODY.search .allcont .cont>.item.inner .entry-content {
    flex: 1 1 65%;
    padding-right: 5%;
}

BODY.blog .allcont .cont>.type-post .entry-content article.post,
BODY.blog .allcont .cont>.item.inner .entry-content article.post,
BODY.single .allcont .cont>.type-post .entry-content article.post,
BODY.single .allcont .cont>.item.inner .entry-content article.post,
BODY.archive .allcont .cont>.type-post .entry-content article.post,
BODY.archive .allcont .cont>.item.inner .entry-content article.post,
BODY.search .allcont .cont>.type-post .entry-content article.post,
BODY.search .allcont .cont>.item.inner .entry-content article.post {
    margin-bottom: 30px;
    padding-bottom: 30px;
    /* border-bottom: 1px solid black; */
}

BODY.blog .allcont .cont>.type-post .entry-content article.post:last-of-type,
BODY.blog .allcont .cont>.item.inner .entry-content article.post:last-of-type,
BODY.single .allcont .cont>.type-post .entry-content article.post:last-of-type,
BODY.single .allcont .cont>.item.inner .entry-content article.post:last-of-type,
BODY.archive .allcont .cont>.type-post .entry-content article.post:last-of-type,
BODY.archive .allcont .cont>.item.inner .entry-content article.post:last-of-type,
BODY.search .allcont .cont>.type-post .entry-content article.post:last-of-type,
BODY.search .allcont .cont>.item.inner .entry-content article.post:last-of-type {
    border: none;
}

BODY.blog .allcont .cont>.type-post .entry-content .text,
BODY.blog .allcont .cont>.item.inner .entry-content .text,
BODY.single .allcont .cont>.type-post .entry-content .text,
BODY.single .allcont .cont>.item.inner .entry-content .text,
BODY.archive .allcont .cont>.type-post .entry-content .text,
BODY.archive .allcont .cont>.item.inner .entry-content .text,
BODY.search .allcont .cont>.type-post .entry-content .text,
BODY.search .allcont .cont>.item.inner .entry-content .text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
}

BODY.blog .allcont .cont>.type-post .entry-content .text .post-thumb,
BODY.blog .allcont .cont>.item.inner .entry-content .text .post-thumb,
BODY.single .allcont .cont>.type-post .entry-content .text .post-thumb,
BODY.single .allcont .cont>.item.inner .entry-content .text .post-thumb,
BODY.archive .allcont .cont>.type-post .entry-content .text .post-thumb,
BODY.archive .allcont .cont>.item.inner .entry-content .text .post-thumb,
BODY.search .allcont .cont>.type-post .entry-content .text .post-thumb,
BODY.search .allcont .cont>.item.inner .entry-content .text .post-thumb {
    flex: 1 1 150px;
}

BODY.blog .allcont .cont>.type-post .entry-content .text .post-thumb+P,
BODY.blog .allcont .cont>.item.inner .entry-content .text .post-thumb+P,
BODY.single .allcont .cont>.type-post .entry-content .text .post-thumb+P,
BODY.single .allcont .cont>.item.inner .entry-content .text .post-thumb+P,
BODY.archive .allcont .cont>.type-post .entry-content .text .post-thumb+P,
BODY.archive .allcont .cont>.item.inner .entry-content .text .post-thumb+P,
BODY.search .allcont .cont>.type-post .entry-content .text .post-thumb+P,
BODY.search .allcont .cont>.item.inner .entry-content .text .post-thumb+P {
    flex: 1 1 calc(100% - 150px - 40px);
    margin: 0 20px;
}

BODY.blog .allcont .cont>.type-post #secondary,
BODY.blog .allcont .cont>.item.inner #secondary,
BODY.single .allcont .cont>.type-post #secondary,
BODY.single .allcont .cont>.item.inner #secondary,
BODY.archive .allcont .cont>.type-post #secondary,
BODY.archive .allcont .cont>.item.inner #secondary,
BODY.search .allcont .cont>.type-post #secondary,
BODY.search .allcont .cont>.item.inner #secondary {
    flex: 1 1 30%;
    padding: 25px;
    background: #f5f5f5;
}

BODY.blog .allcont .cont>.type-post #secondary .widget,
BODY.blog .allcont .cont>.item.inner #secondary .widget,
BODY.single .allcont .cont>.type-post #secondary .widget,
BODY.single .allcont .cont>.item.inner #secondary .widget,
BODY.archive .allcont .cont>.type-post #secondary .widget,
BODY.archive .allcont .cont>.item.inner #secondary .widget,
BODY.search .allcont .cont>.type-post #secondary .widget,
BODY.search .allcont .cont>.item.inner #secondary .widget {
    margin-bottom: 30px;
}

@media screen and (max-width: 1120px) {
    BODY.single .allcont .cont>.type-post {
        margin-top: 0;
    }
}
BODY.blog .allcont .cont>.type-post .entry-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    flex: 1 1 100% !important;
    gap: 30px;
    padding: 0 !important;
}
@media screen and (max-width: 450px) {
    BODY.blog .allcont .cont>.type-post .entry-content {
        grid-template-columns: 1fr;
    }
}

BODY.blog .allcont .cont>.type-post .entry-content > header {
    display: none;
}

BODY.blog .allcont .cont>.type-post .entry-content article.post,
BODY.blog .allcont .cont>.item.inner .entry-content article.post {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
    border-radius: 20px;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
BODY.blog .allcont .cont>.type-post .entry-content article.post .entry-content,
BODY.blog .allcont .cont>.item.inner .entry-content article.post .entry-content {
    height: 100%;
}
BODY.blog .allcont .cont>.type-post .entry-content article.post .post-thumb,
BODY.blog .allcont .cont>.item.inner .entry-content article.post .post-thumb {
    flex: 0;
}
BODY.blog .allcont .cont>.type-post .entry-content article.post .post-thumb img,
BODY.blog .allcont .cont>.item.inner .entry-content article.post .post-thumb img {
    display: block;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
BODY.blog .allcont .cont>.type-post .entry-content article.post .excerpt-container,
BODY.blog .allcont .cont>.item.inner .entry-content article.post .excerpt-container {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

BODY.single .allcont .cont>.type-post .post-navigation {
    width: 96%;
    margin: 0 auto;
}
BODY.single .allcont .cont>.type-post .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 640px) {
    BODY.single .allcont .cont>.type-post .post-navigation .nav-links {
        flex-direction: column;
        align-items: stretch;
    }
}
BODY.single .allcont .cont>.type-post .post-navigation .nav-links a {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 17px 30px;
    color: #232223;
    background: #1fd60f;
    margin-top: 35px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    line-height: 22px;
    border-radius: 18px;
}
@media screen and (max-width: 640px) {
   BODY.single .allcont .cont>.type-post .post-navigation .nav-links a {
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}
BODY.single .allcont .cont>.type-post .post-navigation .nav-links a:hover {
    background: #232223;
    color: #1fd60f;
}

/* ========================================
   404 ERROR PAGE STYLES
======================================== */

.error404.not_home div#site .allcont {
    padding: 0;
}

.error404 .entry-content {
    margin: 0 auto;
    padding: 2%;
    background: #0a0a0a;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(0, 0, 0, 0.9)),
               repeating-linear-gradient(0, transparent, transparent 2px, black 3px, black 3px);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.error404 .entry-content .glitch {
    position: relative;
    color: white;
    font-size: 4em;
    letter-spacing: 0.5em;
    text-align: center;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.error404 .entry-content .glitch::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.error404 .entry-content .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

/* ========================================
   404 GLITCH ANIMATIONS
======================================== */

@-webkit-keyframes glitch-anim {
    0% {
        clip: rect(40px, 9999px, 87px, 0);
        -webkit-transform: skew(.65deg);
        transform: skew(.65deg)
    }
    5% {
        clip: rect(58px, 9999px, 89px, 0);
        -webkit-transform: skew(.42deg);
        transform: skew(.42deg)
    }
    10% {
        clip: rect(87px, 9999px, 57px, 0);
        -webkit-transform: skew(.25deg);
        transform: skew(.25deg)
    }
    15% {
        clip: rect(69px, 9999px, 90px, 0);
        -webkit-transform: skew(.89deg);
        transform: skew(.89deg)
    }
    20% {
        clip: rect(49px, 9999px, 17px, 0);
        -webkit-transform: skew(.44deg);
        transform: skew(.44deg)
    }
    25% {
        clip: rect(46px, 9999px, 58px, 0);
        -webkit-transform: skew(.24deg);
        transform: skew(.24deg)
    }
    30% {
        clip: rect(43px, 9999px, 44px, 0);
        -webkit-transform: skew(.81deg);
        transform: skew(.81deg)
    }
    35% {
        clip: rect(84px, 9999px, 73px, 0);
        -webkit-transform: skew(.27deg);
        transform: skew(.27deg)
    }
    40% {
        clip: rect(94px, 9999px, 95px, 0);
        -webkit-transform: skew(.71deg);
        transform: skew(.71deg)
    }
    45% {
        clip: rect(50px, 9999px, 3px, 0);
        -webkit-transform: skew(.66deg);
        transform: skew(.66deg)
    }
    50% {
        clip: rect(36px, 9999px, 92px, 0);
        -webkit-transform: skew(.8deg);
        transform: skew(.8deg)
    }
    55% {
        clip: rect(45px, 9999px, 28px, 0);
        -webkit-transform: skew(.2deg);
        transform: skew(.2deg)
    }
    60% {
        clip: rect(97px, 9999px, 75px, 0);
        -webkit-transform: skew(.03deg);
        transform: skew(.03deg)
    }
    65% {
        clip: rect(22px, 9999px, 38px, 0);
        -webkit-transform: skew(.78deg);
        transform: skew(.78deg)
    }
    70% {
        clip: rect(74px, 9999px, 74px, 0);
        -webkit-transform: skew(.22deg);
        transform: skew(.22deg)
    }
    75% {
        clip: rect(44px, 9999px, 38px, 0);
        -webkit-transform: skew(.46deg);
        transform: skew(.46deg)
    }
    80% {
        clip: rect(36px, 9999px, 44px, 0);
        -webkit-transform: skew(.15deg);
        transform: skew(.15deg)
    }
    85% {
        clip: rect(64px, 9999px, 83px, 0);
        -webkit-transform: skew(.74deg);
        transform: skew(.74deg)
    }
    90% {
        clip: rect(19px, 9999px, 52px, 0);
        -webkit-transform: skew(.82deg);
        transform: skew(.82deg)
    }
    95% {
        clip: rect(47px, 9999px, 21px, 0);
        -webkit-transform: skew(.38deg);
        transform: skew(.38deg)
    }
    100% {
        clip: rect(90px, 9999px, 69px, 0);
        -webkit-transform: skew(.14deg);
        transform: skew(.14deg)
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(40px, 9999px, 87px, 0);
        -webkit-transform: skew(.65deg);
        transform: skew(.65deg)
    }
    5% {
        clip: rect(58px, 9999px, 89px, 0);
        -webkit-transform: skew(.42deg);
        transform: skew(.42deg)
    }
    10% {
        clip: rect(87px, 9999px, 57px, 0);
        -webkit-transform: skew(.25deg);
        transform: skew(.25deg)
    }
    15% {
        clip: rect(69px, 9999px, 90px, 0);
        -webkit-transform: skew(.89deg);
        transform: skew(.89deg)
    }
    20% {
        clip: rect(49px, 9999px, 17px, 0);
        -webkit-transform: skew(.44deg);
        transform: skew(.44deg)
    }
    25% {
        clip: rect(46px, 9999px, 58px, 0);
        -webkit-transform: skew(.24deg);
        transform: skew(.24deg)
    }
    30% {
        clip: rect(43px, 9999px, 44px, 0);
        -webkit-transform: skew(.81deg);
        transform: skew(.81deg)
    }
    35% {
        clip: rect(84px, 9999px, 73px, 0);
        -webkit-transform: skew(.27deg);
        transform: skew(.27deg)
    }
    40% {
        clip: rect(94px, 9999px, 95px, 0);
        -webkit-transform: skew(.71deg);
        transform: skew(.71deg)
    }
    45% {
        clip: rect(50px, 9999px, 3px, 0);
        -webkit-transform: skew(.66deg);
        transform: skew(.66deg)
    }
    50% {
        clip: rect(36px, 9999px, 92px, 0);
        -webkit-transform: skew(.8deg);
        transform: skew(.8deg)
    }
    55% {
        clip: rect(45px, 9999px, 28px, 0);
        -webkit-transform: skew(.2deg);
        transform: skew(.2deg)
    }
    60% {
        clip: rect(97px, 9999px, 75px, 0);
        -webkit-transform: skew(.03deg);
        transform: skew(.03deg)
    }
    65% {
        clip: rect(22px, 9999px, 38px, 0);
        -webkit-transform: skew(.78deg);
        transform: skew(.78deg)
    }
    70% {
        clip: rect(74px, 9999px, 74px, 0);
        -webkit-transform: skew(.22deg);
        transform: skew(.22deg)
    }
    75% {
        clip: rect(44px, 9999px, 38px, 0);
        -webkit-transform: skew(.46deg);
        transform: skew(.46deg)
    }
    80% {
        clip: rect(36px, 9999px, 44px, 0);
        -webkit-transform: skew(.15deg);
        transform: skew(.15deg)
    }
    85% {
        clip: rect(64px, 9999px, 83px, 0);
        -webkit-transform: skew(.74deg);
        transform: skew(.74deg)
    }
    90% {
        clip: rect(19px, 9999px, 52px, 0);
        -webkit-transform: skew(.82deg);
        transform: skew(.82deg)
    }
    95% {
        clip: rect(47px, 9999px, 21px, 0);
        -webkit-transform: skew(.38deg);
        transform: skew(.38deg)
    }
    100% {
        clip: rect(90px, 9999px, 69px, 0);
        -webkit-transform: skew(.14deg);
        transform: skew(.14deg)
    }
}

@-webkit-keyframes glitch-anim2 {
    0% {
        clip: rect(69px, 9999px, 61px, 0);
        -webkit-transform: skew(.23deg);
        transform: skew(.23deg)
    }
    5% {
        clip: rect(95px, 9999px, 87px, 0);
        -webkit-transform: skew(.31deg);
        transform: skew(.31deg)
    }
    10% {
        clip: rect(72px, 9999px, 16px, 0);
        -webkit-transform: skew(.85deg);
        transform: skew(.85deg)
    }
    15% {
        clip: rect(84px, 9999px, 9px, 0);
        -webkit-transform: skew(.45deg);
        transform: skew(.45deg)
    }
    20% {
        clip: rect(68px, 9999px, 69px, 0);
        -webkit-transform: skew(.01deg);
        transform: skew(.01deg)
    }
    25% {
        clip: rect(79px, 9999px, 11px, 0);
        -webkit-transform: skew(.99deg);
        transform: skew(.99deg)
    }
    30% {
        clip: rect(85px, 9999px, 94px, 0);
        -webkit-transform: skew(.96deg);
        transform: skew(.96deg)
    }
    35% {
        clip: rect(74px, 9999px, 72px, 0);
        -webkit-transform: skew(.77deg);
        transform: skew(.77deg)
    }
    40% {
        clip: rect(51px, 9999px, 38px, 0);
        -webkit-transform: skew(.74deg);
        transform: skew(.74deg)
    }
    45% {
        clip: rect(31px, 9999px, 67px, 0);
        -webkit-transform: skew(.23deg);
        transform: skew(.23deg)
    }
    50% {
        clip: rect(48px, 9999px, 91px, 0);
        -webkit-transform: skew(.4deg);
        transform: skew(.4deg)
    }
    55% {
        clip: rect(12px, 9999px, 39px, 0);
        -webkit-transform: skew(.77deg);
        transform: skew(.77deg)
    }
    60% {
        clip: rect(84px, 9999px, 78px, 0);
        -webkit-transform: skew(.26deg);
        transform: skew(.26deg)
    }
    65% {
        clip: rect(50px, 9999px, 24px, 0);
        -webkit-transform: skew(.28deg);
        transform: skew(.28deg)
    }
    70% {
        clip: rect(10px, 9999px, 55px, 0);
        -webkit-transform: skew(.82deg);
        transform: skew(.82deg)
    }
    75% {
        clip: rect(42px, 9999px, 57px, 0);
        -webkit-transform: skew(.82deg);
        transform: skew(.82deg)
    }
    80% {
        clip: rect(74px, 9999px, 5px, 0);
        -webkit-transform: skew(.05deg);
        transform: skew(.05deg)
    }
    85% {
        clip: rect(69px, 9999px, 85px, 0);
        -webkit-transform: skew(.81deg);
        transform: skew(.81deg)
    }
    90% {
        clip: rect(93px, 9999px, 54px, 0);
        -webkit-transform: skew(.86deg);
        transform: skew(.86deg)
    }
    95% {
        clip: rect(59px, 9999px, 57px, 0);
        -webkit-transform: skew(.66deg);
        transform: skew(.66deg)
    }
    100% {
        clip: rect(15px, 9999px, 80px, 0);
        -webkit-transform: skew(1deg);
        transform: skew(1deg)
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(69px, 9999px, 61px, 0);
        -webkit-transform: skew(.23deg);
        transform: skew(.23deg)
    }
    5% {
        clip: rect(95px, 9999px, 87px, 0);
        -webkit-transform: skew(.31deg);
        transform: skew(.31deg)
    }
    10% {
        clip: rect(72px, 9999px, 16px, 0);
        -webkit-transform: skew(.85deg);
        transform: skew(.85deg)
    }
    15% {
        clip: rect(84px, 9999px, 9px, 0);
        -webkit-transform: skew(.45deg);
        transform: skew(.45deg)
    }
    20% {
        clip: rect(68px, 9999px, 69px, 0);
        -webkit-transform: skew(.01deg);
        transform: skew(.01deg)
    }
    25% {
        clip: rect(79px, 9999px, 11px, 0);
        -webkit-transform: skew(.99deg);
        transform: skew(.99deg)
    }
    30% {
        clip: rect(85px, 9999px, 94px, 0);
        -webkit-transform: skew(.96deg);
        transform: skew(.96deg)
    }
    35% {
        clip: rect(74px, 9999px, 72px, 0);
        -webkit-transform: skew(.77deg);
        transform: skew(.77deg)
    }
    40% {
        clip: rect(51px, 9999px, 38px, 0);
        -webkit-transform: skew(.74deg);
        transform: skew(.74deg)
    }
    45% {
        clip: rect(31px, 9999px, 67px, 0);
        -webkit-transform: skew(.23deg);
        transform: skew(.23deg)
    }
    50% {
        clip: rect(48px, 9999px, 91px, 0);
        -webkit-transform: skew(.4deg);
        transform: skew(.4deg)
    }
    55% {
        clip: rect(12px, 9999px, 39px, 0);
        -webkit-transform: skew(.77deg);
        transform: skew(.77deg)
    }
    60% {
        clip: rect(84px, 9999px, 78px, 0);
        -webkit-transform: skew(.26deg);
        transform: skew(.26deg)
    }
    65% {
        clip: rect(50px, 9999px, 24px, 0);
        -webkit-transform: skew(.28deg);
        transform: skew(.28deg)
    }
    70% {
        clip: rect(10px, 9999px, 55px, 0);
        -webkit-transform: skew(.82deg);
        transform: skew(.82deg)
    }
    75% {
        clip: rect(42px, 9999px, 57px, 0);
        -webkit-transform: skew(.82deg);
        transform: skew(.82deg)
    }
    80% {
        clip: rect(74px, 9999px, 5px, 0);
        -webkit-transform: skew(.05deg);
        transform: skew(.05deg)
    }
    85% {
        clip: rect(69px, 9999px, 85px, 0);
        -webkit-transform: skew(.81deg);
        transform: skew(.81deg)
    }
    90% {
        clip: rect(93px, 9999px, 54px, 0);
        -webkit-transform: skew(.86deg);
        transform: skew(.86deg)
    }
    95% {
        clip: rect(59px, 9999px, 57px, 0);
        -webkit-transform: skew(.66deg);
        transform: skew(.66deg)
    }
    100% {
        clip: rect(15px, 9999px, 80px, 0);
        -webkit-transform: skew(1deg);
        transform: skew(1deg)
    }
}

@-webkit-keyframes glitch-skew {
    0% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
    10% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
    20% {
        -webkit-transform: skew(1deg);
        transform: skew(1deg)
    }
    30% {
        -webkit-transform: skew(1deg);
        transform: skew(1deg)
    }
    40% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg)
    }
    50% {
        -webkit-transform: skew(0deg);
        transform: skew(0deg)
    }
    60% {
        -webkit-transform: skew(-3deg);
        transform: skew(-3deg)
    }
    70% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
    80% {
        -webkit-transform: skew(5deg);
        transform: skew(5deg)
    }
    90% {
        -webkit-transform: skew(-4deg);
        transform: skew(-4deg)
    }
    100% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
}

@keyframes glitch-skew {
    0% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
    10% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
    20% {
        -webkit-transform: skew(1deg);
        transform: skew(1deg)
    }
    30% {
        -webkit-transform: skew(1deg);
        transform: skew(1deg)
    }
    40% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg)
    }
    50% {
        -webkit-transform: skew(0deg);
        transform: skew(0deg)
    }
    60% {
        -webkit-transform: skew(-3deg);
        transform: skew(-3deg)
    }
    70% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
    80% {
        -webkit-transform: skew(5deg);
        transform: skew(5deg)
    }
    90% {
        -webkit-transform: skew(-4deg);
        transform: skew(-4deg)
    }
    100% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg)
    }
}

/* ========================================
   TYPOGRAPHY & BASE STYLES
======================================== */

body.single,
body.search,
body.archive,
body.blog {
    position: relative;
    padding-top: 160px;
}

body.single .head,
body.search .head,
body.archive .head,
body.blog .head {
    background: #232223;
}

html {
    font-size: 17px;
}

body {
    font-size: 17px;
    font-family: "Prompt", Arial, sans-serif;
    color: #232223;
    line-height: 32px;
    line-height: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Prompt", Arial, sans-serif;
    line-height: 120%;
    margin: 0 0 30px;
    color: #232223;
}

@media screen and (max-width: 768px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 20px;
    }
}

h1 {
    font-size: clamp(27px, 4vw, 55px);
    line-height: 80px;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    h1 {
        line-height: 120%;
    }
}

h2 {
    font-size: clamp(25px, 4vw, 40px);
    line-height: 50px;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    h2 {
        line-height: 120%;
    }
}

h3 {
    font-size: clamp(23px, 4vw, 30px);
    line-height: 44px;
}

@media screen and (max-width: 1200px) {
    h3 {
        line-height: 120%;
    }
}

h4 {
    font-size: clamp(20px, 4vw, 24px);
    line-height: 34px;
    color: #1fd60f;
}

@media screen and (max-width: 1200px) {
    h4 {
        line-height: 120%;
    }
}

h5 {
    font-size: clamp(18px, 4vw, 20px);
    line-height: 44px;
}

@media screen and (max-width: 1200px) {
    h5 {
        line-height: 120%;
    }
}

h6 {
    font-size: 17px;
    line-height: 22px;
}

@media screen and (max-width: 1200px) {
    h6 {
        line-height: 120%;
    }
}

p + p,
p + ul,
ul + p,
ul + ul {
    margin-top: 30px;
    margin-top: 1.875rem;
}

p[class*="roofline"] {
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: clamp(18px, 4vw, 24px);
    line-height: 34px;
    color: #1fd60f;
    letter-spacing: 0;
    padding-left: 40px;
}

p[class*="roofline"]::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 30px;
    height: 40px;
    background: url(../img/shield.svg);
    background-size: 30px 100%;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 768px) {
    p[class*="roofline"]::after {
        width: 20px;
        height: 30px;
        background-size: 20px auto;
    }
}

p[class*="roofline"][style*="text-align: center;"] {
    position: relative;
    text-align: center;
    padding-top: 60px;
    padding-left: 0;
}

p[class*="roofline"][style*="text-align: center;"]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-position: center;
    width: 30px;
    height: 40px;
}

@media screen and (max-width: 768px) {
    p[class*="roofline"][style*="text-align: center;"]::after {
        width: 20px;
        height: 30px;
        background-size: 20px auto;
    }
}

@media screen and (max-width: 768px) {
    p[class*="roofline"][style*="text-align: center;"] {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media screen and (max-width: 1200px) {
    p[class*="roofline"] {
        line-height: 120%;
    }
}

@media screen and (max-width: 768px) {
    p[class*="roofline"] {
        padding-left: 30px;
        background-size: 20px auto;
        margin-bottom: 20px;
    }
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

i,
em {
    font-style: italic;
}

strong,
b {
    font-weight: 700;
}

.cont a {
    text-decoration: none;
    color: #232223;
    transition: all 0.3s;
    text-underline-offset: 4px;
}

.cont a[href$=".jpg"]:hover > img,
.cont a[href$=".jpeg"]:hover > img,
.cont a[href$=".JPG"]:hover > img,
.cont a[href$=".png"]:hover > img,
.cont a[href$=".PNG"]:hover > img {
    opacity: 0.8;
}

/* ========================================
   BUTTON STYLES
======================================== */

button.submit,
a.btn,
.is-style-btn > a {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 17px 30px;
    color: #232223;
    background: #1fd60f;
    margin-top: 35px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    line-height: 22px;
    border-radius: 18px;
}

button.submit:hover,
a.btn:hover,
.is-style-btn > a:hover {
    background: #232223;
    color: #1fd60f;
}

button.submit.secondary,
a.btn.secondary,
.is-style-btn > a.secondary {
    background: none;
    border-radius: 0;
    padding: 0;
    text-decoration: underline;
    color: #1fd60f;
    text-transform: none;
}

button.submit.secondary:hover,
a.btn.secondary:hover,
.is-style-btn > a.secondary:hover {
    -webkit-transform: none;
    transform: none;
    color: #232223;
}

@media screen and (max-width: 768px) {
    button.submit,
    a.btn,
    .is-style-btn > a {
        margin-top: 20px;
    }
}

@media screen and (max-width: 470px) {
    button.submit,
    a.btn,
    .is-style-btn > a {
        width: 100%;
        text-align: center;
    }
}

.buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.buttons .btn {
    margin-right: 50px;
}

@media screen and (max-width: 470px) {
    .buttons .btn {
        margin-right: 0;
    }
}

/* ========================================
   CONTACT LINK STYLES
======================================== */

a.phone,
.phone,
a.email,
.email,
a.mobile,
.mobile,
a.whatsapp,
.whatsapp {
    display: inline-block;
    text-decoration: none;
    color: #232223;
    font-weight: 500;
}

a.phone:visited,
.phone:visited,
a.email:visited,
.email:visited,
a.mobile:visited,
.mobile:visited,
a.whatsapp:visited,
.whatsapp:visited {
    text-decoration: none;
    color: #232223;
}

a.phone,
.phone {
    padding-left: 25px;
    background: url(../img/phone-green.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px auto;
}

a.email,
.email {
    padding-left: 25px;
    background: url(../img/email-green.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 17px auto;
}

a.mobile,
.mobile {
    padding-left: 25px;
    background: url(../img/mobile-green.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 18px;
}

a.whatsapp,
.whatsapp {
    padding-left: 25px;
    background: url(../img/whatsapp-green.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 18px;
}

p.location,
.location {
    display: inline-block;
    padding-left: 25px;
    background: url(../img/location-green.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 22px;
}

p strong.bigLetter {
    font-weight: 700;
    font-size: 120%;
    color: #1fd60f;
    margin-right: 1px;
}

ul.styled_list li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 10px;
    font-weight: 500;
}

ul.styled_list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 13px;
    height: 17px;
    background: url(../img/shield.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: center;
}

ul.styled_list.regular_text li {
    font-weight: 400;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

header.head {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    z-index: 999;
    transition: all 0.3s;
}

header.head .inner {
    margin: 0 auto;
    width: 96%;
    max-width: 1600px;
    min-height: 160px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    transition: all 0.3s;
}

header.head .inner #logo {
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-width: 103.1px;
    height: 114.3px;
    margin-right: auto;
    transition: all 0.3s;
    order: -2;
}

header.head .inner #logo:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

header.head .inner #logo a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

header.head .inner #logo a span {
    display: none;
}

header.head .inner nav#site-navigation a {
    text-decoration: none;
}

/* Right Navigation */
@media screen and (max-width: 1120px) {
    header.head .inner .right_nav {
        margin-left: 0px;
        margin-right: 30px;
        order: -1;
    }

    header.head .inner .right_nav a {
        background-size: 20px;
        white-space: nowrap;
    }

    header.head .inner .right_nav a:hover {
        color: #1fd60f;
    }
}

@media screen and (min-width: 1121px) {
    header.head .inner .right_nav {
        margin-left: 40px;
    }

    header.head .inner .right_nav a {
        font-weight: 600;
        color: #fff;
        transition: all 0.3s;
    }

    header.head .inner .right_nav a:hover {
        color: #1fd60f;
    }
}

@media screen and (min-width: 1121px) and (max-width: 1350px) {
    header.head .inner .right_nav a {
        display: block;
        font-size: 0;
        color: transparent;
        width: 20px;
        height: 20px;
        padding-left: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px auto;
    }
}

/* Main Navigation - Desktop */
@media screen and (min-width: 1121px) {
    header.head .inner nav#site-navigation ul#primary-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header.head .inner nav#site-navigation ul#primary-menu button.sub {
        display: none;
    }

    header.head .inner nav#site-navigation ul#primary-menu li[class*="has-children"] > a:after {
        content: "";
        position: relative;
        display: inline-block;
        margin-left: 5px;
        width: 0;
        height: 0;
        vertical-align: middle;
        border-top: 4px solid #1fd60f;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li {
        position: relative;
        margin-right: 60px;
        padding: 20px 0;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        -webkit-transform: translate(-50%, -10px);
        transform: translate(-50%, -10px);
        width: 16px;
        height: 21px;
        background: url(../img/shield.svg) no-repeat center/16px auto;
        opacity: 0;
        transition: all 0.3s;
        z-index: 1;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li a {
        color: #fff;
        font-weight: 500;
        position: relative;
        display: block;
        height: 100%;
        transition: all 0.3s;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li:last-child {
        margin-right: 0;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li:hover:not(.menu-item-has-children) > a {
        color: #1fd60f;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li:hover:not(.menu-item-has-children)::after {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    header.head .inner nav#site-navigation ul#primary-menu > li.current_page_item > a,
    header.head .inner nav#site-navigation ul#primary-menu > li.current_page_ancestor > a {
        font-weight: bold;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li.current_page_ancestor > ul > li.current_page_item a {
        background: #fff;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li.current_page_ancestor > ul > li.current_page_item a:hover {
        color: #1fd60f;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li:hover > ul {
        display: block;
    }

    /* Dropdown Menus */
    header.head .inner nav#site-navigation ul#primary-menu > li ul {
        display: none;
        text-align: left;
        position: absolute;
        top: 82%;
        left: 50%;
        box-shadow: 0px 16px 8px -11px rgba(0, 0, 0, 0.1);
        border-radius: 21px;
        z-index: 1;
        min-width: calc(100% - 40px);
        background: #fff;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        padding: 8px 16px;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li ul li {
        display: inline-block;
        width: 100%;
        position: relative;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li ul li:not(:last-child) {
        border-bottom: 1px solid #232223;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li ul li a {
        display: block;
        line-height: 44px;
        width: 100%;
        color: #232223;
        white-space: nowrap;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li ul li a:hover {
        color: #1fd60f !important;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li ul li:hover > ul {
        display: block;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li ul li ul {
        position: absolute;
        left: 100%;
        top: 0;
        margin: 0;
    }
}

/* Mobile Navigation */
@media screen and (max-width: 1120px) {
    header.head .inner .right_nav {
        margin-left: 40px;
    }

    header.head .inner .right_nav a {
        color: #fff;
        transition: all 0.3s;
    }

    header.head .inner .right_nav a:hover {
        color: #1fd60f;
    }
}

@media screen and (max-width: 1120px) and (max-width: 768px) {
    header.head .inner .right_nav {
        margin-left: 20px;
    }

    header.head .inner .right_nav a {
        font-size: 0;
        color: transparent;
        padding: 0;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1120px) {
    header.head .inner nav#site-navigation.toggled ul#primary-menu {
        display: block;
    }

    header.head .inner nav#site-navigation.toggled li.focus > ul {
        display: block;
    }

    header.head .inner nav#site-navigation ul {
        display: none;
    }

    header.head .inner nav#site-navigation ul#primary-menu {
        margin: 0;
        position: absolute;
        bottom: 0;
        -webkit-transform: translateY(100%) translateY(0px);
        transform: translateY(100%) translateY(0px);
        width: 100%;
        left: 0;
        max-height: 50vh;
        overflow-y: auto;
        background: #fff;
        text-align: center;
        box-shadow: 0px 30px 28px -3px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 0;
    }

    header.head .inner nav#site-navigation ul#primary-menu > li:last-child {
        border-bottom: none;
    }

    header.head .inner nav#site-navigation ul#primary-menu li {
        display: block;
        position: relative;
        transition: all 0.3s;
    }

    header.head .inner nav#site-navigation ul#primary-menu li.focus > ul {
        display: block;
        position: static;
    }

    header.head .inner nav#site-navigation ul#primary-menu li.current-page-parent:hover {
        color: #1fd60f;
        transition: all 0.3s;
    }

    header.head .inner nav#site-navigation ul#primary-menu li button.sub {
        border: none;
        position: absolute;
        display: block;
        right: 2%;
        top: 14px;
        width: 34px;
        height: 34px;
        cursor: pointer;
        background: #1fd60f;
        z-index: 3;
    }

    header.head .inner nav#site-navigation ul#primary-menu li button.sub:after {
        content: "";
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        vertical-align: middle;
        border-top: 4px solid #fff;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    header.head .inner nav#site-navigation ul#primary-menu li.focus > button.sub {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    header.head .inner nav#site-navigation ul#primary-menu li a {
        color: #fff;
        padding: 15px 20px;
        display: block;
    }

    header.head .inner nav#site-navigation ul#primary-menu li:hover {
        color: #1fd60f;
        transition: all 0.3s;
    }

    header.head .inner nav#site-navigation ul#primary-menu li ul li a {
        font-size: 90%;
    }
}

/* Mobile Menu Toggle Button */
header.head .inner button.menu-toggle {
    position: relative;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: 0;
    transition: all 0.3s;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: transparent;
}

@media screen and (min-width: 1121px) {
    header.head .inner button.menu-toggle {
        display: none;
    }
}

header.head .inner button.menu-toggle .burger_line {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 2px;
    left: 50%;
    background: #232223;
    transition: all 0.3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

header.head .inner button.menu-toggle .burger_line-top {
    top: 10px;
}

header.head .inner button.menu-toggle .burger_line-middle {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

header.head .inner button.menu-toggle .burger_line-bottom {
    bottom: 10px;
}

header.head .inner button.menu-toggle[aria-expanded="true"] {
    background: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

header.head .inner button.menu-toggle[aria-expanded="true"] .burger_line-top {
    top: initial;
    left: 0;
    -webkit-transform: rotate(-135deg) translate(0);
    transform: rotate(-135deg) translate(0);
}

header.head .inner button.menu-toggle[aria-expanded="true"] .burger_line-middle {
    background: none;
}

header.head .inner button.menu-toggle[aria-expanded="true"] .burger_line-bottom {
    bottom: initial;
    left: 0;
    -webkit-transform: rotate(135deg) translate(0);
    transform: rotate(135deg) translate(0);
}

/* Sticky Header */
header.head.is-sticky {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}

header.head.is-sticky + .snt {
    height: 0px;
    display: block;
}

header.head.is-sticky #logo {
    min-width: 44px;
    height: 50px;
}

header.head.is-sticky .inner {
    min-height: 77px;
}

header.head.is-sticky .inner ul#primary-menu > li a {
    color: #000 !important;
}

header.head.is-sticky .inner .right_nav a {
    color: #000;
}

header.head.is-sticky .inner .right_nav a:hover {
    color: #1fd60f;
}

header.head.is-sticky .inner nav#site-navigation ul#primary-menu > li ul {
    border-radius: 0 0 21px 21px;
}

header.head.is-sticky .inner nav#site-navigation ul#primary-menu > li ul::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 32px);
    height: 1px;
    background: #232223;
}

@media screen and (min-width: 1121px) {
    header.head.is-sticky .inner nav.nav ul#site-navigation li {
        margin-right: 10px;
    }

    header.head.is-sticky .inner nav.nav ul#site-navigation li a {
        color: #000;
    }

    header.head.is-sticky .inner nav.nav ul#site-navigation li:last-child {
        margin-right: 0;
    }

    header.head.is-sticky .inner nav.nav ul#site-navigation li:hover a {
        font-weight: 300;
        position: relative;
    }

    header.head.is-sticky .inner nav.nav ul#site-navigation li:hover a::before {
        height: 5px;
    }

    header.head.is-sticky .inner nav.nav ul#site-navigation li.menu-item-has-children .sub-menu {
        display: none;
    }
}

/* Menu Animations */
@-webkit-keyframes mm {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes mm {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes mmopen {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    33% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    66% {
        -webkit-transform: scale(0);
        transform: scale(0);
        background: linear-gradient(45deg, transparent 0%, transparent 50%, #000 50%, #000 50%, transparent 55%, transparent 100%),
                    linear-gradient(135deg, transparent 0%, transparent 51%, #000 50%, #000 55%, transparent 55%, transparent 100%);
    }
    100% {
        -webkit-transform: scale(1) rotate(180deg);
        transform: scale(1) rotate(180deg);
        background-image: url('data:image/svg+xml;utf8,<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m24 20.188-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z"/></svg>');
    }
}

@keyframes mmopen {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    33% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    66% {
        -webkit-transform: scale(0);
        transform: scale(0);
        background: linear-gradient(45deg, transparent 0%, transparent 50%, #000 50%, #000 50%, transparent 55%, transparent 100%),
                    linear-gradient(135deg, transparent 0%, transparent 51%, #000 50%, #000 55%, transparent 55%, transparent 100%);
    }
    100% {
        -webkit-transform: scale(1) rotate(180deg);
        transform: scale(1) rotate(180deg);
        background-image: url('data:image/svg+xml;utf8,<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m24 20.188-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z"/></svg>');
    }
}

/* Navigation Utility Classes */
.current-menu-item > a {
    font-weight: bold !important;
}

.right_nav {
    display: flex;
    gap: 30px;
}

.right_nav a.whatsapp,
.right_nav a.email {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .right_nav a.whatsapp,
    .right_nav a.email {
        display: inline-block !important;
    }
}

/* ========================================
   FOOTER STYLES
======================================== */

footer.foot {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #232223;
    color: #fff;
    padding: 90px 0 4px;
    position: relative;
}

footer.foot .inner {
    max-width: 1004px;
    margin: 0 auto;
    width: 92%;
}

footer.foot .inner a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

footer.foot .inner a:hover {
    color: #1fd60f;
}

footer.foot .inner p {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

footer.foot .inner h1,
footer.foot .inner h2,
footer.foot .inner h3,
footer.foot .inner h4,
footer.foot .inner h5,
footer.foot .inner h6 {
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
    position: relative;
    padding-top: 40px;
    margin-bottom: 35px;
}

footer.foot .inner h1:before,
footer.foot .inner h2:before,
footer.foot .inner h3:before,
footer.foot .inner h4:before,
footer.foot .inner h5:before,
footer.foot .inner h6:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 50px;
    height: 5px;
    border-radius: 5px;
    background: #232223;
}

footer.foot .inner ul li {
    display: inline-block;
}

footer.foot .inner .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

@media screen and (max-width: 1065px) {
    footer.foot .inner .row {
        justify-items: center;
    }
}

@media screen and (max-width: 768px) {
    footer.foot .inner .row {
        display: flex;
        flex-direction: column;
        justify-items: center;
        text-align: center;
    }
}

footer.foot .inner .row:not(:last-of-type) {
    margin-bottom: 35px;
}

footer.foot .inner .row .location {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    footer.foot .inner .row .location {
        background-position: center top;
        padding: 0;
        padding-top: 25px;
    }
}

@media screen and (max-width: 768px) {
    footer.foot .inner .row .col {
        width: 100%;
    }
}

footer.foot .inner .row.row-1 .col .custom_text .inner {
    width: 100%;
}

@media screen and (max-width: 1065px) {
    footer.foot .inner .row.row-1 .col-1 {
        grid-column: 1/3;
        grid-row: 1/2;
    }
}

@media screen and (max-width: 1065px) {
    footer.foot .inner .row.row-1 .col-2 {
        grid-column: 1/2;
        grid-row: 2/3;
    }
}

@media screen and (max-width: 1065px) {
    footer.foot .inner .row.row-1 .col-3 {
        grid-column: 2/3;
        grid-row: 2/3;
    }
}

footer.foot .inner .row.row-1 ul li {
    display: block;
}

footer.foot .inner .row.row-1 .col-3 {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    footer.foot .inner .row.row-1 .col-3 {
        align-items: center;
    }
}

footer.foot .inner .row.row-2 {
    align-items: baseline;
    font-size: 14px;
    font-weight: 200;
}

@media screen and (max-width: 1065px) {
    footer.foot .inner .row.row-2 {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
}

@media screen and (max-width: 1024px) {
    footer.foot .inner .row.row-2 {
        gap: 0;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}

footer.foot .inner .row.row-2 .col p {
    margin-bottom: 0;
}

footer.foot .inner .row.row-2 .col-2 .widget {
    display: inline-block;
}

footer.foot .inner .row.row-2 ul li a {
    padding-right: 10px;
}

footer.foot .inner .row.row-2 ul li:last-child a {
    border-right: none;
    padding-right: 0;
}

footer.foot .inner .row.row-2 ul li:not(:last-of-type) {
    margin-right: 10px;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */

.backtotop {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 75px;
    height: 75px;
    display: block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: #232223;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(75px) rotate(180deg);
    transform: translateY(75px) rotate(180deg);
    transition: all 0.3s;
}

.backtotop::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    background: url("../img/backtotop.svg") no-repeat center center/16px auto;
    transition: all 0.3s;
}

.backtotop:hover::after {
    -webkit-animation: bounce 1s infinite;
    animation: bounce 1s infinite;
}

.backtotop span {
    display: none;
}

.backtotop:hover {
    background-color: #1fd60f;
}

.backtotop.visible {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0%) rotate(180deg);
    transform: translateY(0%) rotate(180deg);
}

/* ========================================
   GRAVITY FORMS STYLES
======================================== */

.gform_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 .gform_heading {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 .gform_validation_errors {
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 20px;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gform_body .gform_fields#gform_fields_1 {
    display: grid;
    grid-template-areas: "area1 area6" "area2 area6" "area3 area6" "area4 area6" "area9 area7" "area5 area8";
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 20px;
}

@media screen and (max-width: 768px) {
    .gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gform_body .gform_fields#gform_fields_1 {
        grid-template-areas: "area1" "area2" "area3" "area4" "area5" "area9" "area6" "area7" "area8";
        grid-template-columns: 1fr;
    }
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 a {
    font-weight: 700;
    color: #000;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 a:hover {
    color: #1fd60f;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .spacer.gfield {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield {
    position: relative;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield .gfield_label {
    position: absolute;
    top: 0;
    left: 15px;
    color: #1fd60f;
    font-size: 12px;
    font-weight: 400;
    color: #1fd60f;
    letter-spacing: 0.47px;
    line-height: 30px;
    opacity: 0;
    transition: all 0.3s;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield .gfield_label span.gfield_required.gfield_required_asterisk {
    color: #1fd60f;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.active .gfield_label {
    opacity: 1 !important;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield input,
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield textarea {
    padding: 20px 15px 1px;
    font-size: 16px;
    letter-spacing: 0.62px;
    line-height: 30px;
    border-radius: 9px;
    outline: none;
    border: none;
    color: #232223;
    resize: vertical;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield input::-webkit-input-placeholder,
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield textarea::-webkit-input-placeholder {
    color: #232223 !important;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield input::-moz-placeholder,
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield textarea::-moz-placeholder {
    color: #232223 !important;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield input:-ms-input-placeholder,
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield textarea:-ms-input-placeholder {
    color: #232223 !important;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield input::placeholder,
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield textarea::placeholder {
    color: #232223 !important;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.gfield_error input,
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.gfield_error textarea {
    border: 2px solid #b10000;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield .gfield_validation_message {
    border: none;
    background: transparent;
    display: none;
}

/* Form Field Grid Areas */
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.lastname {
    grid-area: area1;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.firstname {
    grid-area: area2;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.emailaddress {
    grid-area: area3;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.phonenumber {
    grid-area: area4;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.zipcode {
    grid-area: area9;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.yourmessage {
    grid-area: area6;
}

@media screen and (max-width: 768px) {
    .gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.yourmessage {
        grid-area: area5;
    }
}

/* File Upload Field */
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload {
    position: relative;
    grid-area: area7;
    display: flex;
    flex-direction: column-reverse;
}

@media screen and (max-width: 768px) {
    .gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload {
        grid-area: area6;
    }
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload label {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .gform_fileupload_rules {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .ginput_container.ginput_container_fileupload {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "fuarea1 . ." "fuarea2 . .";
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .ginput_container.ginput_container_fileupload .gform_fileupload_multifile {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .ginput_container.ginput_container_fileupload .gform_drop_area {
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .ginput_container.ginput_container_fileupload .gform_drop_area button {
    background: url(../img/upload.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 38px;
    width: 22px;
    height: 38px;
    color: transparent;
    font-size: 0;
    border: none;
    cursor: pointer;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .ginput_container.ginput_container_fileupload .gform_drop_area .gform_drop_instructions {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload #gform_preview_1_10 {
    grid-area: fuarea2;
    color: #fff;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload #gform_preview_1_10 .dashicons {
    color: #fff;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.fileupload .gfield_description {
    color: #232223;
    grid-area: fuarea1;
    padding-top: 0;
    font-size: 16px;
    background: #fff;
    padding: 16px 15px 1px;
    border-radius: 9px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}

/* Data Privacy Field */
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy {
    grid-area: area5;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy {
        grid-area: area7;
    }
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy legend.gfield_label {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    font-size: 14px;
    letter-spacing: 0.54px;
    line-height: 20px;
    max-width: 415px;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent .gfield_required.gfield_required_asterisk {
    display: none;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent input[type="checkbox"] {
    border: 1px solid #232223;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    padding: 0;
    transition: all 0.3s;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 12px;
    background: url(../img/check.svg);
    background-repeat: no-repeat;
    background-size: 16px auto;
    background-position: center;
    z-index: 2;
    transition: all 0.3s;
    opacity: 0;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent input[type="checkbox"]:checked {
    background: #1fd60f;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent input[type="checkbox"]:checked::after {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.dataprivacy .ginput_container.ginput_container_consent {
        max-width: unset;
    }
}

/* Send Button Field */
.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.sendbutton {
    grid-area: area8;
    margin-top: 30px;
}

.gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.sendbutton button.submit {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .gform_wrapper.gravity-theme#gform_wrapper_1 form.kontakt#gform_1 .gfield.sendbutton button.submit {
        width: 100%;
    }
}

.gform_wrapper.gravity-theme#gform_wrapper_1 .gform_footer {
    font-size: 0;
    color: transparent;
    opacity: 0;
}

/* Additional Form Elements */
.ginput_preview {
    color: #232223 !important;
}

.gform_submission_error {
    padding: 20px;
    margin-bottom: 20px;
    background: #c02b0a;
    color: #fff !important;
    border-radius: 9px;
}

.gfield_fileupload_percent {
    margin: 0 10px;
    font-weight: 700;
}

.gfield_description {
    cursor: pointer;
}

/* ========================================
   MAGNIFIC POPUP STYLES
======================================== */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

/* Preloader */
.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

/* Close & Arrow Buttons */
button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

/* Navigation Arrows */
.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

/* iFrame Holder */
.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Image Popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

/* Mobile Styles */
@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* ========================================
   SLICK SLIDER STYLES
======================================== */

.slick-slider {
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slick Navigation */
.slick-prev,
.slick-next {
    width: 15px;
    height: 15px;
    background: transparent;
    font-size: 0;
    border: 0;
    z-index: 10;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
    border-color: #1fd60f;
}

.slick-prev {
    left: 20px;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    rotate: -45deg;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: 20px;
}

.slick-next {
    right: 20px;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-right: 3px solid rgba(255, 255, 255, 0.5);
    rotate: 45deg;
}

[dir="rtl"] .slick-next {
    left: 20px;
    right: auto;
}

/* Slick Dots */
.slick-dots {
    justify-content: center;
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border-radius: 50%;
    border: 0;
    background: #232223;
    display: block;
    height: 100%;
    width: 100%;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    opacity: .25;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    opacity: 1;
}

.slick-dots li.slick-active button {
    opacity: .75;
}

.slick-dots li::before {
    content: none !important;
}

/* ========================================
   WOOCOMMERCE STYLES
======================================== */

/* Page Layout */
BODY.single-product .cont,
BODY.woocommerce-cart .cont,
BODY.woocommerce-checkout .cont,
BODY.woocommerce-page.search .cont,
BODY.woocommerce-page.archive .cont,
BODY.woocommerce-account .cont {
    max-width: 1400px;
    width: 96%;
    margin: 0 auto;
    padding-bottom: 100px;
    padding-top: 100px;
}

BODY.woocommerce-page #allcont .head {
    z-index: 9999;
}

BODY.woocommerce-page #allcont .cont #primary {
    flex: 1 1 65%;
}

BODY.woocommerce-page #allcont .cont #secondary {
    flex: 1 1 30%;
    padding: 25px;
    background: #f7f7f7;
}

BODY.woocommerce-page #allcont .cont #secondary .widget {
    margin-bottom: 30px;
}

BODY.woocommerce-page:not(.woocommerce-cart) .cont {
    display: flex;
    flex-direction: row-reverse;
}

/* Button Styles */
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce span.onsale {
    background-color: #232223;
    color: #fff;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce #respond input#submit.alt:focus,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce input.button.alt:hover,
.woocommerce input.button.alt:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce span.onsale:hover,
.woocommerce span.onsale:focus {
    background-color: rgba(35, 34, 35, 0.5);
    color: #fff;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce span.onsale {
    border-radius: 0;
}

.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
    color: #fff;
}

/* Price Styles */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: #232223;
}

/* Message Styles */
.woocommerce-message {
    border-top-color: #232223;
}

.woocommerce-message::before {
    color: #232223;
}

/* Checkout Styles */
.woocommerce-checkout .woocommerce {
    width: 96%;
    margin: auto;
    max-width: 1400px;
}

.woocommerce-checkout .woocommerce .checkout.woocommerce-checkout {
    margin-top: 60px;
}

.woocommerce-checkout .woocommerce #order_review_heading {
    margin-top: 30px;
}

small.wgm-info.wgm-extra-costs-eu {
    line-height: normal;
    display: none;
}

/* Product Grid */
.products > li.product {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.woocommerce ul.products li.product .price {
    flex: 1 1 100%;
    font-size: 18px;
    font-weight: bold;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: normal;
    font-size: 14px;
    margin: 10px 0;
}

.woocommerce ul.products li.product .button {
    flex: 1 1 100%;
    align-self: flex-end !important;
    align-content: flex-end !important;
    background: #232223;
    opacity: 0.8;
    color: white;
    transition: all 0.3s;
}

.woocommerce ul.products li.product .button:hover {
    opacity: 1;
}

.woocommerce ul.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

li.product .wgm-info {
    flex: 1 1 100%;
    margin: -5px 0 !important;
}

/* Cart & Product Details */
td.product-subtotal span.wdr_you_saved_con {
    display: block;
    font-size: 14px;
}

.wdr_you_saved_con {
    color: #232223;
}

.woocommerce ul.products li.product .button {
    text-align: center;
}

.woocommerce ul.products li.product .button.added {
    opacity: 0.3;
}

.woocommerce a.added_to_cart {
    background: #232223;
    display: inline-block;
    padding: .618em 1em;
    line-height: 1;
    margin-top: -35.75px;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product h3 {
    font-size: 17px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
    font-weight: 700;
}

.woocommerce ul.products li.product .onsale {
    margin: 0;
    padding: 5px 10px;
    min-height: 0;
    height: auto;
    line-height: normal;
    font-size: 17px;
}

.wgm-info {
    display: block;
    margin-bottom: -8px;
    font-size: 80%;
}

button#place_order {
    float: right;
}

/* ========================================
   CE-TABS COMPONENT STYLES
======================================== */

.ce-tabs ul.tabs li {
    display: inline-block;
}

.ce-tabs ul.tabs li a {
    display: block;
    padding: 10px 30px;
    background: #f7f7f7;
    color: #232223;
    margin-right: 5px;
}

.ce-tabs ul.tabs li a:before {
    display: none;
}

.ce-tabs ul.tabs li a.active_tab,
.ce-tabs ul.tabs li a:hover {
    background: #232223;
    color: #f7f7f7;
}

.ce-tabs ul.tabs li a h4 {
    margin: 0;
}

.ce-tabs .tab_wrapper .tab {
    display: none;
    width: 100%;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-top: none;
    z-index: 1;
    position: relative;
}

.ce-tabs .tab_wrapper .tab:first-child {
    display: block;
}

.ce-tabs .tab_wrapper .tab.act {
    background: #232223;
}

.ce-tabs .tab_wrapper .tab .ce-tab-title {
    display: none;
}

/* ========================================
   CE-ACCORDION COMPONENT STYLES
======================================== */

.ce-accordion {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
}

.ce-accordion .entry {
    overflow: hidden;
    list-style: none;
    margin-bottom: 15px;
}

.ce-accordion .entry.act .accordion-headline {
    background: linear-gradient(270deg, #1fd60f 0%, #9cdc8c 33.24%, #1fd60f 83.6%, #17a00b 100%);
    color: #fff;
}

.ce-accordion .entry.act .accordion-headline:after {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
}

.ce-accordion .entry .accordion-headline {
    padding: 5px 18px;
    background: #232223;
    color: #fff;
    font-size: clamp(17px, 4vw, 20px);
    line-height: 44px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: all 0.3s;
    padding-right: 50px;
    border-radius: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ce-accordion .entry .accordion-headline:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 12px;
    width: 25px;
    height: 25px;
    background: url(../img/drop-arrow.svg) no-repeat right top 10px/20px 11px;
    color: white;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
}

@media screen and (max-width: 768px) {
    .ce-accordion .entry .accordion-headline {
        line-height: 160%;
    }
}

.ce-accordion .entry .accordion-content-wrap {
    transition: all 0.3s;
    height: 0;
    overflow: hidden;
}

.ce-accordion .entry .accordion-content-wrap .accordion-content {
    margin: 0;
    padding: 20px;
}

@media all and (max-width: 768px) {
    .ce-accordion .entry .accordion-content-wrap .accordion-content {
        padding: 20px;
    }
}

.ce-accordion .entry .accordion-content-wrap .accordion-content > *:last-child {
    margin-bottom: 0;
}

/* ========================================
   BANNER COMPONENT STYLES
======================================== */

.banner {
    position: relative;
    height: 800px;
    display: flex;
    align-items: flex-end;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
    transition: all 0.3s;
    z-index: 2;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.76);
}

@media screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: flex-end;
        height: auto;
        box-shadow: none;
        padding-bottom: 150px;
        padding-top: 200px;
    }
}

.banner--small {
    height: 600px !important;
}

.banner--small .background_image {
    max-height: 600px !important;
}

/* Banner Background Image */
.banner .background_image,
.banner .background_video {
    position: absolute;
    inset: 0;
    max-width: 1920px;
    max-height: 800px;
    z-index: -1;
}

.banner .background_image::after,
.banner .background_video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.64;
    background: #232223;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
}
.banner .background_video::after {
    background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner .background_image img,
.banner .background_video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
}

@media screen and (max-width: 768px) {
    .banner .background_image,
    .banner .background_video {
        max-height: unset;
    }
}

/* Banner Text Content */
.banner .text {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto 80px;
}

.banner .text a.btn {
    margin-top: 35px;
}

.banner .text h1,
.banner .text h2,
.banner .text h3,
.banner .text h4,
.banner .text h5,
.banner .text h6 {
    color: #fff;
    margin-bottom: 0;
}

.banner .text h1,
.banner .text h2,
.banner .text h3,
.banner .text h4,
.banner .text h5,
.banner .text h6,
.banner .text .roofline {
    max-width: 1275px;
}

@media screen and (max-width: 768px) {
    .banner .text h1,
    .banner .text h2,
    .banner .text h3,
    .banner .text h4,
    .banner .text h5,
    .banner .text h6,
    .banner .text .roofline {
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        padding-left: 0;
    }

    .banner .text h1::after,
    .banner .text h2::after,
    .banner .text h3::after,
    .banner .text h4::after,
    .banner .text h5::after,
    .banner .text h6::after,
    .banner .text .roofline::after {
        display: none;
    }

    .banner .text {
        margin-bottom: 0;
        margin-top: auto;
    }
}

/* Google Rating Widget */
.banner .google_rating {
    position: absolute;
    bottom: -71px;
    right: 160px;
    width: 342px;
    height: 142px;
    transition: all 0.3s;
}

.banner .google_rating img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 26px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .banner .google_rating {
        position: absolute;
        top: 20%;
        bottom: unset;
        right: 0;
        width: 250px;
        height: 110px;
    }

    .banner .google_rating img {
        border-radius: 0;
        border-radius: 15px 0 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .banner .google_rating {
        bottom: 0px;
        width: 100%;
        top: unset;
        z-index: 5;
    }

    .banner .google_rating img {
        box-shadow: unset;
        border-radius: 0;
        mix-blend-mode: darken;
    }
}

/* ========================================
   CUSTOM TEXT COMPONENT
======================================== */

.custom-text {
    --column-count: 2;
    --ct-max-width: $break_bigScreen;
    max-width: var(--ct-max-width);
    width: 92%;
    margin: 0 auto;
    position: relative;
}

.custom-text__illustration {
    position: absolute;
    right: 0;
    z-index: 0;
}

.custom-text__illustration img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .custom-text__illustration {
        display: none;
    }
}

.custom-text__title > .roofline {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding-left: unset;
    gap: 15px;
    margin-bottom: 10px;
}

.custom-text__title > .roofline::after {
    display: block;
    position: unset;
}

.custom-text__inner {
    display: grid;
    grid-template-columns: repeat(var(--column-count), 1fr);
    gap: 0 clamp(20px, 5vw, 100px);
}

.custom-text__column {
    z-index: 10;
}

.custom-text__buttons {
    margin-top: 10px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px 50px;
    flex-wrap: wrap;
}

/* Custom Text Modifiers */
.custom-text--single-column {
    --column-count: 1;
}

.custom-text--centered .custom-text__title {
    text-align: center;
}

.custom-text--centered .custom-text__title > .roofline {
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

.custom-text--centered .custom-text__buttons {
    margin-inline: auto;
}

.custom-text--centered .custom-text__column {
    max-width: 791px;
    margin-inline: auto;
    text-align: center;
}

.custom-text--use-columns {
    --column-count: 1;
}

.custom-text--use-columns .custom-text__column {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: clamp(20px, 5vw, 100px);
    -moz-column-gap: clamp(20px, 5vw, 100px);
    column-gap: clamp(20px, 5vw, 100px);
}

.custom-text--small {
    --ct-max-width: 1200px;
}

.custom-text--medium {
    --ct-max-width: 1660px;
}

.custom-text--full {
    --ct-max-width: 1920px;
}

@media screen and (max-width: 1024px) {
    .custom-text__inner {
        grid-template-columns: 1fr;
    }

    .custom-text--use-columns .custom-text__column {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
}

/* ========================================
   CONTACT FORM COMPONENT
======================================== */

.contact_form {
    padding: 60px 0 20px;
    margin: 0% auto;
    max-width: 1400px;
    width: 92%;
}

.contact_form .form_heading_section {
    max-width: 490px;
    width: 100%;
    margin-bottom: 20px;
}

.contact_form__illustration {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact_form__illustration img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .contact_form__illustration {
        display: none;
    }
}

.contact_form h3 {
    margin-bottom: 0;
    font-weight: 500;
}

.contact_form_wrapper {
    position: relative;
}

/* ========================================
   ICON TEXT REPEATER COMPONENT
======================================== */

.icon_text_repeater {
    padding: 135px 0;
}

@media screen and (max-width: 1024px) {
    .icon_text_repeater {
        padding: 60px 0;
    }
}

.icon_text_repeater .icon_text_items {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 85px;
}

@media screen and (max-width: 768px) {
    .icon_text_repeater .icon_text_items {
        gap: 40px;
    }
}

.icon_text_repeater .icon_text_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon_text_repeater .icon_text_item .icon {
    width: 65px;
    height: 80px;
    margin-bottom: 25px;
}

.icon_text_repeater .icon_text_item .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .icon_text_repeater .icon_text_item .icon {
        width: 45px;
        height: 60px;
        margin-bottom: 10px;
    }
}

.icon_text_repeater .icon_text_item .text {
    color: #232223;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 28px;
}

/* ========================================
   STICKY CONTACT COMPONENT
======================================== */

.sticky_contact {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 1920px;
    width: 100%;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
}

@media screen and (max-width: 768px) {
    .sticky_contact {
        display: none;
    }
}

.sticky_contact .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 20px;
    overflow: hidden;
    padding: 10px;
    background: #1fd60f;
    border-radius: 18px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .sticky_contact .inner {
        margin-right: 0;
    }

    .sticky_contact {
        top: initial;
        bottom: 100px;
    }
}

/* Base Contact Link Styles */
.sticky_contact a.phone,
.sticky_contact a.email,
.sticky_contact a.mobile,
.sticky_contact a.whatsapp {
    /* box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1); */
    position: relative;
    text-decoration: none;
    color: #232223;
    font-weight: 600;
    background: none;
    padding: 12px;
    height: 55px;
    /* background: #1fd60f; */
    /* border-radius: 18px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
}

.sticky_contact a.phone:visited,
.sticky_contact a.email:visited,
.sticky_contact a.mobile:visited,
.sticky_contact a.whatsapp:visited {
    text-decoration: none;
    color: #232223;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.phone,
    .sticky_contact a.email,
    .sticky_contact a.mobile,
    .sticky_contact a.whatsapp {
        height: 35px;
        width: 35px;
        border-radius: 9px;
        padding: 0;
    }
}

/* Icon Styles */
.sticky_contact a.phone .icon,
.sticky_contact a.email .icon,
.sticky_contact a.mobile .icon,
.sticky_contact a.whatsapp .icon {
    height: 55px;
    width: 55px;
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
    transition: all 0.3s;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.phone .icon,
    .sticky_contact a.email .icon,
    .sticky_contact a.mobile .icon,
    .sticky_contact a.whatsapp .icon {
        height: 35px;
        width: 35px;
    }
}

/* Text Label Styles */
.sticky_contact a.phone span,
.sticky_contact a.email span,
.sticky_contact a.mobile span,
.sticky_contact a.whatsapp span {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    color: transparent;
    font-size: 0;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.phone span,
    .sticky_contact a.email span,
    .sticky_contact a.mobile span,
    .sticky_contact a.whatsapp span {
        display: none;
    }
}

/* Hover Effects */
/* .sticky_contact a.phone:hover,
.sticky_contact a.email:hover,
.sticky_contact a.mobile:hover,
.sticky_contact a.whatsapp:hover  */
.sticky_contact:hover a
{
    /* background: #232223; */
    width: auto;
}
.sticky_contact:hover .inner
{
    background: #232223;
}

.sticky_contact a:not(:hover) {
    span:after {
        transform: scaleX(0);
    }
}
.sticky_contact a span {
    position: relative;

    &:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: transform .3s ease;
        border-bottom: 1px solid currentColor
    }
}
/* .sticky_contact a.phone:hover .icon,
.sticky_contact a.email:hover .icon,
.sticky_contact a.mobile:hover .icon,
.sticky_contact a.whatsapp:hover .icon */
.sticky_contact:hover a .icon
{
    -webkit-filter: none;
    filter: none;
}

/* .sticky_contact a.phone:hover span,
.sticky_contact a.email:hover span,
.sticky_contact a.mobile:hover span,
.sticky_contact a.whatsapp:hover span  */
.sticky_contact:hover a span 
{
    color: #1fd60f;
    font-size: 17px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    margin-right: 12px;
}

@media screen and (max-width: 768px) {
    /* .sticky_contact a.phone:hover span,
    .sticky_contact a.email:hover span,
    .sticky_contact a.mobile:hover span,
    .sticky_contact a.whatsapp:hover span  */
    .sticky_contact:hover a span 
    {
        display: none;
    }

    /* .sticky_contact a.phone:hover,
    .sticky_contact a.email:hover,
    .sticky_contact a.mobile:hover,
    .sticky_contact a.whatsapp:hover  */
    .sticky_contact:hover a
    {
        width: 35px;
    }
}

/* Individual Contact Button Styles */
/* .sticky_contact a.phone {
    margin-bottom: 22px;
} */

.sticky_contact a.phone .icon {
    width: 28px;
    height: 28px;
    background: url(../img/phone-green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px auto;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.phone .icon {
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .sticky_contact a.phone {
        margin-bottom: 15px;
        display: none;
    }
}

/* .sticky_contact a.email {
    margin-bottom: 22px;
} */

.sticky_contact a.email .icon {
    width: 31px;
    height: 31px;
    background: url(../img/email-green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 31px auto;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.email .icon {
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .sticky_contact a.email {
        margin-bottom: 15px;
    }
}

/* .sticky_contact a.whatsapp {
    margin-bottom: 22px;
} */

.sticky_contact a.whatsapp .icon {
    width: 31px;
    height: 32px;
    background: url(../img/whatsapp-green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 31px;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.whatsapp .icon {
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .sticky_contact a.whatsapp {
        margin-bottom: 15px;
    }
}

.sticky_contact a.mobile {
    margin-bottom: 22px;
}

.sticky_contact a.mobile .icon {
    width: 28px;
    height: 28px;
    background: url(../img/mobile-green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 28px;
}

@media screen and (max-width: 768px) {
    .sticky_contact a.mobile .icon {
        width: 20px;
        height: 20px;
        background-size: contain;
    }

    .sticky_contact a.mobile {
        margin-bottom: 15px;
    }
}

/* ========================================
   IMAGE TEXT COMPONENT
======================================== */

/* Base Styles */
.image-text {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 100px);
    transition: all 0.3s;
    max-width: 1660px;
    width: 92%;
}

/* Illustration */
.image-text__illustration {
    position: absolute;
    right: 0;
    z-index: 0;
}

.image-text__illustration img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .image-text__illustration {
        display: none;
    }
}

/* Image Section */
.image-text__image {
    flex: 1;
    width: 100%;
    position: relative;
}

.image-text__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 80px 80px 0;
}

/* Layover */
.image-text__layover {
    background: #fff;
    border-radius: 9px;
    padding: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 559px;
    width: 90%;
    text-align: center;
    transition: all 0.3s;
}

.image-text__layover h2 {
    color: #1fd60f;
    font-size: clamp(20px, 4vw, 30px);
    margin-bottom: 22px;
}

.image-text__layover a {
    color: #1fd60f;
    text-decoration: underline;
}

.image-text__layover a:hover {
    color: #232223;
}

.image-text__layover p {
    margin: 0;
}

/* Text Section */
.image-text__text {
    flex: 1;
    max-width: 687px;
    z-index: 1;
}

/* Buttons */
.image-text__buttons {
    display: flex;
    align-items: center;
    gap: 56px;
}

/* Modifiers */
.image-text--reversed {
    margin-left: auto;
    flex-direction: row-reverse;
}

.image-text--reversed .image-text__image img {
    border-radius: 80px 0 0 80px;
}

.image-text--centered {
    margin-inline: auto;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
}

.image-text--centered .image-text__image {
    grid-area: 1/5/2/9;
}

.image-text--centered .image-text__text {
    grid-area: 1/1/2/6;
}

.image-text--text-2-3 .image-text__text {
    flex: 2;
    max-width: 855px;
}

.image-text--remove-image-background .image-text__image img {
    mix-blend-mode: darken;
}

.image-text--big-image .image-text__image {
    height: 837px;
}

.image-text--medium-image .image-text__image {
    height: 697px;
}

.image-text--small-image .image-text__image {
    height: 507px;
}

.image-text--background {
    background: url();
}

/* Responsive Design */
@media screen and (max-width: 1600px) {
    .image-text--centered .image-text__text {
        grid-area: 1/1/2/5;
    }
}

@media screen and (max-width: 1024px) {
    .image-text {
        margin: 0 auto;
        flex-direction: column;
        gap: 40px;
    }

    .image-text--mobile-image-cover .image-text__image img {
        -o-object-fit: cover;
        object-fit: cover;
    }

    .image-text--mobile-image-contain .image-text__image img {
        -o-object-fit: contain;
        object-fit: contain;
    }

    .image-text__image img,
    .image-text--reversed img {
        display: block;
        border-radius: 0 !important;
        max-height: 300px;
    }

    .image-text__image--layover img {
        min-height: 500px;
    }

    .image-text__layover {
        opacity: 0.75;
    }

    .image-text__text {
        max-width: 100% !important;
    }

    .image-text__buttons {
        gap: 10px;
        flex-direction: column;
        padding-bottom: 10px;
    }

    .image-text__buttons > * {
        width: 100%;
        text-align: center;
    }

    .image-text--reversed {
        flex-direction: column;
    }

    .image-text--centered {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .image-text--centered .image-text__image {
        height: auto;
        grid-area: 1/1/2/2;
    }

    .image-text--centered .image-text__image img {
        -o-object-fit: contain;
        object-fit: contain;
    }

    .image-text--centered .image-text__text {
        grid-area: 2/1/3/2;
    }
}

/* ========================================
   TILE REPEATER COMPONENT
======================================== */

/* Base Styles */
.tile_repeater {
    position: relative;
    padding: 95px 0 110px;
}

@media screen and (max-width: 1024px) {
    .tile_repeater {
        padding: 60px 0;
    }
}

/* Background Image */
.tile_repeater .background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 60px 60px;
    overflow: hidden;
}

.tile_repeater .background_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tile_repeater .background_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.63;
    background: #232223;
}

/* Heading Styles */
.tile_repeater.withbgimage .tile_repeater_heading {
    color: #fff;
}

.tile_repeater .tile_repeater_heading {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto 60px;
    font-weight: 500;
}

.tile_repeater .tile_repeater_heading.left {
    text-align: left;
}

.tile_repeater .tile_repeater_heading.center {
    text-align: center;
}

.tile_repeater .tile_repeater_heading.right {
    text-align: right;
}

/* Items Container */
.tile_repeater .tile_repeater_items {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

@media screen and (max-width: 470px) {
    .tile_repeater .tile_repeater_items {
        grid-template-columns: repeat(auto-fit, minmax(280px, 383px));
    }
}

/* Individual Item */
.tile_repeater .tile_repeater_item {
    max-width: 383px;
    width: 100%;
    background: #fff;
    color: #1fd60f;
    text-transform: uppercase;
    padding: 25px;
    font-size: 24px;
    letter-spacing: 0;
    text-align: center;
    line-height: 34px;
    border-radius: 18px;
    transition: all 0.3s;
    position: relative;
}

.tile_repeater .tile_repeater_item span {
    position: relative;
    z-index: 3;
}

/* Item Background */
.tile_repeater .tile_repeater_item_background {
    position: absolute;
    inset: 0;
    background-color: transparent;
    z-index: 0;
    transition: all 0.3s;
    overflow: hidden;
    border-radius: 18px;
}

.tile_repeater .tile_repeater_item_background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 1s all ease;
}

/* Background Image Modifier */
.tile_repeater .tile_repeater_item.has_bg_image {
    background: transparent;
}

.tile_repeater .tile_repeater_item.has_bg_image span {
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .tile_repeater .tile_repeater_item {
        font-size: 20px;
    }
}

/* ========================================
   MAP CONTACT COMPONENT
======================================== */

/* Base Styles */
.map-contact {
    display: flex;
    margin-inline: auto;
    max-width: 1400px;
    width: 92%;
    gap: clamp(20px, 5vw, 100px);
    align-items: center;
}

/* Text Section */
.map-contact__text {
    flex: 1;
}

.map-contact__text ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-contact__text ul li {
    padding-left: 20px;
    display: flex;
    gap: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Icon Backgrounds */
.map-contact__text ul li.location {
    background: url(../img/location-black.svg) no-repeat left 10px/11px;
}

.map-contact__text ul li.phone {
    background: url(../img/phone-black.svg) no-repeat left 10px/13px;
}

.map-contact__text ul li.mobile {
    background: url(../img/mobile-black.svg) no-repeat left 10px/11px;
}

.map-contact__text ul li.email {
    background: url(../img/email-black.svg) no-repeat left 13px/13px;
}

/* Link Styles */
.map-contact__text ul li a:hover:not(.whatsapp) {
    color: #1fd60f;
}

.map-contact__text ul li a {
    transition: all 0.3s;
    color: #232223;
    text-decoration: none;
}

.map-contact__text ul li a.whatsapp {
    color: #1fd60f;
    font-weight: 600;
    text-decoration: underline;
}

.map-contact__text ul li a.whatsapp:hover {
    color: #232223;
}

@media screen and (max-width: 1920px) {
    .map-contact__text ul li {
        flex-direction: column;
        gap: 0px;
    }

    .map-contact__text ul li a.whatsapp {
        margin-left: -21px;
    }
}

/* Image Section */
.map-contact__image {
    height: 507px;
    max-width: 715px;
    margin-right: -119px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 60px;
}

.map-contact__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s;
}

.map-contact__image:hover img {
    scale: 1.1;
}

@media screen and (max-width: 1920px) {
    .map-contact__image {
        margin-right: 0;
    }
}

/* Overlay */
.map-contact__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-decoration: underline;
    transition: all 0.3s;
    font-weight: 500;
    border-radius: 60px;
}

.map-contact__overlay p {
    margin: 0;
    color: #232223;
    border-radius: 15px;
    padding: 5px 10px;
    background: rgba(31, 214, 15, 0.8);
}

/* Illustration */
.map-contact__illustration {
    position: absolute;
    right: 0;
    z-index: 0;
    height: 655px;
    z-index: -1;
    transition: all 0.3s;
}

.map-contact__illustration img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .map-contact__illustration {
        display: none;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .map-contact {
        flex-direction: column;
    }

    .map-contact__image {
        width: 100%;
        max-width: 100%;
        max-height: 400px;
    }

    .map-contact__text {
        flex: 1;
        width: 100%;
    }
}

@media screen and (max-width: 470px) {
    .map-contact__text ul li {
        white-space: unset !important;
    }
}

/* ========================================
   REFERENCE SLIDER COMPONENT
======================================== */

/* Base Styles */
.reference-slider {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    display: grid;
    color: #fff;
    background: #232223;
    box-shadow: 0 0 0 100vmax #232223;
    padding: 75px 0;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 100%;
    gap: 31px;
}

/* Wrapper */
.reference-slider__wrapper {
    overflow: hidden;
}

/* Header Elements */
.reference-slider__title {
    color: #1fd60f;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.reference-slider__counter {
    opacity: 0.5;
    color: #ffffff;
    font-size: 15px;
}

/* Navigation Buttons */
.reference-slider__buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

/* Thumbnails */
.reference-slider__thumbnails {
    width: 100%;
    max-width: 100%;
}

.reference-slider__thumbnail {
    display: flex !important;
    align-items: center;
    gap: 22px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 67%;
    padding-bottom: 20px;
}

.reference-slider__thumbnail h4 {
    margin: 0 !important;
}

/* Preview */
.reference-slider__preview {
    min-width: 141px;
    width: 141px;
    height: 121px;
}

.reference-slider__preview img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 1400px) {
    .reference-slider__description {
        margin-bottom: 31px;
    }
}

/* Grid Areas */
.reference-slider__navigation {
    grid-area: 2/1/3/2;
    width: 100%;
    max-width: 100%;
}

.reference-slider__head {
    grid-area: 1/1/2/2;
    max-width: 100%;
}

.reference-slider__inner {
    grid-area: 3/1/4/2;
}

/* Slider */
.reference-slider__slider {
    max-width: 100%;
}

.reference-slider__slider::after {
    display: none;
}

.reference-slider h4 {
    color: #1fd60f;
    margin: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Reference Content */
.reference__tag {
    font-weight: 500;
    margin-bottom: 0px;
}

.reference__tag span {
    color: #1fd60f;
}

.reference__description {
    margin-top: 15px;
}

.reference__description p {
    line-height: 32px;
}

.reference__tag {
    margin-top: 0 !important;
}

.reference .image-compare {
    min-height: 480px;
    margin-bottom: 100px;
}

@media screen and (max-width: 1400px) {
    .reference .image-compare {
        min-height: 600px;
    }
}

/* Active State */
.slick-current .reference-slider__thumbnail {
    opacity: 1;
}

/* ========================================
   IMAGE BLOCK COMPONENT
======================================== */

/* Base Styles */
.image-block {
    --image-height: 250px;
    --border-radius: 80px;
    --ib-max-width: $break_bigScreen;
    width: 92%;
    max-width: var(--ib-max-width);
    margin-inline: auto;
}

/* Image */
.image-block__image {
    width: 100%;
    min-height: var(--image-height);
    transition: all 0.3s;
}

.image-block__image img {
    border-radius: var(--border-radius);
    display: block;
    width: 100%;
    min-height: var(--image-height);
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s;
}

/* Title */
.image-block__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 5%;
}

.image-block__title h2 {
    color: #fff;
    margin: 0;
}

.image-block__title .roofline {
    margin-bottom: 15px;
}

/* Modifiers */
.image-block--has-title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-block--has-title .image-block__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: #232223;
    border-radius: var(--border-radius);
}

.image-block--centered {
    text-align: center;
}

.image-block--centered .roofline {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}

/* Size Variants */
.image-block--small {
    --ib-max-width: 1200px;
}

.image-block--medium {
    --ib-max-width: 1660px;
}

.image-block--full {
    width: 100%;
    --ib-max-width: 1920px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .image-block {
        --image-height: 200px;
        --border-radius: 0;
    }

    .image-block .roofline {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: center;
        padding-left: unset;
        gap: 15px;
        margin-bottom: 10px;
    }

    .image-block .roofline::after {
        display: block;
        position: unset;
    }
}

@media screen and (max-width: 1920px) {
    .image-block--full {
        --border-radius: 0;
    }
}

/* ========================================
   TEXT AND VIDEO COMPONENT
======================================== */

/* Base Styles */
.text-and-video {
    position: relative;
}

/* Keyframes */
@-webkit-keyframes blurry {
    to {
        -webkit-transform: translateY(-50%) rotate(20deg);
        transform: translateY(-50%) rotate(20deg);
    }
}

@keyframes blurry {
    to {
        -webkit-transform: translateY(-50%) rotate(20deg);
        transform: translateY(-50%) rotate(20deg);
    }
}

/* Background Animation */
.text-and-video::before {
    content: "";
    position: absolute;
    -webkit-animation: blurry 5s linear infinite alternate;
    animation: blurry 5s linear infinite alternate;
    width: 400px;
    height: 600px;
    background: #1fd60f;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 150px;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.6;
    transition: all ease 0.3s;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

@media screen and (max-width: 1920px) {
    .text-and-video::before {
        right: 0;
    }
}

@media screen and (max-width: 1200px) {
    .text-and-video::before {
        opacity: 0;
        -webkit-animation: unset;
        animation: unset;
    }
}

/* Inner Container */
.text-and-video__inner {
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    display: grid;
    max-width: 1320px;
    width: 92%;
}

@media screen and (max-width: 1200px) {
    .text-and-video__inner {
        grid-template-columns: 1fr;
    }
}

/* Text Section */
.text-and-video__text a.btn {
    margin-top: 0;
}

/* Video Section */
.text-and-video__video {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.text-and-video__video video {
    min-height: 400px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
}

/* Overlay */
.text-and-video__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 10;
}

.text-and-video__overlay button {
    background: rgba(31, 214, 15, 0.2) url("../img/play.svg") no-repeat center/30px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 100px;
    height: 100px;
    border-radius: 9px;
    border: 0;
    font: inherit;
    cursor: pointer;
    transition: all ease 0.3s;
}

.text-and-video__overlay button:hover {
    scale: 1.05;
}

.text-and-video__overlay button:active {
    scale: 0.9;
}

/* Playing State */
.text-and-video--playing .text-and-video__overlay button {
    opacity: 0;
}
