* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-VariableFont_wght.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', sans-serif;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    color: #4B0B07;
    width: 30px;
    border-width: 3px;
}

ul {
    padding-left: 0 !important;
}

header {
    background-color: #E1C3A1;
    max-height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .row {
    display: flex;
    align-items: center;
}

/* navigation */

.main__menu-navbars ul {
    display: flex;
    justify-content: flex-end;
}

.main__menu-navbars ul li {
    list-style-type: none;
}

.main__menu-navbars ul li a {
    text-decoration: none;
    color: #440706;
    font-size: 17px;
    font-weight: 500;
}

.main__menu-navbars ul li + li {
    margin-left: 20px;
}

.main__menu-burger {
    position: relative;
    display: none;
}

.main__menu-burger i {
    position: absolute;
    right: 15px;
    font-size: 18px;
    top: -13px;
    cursor: pointer;
}

/* first screen */

.ueberuns {
    padding-top: 80px;
}

.ueberuns__description p {
    margin-top: 20px;
    max-width: 650px;
}

.ueberuns__description h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f1f3a;
}

.ueberuns__description h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #440706;
}

.ueberuns__socialMedia {
    margin-top: 60px;
}

.ueberuns__socialMedia i {
    font-size: 32px;
    color: #440706;
    background-color: #E1C3A1;
    padding: 5px;
    border-radius: 20%;
}

.ueberuns__socialMedia ul {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.ueberuns__socialMedia ul li {
    list-style-type: none;
}

.ueberuns__socialMedia ul li + li {
    margin-left: 10px;
}

.foto__decor {
    position: relative;
    display: inline-block;
}

.foto__decor img {
    display: block;
    max-width: 100%;
    height: auto;
}

.foto__decor::before,
.foto__decor::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    pointer-events: none;
}

.foto__decor::before {
    top: -20px;
    right: -20px;
    border-top: 5px solid #440706;
    border-right: 5px solid #440706;
}

.foto__decor::after {
    bottom: -20px;
    left: -20px;
    border-bottom: 5px solid #440706;
    border-left: 5px solid #440706;
}

/* mobile menu */

.mobile__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #E1C3A1;
    z-index: 9999;
    transition: .4s ease-in-out;
    transform: translateX(100%);
}

.mobile__hidden {
    display: none;
}

.mobile__menu.mobile__visible {
    transform: translateX(0);
}

.mobile__sub {
    text-align: center;
    margin-top: 100px;
}

.mobile__close {
    position: absolute;
    top: 27px;
    right: 30px;
}

.mobile__sub li {
    list-style-type: none;
    padding-top: 25px;
}

.mobile__sub li a {
    text-decoration: none;
    font-size: 32px;
    color: #151515;
}

/* mobile */

@media screen and (max-width: 500px) {
    .ueberuns__description h1 {
        font-size: 30px;
    }

    .ueberuns__description h2 {
        font-size: 22px;
    }

    .ueberuns__socialMedia i {
        font-size: 25px;
    }
}

@media screen and (max-width: 768px) {
    .main__menu-navbars {
        display: none;
    }

    .main__menu-burger {
        display: block;
    }

    .ueberuns {
        padding-top: 0;
    }
}