/**
 * This file was created by Softwelop Auer & Schnabl GbR
 * https://softwelop.com - info@softwelop.com
 */

@font-face {
    font-family: 'AcuminProCond-Bold';
    src: url('../fonts/AcuminProCond-Bold.ttf');
    font-display: swap;

}

@font-face {
    font-family: 'AcuminProCond-Black';
    src: url('../fonts/AcuminProCond-Black.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'AcuminProCond-Medium';
    src: url('../fonts/AcuminProCond-Medium.otf');
    font-display: swap;
}

*,
html,
body {
    font-family: "AcuminProCond-Medium";
    font-size: 14px;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.btn,
.amt-bubble {
    font-family: "AcuminProCond-Black";
    text-transform: uppercase;
    letter-spacing: 0rem;
    margin: 0;
    padding: 0;
}

h4.white{
    color:var(--color-light-font)!important;
}

.btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

h1 {
    font-size: 6rem;
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 5rem;
    }
}

h2 {
    font-size: 4rem;
}

@media only screen and (max-width: 480px) {
    h2 {
        font-size: 3rem;
    }
}

h3 {
    font-size: 3rem;
}

@media only screen and (max-width: 480px) {
    h3 {
        font-size: 2rem;
    }
}

h4 {
    font-size: 2rem;
}

h5 {
    letter-spacing: 0.2rem;
    font-size: 1rem;
    kerning: 5pt;
    font-family: "AcuminProCond-Medium";
}

:root {
    --color-primary: rgb(0, 43, 73);
    --color-optional: #587189;
    --color-primary-transparent: rgba(41, 59, 81, 0.2);
    --color-secondary: rgb(0, 43, 73);
    --color-optinal: rgb(88, 113, 137);
    --color-accent: #C0A261;
    --color-accent-hover: #9b7a3d;
    --color-btn-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    --color-image-box-shadow: rgba(0, 0, 0, 0.40) 0px 5px 30px;
    --color-navbar: #14212b;
    --color-gray: hsl(0, 0%, 60%);
    --color-light-font: hsl(0, 0%, 90%);
    --color-dark-font: #14212b;
    --font-size: 14px;
    --navbar-height: 6vh;
    --section-padding: 20vw;
}

@media only screen and (max-width: 480px) {
    :root {
        --section-padding: 5vw;
        --navbar-height: 8vh;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1280px) {
    :root {
        --section-padding: 10vw;
    }
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size);
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-size: var(--font-size);
}

main {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.gold {
    color: var(--color-accent);
}

#info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--color-bg);
}

#services::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--color-bg);
}

::-webkit-scrollbar {
    width: 12px;
    background-color: var(--color-gray);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--color-dark-font);
}

section {
    background: var(--color-light-font);
    color: var(--color-dark-font);
    padding: 8rem var(--section-padding);
}

section:nth-child(odd) {
    background: var(--color-primary);
    color: var(--color-light-font);
}


/* Navbar Style */

nav {
    background-color: var(--color-navbar);
    color: var(--color-light-font);
    z-index: 999;
    padding: 0 2rem !important;
    height: var(--navbar-height);
}

nav .btn-primary {
    background-color: transparent;
    margin-right: 1rem;
    margin-left: auto;
    padding: 0.5rem;
    z-index: 1000;
    box-shadow: none !important;
}

.btn-primary:active {
    transform: scale(0.9);
}

nav .btn-primary:hover {
    background-color: transparent;
}

.btn,
.btn-primary,
.btn-secondary {
    border: none;
    outline: none;
    background-color: var(--color-accent-hover);
    border-color: transparent;
    cursor: pointer;
    color: white;
}

nav.scrolled {
    background-color: var(--color-navbar);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    color: var(--color-light-font);
    opacity: 1;
}

.navbar-mobile {
    height: 100%;
    margin: 0 0 0 auto;
    display: flex;
    z-index: 999;
}

.navbar-mobile .navbar-nav {
    display: flex;
    gap: 1rem;
    margin: 0;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown_menu {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    min-width: 6rem;
    padding: 1rem 0;
    margin: 0;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    row-gap: 1rem;
    perspective: 1000px;
    background-color: var(--color-dark-font);
}

.dropdown_menu li {
    padding-left: 1rem;
    width: 100%;
}

.dropdown:hover .dropdown_menu--animated {
    display: flex;
}

.dropdown_menu-6 {
    animation: scaleZ 300ms ease-in-out forwards
}

.slogan h3{
    text-transform: none !important;
}

@-moz-keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-o-keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-moz-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-webkit-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-o-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-moz-keyframes downOut {
    0% {
        transform: translateZ(200px) transLateY(40px);
    }

    80% {
        transform: translateZ(-10px) transLateY(0px);
    }

    100% {
        transform: translateZ(0px) transLateY(0px);
    }
}

@-webkit-keyframes downOut {
    0% {
        transform: translateZ(200px) transLateY(40px);
    }

    80% {
        transform: translateZ(-10px) transLateY(0px);
    }

    100% {
        transform: translateZ(0px) transLateY(0px);
    }
}

@-o-keyframes downOut {
    0% {
        transform: translateZ(200px) transLateY(40px);
    }

    80% {
        transform: translateZ(-10px) transLateY(0px);
    }

    100% {
        transform: translateZ(0px) transLateY(0px);
    }
}

@keyframes downOut {
    0% {
        transform: translateZ(200px) transLateY(40px);
    }

    80% {
        transform: translateZ(-10px) transLateY(0px);
    }

    100% {
        transform: translateZ(0px) transLateY(0px);
    }
}

@-moz-keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@-o-keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@-moz-keyframes rotateY {
    0% {
        transform: rotateY(90deg);
    }

    80% {
        transform: rotateY(-10deg);
    }

    100% {
        transform: rotateY(0);
    }
}

@-webkit-keyframes rotateY {
    0% {
        transform: rotateY(90deg);
    }

    80% {
        transform: rotateY(-10deg);
    }

    100% {
        transform: rotateY(0);
    }
}

@-o-keyframes rotateY {
    0% {
        transform: rotateY(90deg);
    }

    80% {
        transform: rotateY(-10deg);
    }

    100% {
        transform: rotateY(0);
    }
}

@keyframes rotateY {
    0% {
        transform: rotateY(90deg);
    }

    80% {
        transform: rotateY(-10deg);
    }

    100% {
        transform: rotateY(0);
    }
}

@-moz-keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-o-keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@-webkit-keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@-o-keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@keyframes rotateX {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(-20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@-moz-keyframes rotateZ {
    0% {
        opacity: 0;
        transform: translateZ(290px);
    }

    80% {
        transform: translateZ(10px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@-webkit-keyframes rotateZ {
    0% {
        opacity: 0;
        transform: translateZ(290px);
    }

    80% {
        transform: translateZ(10px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@-o-keyframes rotateZ {
    0% {
        opacity: 0;
        transform: translateZ(290px);
    }

    80% {
        transform: translateZ(10px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes rotateZ {
    0% {
        opacity: 0;
        transform: translateZ(290px);
    }

    80% {
        transform: translateZ(10px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@-moz-keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleZ {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    80% {
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@-webkit-keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@-o-keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* Navbar Item */

nav .nav-link {
    margin: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: var(--navbar-height);
    height: var(--navbar-height);
}

.nav-item {
    height: var(--navbar-height);
}


/* Navbar Item */

nav .nav-item a {
    color: var(--color-light-font);
    font-weight: 500;
    font-size: 1.2rem;
}


/* Navbar Item */

nav a.active {
    color: var(--color-accent);
}


/* Navbar Item */

nav.scrolled .nav-item a {
    color: var(--color-light-font);
}

nav.scrolled a.active {
    color: var(--color-accent);
}


/* Navbar Item Hover */

nav .nav-item a:hover {
    color: var(--color-accent);
}


/* Navbar Item Focus */

nav .nav-item a:focus {
    color: var(--color-accent);
}


/* Navbar Dropdown Item */

.dropdown-item.active {
    background-color: var(--color-dark-font) !important;
    color: var(--color-accent);
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--color-dark-font) !important;
}

nav .dropdown-menu .dropdown-divider {
    color: var(--color-accent);
    background-color: var(--color-accent);
}


/* Navbar Links allgemein*/

nav a {
    color: var(--color-light-font);
}

nav.scrolled a {
    color: var(--color-light-font);
}

nav a:hover {
    color: var(--color-accent);
}

.navbar {
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    display: flex;
}

.navbar-button>div {
    background-color: var(--color-light-font) !important;
    height: 3px !important;
    margin: 4px 0;
    width: 25px !important;
}

.navbar-button {
    box-shadow: var(--color-btn-box-shadow) !important;
    background-color: var(--color-primary);
    z-index: 1000;
}

.navbar-toggler:focus {
    border: var(--color-light-font) solid 1px;
    border: var(--color-light-font) solid 1px;
    box-shadow: var(--color-btn-box-shadow) !important;
}

.navbar-toggler:active {
    border: var(--color-light-font) solid 1px;
    border: var(--color-light-font) solid 1px;
    box-shadow: var(--color-btn-box-shadow) !important;
}

.nav-bottom {
    display: flex;
    flex-direction: column;
    color: var(--color-light-font);
}

.nav-bottom a {
    text-align: start;
}

.navbar-brand {
    font-family: "AcuminProCond-Bold";
}

.navbar-brand img {
    margin-left: 1.5rem;
    height: 100%;
    width: 35px;
}


/* .footer Design */

.footer {
    padding: 2rem 5rem 0rem 5rem;
    background-color: var(--color-dark-font);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.footer-icon {
    width: 1.5rem;
    filter: invert(75%) sepia(22%) saturate(842%) hue-rotate(3deg) brightness(184%) contrast(89%);
}

.footer img {
    max-width: 200px;
}

.footer .footer-logo {
    width: 15vw;
}

.footer-service {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.footer-service a {
    text-decoration: none;
    width: min-content;
}

.footer-service a:hover {
    text-decoration: none;
}

.footer-service span {
    letter-spacing: 1px;
    height: 100%;
    font-size: 1.2rem;
    font-family: 'AcuminProCond-black';
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-services {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer .section {
    width: calc(100% / 3);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-light-font);
}

#footer-contact a,
h6 {
    font-family: 'AcuminProCond-black';
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 1.5;
}

.footer .section:first-child {
    align-items: flex-start;

}

.footer .section:last-child {
    align-items: flex-end;
}

ul {
    list-style-type: none;
}

footer {
    background: var(--color-dark-font);
}

footer a {
    text-decoration: underline;
    text-align: center;
    color: var(--color-light-font);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

footer a:hover {
    text-decoration: underline;
    color: var(--color-accent);
}

footer .legal {
    padding: 2rem;
    display: flex;
    margin: 0 auto;
    width: 40%;
    justify-content: center;
    color: var(--color-light-font);
}

footer .legal a {
    flex: 1 1 0;
    text-align: center;
}


footer .sub-footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 2rem 5rem 2rem 5rem;

    gap: 1rem;
    text-align: center;
    background: var(--color-dark-font);
    color: var(--color-light-font);
}

footer .author {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5rem 5px 0;
    font-size: 0.9rem;
}

.bg {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    z-index: 0;
    position: relative;
    ;
}

.bg.contact {
    align-items: center;
}

#header .justizia-bg {
    top: 0;
    left: 0;
}

.justizia-bg {
    position: absolute;
    background-color: white;
    background-image: url("../imgs/justizia.webp") !important;
    background-size: contain;
    background-repeat: no-repeat !important;
    z-index: 0;
    background-position-y: bottom;
    height: 100%;
    width: 100%;
}

.justizia-bg .blue-filter {
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    mix-blend-mode: multiply;
}


/* Button Design */

.btn {
    text-align: center;
    border: none;
    box-shadow: var(--color-btn-box-shadow) !important;
    border-radius: 0;
    padding: 0.2rem 0.5rem;
    font-size: 1.4rem;
}

.btn:focus {
    border: none;
    box-shadow: var(--color-btn-box-shadow) !important;
    border-radius: 0;
}

.btn:active {
    border: none;
    box-shadow: var(--color-btn-box-shadow) !important;
    border-radius: 0;
}

.btn-primary:focus {
    outline: none;
    border: none;
    background-color: var(--color-accent-hover);
    border-radius: 0;
}

.btn-primary:active {
    outline: none;
    border: none;
    background-color: var(--color-accent-hover);
    box-shadow: none;
    border-radius: 0;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: transparent;
}

.btn-secondary {
    background-color: var(--color-gray);
    color: var(--color-dark-font);
}

.relative {
    position: relative;
}

.horizontal-center {
    margin: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/*Card Design*/

.cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cards .card {
    width: calc(100% / 4);
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.295) 0px 0px 20px 0px;
    margin-right: 3rem;
    border: none;
    display: block;
    position: relative;
    color: var(--color-dark-font);
    border-radius: 0;
    z-index: 0;
    overflow: hidden;
}

.glare {
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.825) 0%, rgba(255, 255, 255, 0) 27%, rgba(178, 144, 80, 1) 100%);
    transform: perspective(10px) rotateX(1deg);
    margin: 50px;
}

.cards .card .actions {
    padding: 1rem 0;
    width: fit-content;
    margin: 0;
    margin-left: auto;
}

.cards .card:hover {
    color: var(--color-light-font);
}

.cards .card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    left: -16px;
    background: var(--color-primary);
    height: 32px;
    width: 32px;
    transform: scale(1);
    border-radius: 32px;
    transform-origin: 50% 50%;
    transition: transform 0.7s ease-out;
}

.cards .card:hover:before {
    transform: scale(70);
}

.cards .card:last-child {
    margin-right: 0;
}

.cards .card .title {
    font-size: 2em;
    font-weight: bold;
}

.cards .card .content {}

.navbar-button {
    display: none;
}

.alternating-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
}

#header {
    position: relative;
    height: 94vh;
    display: flex;
}

#contact-header {
    position: relative;
    height: fit-content;
    display: flex;
}

.header {
    height: 100%;
    width: 50%;
}

#about-header {
    height: 40vh;
    width: 100vw;
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    position: relative;
}

#about-header .header-logo {
    justify-self: flex-end;
}

#about-header h1 {
    font-size: 3rem;
}

#about-header h2 {
    font-size: 1.7rem;
}

#about-header .header {
    margin: 0;
    height: 40vh;
    margin: auto;
    background-color: var(--color-primary);
    mix-blend-mode: multiply;
    opacity: 1;
    z-index: 0;
}

#about-header .header-content {
    width: 100%;
    padding: 10% 0 0 0;
    margin: 0;
    margin: auto;
    background-color: transparent;
    mix-blend-mode: normal;
    display: flex;
    flex-direction: row;
    z-index: 1;
}

#about-header .header-text {
    width: 90%;
}

#about-header .header-icon {
    position: absolute;
    right: 0;
}

.header-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100vh;
    width: 45vw;
    display: flex;
    align-items: flex-end;
}

.header-image {
    height: 70%;
    bottom: 0;
}

.header-text-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    position: relative;
    width: fit-content;
    height: fit-content;
    height: 100%;
}

.header-text {
    width: fit-content;
    height: fit-content;
}

.header h1 {
    font-size: 4rem;
    line-height: 3rem;
}



.header h2 {
    font-size: 2rem;
    padding: 0 0 0.5rem 0;
    
    color: var(--color-accent);
}

.header h3 {
    font-size: 2rem;
}

.header h4 {
    font-family: "AcuminProCond-Medium";
    font-size: 1.5rem;
    padding: 0 0 0.5rem 0;
}

.header .btn {
    float: right;
}

.header h1,
.header h2,
.header h3 {
    text-align: left;
}

.alternating-text .element {
    width: 70%;
    padding: 1rem;
    margin-left: 0;
    margin-right: auto;
}

.alternating-text .element:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.contact>* {
    margin: 1rem 0;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

#about {
    position: relative;
}

#mehr-erfahren {
    margin: 2rem 1rem 0rem 0rem;
    float: right;
}

.about-text {
    padding: 2rem 0 2rem 0;
}

.about-left {
    width: calc(60vw / 2 - 2.5rem);
    height: auto;
}

.about-right {
    width: calc(60vw / 2 - 2.5rem);
    min-height: 25rem;
    height: 100%;
}
.about-right h2{
    color: var(--color-accent);
 }
 
.about-right h4{
   color: var(--color-accent);
}

.amt-text-wrapper .about-right {
    width: calc(60vw / 2 - 2.5rem);
    min-height: unset;
    height: fit-content;
}

.about-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    position: relative;
    width: 60vw;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 3rem;
}

.landing-profile-img {
    width: 100%;
    box-shadow: var(--color-image-box-shadow);
}

#info {
    background: rgb(237, 237, 237);
    background: linear-gradient(180deg, rgb(241, 241, 241) 0%, rgb(155, 155, 155) 100%);
    padding: 0;
}

#services {
    background: rgb(237, 237, 237) !important;
    background: linear-gradient(180deg, rgb(241, 241, 241) 0%, rgb(155, 155, 155) 100%) !important;
    padding: 5rem 0 0 0;
}

.info-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-cards h3 {
    position: absolute;
    left: 18vw;
    top: 10%;
    color: var(--color-dark-font)
}

.info-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 4rem 0;
}

.flipcard-wrapper {
    perspective: 1000px;
    min-width: 250px;
    margin: 2rem;
    width: calc(100% / 6);
    aspect-ratio: 1;
}

.flipcard-wrapper .flipcard {
    position: relative;
    cursor: pointer;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    transform-style: preserve-3d;
}

.flipcard-wrapper .flipcard .front,
.flipcard-wrapper .flipcard .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateX(0deg);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.flipcard-wrapper .flipcard .front {
    z-index: 2;
    background-image: url("/assets/imgs/glare.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

.flipcard-wrapper .flipcard .back,
.flipcard-wrapper.flip-right .flipcard .back {
    transform: rotateY(180deg);
}

.flipcard-wrapper:hover .flipcard,
.flipcard-wrapper.flip-right:hover .flipcard {
    transform: rotateY(180deg);
}

.flipcard-wrapper.flip-down .flipcard .back {
    transform: rotateX(-180deg);
}

.flipcard-wrapper.flip-down:hover .flipcard {
    transform: rotateX(-180deg);
}

.flipcard-wrapper.flip-diagonal-right .flipcard .back {
    transform: rotate3d(1, 1, 0, 180deg);
}

.flipcard-wrapper.flip-diagonal-right:hover .flipcard {
    transform: rotate3d(1, 1, 0, 180deg);
}

.flipcard {
    width: 100%;
    height: 100%;
    position: relative;
}

.cards .card.gold {
    background-color: var(--color-accent);
    color: var(--color-light-font);
    background: rgb(255, 255, 255);
    background: rgb(255, 255, 255);
    background: rgba(178, 144, 80, 1);
}

.flipcard .front {
    box-shadow: var(--color-btn-box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flipcard .front {
    background-color: var(--color-accent);
    color: var(--color-light-font);
    font-weight: 700;
    font-size: 1rem;
}

.flipcard .back {
    padding: 2rem;
    background-color: #8a7754;
    color: var(--color-light-font);
    justify-content: start;
}

.flipcard-icon {
    width: 8em;
    padding: 1em;
}

.flipcard .text {
    font-size: 1em;
}

.icon-button {
    padding: 2rem;
    border: none;
    background: none;
}

.bottom-right {
    position: absolute;
    right: 0rem;
    bottom: 0rem;
}

.arrow {
    width: 3em;
    stroke: white !important;
    filter: invert(1);
}




.slider-wrapper {
    padding: 5rem 0;
}

.slider {
    position: relative;
    width: 50rem;
    max-width: 90vw;
    overflow: hidden;
    transition: all .3s;
    perspective: 900px;
    margin: 0 auto;
    transform-style: preserve-3d;
    overflow: hidden;
    background-color: transparent;
    box-shadow: var(--color-image-box-shadow) !important;
}

.slider .previous,
.slider .next {
    font-family: "FontAwesome";
    font-size: 20px;
    font-style: normal;
    position: absolute;
    top: 50%;
    color: white;
    padding: 20px;
    text-decoration: none;
    margin-top: -34px;
    transition: all .3s;
    opacity: 0;
    z-index: 10000;
    cursor: pointer;
}

.slider .next {
    right: -100px;
    content: "\f054";
    left: auto;
}

.slider:hover .previous,
.slider:hover .next {
    opacity: 1;
}

.slider:hover .previous {
    left: 0;
}

.slider:hover .next {
    right: 0;
}

.slider .slides {
    overflow: visible;
}

.slide {
    padding: 10%;
    height: 100%;
    width: 100%;
    height: fit-content;
    text-align: left;
    position: absolute;
    transform: scale(0.5, 0.5);
    opacity: 0;
    transition: all .3s;
    box-shadow: var(--color-image-box-shadow) !important;
}

.slide p {
    word-wrap: break-all;
    overflow: ellipsis;
    width: 80;
    font-style: italic;
}

.slide .slide-name {
    font-size: 2rem;
    font-family: 'AcuminProCond-Black';
    text-transform: uppercase;
    overflow: ellipsis;
    height: 2rem;
    line-height: 2rem;
    width: 80;
    font-style: normal;
    float: right;
}

.slide.dark {
    background: var(--color-dark-font);
    color: var(--color-light-font);
    background-image: url("/assets/imgs/glare.webp");
    background-size: 50% 100%;
    background-repeat: no-repeat;
}

.slide.active {
    z-index: 10;
    left: 0;
    opacity: 1;
    transform: scale(1, 1);
}

.slide.inactiveLeft {
    left: -100vw;
    z-index: 11;
}

.slide.inactiveRight {
    left: 100vw;
    z-index: 11;
}

.slide:after {
    content: attr(data-icon);
    font-family: "FontAwesome";
    font-size: 15vw;
    position: absolute;
    bottom: -8vw;
    left: 0;
    opacity: 0.3;
}

.slide i {
    color: inherit;
    cursor: pointer;
    border: 2px solid;
    padding: 10px;
    font-size: 1.3vw;
    margin-top: 20px;
    display: inline-block;
    transition: all .3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.slide i:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 2px;
    padding-right: 30px;
}

.slide i:after {
    content: " \f105";
    font-family: "FontAwesome";
    position: absolute;
    margin-left: -10px;
    transition: all .3s;
    opacity: 0;
}

.slide i:hover:after {
    margin-left: 10px;
    opacity: 1;
}

.slider .bullets {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.slider .bullets .bullet {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    z-index: 14;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s;
}

.slider .bullets .bullet.active {
    border: 2px solid rgba(255, 255, 255, .8);
    background: transparent;
}

.slider .bullets .bullet:hover {
    background: rgb(199, 199, 199);
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

#contact {
    margin: 0;
}

.contact-content {
    justify-content: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    position: relative;
    align-items: stretch;
    align-content: stretch;
    margin: 0 auto;
    gap: 2rem;
}

.contact-image {
    object-fit: cover;
    overflow: hidden;
    padding: 0;
    width: calc(50% - 1rem);
    height: fit-content;
    margin: 0;
    box-shadow: var(--color-image-box-shadow);
}

.contact-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    width: calc(50% - 1rem);
    align-self: stretch;
    padding-left: 25px;
}

.contact-header {
    width: 100%;
    position: relative;
    margin: 0;
}

.contact-buttons {
    height: 100%;
    width: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: start;
    column-gap: 2rem;
    row-gap: 1rem;
}

.contact-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    max-height: 200px;
}

.contact-button h4 {
    /* line-height: 1.1rem; */
    text-align: center;
    font-size: 1.6rem
}

.contact-button a {
    color: var(--color-light-font);
    height: fit-content;
}

.contact-button i {
    height: 5rem;
    width: 5rem;
}

.contact-button a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-icon {
    width: clamp(1rem, 5vw, 5rem);
    margin: 0 1rem;
    margin-top: 0;
}

.contact-button:hover {
    transform: scale(1.05);
    transition: transform 0.5s;
}


/* floating label */

textarea {
    background: transparent;
    color: var(--color-light-font);
    border: solid 1px var(--color-light-font);
    outline: transparent;
    resize: vertical;
    width: 100%;
    padding: 20px;
}

textarea:focus {
    outline: none;
    border: solid 1px var(--color-accent);
}

.contact-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 1rem;
}

.input-container {
    width: 100%;
}

.did-floating-label-content {
    position: relative;
}

.did-floating-label-content textarea {
    height: 100px;
    padding: 15px 20px;
}

input {
    color: var(--color-light-font);
}

.did-floating-label {
    color: var(--color-light-font);
    font-size: 13px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 11px;
    padding: 0 5px;
    background: var(--color-primary);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.did-floating-input,
.did-floating-select {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 20px;
    background: transparent;
    border: 1px solid var(--color-light-font);
    box-sizing: border-box;
}

.did-floating-input:focus,
.did-floating-select:focus {
    outline: none;
    border: 1px solid var(--color-accent);
}

.did-floating-input:focus~.did-floating-label,
.did-floating-select:focus~.did-floating-label {
    top: -8px;
    font-size: 13px;
}

select.did-floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.did-floating-select::-ms-expand {
    display: none;
}

.did-floating-input:not(:placeholder-shown)~.did-floating-label {
    top: -8px;
    font-size: 13px;
}

.did-floating-select:not([value=""]):valid~.did-floating-label {
    top: -8px;
    font-size: 13px;
}

.did-floating-select[value=""]:focus~.did-floating-label {
    top: 11px;
    font-size: 13px;
}

.did-error-input .did-floating-input,
.did-error-input .did-floating-select {
    border: 2px solid red;
    color: red;
}

.did-error-input .did-floating-label {
    color: red;
}

.input-group {
    display: flex;
}

.input-group .did-floating-input {
    border-left: 0;
    padding-left: 0;
}

.input-group-append {
    display: flex;
    align-items: center;
    /*   margin-left:-1px; */
}

.input-group-text {
    color: var(--color-light-font);
    display: flex;
    align-items: center;
    font-weight: 400;
    height: 34px;
    padding: 0 5px 0 20px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid var(--color-light-font);
    border-radius: 0;
    border-right: none;
}


/* floating label ENDE */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.btn-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 60px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.674);
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: rgb(255, 255, 255);
}

#testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: row;
    height: fit-content;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.google-wrapper {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: fit-content;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.google-wrapper .btn {
    margin: 2rem;
}

.google-icon {
    margin: 2rem;
    width: 7rem;
}

.google-icon:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.about-header {
    height: 40vh;
}

#secondary-nav {
    color: var(--color-light-font);
    border-top: 0.3rem solid var(--color-accent);
    height: 3rem;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    background-color: var(--color-optional);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.directory {
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: stretch;
    line-height: 2rem;
}

.directory h5 {
    font-size: 1.3rem;
    padding-left: 5px;
    line-height: 3rem;
}

.directory-icon {
    width: 0.6rem;
    height: 2.5rem;
}

#about-me-top {
    background-color: white;
    background-image: url('/assets/imgs/Icon.svg');
    background-repeat: no-repeat;
    background-size: 28rem;
    background-position: 12vw;
    width: 100vw;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#about-me-top h4 {
    font-size: 2rem;
    color: var(--color-dark-font);
    line-height: 1.5rem;
}

.amt-image-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 40%;
}

.amt-text-wrapper {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 50px;
    padding-bottom: 50px;
}

.amt-wrapper {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.amt-image {
    position: absolute;
    display: flex;
    align-items: flex-end;
    bottom: 0;
    transform: scaleX(-1) translateX(10rem);
}

.amt-logo {
    position: absolute;
    height: 30rem;
    display: flex;
    align-items: center;
    z-index: 0 !important;
}

.amt-bubble {
    position: absolute;
    padding: 2px 8px;
    background-color: var(--color-optional);
    right: 25%;
    bottom: 30%;
    font-size: 1.5rem;
    box-shadow: var(--color-btn-box-shadow);
}

.amt-bubble:before {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--color-optinal);
    left: -1rem;
    transform: rotate(180deg);
}

.amt-bubble::before,
.amt-bubble::after {
    top: 0;
    content: "";
    height: 1rem;
    position: absolute;
}

.amt-bubble:after {
    background-color: transparent;
}

.amt-logo-img {
    height: 20vh;
}

.amt-image .profile-img {
    height: 30rem;
}

#about-me-top .contact-buttons {
    align-items: flex-start;
}

#about-me-top .about-right {
    color: var(--color-dark-font);
    padding-top: 3rem;
    width: 100%;
}

#about-me-top .btn {
    margin-bottom: 1rem;
}

.header-box {
    color: var(--color-light-font);
    background-color: var(--color-primary);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
    margin: 0;
    height: fit-content;
    width: fit-content;
    gap: 1rem;
    text-align: left;
}

.header-box img {
    width: 3rem;
}

.header-box-text {
    padding-top: 5px;
}

#about-me-top h3 {
    font-size: 2rem !important;
    line-height: 2rem;
}

#description {
    color: white;
    border-top: 0.3rem solid var(--color-accent);
    border-bottom: 0.3rem solid var(--color-accent);
    margin: 0;
    background-color: var(--color-optional);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.description-wrapper {
    width: 60vw;
}

.description-text {
    width: 100%;
    padding: 50px 0;
}

.service-description {
    margin: 100px 0;
}


/* .description-wrapper h3 {
    padding-bottom: 2rem;
} */

#description .description-wrapper p {
    padding-left: 2rem;
}

.club-wrapper {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 10rem;
}

.clubs {
    width: 100%;
    display: flex;
    gap: 4rem;
    margin-top: 1rem;
    justify-content: space-between;
    row-gap: 2rem;
    flex-wrap: wrap;
}

.club-text {
    display: flex;
    align-items: center;
    padding: 0 0 0 10px !important;
    color: var(--color-dark-font);
    width: fit-content;
    hyphens: none;
}

.club img {
    width: auto;
    height: 5rem;
    padding-top: 10px;
    padding-right: 0;
    padding-left: 0;
}

.club {
    display: flex;
    flex-direction: row;
}

#CTA {
    background-color: var(--color-primary);
    color: var(--color-light-font);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#CTA .btn-primary {
    margin-top: 20px;
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-wrapper .contact-buttons {
    width: 20%;
    height: 25rem;
}

.contact-formular {
    width: 100%
}

.contact-formular .btn {
    float: right;
}

#service-top {
    background-color: white !important;
    background-image: url('/assets/imgs/Icon.svg');
    background-repeat: no-repeat;
    background-size: 65rem;
    background-position: 61vw;
    background-color: var(--color-light-font);
    color: var(--color-dark-font);
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

#service-top .about-wrap .about-left {
    order: 2;
}

#service-top .about-wrap .about-left {
    order: 1;
}

.Service-CTA {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.indent {
    padding-left: 20px;
}

#testimonials {
    background-color: var(--color-light-font);
    color: var(--color-dark-font);
}

#advantages {
    color: var(--color-light-font);
    border-top: 0.3rem solid var(--color-accent);
    border-bottom: 0.3rem solid var(--color-accent);
    margin: 0;
    background-color: var(--color-optional);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.advantages {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.advantages .text {
    width: 50%;
}

.advantages .advantage-list {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.advantage-list .list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.advantage-icon {
    background-color: var(--color-accent);
    padding: 5px;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-item img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}


/* The snackbar - position it at the bottom and in the middle of the screen */

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

#snackbar.success {
    background-color: rgb(16, 109, 16);
}

#snackbar.error {
    background-color: rgb(198, 10, 10);
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 5s;
    animation: fadein 0.5s, fadeout 0.5s 5s;
}


/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


/*IPad Pro Horizontal*/

@media only screen and (max-width: 1366px) {
    .contact-content {
        align-items: center;
    }

    .contact-content .contact-icon {
        width: 3.2rem;
    }

    .contact-button h4 {
        line-height: 1.2rem;
    }
}

@media only screen and (max-width: 480px) {
    .description-wrapper {
        width: 90vw;
    }

    .contact {
        text-align: center;
    }

    .contact h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .Service-CTA button {
        max-height: 40px;
        padding: 0px 15px;
    }

    #service-top {
        background-position: 20vw;
    }

    .header-box-text h3 {
        font-size: clamp(1rem, 3vw, 5rem);
    }

    .justizia-bg {
        width: 100vw;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    #about-header .header-text {
        width: 100%;
        text-align: center;
    }

    .header-text h1 {
        line-height: 3rem;
    }

    .header-text h5 {
        font-size: clamp(0.8rem, 2vw, 1rem);
        line-height: 1rem;
    }

    .header-text h2 {
        padding-top: 20px;
        font-size: clamp(1.2rem, 3vw, 2.5rem);
        line-height: 2rem;
    }

    .testimonials-wrapper {
        width: 90vw;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 0rem;
    }

    .slider-wrapper {
        width: 90vw;
        display: flex;
        align-items: center;
    }

    .slider {
        width: 100vw;
        margin: 0;
    }

    .header .btn {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    #footer-contact a,
    h6 {
        font-size: 1.2rem;
        font-family: 'AcuminProCond-black';
        font-weight: 100;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .footer-service a {
        width: 100%;
    }

    .footer-service {
        display: flex;
        align-items: center;
        width: 100%
    }

    .footer-services {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .footer-service img {
        width: 2rem;
    }

    .footer-service span {
        font-size: 1rem;
    }

    .footer-services {
        flex-direction: row;
        gap: 30px;
    }

    .footer {
        padding: 50px 0;
        gap: 300px;
    }

    .footer .footer-logo {
        padding: 10%;
        width: 100%;
    }


    #contact-header {
        width: 100%;
        padding: 0;
        margin: 0;
        padding: var(--section-padding);
    }

    .contact-wrapper .contact-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 20px;
        height: fit-content;
    }

    .contact-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .legal h1 {
        font-size: 4rem;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .header {
        width: 100vw;
    }

    .header-box {
        transform: none;
    }

    .header-image-wrapper {
        width: 100%;
        z-index: 0;
        justify-content: center;
        margin: 0;
        height: 60%;
    }

    .header-image {
        width: auto;
        height: 100%;
    }

    .header-text-wrapper {
        top: 2rem;
        justify-content: center;
        text-align: center;
        height: 30%;
        margin: 0;
        z-index: 1;
        width: 90vw;
        padding: 0;
    }

    .header h1 {
        font-size: clamp(2rem, 10vw, 4rem);
        line-height: 3.5rem;
        text-align: center;
    }

    .header h2 {
        font-size: clamp(1rem, 5vw, 1.8rem);
        padding: 0 0 2rem 0;
        text-align: center;
    }

    .slogan {
        width: 100%;
        margin-bottom: 20px;
    }

    .slogan h3 {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }

    .header .btn {
        font-size: clamp(1rem, 5vw, 2rem);
        padding: 10px 15px;
    }

    .contact-image {
        width: 100%;
        height: auto;
        margin: auto;
        box-shadow: var(--color-image-box-shadow);
    }

    .footer img {
        max-width: 100%;
    }

    .footer .section {
        width: 100%;
    }

    .footer .section:last-child {
        align-items: center;
    }

    .footer {
        flex-direction: column;
        gap: 4rem;
    }

    .about-wrap {
        gap: 1rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .flipcard-wrapper {
        width: 80%;
        margin: 0;
        margin-top: 2rem;
    }

    .info-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-left {
        width: 40rem;
        padding: 2rem 0 0 0;
    }

    .about-right {
        height: min-content;
        width: 40rem;
        padding: 2rem 0;
        min-height: unset;
        justify-content: center;
        text-align: center;
    }

    .about-right .btn {
        float: right;
    }

    .about-text {
        padding-bottom: 20px;
    }

    section {
        padding: calc(var(--section-padding) * 2) var(--section-padding);
    }

    .navbar-button {
        display: block;
    }

    .cards {
        flex-wrap: wrap;
    }

    .cards .card {
        width: 100%;
        margin: 0;
        margin-bottom: 1em;
    }

    .collapse {
        -webkit-transition: none;
        transition: none;
    }

    .navbar-mobile {
        width: 0vh;
        height: 100vh;
        background-color: var(--color-dark-font) !important;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -10rem;
        overflow: hidden;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }

    .navbar-mobile .navbar-nav {
        background-color: var(--color-primary) !important;
        height: 100vh;
        position: absolute;
        flex-direction: column;
        right: 0;
        top: 0;
        gap: 0;
        padding: 0 4rem;
        padding-top: 4rem;
    }

    .navbar-mobile .nav-item a {
        font-weight: 600;
        font-size: 1.4rem;
    }

    .navbar-mobile .nav-item {
        font-weight: 600;
        padding: 0;
        margin: 0;
        height: min-content;
        line-height: auto;
    }

    .navbar-button {
        z-index: 1000;
    }

    .navbar-mobile.show {
        width: 100vw;
        height: 100vh;
        right: 0rem;
        background-color: var(--color-primary);
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }

    #about-header .header-logo {
        display: none;
    }

    .testimonials-wrapper {
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 0rem;
    }

    .google-wrapper {
        width: 100%;
    }

    .contact-headers {
        margin-bottom: 20px;
    }

    .slider-wrapper {
        width: 100%;
    }

    .contact-wrap {
        width: 100%;
        padding: 0;
    }

    .contact-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        justify-content: space-evenly;
    }

    .contact-buttons .contact-button .contact-icon {
        width: 40px;
        margin: 0 auto 5px auto;
    }

    .contact-button {
        justify-self: stretch;
    }

    .contact-button a {
        display: flex;
        flex-direction: column;
    }

    #about-me-top h4 {
        font-size: clamp(1rem, 4vw, 3rem);
    }

    #about-me-top {
        height: auto;
    }

    .about-right {
        padding-bottom: 10px;
    }

    .text {
        hyphens: auto;
        text-align: left;
    }

    #amt-text-wrapper .contact-button img {
        width: 1px;
    }

    .amt-wrapper {
        height: auto;
    }

    .amt-image-wrapper {
        display: none;
    }

    .amt-text-wrapper {
        width: 100%;
        gap: 0;
        align-items: flex-start;
        justify-content: start;
    }

    .description-wrapper h3 {
        transform: none;
    }

    .club-wrapper h4 {
        transform: none;
    }

    .info-cards h3 {
        position: unset;
        margin: 0 auto;
    }

    .info-wrapper {
        padding-top: 0;
    }

    #CTA {
        padding: 5rem 2rem;
    }

    #CTA .btn {
        margin-top: 2rem;
    }

    .advantages {
        flex-direction: column;
        row-gap: 3rem;
    }

    .advantages .text {
        width: 100%;
    }

    .advantages .advantage-list {
        width: 100%;
    }

    h4 {
        font-size: 1.5rem;
    }

    .contact-button h4 {
        line-height: 1.3rem;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1280px) {
    .description-wrapper {
        width: 80vw;
    }

    .about-wrap {
        gap: 1rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .text {
        text-align: left;
    }

    .justizia-bg {
        width: 100vw;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .about-right {
        height: min-content;
        width: 100%;
        padding: 2rem 0;
        min-height: unset;
        justify-content: center;
        text-align: center;
    }

    .about-text {
        padding-bottom: 20px;
    }

    .header .btn {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .header-image-wrapper {
        width: 100%;
        z-index: 0;
        justify-content: center;
        margin: 0;
        height: 60%;
    }

    .header-image {
        width: auto;
        height: 100%;
    }

    .header-text-wrapper {
        top: 2rem;
        justify-content: center;
        text-align: center;
        height: 30%;
        margin: 0;
        z-index: 1;
        width: 80vw;
        padding: 0;
    }

    .header h1 {
        font-size: clamp(2rem, 10vw, 5rem);
        line-height: clamp(3rem, 10vw, 5rem);
        text-align: center;
    }

    .header h2 {
        font-size: clamp(1rem, 5vw, 1.8rem);
        padding: 0 0 2rem 0;
        text-align: center;
    }

    .slogan {
        width: 100%;
        margin-bottom: 20px;
    }

    .slogan h4 {
        font-size: clamp(1rem, 5vw, 2rem);
    }

    .header .btn {
        font-size: clamp(1rem, 5vw, 2rem);
        padding: 10px 15px;
    }

    #contact-header {
        width: 100%;
        padding: 0;
        margin: 0;
        padding: var(--section-padding);
    }

    .contact-wrapper .contact-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding-bottom: 50px;
        height: fit-content;
    }

    .contact-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: var(--section-padding);
    }

    .header {
        width: 100%;
    }

    #testimonials {
        display: block;
    }

    .slogan {
        width: 100%;
        z-index: 999;
    }

    .slider {
        width: 80%;
    }

    .about-left {
        width: 40rem;
        padding: 0 0 0 0;
    }

    .about-right .btn {
        float: right;
    }

    .navbar-mobile .navbar-nav {
        flex-direction: row;
    }

    .navbar-mobile .navbar-nav .nav-item {
        margin: 0 0.5rem;
    }

    .navbar-mobile .navbar-nav .nav-item.dropdown .dropdown-menu {
        position: absolute;
    }

    .cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-button {
        display: none;
    }

    .cards .card {
        width: calc(100% / 2 - 1em);
        margin: 1em 0.5em;
    }

    .testimonials-wrapper {
        width: 80vw;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 0rem;
    }

    .slider-wrapper {
        width: 100%;
    }

    .slider {
        width: 100%;
    }

    .google-wrapper {
        width: 100%;
    }

    .slider-wrapper {
        width: 100%;
    }

    .contact-content {
        justify-content: center;
    }

    .contact-image {
        width: 80%;
    }

    .contact-image img {
        height: 100%;
        width: 100%;
    }

    .contact-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        padding-top: 50px;
    }

    .contact-buttons .contact-button {
        height: auto;
        width: auto;
    }

    .amt-text-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .amt-bubble {
        right: -15%;
        bottom: 35%;
    }

    .advantages {
        gap: 3rem;
    }
}