body,
html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 'Lato', sans-serif;
  color: #777;
  font-size: 16px;
  line-height: 2rem;
}

.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4,
.bgimg-5 {
  position: relative;
  /* opacity: 0.65; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bgimg-1 {
  /* background-image: url('images/hero-tiger.jpg'); */
  background-image: url('images/tiger-at-night.jpg');
  opacity: 1;
  min-height: 100%;
  background-repeat: no-repeat;
  /* background-position-x: 55%; */
  background-position-x: 60%;
  background-position-y: 55%;
  background-color: rgba(6, 0, 90, 0.2);
  background-blend-mode: multiply;
  overflow: hidden;
  z-index: -10;
}

.ripple {
  position: fixed;
  z-index: -1;
  top: 90%;
  left: 63%;
  width: 150px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: ripple-animation 2s infinite ease-out;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(5px);
}

@keyframes ripple-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1rem;
}

.grid-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

.grid-block-item {
  display: flex;
  justify-content: center;

  align-items: center;
}

.block-header {
  text-align: center;
  /* margin: 0.5rem; */
  background: #5a5a5a;
}

.image-tiger {
  width: 100%;
  height: auto;
}

.box-item {
  display: flex;
  justify-content: space-between;
}

.box-item > img {
  max-width: 50%;
  max-height: fit-content;
}

.concept-overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.bgimg-2 {
  background-image: url('images/hero-tiger.jpg');
  min-height: 600px;
}

.bgimg-3 {
  background-image: url('images/sikkim-terrain.jpg');
  min-height: 500px;
}

.bgimg-4 {
  background-image: url('images/marketed.jpg');
  min-height: 500px;
}
.caption {
  position: absolute;
  left: 50%;
  top: 50%;
  /* width: 100%; */
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
}

h2.intro-title {
  /*background-color: #111;*/
  color: #fff;
  /*padding: 18px;*/
  padding: 0px 25px;
  font-size: 25px;
  letter-spacing: 10px;
}

h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font: 20px 'Lato', sans-serif;
  /* color: #111; */
}

.logo {
  top: 50%;
  margin: 10px auto;
  display: block;
  max-width: 100%;
}

.splash {
  background-color: rgb(41 41 41 / 70%);
  display: inline-block;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: #030b15;
  text-align: center;
}

.footer > p {
  margin: 0 1rem;
}

.contentblock {
  padding: 50px 80px;
  /* background-color: #230029; */
  background-color: #000;
  color: #ccc;
}

.contentblock > h3 {
  text-align: center;
}

.info-block,
#video-block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));

  grid-gap: 10px;
}

#video-block {
  justify-items: center;
}

.info-block > div {
  background-color: #002602;
  padding: 1.5rem;
  gap: 1rem;
}

.info-block > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-block > div > img {
  max-width: 10rem;
  border-radius: 50%;
}

  .info-block img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      margin: 0 auto 1rem auto;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.g-recaptcha {
  margin: 0 auto;
  width: 304px;
}

.container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#contact input[type='text'],
#contact input[type='email'],
#contact input[type='tel'],
#contact input[type='url'],
#contact textarea,
#contact button[type='submit'] {
  font: 400 16px 'Roboto', Helvetica, Arial, sans-serif;
}

#contact {
  background: #f9f9f9;
  padding: 25px;
  /* margin: 150px 0; */
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 16px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type='text'],
#contact input[type='email'],
#contact input[type='tel'],
#contact input[type='url'],
#contact textarea {
  width: 90%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type='text']:hover,
#contact input[type='email']:hover,
#contact input[type='tel']:hover,
#contact input[type='url']:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 50px;
  max-width: 90%;
  resize: none;
}

#contact button[type='submit'] {
  cursor: pointer;
  width: 100%;
  max-width: 100px;
  border: none;
  background: #4caf50;
  color: #fff;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type='submit']:hover {
  background: #43a047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type='submit']:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}
@media only screen and (max-device-width: 1024px) {
  .bgimg-1,
  .bgimg-2,
  .bgimg-3,
  .bgimg-4,
  .bgimg-5 {
    background-attachment: scroll;
  }
}

@media only screen and (max-device-width: 600px) {
  .caption p.border {
    padding: 5px 18px;
    background-color: transparent;
    letter-spacing: 5px;
  }

  .contentblock {
    padding: 15px 30px;
  }

  #contact h3 {
    font-size: 24px;
  }

    .card {
        padding: 5px 6px;
      }

      .info-block {
        grid-template-columns: 1fr;
        /* stack cards vertically */
        gap: 12px;
        /* less space between cards */
        padding: 0 12px;
        /* side padding so cards don’t touch screen edges */
      }

      .info-block>div {
        padding: 16px;
        border-radius: 4px;
      }

      .info-block img {
        width: 99px;
        height: 99px;
        margin-bottom: 0.75rem;
      }

      .info-block p {
        font-size: 15px;
        line-height: 1.45;
      }

      .concept-overview {
        padding: 0rem;
      }
}


@media screen and (max-height: 575px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
