@charset "UTF-8";

#booking {
    margin: 0;
    padding: 120px 0 120px 0;
    width: 100%;
    height: auto;
    background-color: #3B3B3B;
    overflow: hidden;
}

#booking h1 {
    margin: 0 auto 0 auto;
    padding: 0;
    max-width: 1270px;
    width: 100%;
    font-family: "monte-stella", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: white;
    font-size: 56px;
    text-align: center;
    overflow: hidden;
}

#booking_txt {
    margin: 25px auto 50px auto;
    padding: 0;
    max-width: 1270px;
    width: 100%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 28px;
    text-align: center;
}

.msg {
    margin: 0 auto 0 auto;
    padding: 0;
    max-width: 1270px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.name {
    margin: 0 0 30px 0;
    padding: 10px 12px 10px 12px;
    width: 45%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    outline: none;
    background-color: #3B3B3B;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
}

.mail {
    margin: 0 0 30px 0;
    padding: 10px 12px 10px 12px;
    width: 45%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    outline: none;
    background-color: #3B3B3B;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
}

.theme {
    margin: 0 0 30px 0;
    padding: 10px 12px 10px 12px;
    max-width: 1270px;
    width: 100%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    outline: none;
    background-color: white;
    border: 1px solid white;
    border-radius: 5px;
    color: #3B3B3B;
    -webkit-appearance: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

.value {
    margin: 0 0 30px 0;
    padding: 10px 12px 10px 12px;
    max-width: 1270px;
    width: 100%;
    height: 300px;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    outline: none;
    background-color: #3B3B3B;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
}

.privacy_info {
    margin: 0 0 30px 0;
    padding: 0;
    max-width: 1270px;
    width: 100%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 28px;
    text-align: center;
}

.button {
    margin: 0 auto 0 auto;
    padding: 10px 12px 10px 12px;
    max-width: 325px;
    width: 100%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    outline: none;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    background-color: whitesmoke;
    color: #3B3B3B;
}

.button:hover {
    background-color: transparent;
    color: white;
    transition: ease-in-out 200ms;
}

@media screen and (max-width: 1359px) {
    #booking h1 {
        width: 80%;
        font-size: 42px;
    }
    #booking_txt {
        width: 80%;
        font-size: 20px;
    }
    .msg {
        width: 80%;
    }
    .name {
        font-size: 20px;
    }
    .mail {
        font-size: 20px;
    }
    .theme {
        font-size: 20px;
    }
    .value {
        font-size: 20px;
    }
    .privacy_info {
        font-size: 20px;
    }
    .button {
        font-size: 20px;
    }
}

@media screen and (max-width: 1000px) {
    #booking {
        padding: 50px 0 50px 0;
    }
    .name {
        width: 100%;
    }
    .mail {
        width: 100%;
    }
}

@media screen and (max-width: 395px) {
    #booking h1 {
        font-size: 38px;
    }
}

/*PLACEHOLDER COLOR*/

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    white;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    white;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    white;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    white;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    white;
}

::placeholder { /* Most modern browsers support this now. */
   color:    white;
}

