form {
    //position: absolute;
    z-index: 1;
    width: 100%;
    border-radius: 10px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    //font-size: 12px;
    //line-height: 25px;
    //background-color: #222222;
    padding: 20px 20px 10px 20px;
    color: #fff;
    //border-bottom: 7px solid #4300B1;
    //border-bottom: 7px solid #5A00FA;
    z-index: +1 !important;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.booking-form .elem-group:nth-child(1),
.booking-form .elem-group:nth-child(3) {
    grid-column: 1 / -1;
}

.booking-form * {
    z-index: +1 !important;
}

.booking-form label {
    display: block;
    //font-family: 'Nanum Gothic';
    padding-bottom: 10px;
    font-size: 1.25em;
}

.booking-form hr {
    grid-column: 1 / -1;
    width: 100%;
    border: .5px solid #fff;
}

.booking-form input,
select,
textarea {
    border-radius: 2px;
    border: 2px solid #fff;
    box-sizing: border-box;
    font-size: 1.25em;
    //font-family: 'Nanum Gothic';
    width: 100%;
    padding: 10px;
}

.booking-form div.elem-group.inlined input {
    width: 100%;
    display: inline-block;
}

.booking-form textarea {
    grid-column: 1/-1;
    height: 150px;
    width: 100%;
}

.text-area {
    grid-column: 1/-1;
}

.booking-form button {
    grid-column: 1 / -1;
    height: 50px;
    background: #003580;
    border: 2px solid #003580;
    border: none;
    color: white;
    font-size: 1.5em;
    //font-family: 'Nanum Gothic';
    font-family: 'Oswald', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.booking-form button:hover {
    box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, .5);
}

.email-bak {
    grid-column: 1 / -1;
    text-decoration: none;
    font-size: 12px;
    text-align: right;
    padding: 0;
    margin: 0;
}

.email-bak a {
    color: #ffc300;
    text-decoration: none;
}

.email-bak a {
    text-decoration: underline;
}


/*
form {
  display: grid;
  grid-template-columns: 1fr 1fr 45px 45px auto 1fr;
  grid-gap: 15px 15px;
  margin: 0 27% 40px 27%;
  font-family: 'Montserrat', sans-serif;
  //font-size: 12px;
  //line-height: 25px;
}

form div {
  align-self: end;
}

form input {
  display: block;
  width: 100%;
  border: 1px solid #555;
  height: 38px;
  //padding: 5px;
  align-self: end;
}

.submit-btn {
  background-color: #ff0000;
  color: #ffffff;
  height: 43px;
  width: 100px;
  padding: 5px 5px 5px 5px;
  line-height: 30px;
  align-self: end;
}
*/

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

@media screen and (max-width: 676px) {
    .booking-form {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px 10px;
        //margin: 0 30px 40px 30px;
        margin: 0;
    }
    .submit-btn {
        width: 100%;
    }
    .email-bak {
        text-align: center;
    }
}


/*
.slider-h1 {
  font-family: 'Yesteryear', cursive;
  //font-family: 'Meddon', cursive;
  position: absolute;
  z-index: 1;
  width: 100%;
  //left:25%;
  top: 200px;
  //top: 0;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px rgba(0, 0, 0, .8);
  font-size: 5em;
  //background: rgba(0, 0, 0, .5);
  //background: linear-gradient(0.25turn, transparent 0%, #4e5e50 20%, #acae9c, #4e5e50 80%, transparent 100%);
  background: linear-gradient(0.25turn, transparent 0%, rgba(32,33,36,.8) 20%, rgba(32,33,36,.8), rgba(32,33,36,.8) 80%, transparent 100%);
  //background: #343a40;
  //background: #2e8b57;
  font-size: 5rem;
}

@media screen and (max-width: 676px) {
  .slider-h1 {
    background: rgba(32,33,36,.8);
  }
}
*/