.hero__slider--texture-reservation {
    width: 100%;
    height: 100%;
    background: url(../img/filmstrip-1850277_1920.jpg) no-repeat 50% 50%;
    position: absolute;
    left: 0;
    background-size: cover;
    z-index: 1;
    opacity: 0.9;
}

.hero__slider--texture-reservation p {
    position: relative;
    color: #d00a0a;
    font-size: 5vh;
    line-height: 2em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Special Elite', cursive;
    margin-top: 5em;
    text-align: right;
    margin-right: 1em;
}

.hero__slider--texture-reservation .paragraph-2 {
    color: white;
}

.form-reservation {
    height: 800px;
}
.form__column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 6%;
    align-items: center;
}
.form__block-reservation {
      display: flex;
    flex-direction: column;  
}

.form-reservation h2 {
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    font-size: xx-large;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-weight: 400;
    padding-top: 40px;
}

.i__reservation_btn {
    text-decoration: none;
    padding: 5px 20px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    font-size: 1.4em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 65px;
    font-weight: 500;
    transition: transform 450ms, background-color 300ms 150ms;
    width: 212px;
}

.i__reservation_btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-weight: 300;
    transform: scale(1.13);
}

.r__form-input {
    height: 45px;
    border: 2px solid #7d7070;
    border-radius: 10px;
    width: 350px;
    transition: all 0.3s ease-in-out;
    padding-left: 7px;
    font-size: 16px;
    color: #d00a0a;
    margin-top: 35px;
}

textarea::-webkit-input-placeholder {
    color: #d00a0a !important;
}

textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #d00a0a !important;
}

textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #d00a0a !important;
}

textarea:-ms-input-placeholder {
    color: #d00a0a !important;
}

/***********RESPONSIVE**************/

@media only screen and (min-width: 1800px) {
	.hero__slider--texture-reservation p {
		font-size: 4vh;
		margin-top: 3em;
	}
}

@media only screen and (max-width: 1025px) {
    .hero__slider--texture-reservation p {
        line-height: 1.2em;
		font-size: 4vh;
		margin-top: 4em;
    }  
}
@media only screen and (max-width: 700px) {
    .hero__slider--texture-reservation p {
		margin-top: 7em;
		line-height: 1.4em;
    }
    .r__form-input {
        width: 263px;
    }
}

