section {
  scrollbar-width: none;
}



/* Slide Show */

#slideImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  animation: fadeIn 0.4s linear;
  transition: transform ease-in;
}

@keyframes fadeIn {
  0% {
    transform: scale(1.5);
  }
}

.showcase {
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin-bottom: 100px;
}

.showcase .overlay {
  width: 100%;
  min-height: 92vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.748),
    rgba(0, 0, 0, 0.621)
  );
  top: 0;
}

.showcase .padded {
  padding-top: 28vh;
}


.showcase .slide-container {
  display: none;
}

.showcase .slide-container.active {
  display: block;
}

.content .main-1{
  animation: animate 0.4s linear 0.6s backwards;
}


.content .main-2{
  animation: animate 0.7s linear 0.6s backwards;
}

.showcase .btn1, .showcase .btn2 {
  margin-top: 13px;
  padding: 8px 20px!important;
  font-size: .95em;
  font-weight: 500;
  letter-spacing: .5px;
  border-radius: 7px;
  line-height: normal;
  animation: animate 0.4s linear 1s backwards;
}
.showcase .btn1{  
  background-color: #cea918;
  color: #fff;
  border: none;
}

.showcase .btn2 {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(-50px);
  }
}

.btn1:hover {
  background-color: #f6c609;
  transform: translateY(-3px);
  transition: 0.3s ease;
}

.btn2:hover{
  transform: translateY(-3px);
  transition: 0.3s ease;
}

.btn2:active{
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.showcase #next,
.showcase #prev {
  position: absolute;
  top: 40vh;
  padding: 15px;
  color: #c7c7c777;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
}

.showcase #next {
  right: 15px;
}

.showcase #prev {
  left: 15px;
}

/* Global Variable */
.button-main {
  background-color: var(--wine-color);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  border: none;
  color: #fff;
}

.button-main:hover {
  background-color: #4b0101;
}

.button {
  background-color: #fbd334;
  color: var(--dark-color);
  border-radius: 20px;
}

.button:hover{
  transform: translateY(-3px);
  transition: 0.3s ease;
  background-color: #f5d760;
}

.button:active {
  transform: scale(1.1);
}

.choose:hover{
  transform: translateY(-10px);
  transition: 0.3s ease;
  cursor: pointer;
}


/* Card effects */

.card:hover {
  transform: translateY(-10px);
  transition: 0.5s ease-in-out;
}

.card-body > img:hover {
  transition: 1s ease;
  transform: scale(1.2);
}

.border-wine {
  border-left: solid 2px var(--wine-color);
}

.icon-color {
  color: var(--wine-color);
}

/* Body */

.prospectus {
  background-color: #ffda44;
}

/*history*/

.history {
  margin-top: 50px;
  margin-bottom: 50px;
  line-height: 25px;
}

.history p {
  /* width: 70%; */
  text-align: center;
}

/*enrol*/

.enrol {
  background-color: peachpuff;
}

.enrol-button{

  margin-top: 20px;
  position: relative;
  transition: transform 1s ease-in-out;
  animation: bouncing 1s ease-in-out infinite;
}

@keyframes bouncing {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*  Why Choose Us   */

.choose-section p {
  font-size: 12px;
  line-height: 20px;
}

.clip-art {
  width: 80px;
  margin: 20px 0;
}

.choose-section {
  margin-top: 50px;
}

/*principal*/

.principal-img {
  max-width: 400px;
  width: 100%;
  
}

/* Explore Section */

.explore {
  background-color: var(--cream-color);
  color: #222;
  padding: 15px;
  border: solid 2px #ffda44;
  border-radius: 20px;
  cursor: pointer;
  margin: 0 auto;
  /* text-align:center; */
  font-size: 15px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}


/*  Client Testimonial Slider   */

.bg-peach{
  background-color: #fcefef;
}

.bg-bleach{
  background-color: #f3d5d5;
  max-width: 100%;
  width: 500px;  
  /* height: 100%; */
  border-radius: 30px;
  box-shadow: 0 5px 25px rgba(60, 60, 60, 0.166);

}


.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;

}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 500px;
  max-width: 100%;
  height: 100%;
  border-radius: 30px;
}

.lower-section{
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 10px;
}

.swiper-img{
  width: 70px;
}

.quote{
  width: 70px;
  opacity: 70%;
}




