@font-face {
    font-family: 'Aileron';
    src: url("/css/aileron/Aileron-SemiBold.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url("/css/aileron/Aileron-Bold.otf") format('opentype');
    font-weight: 600;
    font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: 'Aileron', sans-serif;
}

#mouseFollower {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    #mouseFollower {
        display: block;
    }
}

@media (hover: none) and (pointer: coarse) {
    #mouseFollower {
        display: block;
        position: absolute;
        right: 5px;
        top: 50%;
        z-index: -10;
    }
}


body {
    background-color: rgb(26, 23, 23);
    background-image: url("/assets/background.webp");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.unscrollable {
    overflow: hidden;
}

h2 {
    font-size: 30px;
    font-weight: 500;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #b59568;
}

a {
    text-decoration: none;
    color: #b59568;
    transition: color .2s;
}

a:hover {
    color: #949494;
    transition: color .2s;
}

a.phone:hover {
    color: #ffe700;
    transition: color .2s;
}

a.mail:hover {
    color: #e6007e;
}

h1 {
    margin: 0;
}

.wrapper-inner, .wrapper-outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.wrapper-outer {
    width: 100%;
    min-height: 100%;
    padding: 30px;
    color: #b59568;
    align-items: center;
}

.wrapper-inner {
    max-width: 100%;
    position: absolute;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.logo {
    width: 800px;
    max-width: 100%;
}

.contact-details {
    margin-left: 236px;
    font-size: 34px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    line-height: 42px;
}

.legal-notice {
    display: flex;
    gap: 30px;
    font-size: 26px;
    margin-left: 236px;
}

.details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 1070px) {
    .contact-details {
        margin-left: 60px;
        font-size: 30px;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        line-height: 36px;
    }

    .logo {
        padding-top: 35%;
        padding-bottom: 5%;
        width: 600px;
    }

    .wrapper-inner {
        height: 100%;
        justify-content: space-between;
    }

    .legal-notice {
        display: flex;
        gap: 20px;
        font-size: 20px;
        margin-left: 60px;
    }
}

@media (max-width: 620px), (max-height: 700px) {
    .logo {
        width: 400px;
    }

    .wrapper-outer {
        padding: 0;
    }

    .contact-details {
        margin-left: 0;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        line-height: 25px;
    }

    .legal-notice {
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        margin-left: 0;
    }

    .wrapper-inner {
        align-items: center;
        margin-right: 0;
        gap: 15px;
    }

    .contact-mobile {
        margin-top: 20px;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
}

@media (max-height: 600px) {
    .logo {
        padding-top: 10%;
    }
}

.back-circle {
    border-radius: 50%;
    background-color: #b59568;
    color: rgb(26, 23, 23);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    left: 30px;
    top: 30px;
    position: fixed;
}

.legal-page-container {
    margin: 30px auto;
    max-width: 1200px;
    box-sizing: border-box;
    padding: 60px 30px 30px;
}