* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Hero Section Starts */

/* .hero {
  height: 100vh;
} */

.video-container-1 video {
  width: 100%;
  height: 100%;
}

.video-container-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container-1 .hero-text {
  top: 0vh;
  position: absolute;
  width: 100%;
  /* height: calc(115vh - 100px); */
  padding: 4px 0px;
}

.hero-text img {
  width: 40%;
  transform: translate(30vw, 19vh);
}

/* Hero Section Ends */



/* Second Section Starts */


.second {
  background-color: white;
  display: flex;
  justify-content: center;

}

.image-container {
  width: 33.333%;
}

.image-container img {
  width: 100%;
  height: 100vh;
}

.top-logo img {
  width: 25%;
}

/* Second Section Ends */

/* Third Section Starts */
.facilities {
  padding-top: 30px;
  padding-bottom: 10%;
  background-color: white;
}

.intro-text {
  background: #45151587;
  position: absolute;
  color: white;
  width: 34%;
  height: 100%;
  text-align: center;
  transform: translate(0px, 0px);
}

.intro-text .heading,
.facility-head,
.video-header,
.gal-head,
.clients-header,
main h1,
.testi-head {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.heading {
  margin-top: 30px;
}

.intro-text .sub-heading {
  padding-top: 8px;
  font-size: 18px;
  letter-spacing: 1px;
}

.intro-text .description h6 {
  font-size: 12px;
  line-height: 23px;
  margin: 10px 50px;
  font-weight: 500;
}

/* Third Section */

.facility-description,
.video-description,
.gal-desc {
  text-align: center;
  margin: 0% 35%;
}

.wrapper {
  padding: 0px 10%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.media {
  width: 330px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media img {
  max-width: 100%;
  height: 100%;
}

.layer {
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 90%;
  background: #fff;
  color: #151e3f;
  transition: all 0.9s ease;

  p {
    transition: all 0.9s ease;
    transform: scale(0.1);
  }
}

.media:hover .layer {
  opacity: 0.8;
  width: 88%;
  transition: all 0.5s ease;

  p {
    font-size: 18px;
    transform: scale(1);
    transition: all 0.9s ease;
  }
}

@media screen and (min-width: 550px) and (max-width: 1000px) {

  .wrapper {
    padding: 0px 4%;
  }

}

/* Fourth Section */

.sticky {
  height: 50vh;
}

.img-holder video {
  position: fixed;
  top: 12%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.img-holder img {
  position: fixed;
  top: 12%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sticky-line {
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-line p {
  padding: 10px;
  font-size: 26px;
  /* font-family: "Great Vibes", cursive; */
}

/* Fifth section end */


.videos {
  background-color: white;
  padding-top: 30px;
}

.video-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
}

.YTvideo {
  width: 110%;
  height: 31vh;
}

.youtube-button {
  padding: 20px;
  display: flex;
  justify-content: flex-end
}

.youtube-button button {
  border-radius: 25px;
  padding: 10px;
  color: white;
  background: #451515;
}

.youtube-button button:hover {
  cursor: pointer;
}


/* Sixth section starts */

.gallery-sec {
  padding-top: 30px;
  background-color: white;
}

.gallery {
  padding-top: 20px;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  width: 90%;
  max-width: 1200px;
}

@media only screen and (max-width: 1100px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    grid-auto-rows: 200px;
  }
}

@media only screen and (max-width: 900px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    grid-auto-rows: 175;
  }
}

@media only screen and (max-width: 700px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
    grid-auto-rows: 150px;
  }
}

@media only screen and (max-width: 550px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-wrapper .wide {
    grid-column: span 2 !important;
  }

  .gallery-wrapper .xl-wide {
    grid-column: span 2 !important;
  }

  .gallery-wrapper .tall {
    grid-row: span 2 !important;
  }

  .gallery-wrapper .big {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .gallery-wrapper .xl-big {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }
}

@media only screen and (max-width: 400px) {
  .gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-auto-rows: 100px;
  }
}

.gallery-wrapper>div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: 0.25s all;
}

.gallery-wrapper>div:hover {
  padding: 4px;
  transition: 0.25s all;
  filter: brightness(1.1);
  cursor: pointer;
}

.gallery-wrapper>div>img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-sizing: border-box;
}

.gallery-wrapper .wide {
  grid-column: span 2;
}

.gallery-wrapper .xl-wide {
  grid-column: span 3;
}

.gallery-wrapper .tall {
  grid-row: span 2;
}

.gallery-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wrapper .xl-big {
  grid-column: span 3;
  grid-row: span 2;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  border: 2px solid white;
  border-radius: 16px;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}



/* Sixth Section Ends */

/* Seventh Section Starts */


.clients {
  padding-top: 30px;
  background-color: white;
  overflow-x: hidden;
}

.clients-header {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
}

.carousel-wrap {
  margin: 60px auto;
  padding: 0 5%;
  width: 80%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel1 .item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}


.item img {
  height: 60px;
  object-fit: contain;
}

/* end fix */
.owl-nav>div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}

/****************** Media Query for Client Section ***********************/

@media screen and (min-width:300px) and (max-width: 599px) {

  .carousel-wrap {
    margin: 28px auto;
    padding: 0 16%;
  }


}

/* Seventh Section Ends */

/* Last Section Starts */

/* .first {
  width: 50%;
}


.contact-area {
  padding-top: 20px;
  background-color: #451515;
}

.contact-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-content p {
  color: white;
  font-size: 15px;
  margin: 20px 0 20px;
  text-align: left;
  position: relative;
}


.address h6 {
  width: 80%;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.phone {
  width: 80%;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.contact-content span {
  color: #fff;
  margin: 0 10px;
}


.contact-social,
.contact-us {
  margin-left: -7px;
  margin-top: 20px;
}

.contact-social>ul {
  display: inline-flex;
}

.contact-social ul li a,
.contact-us li a {
  border: 1px solid #fdab23;
  color: white;
  display: inline-block;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  transition: all 0.4s ease 0s;
  width: 40px;
}

.contact-social ul,
.contact-us li {
  list-style: none;
}

.contact-social ul li,
.contact-us li {
  text-align: center;
}

.contact-social ul li a:hover,
.contact-us li a:hover {
  border: 1px solid #FAB702;
  color: #FAB702;
}

.fas {
  font-size: 20px;
  color: white;
}

.fab,
.far {
  z-index: 5;
  font-size: 20px;
}

.contact-content img {
  max-width: 90px;
}

.address {
  display: flex;
  align-items: center;
  margin: 20px 0px 20px 0px;
}

.address h6 {
  margin-left: 2%;
}

.sec {
  width: 42%;
}

.sec iframe {
  width: 100%;
  border-radius: 15px;
  height: 52vh;
} */

footer {
  background-color: #451515;
}

footer p,
button {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer img {
  position: relative;
  top: 3px;
  width: 50px;
}

/* Last Section Ends */


/* Messenger Button */
.mess {
  background: blue;
  border-radius: 50%;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  padding: 1rem 1.2rem;
  text-decoration: none;
  z-index: 5;
}

.mess {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

/* Messenger Button End */

/* Testimonial Section Starts */

.testim {
  height: 60vh;
  padding-top: 30px;
  background-color: white;
  width: 100%;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #333;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 5px;
  z-index: 2;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: #fda412;
}


.testim .arrow.left {
  left: 70px;
}

.testim .arrow.right {
  right: 70px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #451515;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #451515;
  border-color: #451515;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;
  -moz-animation: testim-scale .5s ease-in-out forwards;
  -ms-animation: testim-scale .5s ease-in-out forwards;
  -o-animation: testim-scale .5s ease-in-out forwards;
  animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont>div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont>div.inactive {
  opacity: 1;
}


.testim .cont>div.active {
  position: relative;
  opacity: 1;
}


.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #451515;
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: #333;
  width: 70%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;
  -moz-animation: testim-show .5s ease-in-out forwards;
  -ms-animation: testim-show .5s ease-in-out forwards;
  -o-animation: testim-show .5s ease-in-out forwards;
  animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;
  -moz-animation: testim-content-in .4s ease-in-out forwards;
  -ms-animation: testim-content-in .4s ease-in-out forwards;
  -o-animation: testim-content-in .4s ease-in-out forwards;
  animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;
  -moz-animation: testim-content-in .5s ease-in-out forwards;
  -ms-animation: testim-content-in .5s ease-in-out forwards;
  -o-animation: testim-content-in .5s ease-in-out forwards;
  animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;
  -moz-animation: testim-hide .5s ease-in-out forwards;
  -ms-animation: testim-hide .5s ease-in-out forwards;
  -o-animation: testim-hide .5s ease-in-out forwards;
  animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;
  -moz-animation: testim-content-out .4s ease-in-out forwards;
  -ms-animation: testim-content-out .4s ease-in-out forwards;
  -o-animation: testim-content-out .4s ease-in-out forwards;
  animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;
  -moz-animation: testim-content-out .5s ease-in-out forwards;
  -ms-animation: testim-content-out .5s ease-in-out forwards;
  -o-animation: testim-content-out .5s ease-in-out forwards;
  animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 16px;
    font-size: 12px;
  }

  .testim .arrow.right {
    right: 0px;
  }

  .testim .arrow.left {
    left: 0;
  }

  .testim .dots {
    height: 30px;
  }

}

/* Testimonial Section Ends */

/*  Media Queries */

/* For Second Section */

@media screen and (min-width: 836px) and (max-width: 1130px) {

  .intro-text .sub-heading {

    font-size: 16px;

  }

  .intro-text .description p {
    font-size: 12px;
    line-height: 20px;
    margin: 10px 30px;
  }

}

@media screen and (min-width: 550px) and (max-width: 835px) {

  .top-logo img {
    width: 20%;
  }

  .image-container img {
    width: 100%;
    height: 100%;
  }

  .intro-text .heading,
  .facility-head,
  .video-header,
  .gal-head,
  .clients-header,
  main h1,
  .testi-head {
    width: 98%;
    font-size: 14px;

  }

  .intro-text .sub-heading {
    width: 98%;
    font-size: 9px;

  }

  .intro-text .description p {
    font-size: 8px;
    line-height: 14px;
    margin: 10px 10px;
  }

}


@media screen and (min-width: 200px) and (max-width: 549px) {

  .second {
    flex-direction: column;
  }

  .image-container img {

    height: 62vh;

  }

  .intro-text {
    width: 100%;
    height: 114%;
    top: 174vh;
  }

  .top-logo img {
    width: 18%;
  }

  .intro-text .heading,
  .facility-head,
  .video-header,
  .gal-head,
  .clients-header,
  main h1,
  .testi-head {

    font-size: 14px;

  }

  .intro-text .sub-heading {

    font-size: 15px;

  }

  .intro-text .description p {
    font-size: 11px;
    line-height: 14px;
    margin: 10px 10px;
  }

  p {
    font-size: 11px;
  }
}

@media screen and (min-width: 200px) and (max-width: 360px) {

  .intro-text {
    width: 100%;
    height: 86%;
    top: 135vh;
  }

  .intro-text .description h6{
    margin: 10px 20px;
  }

}

@media screen and (min-width: 361px) and (max-width: 419px) {

  .intro-text {
    width: 100%;
    height: 101%;
    top: 155vh;
  }

  .intro-text .description h6{
    margin: 10px 20px;
  }

}


/*  For Third Section */

@media screen and (min-width: 200px) and (max-width: 549px) {

  .media {
    width: 280px;
    height: 160px;
  }

  .facility-description,
  .video-description,
  .gal-desc {

    margin: 0% 4%;

  }

}

@media screen and (min-width: 200px) and (max-width: 1200px) {

  .facility-description,
  .video-description,
  .gal-desc {
    margin: 0% 20%;
  }

}

/* For Youtube Section */

@media screen and (min-width: 200px) and (max-width: 399px) {
  .video-container {
    padding: 12px;
    flex-direction: column;
    width: 100%;
  }

  .YTvideo {
    width: 100%;
    height: 27vh;
  }

}

@media screen and (min-width: 400px) and (max-width: 749px) {
  .video-container {
    flex-direction: column;
  }
}


@media screen and (min-width: 750px) and (max-width: 991px) {
  .YTvideo {
    width: 94%;
    height: 24vh;
  }

}

@media screen and (min-width: 992px) and (max-width: 1277px) {
  .YTvideo {
    width: 101%;
    height: 29vh;
  }

}


@media screen and (min-width: 1278px) and (max-width: 1491px) {
  .YTvideo {
    width: 125%;
    height: 32vh;
  }

}

@media screen and (min-width: 1492px) {
  .YTvideo {
    width: 136%;
  }
}


/* Youtube Section Ends */

/*  For Footer  */

@media screen and (min-width: 200px) and (max-width: 715px) {

  .contact-content {

    flex-direction: column;

  }

  .first {
    width: 99%;
    text-align: center;
  }


  .contact-content p {
    text-align: center;
    font-size: 11px;
  }

  .address {
    align-items: flex-start;
    justify-content: center;
  }

  .address h6 {
    width: 46%;
    font-size: 11px;
  }

  .sec {
    padding-top: 20px;
  }

  .contact-content .phone {
    font-size: 11px;
    width: 100%;
  }

  .sticky-line img {
    width: 92vw;
  }

}

iframe {
  border-radius: 15px;
}


/* Media Query */

@media screen and (min-width: 300px) and (max-width: 700px) {

  /* .hero {
    height: calc(50vh - 102px);
  } */
  /* 
  .hero-text img {
    width: 36%;
    transform: translate(32vw, 20vh);
  } */


  .image-container {
    display: flex;
    width: 100%;
  }

  .second {
    align-items: center;
  }

  .image-container img {
    height: 100%;
  }

  .intro-text .description h6 {
    font-size: 12px;
    line-height: 20px;
  }

  .sticky-line p {
    font-size: 14px;
  }

  .sticky {
    height: 26vh;
  }

  .youtube-button {
    justify-content: center;
  }



}

@media screen and (min-width: 430px) and (max-width: 700px) {

  /* .hero {
    height: calc(61vh - 102px);
  }


  .hero-text img {
    width: 36%;
    transform: translate(32vw, 24vh);
  } */

  .intro-text .description h6 {
    font-size: 12px;
    line-height: 24px;
  }


}


@media screen and (min-width: 500px) and (max-width: 900px) {
  .hero-text img {
    width: 35%;
    transform: translate(34vw, 24vh);
  }
}

@media screen and (min-width: 901px) {

  .hero-text img {
    width: 40%;
    transform: translate(30vw, 28vh);
  }

}

@media screen and (min-width: 550px) {

  .hero {
    height: calc(92vh - 100px);
  }

  .intro-text .description h6 {
    font-size: 12px;
    line-height: 18px;
    margin: 10px 10px;
  }

  .intro-text {
    height: 82%;
  }

  .sticky-line img {
    width: 92vw;
  }

}

@media screen and (min-width: 1000px) {

  .hero {
    height: 100%;
  }

  .video-container-1 video {
    width: 100%;
    height: 100%;
  }


  .intro-text {
    height: 100%;
  }

  .intro-text .description h6 {
    font-size: 14px;
    line-height: 20px;
    padding: 0px 10px;
  }

}

@media screen and (min-width: 1350px) {
  .intro-text .description h6 {
    font-size: 18px;
    line-height: 28px;
    padding: 0px 24px;
  }
}

@media screen and (min-width: 1439px) {

  .sticky-line p {
    font-size: 30px;
  }


}

@media screen and (min-width: 1500px) {


  .intro-text .heading,
  .facility-head,
  .video-header,
  .gal-head,
  .clients-header,
  main h1,
  .testi-head {
    font-size: 38px;
  }

  .intro-text .description h6 {
    font-size: 28px;
    line-height: 46px;
    margin: 10px 40px;
  }

  p {
    font-size: 28px;
  }

  .sticky-line p {
    font-size: 58px;
  }

  .media {
    max-width: 600px;
    max-height: 40vh;
    width: 600px;
    height: 36vh;
  }

  .testim {
    height: 36vh;
  }

  .video-container {
    width: 92%;
  }

  .video-1,
  .video-2,
  .video-3 {
    width: 20%;
  }

  .wrapper {
    padding: 0px 250px;
  }

  .gallery-wrapper {
    grid-auto-rows: 300px;
    max-width: 2000px;
  }

}

@media screen and (min-width: 300px) and (max-width: 730px)and (min-height: 600px) {

  .intro-text .description h6 {
    font-size: 12px;
    line-height: 32px;
  }

  /*   
  .hero {
    height: calc(47vh - 102px);
  }

*/

}

@media screen and (min-width: 400px) and (min-height: 800px) {
  .hero-text img {
    width: 40%;
    transform: translate(30vw, 15vh);
  }
}

/*  
  .hero {
    height: calc(37vh - 102px);
}

.hero-text img {
  transform: translate(32vw, 14vh);
}

}
*/

@media screen and (min-width: 350px) and (max-width: 500px) and (min-height: 650px) {

  .intro-text .description h6 {
    line-height: 24px;
  }

  .intro-text {
    top: 131vh;
    height: 84%;
  }

}

/* @media screen and (min-width: 350px) and (min-height: 650px) {

  .intro-text{
    top: 114vh;
    height: 73%;
  }

} */


@media screen and (min-width: 350px) and (max-width: 730px) and (min-height: 800px) {

  .hero-text img {
    width: 40%;
    transform: translate(30vw, 16vh);
  }

  .intro-text {
    height: 69%;
    top: 107vh;
  }

  .intro-text .description h6 {
    font-size: 12px;
    line-height: 27px;
  }

}

@media screen and (min-width: 340px) and (max-width: 730px) and (min-height: 880px) {

  .hero-text img {
    transform: translate(30vw, 15vh);
  }

  .intro-text .description h6 {
    line-height: 28px;
    margin: 10px 12px;
  }

  .intro-text {
    height: 58%;
    top: 92vh;

  }

}

@media screen and (min-width: 400px) and (max-width: 730px) and (min-height: 900px) {

  .intro-text {
    width: 100%;
    height: 67%;
    top: 104vh;
  }

}


@media screen and (min-width: 430px) and (max-width: 730px) and (min-height: 930px) {

  .intro-text {
    top: 107vh;
  }

}

@media screen and (min-width: 750px)and (max-width: 900px) and (min-height: 1000px) {

  .hero {
    height: calc(52vh - 100px);
  }

  .intro-text .description h6 {
    font-size: 12px;
    line-height: 18px;
  }

  .intro-text {
    width: 33.33%;
    height: 45%;
    top: 52vh;
  }

  .footer {
    height: 35vh !important;
  }

  .testim {
    height: 38vh !important;
  }

}

@media screen and (min-width: 800px) and (max-width: 1000px) and (min-height: 1100px) {

  .hero {
    height: calc(46vh - 100px);
  }

  .intro-text {
    width: 33.33%;
    height: 41%;
    top: 46vh;
  }

  .sticky {
    height: 30vh;
  }

  .image-container img {
    height: 100%;
  }

}

@media screen and (min-width: 850px) and (max-width: 1000px) and (min-height: 1250px) {

  .hero {
    height: calc(44vh - 100px);
  }

  .intro-text {
    width: 33.33%;
    height: 39%;
    top: 44vh;
  }

}

@media screen and (min-width: 900px) and (min-height: 1350px) {

  .hero {
    height: calc(44vh - 100px);
  }

  .intro-text {
    width: 33.33%;
    height: 40%;
    top: 44vh;
  }

  .hero-text img {
    transform: translate(30vw, 12vh);
  }

  .image-container img{
    height: 100%;
    width: 100%;
  }

  .footer{
    height: 37vh !important;
  }

}


@media screen and (min-width: 1000px) and (max-width: 1600px) and (min-height: 2000px) and (max-height: 2400px) {
  
  .hero{
    height: calc(30vh - 100px);
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
}

.sticky {
  height: 24vh;
}

.YTvideo {
  width: 101%;
  height: 10vh;
}

.testim {
  height: 18vh;
}

.footer{
  height: 14vh !important;
}

  }
