@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #00721D;
  /* --primary-color: #20a54c; */
  --primary-color-dark: #096828;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

section{
  overflow: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
h1 ,h2,h3,h4,h5,h6{
  text-transform: capitalize;
}
::selection{
  background-color: #096828;
  color: #dbeafe;
}
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: #00721D;
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}
a{
  text-decoration: none !important;
}
.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem!important;
  outline: none!important;
  border: none!important;
  font-size: 1rem!important;
  font-weight: 500!important;
  color: var(--white)!important;
  background-color: var(--primary-color)!important;
  border-radius: 5px!important;
  cursor: pointer!important;
  transition: 0.3s!important;
}

.btn:hover {
  background-color: var(--primary-color-dark)!important;
}

img {
  width: 100%;
  display: flex;
}




html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}


 


.nav__bar {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--primary-color);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  text-transform: uppercase;
  font-family: 'math';
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: #00721D;
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: var(--white);
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #000;
  /* text-align: center; */
  /*opacity: 0.6;*/
}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--white);
  /* text-align: center; */
}

.header__container h1 span {
  color: var(--primary-color);
}

.booking__container {
  padding-block: 0;
}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}


.play-btn{
  transition: 0.3s !important;
/* backdrop-filter: blur(15px); */
  /* padding: 5% 0; */
  border:1px solid transparent;
  width: 100% !important;
  display: inline-block !important;

  background-color: transparent;
}
.play-btn:hover{
  border:1px solid #3F3E3C;
  backdrop-filter: blur(15px);
}
.play-btn i{
  color:#00721D;
  font-size: 40px;
}
.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.room__card__icons span:nth-child(1) {
  color: #f472b6;
}

.room__card__icons span:nth-child(2) {
  color: #c084fc;
}

.room__card__icons span:nth-child(3) {
  color: #60a5fa;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  /* background-image: url("assets/service.jpg"); */

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(0, var(--max-width))
    minmax(1rem, 1fr);
  background-image: url("assets/explore.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}


@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

 
}
.logo img{
     
  border-radius: 5% !important;
}
@media (min-width: 991px) {
  /* .box-image{
    width: 90%;
    height: 550px;
  } */
  
  #contact::before {
    display: block;
    content: 'Contact';
    font-size: 100px;
    color: rgb(0, 0, 0, 0.1);
    position: relative;
    top: 74px;
  }
  header .btn {
    padding: 0.75rem 1.5rem!important;
    outline: none!important;
    border: none!important;
    font-size: 1rem!important;
    font-weight: 500!important;
    color: var(--white)!important;
    background-color: var(--primary-color)!important;
    border-radius: 5px!important;
    cursor: pointer!important;
    transition: 0.3s!important;
  }
  
  header .btn:hover {
    color:#fff !important;
    background-color: var(--primary-color-dark)!important;
  }
  
  .heading h2 {
    /* color: #00721D; */
    font-size: 45px;
    font-family: serif;
    font-weight: bold;
    margin: 10px 0 20px 0;
  }
  .nav__links a:hover{
    color:#fff !important;
   }
  .logo {
     width: 120px;
     border-radius: 10px !important;
  }
  
  
.hover-1 {
  --c: #00721D; /* the color */
  --s: .15em;
  
  line-height:1.1em;
  padding-bottom: calc(2.1*.15em);
  background: 
    conic-gradient(from 135deg at top,#00721D 90deg,#0000 0) 
      left 0 bottom .15em/calc(2*.15em) .15em repeat-x,
    conic-gradient(from -45deg at bottom,#00721D 90deg,#0000 0) 
      left .15em bottom 0/calc(2*.15em) .15em repeat-x;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0) 0/var(--_p,0%) padding-box no-repeat;
  transition: .5s;
}
.hover-1:hover {
  --_p: 100%;
  color: #00721D;
}
}

@media (max-width: 991px) {
  .box-image{
    width: 100%;
    /* height: 550px; */
  }
  
  #contact::before {
    display: block;
    content: 'Contact';
    font-size: 100px;
    color: rgb(0, 0, 0, 0.1);
    position: relative;
    top: 64px;
  }
  
  header .btn {
    padding: 0.75rem 1.5rem!important;
    outline: none!important;
    border: 1px solid #fff!important;
    font-size: 1rem!important;
    font-weight: 500!important;
    color: #fff!important;
    background-color: var(--primary-color)!important;
    border-radius: 5px!important;
    cursor: pointer!important;
    transition: 0.3s!important;
  }
  
  header .btn:hover {
    background-color: #fff!important;
    color:#00721D !important;
  }
  .heading h2 {
    /* color: #00721D; */
    font-size: 27px;
    font-family: serif;
    font-weight: bold;
    margin: 10px 0 20px 0;
}
  
  .logo {
    width: 80px;
  }
.hover-1 {
  --c: #fff; /* the color */
  --s: .15em;
  
  line-height:1.1em;
  padding-bottom: calc(2.1*.15em);
  background: 
    conic-gradient(from 135deg at top,#fff 90deg,#0000 0) 
      left 0 bottom .15em/calc(2*.15em) .15em repeat-x,
    conic-gradient(from -45deg at bottom,#fff 90deg,#0000 0) 
      left .15em bottom 0/calc(2*.15em) .15em repeat-x;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0) 0/var(--_p,0%) padding-box no-repeat;
  transition: .5s;
}
.hover-1:hover {
  --_p: 100%;
  color: #fff;
}
}

@media (width > 768px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
  }

  .nav__btn {
    display: block;
  }

  /*.nav__links a::after {*/
  /*  position: absolute;*/
  /*  content: "";*/
  /*  left: 0;*/
  /*  bottom: 0;*/
  /*  height: 2px;*/
  /*  width: 0;*/
  /*  background-color: var(--primary-color);*/
  /*  transition: 0.3s;*/
  /*  transform-origin: left;*/
  /*}*/

  /*.nav__links a:hover::after {*/
  /*  width: 100%;*/
  /*}*/

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }
}


/* new card tryinh */
 

.card-section {
	height: 100%;
	padding: clamp(16px, 5vw, 32px);
	margin: 0;
	background-color: #e5e5e5;
	font-family: system-ui, sans-serif;
	/* max-width: 608px; */
	margin: 0 auto;
	color: #444;
	line-height: 1.5;
	min-width: 360px;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

.card-section a {
	color: #fff;
}
.card-body h5{
  font-size: 16px;
 
}
.card-body span{
  color: #096828;
  font-weight: 600;
 
}
.card-body a {
  /* position: absolute; */
  display: inline-block;
  margin-top: 2%;
  text-align: center;
	color: #fff;
  background-color: #096828;
  cursor: pointer;
  padding: 2% 4%;
  transition:0.5s;
  border-radius: 5px;
}

 
   
.card-body a:hover{
  background-color: #349253;
  color: #fff !important;
}
	.card-section a:hover, .card-section a:focus {
		text-decoration: none;
	}
.card-section a:focus {
		outline: 2px solid rgba(#000,.1);
	}


  .card-section h3 {
	margin-top: 0;
	margin-bottom: 8px;
}
  .card-section h4 {
	font-size: 18px;
  /* margin: auto;
  text-align: center; */
}

.card-section p {
	margin-top: 0;
	margin-bottom: 8px;
}
.card-section span{
  font-size: 15px;
}
.card-section sup {
  margin-left: 2%;
}
.card-section h5{}
 .card-section>.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	border-radius: 50%;
	background-color: blue;
	
	&:hover,&:focus {
		background-color: lighten(blue, 5%);
	}
	&:focus {
		outline: 4px solid rgba(#000,.3);
		outline-offset: -4px;
	}
}

@media only screen and (min-width: 991px){
  .sidePart {
    width: 100%;
    padding: 25% 0;
    /* height: 100px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
  }
}
@media only screen and (max-width: 991px){
 .card{
  margin-top:2% ;
 }
}
.cardPart{}
.card-image .card {
	padding: clamp(16px, 5vw, 32px);
	margin-bottom: clamp(16px, 5vw, 32px);
	background-color: #fff;
}

.card-image.card-actions {
	position: relative;
	margin-bottom: 16px;
}

.card-image.card-btn-float {
	position: absolute;
	z-index: 10;
	bottom: 16px;
	left: 16px;
	
	& + & { left: 64px;}
}

.card-image {
	display: block;
	overflow: hidden;
}
	.card-image img {
		transform: scale3d(1,1,1);
		transition: transform 1s ease-in-out;
	}


.card-image:hover,
.card-image:focus,
.card-btn-float:focus ~ .card-image,
.card-btn-float:hover ~ .card-image {
	img {
		transform: scale3d(1.5,1.5,1);
		transition: transform 5s ease-in-out;
	}
}

/* new card tryinh end */

.hover-3 {
  --b: 0.1em;   /* the thickness of the line */
  --c: #00721D;/* the color */
  
  color: #0000;
  padding-block: var(--b);
  background: 
    linear-gradient(var(--c) 50%,#000 0) 0% calc(100% - var(--_p,0%))/100% 200%,
    linear-gradient(var(--c) 0 0) 0% var(--_p,0%)/var(--_p,0%) var(--b) no-repeat;
  -webkit-background-clip: text,padding-box;
          background-clip: text,padding-box;
  transition: .3s var(--_s,0s) linear,background-size .3s calc(.3s - var(--_s,0s));
}
.hover-3:hover {
  --_p: 100%;
  --_s: .3s;
}
/* gallery */

.img__part{
  margin: 1%;
}
img{
  max-width: 100%;
}
/* gallery end*/

/* 
.gallery {
  --s: 130px; 
  
  display: grid;
  grid-template-columns: repeat(3,auto);
  gap: 5px;
  position: relative;
}
.gallery input {
  position: absolute;
  border: 2px solid #000;
  border-radius: 50%;
  inset: calc(50% - var(--s)/3);
  cursor: pointer;
  --g: linear-gradient(#000 0 0) no-repeat;
  background: var(--g) 50%/var(--b,0%) 3px,var(--g) 50%/3px var(--b,0%);
  transition: 1.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gallery > h4{
  width: var(--s);
  aspect-ratio: 1;
  object-fit: cover;
  transform: scale(.1);
  filter: brightness(0);
  pointer-events: none;
  transform-origin: var(--x) var(--y);
  transition: 1s calc((var(--i) - 1)*.1s);
}
.gallery >h4:nth-of-type(1) {--i:1;--x: 150%;--y:150%;}
.gallery >h4:nth-of-type(2) {--i:2;--x:  50%;--y:150%;}
.gallery > h4:nth-of-type(3) {--i:3;--x: -50%;--y:150%;}
.gallery > h4:nth-of-type(4) {--i:4;--x: 150%;--y:50%; }
.gallery > h4:nth-of-type(5) {--i:5 }
.gallery > h4:nth-of-type(6) {--i:6;--x: -50%;--y:50%; }
.gallery > h4:nth-of-type(7) {--i:7;--x: 150%;--y:-50%;}
.gallery > h4:nth-of-type(8) {--i:8;--x:  50%;--y:-50%;}
.gallery > h4:nth-of-type(9) {--i:9;--x: -50%;--y:-50%;}

.gallery > input:checked ~ h4 {
  transform: scale(1);
  filter: brightness(1);
  pointer-events: initial;
}
.gallery > input:checked {
  transform: translateY(calc(1.75*var(--s))) scale(.5) rotate(45deg);
  --b: 70%;
}



.gallerys {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-content: center;
  background: #83AF9B;
} */

.gallerys{
  /* background: url(./gallery/19.jpeg)
      top center/cover no-repeat; */
      background-color: #E5E5E5;
  
}
.slider-video{
  /* background: url(./gallery/19.jpeg)
      top center/cover no-repeat; */
      background-color: #E5E5E5;
  
}
@media (min-width: 991px) {
  .gallery_title{
    background-color: #E5E5E5;
  }
}
@media (max-width: 991px) {
  .gallery_title{
    background-color: #fff;
  }
}

.gallery__header {
  padding-bottom: 5%;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
   
}
.gallery__header::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: #fff;
}
.gallerys h1 {
  color: #fefae0;
  font-family: Amita;
  margin: 20px auto;
  width: 450px;
  font-size: 3rem;
  text-align: center;
  border-bottom: 10px double #bc6c25;
}

.gallerys>.col-lg-2 {
  overflow: hidden !important;
}
.gallery__image{
  overflow: hidden !important;
  margin: 2% 0;
}
.gallerys img {
  
  /* margin: 10px; */
   
  border: 10px solid #096828;
   
  filter: sepia(100%);
  transition-duration: 1s;
}

.gallerys img:hover {
  border: 2px solid #fff;

  transform: scale(1.1);
  
  filter: none;
 
}


/*room */
.heading {
  text-align: center;
}

 



.left, .right {
  width: 50%;
}
.room {

  /* background-color: #cdcdcd; */
  margin-bottom: 50px;
  position: relative;
}


.room img {
  max-width: 100%;
  height: 100%;
  /* margin-left: 20px; */
}

.room h3 {
  margin: 0;
  padding: 0;
}
.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 168px;
  cursor: grab;
  margin: 1% auto;
  text-align: center;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  padding: 5% 0;
  transition: 0.5s;
}
.box:hover {
  background-color: #096828;
  
}
.box:hover i ,.box:hover p,.box:hover h3{
  
color: #fff;
  
}
.box i {
  font-size: 24px;
  color: #096828;
}
.box p {
  color: #767676;
}
.box h3 {
  font-size: 18px;
  color: #096828;
  opacity: 0.8;
}


/*room end */
.up__image{
  background-image: url("gallery/in__up.png");
  /* background-color: #000; */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
 
/* footer */
footer{
  background-color: #fff;
}
.footer__logo{
  width: 100px;
  height: 100px;
}
.footer__logo img{
  max-width: 100%;
}

/* footer end */


/* extra type */
/* 
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  --c: goldenrod;
  color: var(--c);
  font-size: 16px;
  border: 0.3em solid var(--c);
  border-radius: 0.5em;
  width: 12em;
  height: 3em;
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 3em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
  margin: 1em;
}

nav ul li span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--c);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}

nav ul li:hover {
  color: black;
}

nav ul li:hover span {
  transform: translateY(0) scale(2);
}

nav ul li span:nth-child(1) {
  --n: 1;
}

nav ul li span:nth-child(2) {
  --n: 2;
}

nav ul li span:nth-child(3) {
  --n: 3;
}

nav ul li span:nth-child(4) {
  --n: 4;
} */
/* footer */
 
.text p{
  color: var(--text-light);
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: #000;
}


footer p, footer strong, footer b, footer {
    color: #b0b0b0;
}

.footer-top {
    background: #E5E5E5;
    background-size: cover;
    background-position: center;
    padding: 0 0 20px;
    /* font-family: rubik; */
  padding-top:30px;
  
}

 .footer-bottom {
  background: #E5E5E5;
}

.footer-bottom {
    padding: 15px 0;
    
    
    color: #b0b0b0;
    font-family: rubik;
}
 

.footer-site-info {
    font-size: 92.86%;
}
#footer-navigation, #footer-navigation li a:hover, .custom-footer, .custom-footer li a:hover {
    color: white;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

.footer-bottom ul {
    margin: 0;
}
.inline-inside {
    font-size: 0;
    line-height: 0;
}
.clearfix:after, .clearfix:before {
    content: "";
    display: table;
}
#footer-menu li {
    display: inline-block;
    padding: 0 21px;
    position: relative;
    line-height: 1;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {

    color: #99a9b5;
    padding-top: 15px;
}
#footer-menu li+li:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 0;
    font-size: 0;
    border-left: 1px solid #232234;
    border-right: 1px solid #333146;
}

 
#footer-socials {
    /* text-align: right; */
}

#footer-socials .socials {
    
    display: inline-block;
    vertical-align: middle;
}

a.socials-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 5px;
    line-height: 16px;
    padding: 10px;
    border-radius: 50%;
    background-color: #E5E5E5;
    border: 1px solid #E5E5E5;
    box-shadow: 3px 9px 16px rgb(0,0,0,0.4), -3px -3px 10px rgba(255,255,255, 0.06), inset 14px 14px 26px rgb(0,0,0,0.3), inset -3px -3px 15px rgba(255,255,255, 0.05);
}

.socials-item i {
    display: inline-block;
    font-weight: normal;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 16px;
    text-align: center;
    vertical-align: top;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    text-rendering: auto;
}

.facebook {
    color: #4e64b5;
}

.whatsapp {
    color: #187a30;
}
 
.youtube {
    color: #c82929;
}

 
a{cursor: pointer !important;}

a.socials-item:hover {

    box-shadow: 0 0px 20px rgb(0, 114, 29, 0.7);
    /* border-color: #00721D; */
    background: #fff;
}

.footer-bottom a:hover {
    color: #087423;
}


/*footer p, footer li {*/
/*    font-size: 15px;*/
/*    line-height: 22px;*/
/*}*/


.widget {
    margin-bottom: 50px;
}

/*.footer-title {*/
/*    margin-bottom: 40px;*/
/*    color: #087423;*/
/*    font-weight: 500;*/
/*    text-transform: capitalize;*/
/*    padding-bottom: 15px;*/
/*    font-size: 16px;*/
/*    position: relative;*/
/*}*/

.footer-title:after {
    width: 50px;
    background: #087423;
    opacity: 0.2;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}
.footer-mid {
    margin-bottom: 40px;
    color: #087423;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 15px;
    font-size: 16px;
    position: relative;
}

.footer-mid:after {
    width: 50px;
    background: #087423;
    opacity: 0.2;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.gem-contacts-item {
    padding-top: 10px;
    font-size: 15px;
}

.gem-contacts-item i {
    padding-right: 10px;
}

footer .widget ul {
    list-style: none;
    margin-top: 5px;
}

.posts li {
    border-bottom: 1px solid #393d50;
    padding-bottom: 12px;
    padding-top: 6px;
}

/*footer p, footer li {*/
/*    font-size: 15px;*/
/*    line-height: 22px;*/
/*}*/

.gem-pp-posts-date {
    color: #00bcd4;
    font-size: 89.5%;
}

footer p {
    line-height: 24px;
    margin-bottom: 10px;font-size: 15px;
}

.wpcf7-form-control-wrap .wpcf7-form-control {
    padding: 7px!important;
    width: 100%;
}

.wpcf7-form-control-wrap input {
    background: #1c1f2f;
    overflow: hidden;
    border: 1px solid #2e344d;
    background-color: #1c1f2f;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-form-control-wrap input:hover {
    background-color: transparent;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcf7 .wpcf7-form .contact-form-footer textarea {
    height: 160px;
    width: 100%;
}

.wpcf7-form-control-wrap textarea:hover {
    background-color: transparent;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcf7-form-control-wrap textarea {
    background: #1c1f2f;
    overflow: hidden;
    border: 1px solid #2e344d;
    background-color: #1c1f2f;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

textarea {
    overflow: auto;
    resize: vertical;
}

.wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit {
    width: 100%;
    padding: 11px;
    margin: 0;
    line-height: 0;
}
.wpcf7-form .contact-form-footer .wpcf7-submit {
    background-color: #394050;
    color: #99a9b5;
    border: none;
    cursor: pointer;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
    letter-spacing: 2px;
    color: rgba(255,255,255,.5);
    box-shadow: none;
    text-transform: uppercase;
    outline: none !important;
    background-color: #1c1f2f;
    border-radius: 5px;
    min-width: 140px;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 3px 9px 16px rgb(0,0,0,0.4), -3px -3px 10px rgba(255,255,255, 0.06), inset 14px 14px 26px rgb(0,0,0,0.3), inset -3px -3px 15px rgba(255,255,255, 0.05);
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #2e344d;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-form input[type=submit] {
    height: 40px;
    line-height: 21px;
    padding: 10px 40px;
    font-size: 14px;
}

.posts li a {
    color: #99a9b5;
}

.wpcf7-form .contact-form-footer .wpcf7-submit:hover {
    box-shadow: 0 0px 20px rgba(84, 1, 74, 0.7);
    border-color: rgba(255, 6, 224, 0.61);
    background: linear-gradient(to right, rgba(255, 9, 9, 0.12941176470588237), #c000ffb5, rgba(255, 0, 94, 0.14));
    color: white;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
.widget_gallery a {
    display: inline-block;
}
footer .widget ul {
    list-style: none;
    margin-top: 5px;
}
.widget_gallery ul {
    padding-left: 0;
    display: table;
}

.widget_gallery li {
    display: inline-block;
    width: 33.33%;
    float: left;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    padding: 2px;
}

.widget_gallery.gallery-grid-4 li {
    width: 30%;
}


#waterdrop {
    height: 30px;
}

#waterdrop canvas {
    bottom: -70px !important;
}

.footer-site-info
{
  padding-top: 10px;
}

/* footer end */

h2{
  color: #000;
  font-family: serif !important;
}


/* contact start */
#contact{
  /* background:url('./gallery/4.jpeg') center center;
	background-size: cover;
  background-repeat: no-repeat; */
  backdrop-filter: blur(15px);
}

/* #our_menu{
  background-attachment: fixed;
  background:url('./gallery/4.jpeg') center center;
	background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(15px);
} */
.contact-mid{
  padding: 10px;
  background-image: -webkit-repeating-radial-gradient(center center, rgba(26, 118, 188, 0.8), rgba(26, 118, 188, 0.8) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(26, 118, 188, 0.8), rgba(26, 118, 188, 0.8) 1px, transparent 1px, transparent 100%);
  
  background-image: -o-repeating-radial-gradient(center center, rgba(26, 118, 188, 0.8), rgba(26, 118, 188, 0.8) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(26, 118, 188, 0.8), rgba(26, 118, 188, 0.8) 1px, transparent 1px, transparent 100%);
  background-size: 5px 5px;
}


.contact-mid p{
  /* box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px; */
}
.contact-mid i {
 
 
}
.map{
  
}
.contact-section i{
  color: #00721D !important;
}
.contact-section{
  padding-top: 14px;
  display: flex;
  background-color: #fff;

}
.contact-icon {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 60px; */
}
.contact-icon p{
  color: blue;
  margin-right: 4%;
  font-size: 14px; 
  padding: 14px;
  display: inline-block;
  background-color: #E5E5E5 !important;
}
.contact-box{
  width: 75%;

  /* height: 60px; */
}


.contact-box h4{
  font-size: 16px;
}
.contact-box p{
  font-size: 12px;
}
.mail{}
.mail i{
  background-color: #000 !important;
}
/* contact end */


/* res */
.page_title {
  padding: 30px 0px;
}
.page_title h1 {
  font-family:  serif !important;
  color: #096828;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
}
.page_title h1::before {
  background: #096828;
  width: 70px;
  height: 2px;
  position: absolute;
  content: '';
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_title h1::after {
  position: absolute;
  content: '';
  background: #fbc531;
  width: 30px;
  height: 2px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}




/* vvvv */
 /* testimonial */
 .apply-testimonial h2 {
	color: #000;
	font-size: 26px;
	font-weight: 300;
	position: relative;
	margin: 0 0 50px 0;
	text-transform: uppercase;
	display: inline-block;
}
.apply-testimonial h2::after {
	content: "";
	width: 50%;
	position: absolute;
	height: 4px;
	border-radius: 1px;
	background: #43789F;
	left: 0;
	bottom: -20px;
}
.carousel {
	margin: 50px auto;
}
.carousel .carousel-item {
	color: #999;
	overflow: hidden;
    min-height: 120px;
	font-size: 13px;
}
.carousel .media {
	position: relative;
	padding: 0 0 0 20px;
	margin-left: 20px;
}
.carousel .media img {
	width: 75px;
	height: 75px;
	display: block;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 2px solid #fff;
}
.carousel .testimonial {
    color: #fff;
    position: relative;    
    background: #43789F;
	padding: 15px;
	margin: 0 0 20px 20px;
}
.carousel .testimonial::before, .carousel .testimonial::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -20px;
}
.carousel .testimonial::before {
    width: 20px;
    height: 20px;
	background: #43789F;
	box-shadow: inset 12px 0 13px rgba(0,0,0,0.5);
}
.carousel .testimonial::after {
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff;
    border-left-color: #fff;
}
.carousel .carousel-item .row > div:first-child .testimonial {
	margin: 0 20px 20px 0;
}
.carousel .carousel-item .row > div:first-child .media {
	margin-left: 0;
}
.carousel .testimonial p {
	text-indent: 40px;
    line-height: 21px;
	margin: 0;
}
.carousel .testimonial p::before {
	content: "\201D";
  	font-family: Arial,sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 68px;
    line-height: 70px;
    position: absolute;
    left: -25px;
    top: 0;
}
.carousel .overview {
	padding: 3px 0 0 15px;
}
.carousel .overview .details {
	padding: 5px 0 8px;
}
.carousel .overview b {
	text-transform: uppercase;
	color: #096828;
}
.carousel-control-prev, .carousel-control-next {
	width: 30px;
	height: 30px;
    background: #096828;
    text-shadow: none;
	top: 4px;
}
.carousel-control-prev i, .carousel-control-next i {
	font-size: 16px;
}

/* vvv */

/*class design*/
.slider-video h6{
  font-weight:600;
  margin: 10px 0;
   padding:10px 0;
}
.slider-wrapper{
  position: relative;
}
.frame{
  width:250px;
  height: 170px !important;
  overflow: hidden; 
 
  /* position: relative; */
}
.frame img{
   /* transform: scale(1);
  overflow: hidden; */
  /* position: relative; */
  overflow: hidden;
  transition: 0.5s;
  width:100%  !important;
  height: 100% !important;
  filter: grayscale(100%);
  
}
.frame:hover img{
  filter: grayscale(0);
  transform: scale(1.2);
}

.slide-btn{
  position:absolute;
  top:50%;
  display:inline-block;
  height:40px;
  column-width:40px;
  font-size:1.5rem;
  border:none;
  outline:none;
  color:#00721D;
  background-color: #cdd;
  cursor:pointer;
  border-radius:50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.slide-btn:hover{
  color:#cdd;
  background-color: #00721D;
}
.slide-btn#prev-slide{
  position:absolute;
  left:-20px;
  display:none;
  opacity: 1 !important;
}
.slide-btn#next-slide{
  right:-20px;
}
.slider-wrapper .img-list{
   display:grid;
   gap: 18px;
   font-size: 0;
   overflow-x: auto;
   scrollbar-width: none;
   grid-template-columns: repeat(10, 1fr);
   margin-bottom: 2%;
}

.slider-wrapper .img-list::-webkit-scrollbar{
  display:none;
}
.slider-wrapper .img-list .image-items{
    width:325px;
    height:400px;
    object-fit: cover;
}

.slider-scrollbar{
  height:20px;
  width:100%;
  background-color: #8BC34A;
  display:flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track{
  height:2px;
  width:100%;
  background-color: #ccc;
  position: relative;
  border-radius:4px;
  transition: 0.5s;
}
.slider-scrollbar:hover .scrollbar-track{
  height:4px;
}
.scrollbar-thumb{
  position: absolute;
  height:100%;
  width:50%;
  background-color: #022E1F;;
  border-radius:inherit;
  cursor:grab;
}
.scrollbar-thumb:active{
  cursor:grabbing;
  height:8px;
  top:-2px;

}
.scrollbar-thumb::after{
  content:'';
  display:block;
  position: absolute;
  top:-10px;
  bottom:-10px;
  left:0;
  right:0;
}

/* .gallery__section{
  width:900px;
  display:flex;
  overflow-x:scroll;

}
.mid-gallery{
  width:100%;
  display:grid;
  grid-template-columns: auto auto auto;
  grid-gap:20px;
  padding:10px;
  flex: none;
}
.mid-gallery img{
  width:100%;
  filter: grayscale(100%);
  transition: transform 0.5s;
}

.gallery__section::-webkit-scrollbar{
  display: none;
}

.gallery__wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10% auto;
}

#backBtn, #nextBtn{
  width: 50px;
  margin: 40px;
  cursor:pointer;
}
.mid-gallery img:hover{
    cursor: pointer;
    filter: grayscale(0);
    transform: scale(1.1);
} */


.Gallery__sliding {
  background-color: #E5E5E5;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.Gallery__sliding h2 {
 
  font-family: math !important;
  font-weight: 500;
  font-size: 38px;
 
}
.product-category {
  padding: 0 10vw;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.gallery-container {
  /* padding: 0 10vw; */
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 350px;
  height: 350px;
  margin-right: 40px;
}

.product-image {
  position: relative;
  width: 100%;
  /* height: 350px; */
  overflow: hidden;
}

.product-thumb {
  border: 7px solid gray;
  filter: grayscale(1);
  transform: scale(1);
  transition: 0.8s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb:hover {
  filter: grayscale(0);
  transform: scale(1.6);
  
}

.discount-tag {
  position: absolute;
  /* background: #fff; */
  padding: 5px;
  border-radius: 5px;
  color: #ff7d7d;
  right: 10px;
  top: 10px;
  text-transform: capitalize;
}

 

.product-card:hover .card-btn {
  opacity: 1;
}

 

.product-info {
  width: 100%;
  height: 100px;
  padding-top: 10px;
}

.product-brand {
  text-transform: uppercase;
}

.product-short-description {
  width: 100%;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  opacity: 0.5;
  text-transform: capitalize;
  margin: 5px 0;
}

.price {
  font-weight: 900;
  font-size: 20px;
}

.actual-price {
  margin-left: 20px;
  opacity: 0.5;
  text-decoration: line-through;
}

.pre-btn,
.nxt-btn {
  border: none;
 width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%); */
  cursor: pointer;
  z-index: 8;
}

.pre-btn {
  left: 0;
  transform: rotate(180deg);
}

.nxt-btn {
  right: 0;
}

.pre-btn img,
.nxt-btn img {
  opacity: 0.2;
  width: 100%;
}

.pre-btn:hover img,
.nxt-btn:hover img {
  opacity: 1;
}

.collection-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.collection {
  position: relative;
}

.collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 50px;
  text-transform: capitalize;
}

.collection:nth-child(3) {
  grid-column: span 2;
  margin-bottom: 10px;
}

/* new footer design */
.footer-title {
  /* margin-bottom: 40px; */
  color: #087423;
  font-weight: 500;
  text-transform: capitalize;
  /* padding-bottom: 15px; */
  /* font-size: 16px; */
  position: relative;
}

.footer-title:after {
  width: 50px;
  background: #087423;
  opacity: 0.2;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.new_foot {
  list-style: none;
  /* display: inline-block !important; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-basis: max-content; */
}
.new_foot li {
  margin: 10px;
  display: inline-block !important;
}
.new_foot li a {
  color: #00721D;
  font-weight: 600;
 
  display: inline-block !important;
}
.new_foot li a:hover{
  color: #718f78;
}
.top__Section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top_link__Section{

}
.Footer_text{
  width: 60%;
}
.Footer_text p{
  color: var(--text-light);
}
/* new end*/
/*s;lider new*/
.lnks ul{
   list-style: none;
   display: inline-block;
   margin-right: 30px !important;
}
