/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.navbar-brand{
    font-weight: 15px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(232, 121, 81);
    font-size: 40px;
    }
a{
  color: black;
}
 a:hover{
    color: orange;
 }
 .ttm {
  text-align: center;
}

 p{
  text-align: center;
 }
img{
    width: 100%;
 }
 
 .Menu{
  display: grid;
  grid-template-columns: repeat(6, 149px);
  grid-template-rows: repeat(4, 149px);
  gap: 4px;
  height: 800px;
  width: 100px;
  align-content: center;
  justify-content: center;
  margin: auto;
  margin-left: 220px;
 }
 
 /* About us*/
 section{
  padding-top: 120px;
  padding-bottom: 120px;
 }
 .padding{
  padding-left: 60px;
 }
 
 /* Btn */
 .btn{
   padding: 10px 25px;
 }
 .btn-brand{
   color: white;
   background-color: orange;
   font-weight: 500;
 }
 .btn-brand:hover{
   background-color: rgb(194, 115, 11);
 }
 

 .slider1{
   background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)),url(image/display1.jpg) ;
  }


 .slider2{
   background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)),url(image/displat3.jpg)  ;
  }
 .bg-cover{
  background-position:center ;
   background-size: cover;
   background-repeat: no-repeat;
 }


 .explore-intro{
  text-align: center;
 }
 .explore-intro p{
  max-width: 500px;
  margin: 10px auto 0 auto;
 }

 img{
  height: 300px;
  width: 300px;
}

.pm-bg-img{
  height:810px;
  width: 1900px;
  object-fit: cover;
}

 .Zoom-n-rotate img{
  /* transition: transform 0.5s ease-out; */
  object-fit: cover;
  margin-left: 70px;
 }

 .Zoom-n-rotate img:hover{
  transition: transform 0.5s ease;
  transform: scale(1.2);
  transition: transform 0.5s ease;
 }

 h2{
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
 }

 h3{
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
 }
 .abt{
  text-align: start;
 }


 * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

