body{
  background: transparent linear-gradient(65deg, #00062C 0%, #001D4C 21%, #00407E 43%, #0095B7 75%, #00A8C4 86%, #00F3F7 100%, #00BCD2 100%, #00FFFF 100%) 0% 0% no-repeat padding-box;
}
.slide-container{
  background-color: transparent;
  height: auto;
  position: relative;
}
.background-cover{
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: transparent 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  background-size: cover;
}
.background-cover::after{
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  /*background: transparent linear-gradient(71deg, #00062C 0%, #001D4C 21%, #00407E 43%, #0095B7 75%, #00A8C4 86%, #00F3F7 100%, #00BCD2 100%, #00FFFF 100%) 0% 0% no-repeat padding-box;*/
  opacity: .5;
  left: 0;
  top: 0;
}
.body-page.bg-overlay{
  background: transparent linear-gradient(71deg, #00062C 0%, #001D4C 21%, #00407E 43%, #0095B7 75%, #00A8C4 86%, #00F3F7 100%, #00BCD2 100%, #00FFFF 100%) 0% 0% no-repeat padding-box;
}
.body-page h3{
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-weight: 700;
}
.wrap-body{
  position: relative;
}
.form-group{
  background: transparent linear-gradient(90deg, #C0272D 0%, #F05A24 100%) 0% 0% no-repeat padding-box;
  height: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid transparent;
}
.form-group input{
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  width: 100%;
  line-height: 40px;
  font-size: 15px;
  
}
.form-group input::placeholder{
  color: #ddd;
  font-family: 'Montserrat', sans-serif;
}
.form-group input:focus{
  outline: none;
}
.form-group input:focus::placeholder {
  color: transparent;
}
.form-group:focus-within{
  border: 1px solid #fff;
}
.container-action .btn-orange{
  border: none;
  line-height: 40px;
  width: 165px;
  border-radius: 20px;
  cursor: pointer;
  margin: 0 auto;
  background: orangered;
  border: 1px solid orange;
  box-shadow: 0 0 10px rgba(0, 0, 0,.5);
}
.container-action .btn-orange:hover{
  border: 1px solid transparent;
  box-shadow: none;
}
.modal-overlay{
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  background-color: rgba(0,0,0,.3);
  z-index: 99;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}
.modal-overlay.hide{
  display: none;
}
.modal-container{
  padding: 30px 60px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #000000;
  z-index: 1;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  position: relative;
}
.btn-close-modal{
  line-height: 30px;
  width: 100px;
  border-radius: 16px;
  border: 1px solid #999;
  cursor: pointer;
  background-color: #cccccc;
  margin-top: 20px;
}
.btn-close-float-modal{
  position: absolute;
  top: -40px;
  right: 0;
  width: 35px;
  height: 35px;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0,.5);
  border-radius: 20px;
}

.btn-close-float-modal.hide{
  display: none;
}
.btn-close-float-modal img{
  width: 100%;
}
body.fixed-height{
  height: 100vh;
  overflow-y: hidden;
}
.form-guestbook-container button:focus{
  outline: 0;
}
@media(min-width: 768px){
  .body-page{
    padding: 80px;
  }
  .body-page h3{
    font-size: 22px;
  }
  .form-guestbook-container{
    width: 320px;
    margin: 0 auto;
  }
  .modal-container{
    width: 300px;
    margin: 0 auto;
  }
  .nav-space{
    height: 0;
  }
}
@media(max-width: 768px){
  .body-page{
    padding: 80px 10px ;
    padding-top: 0;
  }
  .body-page h3{
    font-size: 18px;
  }
  .form-guestbook-container{
    width: 100%;
    margin: 0 auto;
  }
  .modal-container{
    width: 100%;
    margin: 0 20px;
  }
  .nav-space{
    height: 70px;
  }
}