/*gallery*/

.inner_banner_agile_Gallery {

  text-align: center;

  background: url(../Images/bg2.jpg ) no-repeat bottom;

  background-size: cover;

  -webkit-background-size: cover;

  background-position: center;

  -moz-background-size: cover;

  -o-background-size: cover;

  -ms-background-size: cover;

  min-height: 400px;

}

.photo-gallery {

  width: 100%;

  display: grid;

  grid-template-columns: repeat(1, minmax(250px, 1fr));

  grid-gap: 20px;

  padding-top: 30px;

  margin-bottom: 30px;

}

  /*.photo-gallery {

      position: relative;

      height: 230px;

      border-radius: 10px;

      box-shadow: 3px 3px 5px lightgrey;

      cursor: pointer;

  }*/

  .photo-gallery img {

      width: 100%;

      height: 350px;

      border-radius: 10px;

      transition: .5s;

  }

      .photo-gallery img:hover {

          transform: scale(0.8) rotate(-15deg);

          border-radius: 20px;

          box-shadow: 0 32px 75px rgba(68,77,136,0.2);

          cursor: pointer;

      }

.full-img {

  width: 100%;

  height: 110vh;

  background: rgba(0,0,0,0.95);

  position: fixed;

  top: 0px;

  left: 0;

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 2222;

}

  .full-img img {

      width: 100%;

      max-width: 500px;

  }

  .full-img span {

      position: absolute;

      top: 5%;

      right: 5%;

      font-size: 20px;

      color: #ffffff;

      cursor: pointer;

  }


@media screen and (max-width: 600px) {

  .full-img img {

      height: 90vh;

  }

}

@media screen and (min-width: 700px) {

  .photo-gallery {

      grid-template-columns: repeat(2, minmax(250px, 1fr));

  }

}

@media screen and (min-width: 800px) {

  .photo-gallery {

      grid-template-columns: repeat(3, minmax(250px, 1fr));

  }

}

@media screen and (min-width: 900px) {

  .photo-gallery {

      grid-template-columns: repeat(3, minmax(210px, 1fr));

  }

}
/* booking page css */

.info-text {
  text-align: left;
  width: 100%;
}

.bookingform {
  padding: 4em 10%;
}

.form-group {
  margin-bottom: 20px;
}

/* h2.headingBooking {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: left;
  color: #506982;
  border-bottom: 1px solid #506982;
  padding-bottom: 3px;
  margin-bottom: 20px;
} */
.headingBooking {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #1b3d4d;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.headingBooking .highlight {
  color: #ffc42e;
  position: relative;
  transition: all 0.3s ease;
}

.headingBooking:hover .highlight {
  color: #ff9900;
  text-shadow: 0 0 10px rgba(255, 196, 46, 0.7);
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-6px); }
  60%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}
.controls {
  text-align: left;
  position: relative;
}

.controls input[type="text"],
.controls input[type="email"],
.controls input[type="number"],
.controls input[type="date"],
.controls input[type="tel"],
.controls textarea,
.controls button,
.controls select {
  padding: 12px;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid #c6c6c6;
  width: 100%;
  margin-bottom: 18px;
  color: #888;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.controls input:focus,
.controls input:hover,
.controls textarea:focus,
.controls textarea:hover,
.controls select:focus,
.controls select:hover {
  outline: none;
  border-color: #9FB1C1;
}

.controls input:focus + label,
.controls input:hover + label,
.controls select:focus + label,
.controls select:hover + label,
.controls textarea:focus + label,
.controls textarea:hover + label {
  color: #ffc42e;
  cursor: text;
}

.controls label {
  position: absolute;
  height: 20px;
  left: 8px;
  top: 12px;
  width: 60%;
  color: #999;
  font-size: 16px;
  display: inline-block;
  padding: 4px 10px;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 1);
  transition: color 0.3s, top 0.3s, background-color 0.8s;
}

.controls label.active {
  top: -16px;
  color:rgba(2, 134, 2, 0.815);
  background-color: rgba(255, 255, 255, 1);
  width: auto;
}
.controls .DetalTextArea{
  left: 22px;
}
.controls textarea {
  resize: none;
  height: 200px;
}

.controls select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.controls .fa-sort {
  position: absolute;
  right: 10px;
  top: 17px;
  color: #999;
}

button[type="button"] {
  cursor: pointer;
  background-color: #1b3d4d;
  border: none;
  color: #fff;
  padding: 12px 20px;
  float: right;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #23546a;
}

.clear::after {
  content: "";
  display: table;
  clear: both;
}
.greenstar {
  color: rgba(2, 134, 2, 0.815);
}
.redstar {
  color: rgba(216, 10, 10, 0.733);
}
/* end booking css */
