@font-face {
    font-family: Quicksand;
    src: url(fonts/Quicksand-Bold.ttf);
}

html, body {
    margin: 0 auto;
    padding: 0;
    background: #f7f7f5;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#bm {
    height: 100vh;
    object-fit: contain;
}

.hidden {
    display: none;
    visibility: hidden;
}

#transition {
    z-index: 10;
}

.button-container {
    margin: 0 auto;
    padding: 0 auto;
/*    border: 2px solid black;*/
    position: absolute;
    width: 20%;
    bottom: 5%;
    left: 50%;
    margin-left: -10%;
}

.catalogue, .contact {
    background-color: white;
    border-radius: 25px;
    padding: 12px 18px 12px 18px;
    border: 2px solid #87afb9;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85em;
    color: #87afb9;
    width: 45%;
}

.catalogue:hover, .contact:hover {
    background-color: #e6e6e4;
    cursor: pointer;
}

.catalogue {
    float: left;
}

.contact {
    float: right;
}


/* MODAL WINDOW */
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 107, 42, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #323031;
    padding: 1rem 1.5rem;
    width: 32rem;
    border-radius: 0.5rem;
}
.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: #e86b2b;
    color: #fff;
    font-weight: bold;
}
.close-button:hover {
    background-color: #ff9364;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal .modal-content .row {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}

input {
    display: block;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 10px;
    padding: 12px 12px;
    border: none;
    border-radius: 25px;
    background-color: #f7f7f5;
    color: #323031;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85em;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #323031;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #323031;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #323031;
}

input[type="submit"] {
    width: 50%;
    background-color: #e86b2b;
    color: #323031;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85em;
    cursor: pointer;
}

button.send-message {
    width: 50%;
    background-color: #e86b2b;
    color: #323031;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85em;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    padding: 12px 12px;
    border: none;
    border-radius: 25px;
    margin-bottom: 10px;
}

button.send-message:hover {
    background-color: #ff9364;
}

input[type="submit"]:hover {
    background-color: #ff9364;
}


textarea {
    display: block;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 10px;
    padding: 12px 12px;
    border: none;
    border-radius: 25px;
    background-color: #f7f7f5;
    color: #323031;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85em;
}

.contact__form {
    margin-top: 25px;
    padding-bottom: 25px;
}

.logo {
    margin: 0 auto;
    padding: 0;
    width: 80%;
    margin-top: 25px
}

.logo img {
    max-width: 100%;
    width: ;
    height: ;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.antispam {
    display: none;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * menges
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 900px) {

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

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

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

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

}
