.element {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.element {
  will-change: transform;
}

body.loaded .element {
  opacity: 1;
}

:root {
 

  --green_type: #61B081;
  --quick-silver: #a6a6a6;
  --davys-grey: #595754;
  --smoky-black-1: #0e0d0b;
  --smoky-black-2: #0e0d0c;
  --smoky-black-3: #121111;
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top,hsla(0, 0%, 0%, 0.9),hsla(0, 0%, 0%, 0.7),transparent);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0.15em;
  --letterSpacing-2: 0.4em;
  --letterSpacing-3: 0.2em;
  --letterSpacing-4: 0.3em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;

  /**
   * SHADOW
   */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
   * BORDER RADIUS
   */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}




*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { 
  list-style: none;
 }

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }
a:hover{
  text-decoration: none!important;
}
button:focus{
  outline: none!important;
}

address { font-style: normal; }

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
::selection{
  background-color: var(--green_type);
  color: var(--white);
}
body {
  background-color: var(--white);
  color: var(--eerie-black-1);

  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  /* height: 300vh; */
}
a{
  color:var(--white);
  text-decoration: none;
}
body.loaded { overflow: overlay; }

body.nav-active { overflow: hidden; }

::-webkit-scrollbar { width: 5px; 
 }

::-webkit-scrollbar-track { background-color: black; }

::-webkit-scrollbar-thumb { background-color: var(--green_type); border-radius: 30px;}




 
h1,h2,h3,h4,h5,h6,p{
  font-family: var( --fontFamily-dm_sans) !important;
}
.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--eerie-black-1);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}
 
section:nth-child(even){
  background-color: #EFF7F3;
}
.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 { font-size: var(--fontSize-headline-1); }

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 { font-size: var(--fontSize-title-1); }

.title-2 { font-size: var(--fontSize-title-2); }

.title-3 { font-size: var(--fontSize-title-3); }

.title-4 { font-size: var(--fontSize-title-4); }

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 { font-size: var(--fontSize-body-3); }

.body-4 { font-size: var(--fontSize-body-4); }

.label-1 { font-size: var(--fontSize-label-1); }

.label-2 { font-size: var(--fontSize-label-2); }




 
.container { padding-inline: 16px; }

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--green_type);
  transform: rotate(45deg);
}

.contact-label { font-weight: var(--weight-bold); }

.contact-number {
  color: var(--green_type);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--green_type);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after { bottom: -5px; }

.text-center { text-align: center; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--green_type);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}
.headline-1{
  position: relative;
}
@media (min-width:991px) {
  .photo__headline::after {
 
    position: absolute;
    top: 0;
    left: 82%;
    display: block;
    width: 100px;
    margin: auto;
  }
}

.headline-1::after {
  content: url('./img/minus.png');
  display: block;
  width: 100px;
  margin: auto;
}
/* .section-subtitle::after {
  content: url('./img/minus.png');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
} */

.btn {
  position: relative;
  color: var(--green_type);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--green_type);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--green_type);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text { transition: var(--transition-1); }

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--white) !important;
}

.btn:is(:hover, :focus-visible)::before { bottom: -50%; }

.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--green_type);
  color: var(--black);
}

.btn-secondary::before { background-color: var(--smoky-black-1); }

.btn-secondary .text-2 { color: var(--eerie-black-1); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  /* padding-block: var(--section-space); */
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 { background-color: var(--smoky-black-2); }

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--green_type);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) { color: var(--eerie-black-1); }

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 { width: 100%; }

.move-anim { animation: move 5s linear infinite; }

@keyframes move {
  0%,
  100% { transform: translateY(0); }

  50% { transform: translateY(30px); }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  /* background-color: var(--eerie-black-2); */
  color: var(--eerie-black-2);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid #F1F3F4;
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder { color: inherit; }

.input-field:focus { border-color: var(--green_type); }

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child { left: 15px; }

.icon-wrapper ion-icon:last-child { right: 10px; }



 

.preload_part {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9000;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload_part > * { transition: var(--transition-1); }

.preload_part.loaded > * { opacity: 0; }

.preload_part.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}

/*.circle {*/
/*  width: 112px;*/
/*  height: 112px;*/
/*  border-radius: var(--radius-circle);*/
/*  border: 3px solid var(--green_type);*/
/*  border-block-start-color: var(--smoky-black-3);*/
/*  margin-block-end: 45px;*/
/*  animation: rotate360 0.1s linear infinite;*/
/*}*/

/*@keyframes rotate360 {*/
/*  0% { transform: rotate(0); }*/
/*  100% { transform: rotate(1turn); }*/

/*}*/

/*.preload_part .text {*/
/*  background-image: var(--loading-text-gradient);*/
/*  background-size: 500%;*/
/*  font-size: calc(2rem + 3vw);*/
/*  font-weight: var(--weight-bold);*/
/*  line-height: 1em;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 16px;*/
/*  padding-inline-start: 16px;*/
/*  -webkit-text-fill-color: transparent;*/
/*  background-clip: text;*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-stroke: 0.5px var(--eerie-black-3);*/
/*  animation: loadingText linear 2s infinite;*/
/*}*/

/*@keyframes loadingText {*/
/*  0% { background-position: 100%; }*/
/*  100% { background-position: 0%; }*/
/*}*/




/*#TOPBAR*/

.topbar { display: none; }





/*header*/

/* .header .btn { display: none; } */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding-block: 40px;
  z-index: 1000;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
}

.header.active {
  padding-block: 20px;
  background-color: var(--eerie-black-4);
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.5); }
}

.nav-open-btn .line-2 { animation-delay: 150ms; }

.nav-open-btn .line-3 { animation-delay: 300ms; }

.navbar_part {
  position: fixed;
  background-color: var(--smoky-black-1);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 2;
  transition: var(--transition-2);
}

.navbar_part.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar_part .close-btn {
  color: var(--white);
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 30px 20px;
}

.navbar_part .close-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar_part .close-btn:is(:hover, :focus-visible) { color: var(--green_type); }

.navbar_part .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}

.navbar_part-list {
  border-block-end: 1px solid var(--white-alpha-20);
  margin-block-end: 100px;
}

.navbar_part-item { border-block-start: 1px solid var(--white-alpha-20); }
 

.navbar_part-link {
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
}

.navbar_part-link::after { display: none; }

.navbar_part-link .span { transition: var(--transition-1); 
display: flex;}
.navbar_part-link .drp { transition: var(--transition-1); 
display: flex;}

.navbar_part-link .drp::after{
  content: '+';
  
}
.navbar_part-link .drp:hover::after{
    display: none;
   
}
.navbar_part-link .drp::before{
  content: '-';
  display:none;
  visibility: hidden;
}
.navbar_part-link .drp:hover::before{
  display: block; 
  visibility: visible;
 
}
.navbar_part-link .drp::before, .navbar_part-link .drp::after {
  font-size: 15px;
  display: block;
  width: 20px;
  height: 20px;
  /* background-color: #fff; */
  position: absolute;
  left: 100%;
  color: #fff;
 
}
@media (max-width: 991px) {
  .navbar_part-link .drp::before, .navbar_part-link .drp::after {
    font-size: 15px;
    display: block;
    width: 20px;
    height: 20px;
    /* background-color: #fff; */
    position: absolute;
    left: 50%;
    color: #fff;
   
  }
}
.navbar_part-link:is(:hover, :focus-visible, .active) .span {
  color: var(--green_type);
  transform: translateX(20px);
}

.navbar_part-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar_part-link:is(:hover, :focus-visible, .active) .separator { opacity: 1; }

.navbar_part-title { margin-block-end: 15px; }

.navbar_part-text { margin-block: 10px; }

.navbar_part .body-4 { color: var(--quick-silver); }

.sidebar-link { transition: var(--transition-1); }

.sidebar-link:is(:hover, :focus-visible) { color: var(--green_type); }

.navbar_part .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar_part .contact-label { margin-block-end: 10px; }

.navbar_part::-webkit-scrollbar-thumb { background-color: var(--white); }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color:rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





 
  /* banner__Section */
 

.hero .slider-btn { display: none; }

.hero {
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.slider-item::before{
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0,0.5);
  position: absolute;
  top:0;
  left: 0;
  /* z-index: -1; */
}

.hero .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
}

.hero .slider-item.active {
  opacity: 1;
  visibility: visible;
}

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero .section-subtitle::after { margin-block: 14px 20px; }

.hero-text { margin-block: 10px 40px; }

.hero .btn { margin-inline: auto; }

.hero-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background-color: var(--green_type);
  width: 110px;
  height: 110px;
  padding: 12px;
  transform: scale(0.6);
}

.hero-btn img {
  margin-inline: auto;
  margin-block-end: 6px;
}

.hero-btn .span {
  color: var(--black);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  line-height: var(--lineHeight-3);
}

.hero-btn::after {
  inset: 0;
  border: 1px solid var(--green_type);
  animation: rotate360 15s linear infinite;
}

.slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero .slider-item.active .section-subtitle { animation-delay: 500ms; }

.hero .slider-item.active .hero-title { animation-delay: 1000ms; }

.hero .slider-item.active .hero-text { animation-delay: 1.5s; }

.hero .slider-item.active .btn { animation-delay: 2s; }





/*service*/

.service .section-title { margin-block-end: 16px; }

.service .section-text { margin-block-end: 40px; }

.service-card { overflow: hidden; }

.service-card .has-before {
  padding-block: 30px;
  margin-block-end: 26px;
  z-index: 1;
}

.service-card .has-before::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 100%;
  background-image: url('./img./img-pattern-updated.svg');
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  transition: var(--transition-2);
  transition-delay: 0;
  z-index: -1;
  will-change: transform;
}

.service-card:is(:hover, :focus-within) .has-before::before {
  transform: rotateY(0.5turn) translateX(50%);
  transition-delay: 300ms;
}

.service-card .card-banner { transition: var(--transition-2); }

.service-card:is(:hover, :focus-within) .card-banner { transform: scale(1.05); }

.service .card-title { margin-block-end: 12px; }




/*about*/
.about .section-text { margin-block: 15px 30px; }

.about .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.about .container {
  display: grid;
  gap: 120px;
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner > .w-100 { padding-inline-start: 50px; }

.about .abs-img { position: absolute; }

.about .abs-img::before { z-index: -1; }

.about .abs-img-1 {
  bottom: -120px;
  left: 0;
  width: 150px;
  padding-block: 50px;
}

.about .abs-img-2 {
  top: -65px;
  right: 0;
  overflow: hidden;
}

/* .about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-image: url('./img/round.png');
  background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
  background-image: url('../images/badge-2-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
} */



@media only screen  and (min-width: 991px)  {
  .about-banner{
    margin-top: 10%;
  }
}
@media only screen  and (max-width: 991px)  {
  .about{
    margin-top: 10%;
  }
}

/*foodpart*/

.special-dish-content { padding-block: 70px; }

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
}

.special-dish .section-text { margin-block: 16px 40px; }

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block-end: 40px;
}

.special-dish-content .del {
  text-decoration: none;
  color: var(--davys-grey);
}

.special-dish-content .span { color: var(--green_type); }

.special-dish .btn { margin-inline: auto; }





/*menu*/

.menu .section-title { margin-block-end: 40px; }

.menu .grid-list { margin-block-end: 50px; }

.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hover\:card .card-banner { background-color: var(--green_type); }

.hover\:card .card-banner .img-cover { transition: var(--transition-2); }

.hover\:card:is(:hover, :focus-within) .card-banner .img-cover {
  opacity: 0.7;
  transform: scale(1.05);
}

.menu-card .card-banner {
  flex-shrink: 0;
  border-radius: var(--radius-24);
}

.menu-card .card-title { transition: var(--transition-1); }

.menu-card .card-title:is(:hover, :focus-visible) { color: var(--green_type); }

.menu-card .badge {
  background-color: var(--green_type);
  color: var(--eerie-black-1);
  font-family: var(--fontFamily-forum);
  max-width: max-content;
  line-height: var(--lineHeight-6);
  text-transform: uppercase;
  padding-inline: 10px;
  margin-block-start: 10px;
}

.menu-card .span {
  color: var(--green_type);
  margin-block: 10px;
}

.menu-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-4);
}

.menu-text .span {
  display: inline-block;
  color: var(--green_type);
}

.menu .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.menu .shape {
  display: block;
  width: 70%;
}

.menu .shape-2 {
  top: 0;
  left: 0;
}

.menu .shape-3 {
  bottom: 0;
  right: 0;
}






.testi {
  padding-block-end: 340px;
  position: static;
}

.testi .quote {
  font-size: 7rem;
  font-family: var(--fontFamily-forum);
  line-height: 0.7em;
}

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 50px;
}

.testi .separator { animation: rotate360 15s linear infinite; }

.profile .img {
  margin-inline: auto;
  border-radius: var(--radius-circle);
  margin-block-end: 15px;
}

.testi .profile-name {
  color: var(--green_type);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
}




/* member */
.member{
  position: relative;
  padding: 5% 0;
  
}
#responseMessage {
  text-align: center;
  margin-top: 20px;
  color: green;
}
#responseMessageNot {
  text-align: center;
  margin-top: 20px;
  color: #b12;
}
.member-form {position: relative; 
 }
.member::before{ 
  content: '';
  display: block;
  width: 50%;
  height: 90%;
   
/* background-color: rgba(97, 176, 129,0.1); */
background: url('./img/clubbg3.png');
opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  /* clip-path: circle(50% at 50% 50%); */

  }

.form-text { margin-block-end: 40px; }

.form-text .link {
  display: inline;
  color: var(--green_type);
}

.form-right  { }
.form-right .headline-1 { margin-block-end: 40px; }

.form-right .contact-label { margin-block-end: 5px; }

.form-right .separator { margin: 20px auto; }

.form-right .body-4 {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.form-right .body-4:not(:last-child) { margin-block-end: 25px; }

.form-left,
.form-right { padding: 40px 20px 30px; }

.input-field[type="date"] {
  text-transform: uppercase;
  padding-inline-end: 10px;
}

.input-field[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; }

textarea.input-field {
  resize: none;
  height: 140px;
  padding-block: 20px;
  line-height: var(--lineHeight-1);
}

.form-left .btn {
  max-width: 100%;
  width: 100%;
}

.form-right {
  background-repeat: repeat;
  background-position: top left;
}





/*features*/

.features .section-title { margin-block-end: 40px; }

.feature-card { padding: 30px 20px 40px; }

/* .feature-item:nth-child(2n+1) .feature-card { background-color: var(--eerie-black-3); }

.feature-item:nth-child(2n) .feature-card { background-color: var(--smoky-black-3); } */
.feature-item{ border:2px solid transparent; transition: 0.5s;box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;}
.feature-item:hover{ border: 2px solid #61B081; }

.feature-item:nth-child(2n) .feature-card { background-color: #FFF8F5; }

.feature-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  transition: 0.5s;
}

.feature-card:hover .card-icon { transform: scale(-1) rotate(180deg);}

.feature-card .card-title { margin-block: 20px; }

.feature-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}





/*events*/

.event .section-title { margin-block-end: 40px; }

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card .card-content {
  background-image: var(--gradient-1);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 35px 35px 25px;
}

.event-card .publish-date {
  position: absolute;
  top: 30px;
  left: 25px;
  padding: 5px 10px;
  color: var(--green_type);
  background-color: var(--black);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-1);
  line-height: 14px;
}

.event-card .card-subtitle {
  color: var(--green_type);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 5px;
}

.event-card .card-banner .img-cover { transition: var(--transition-2); }

.event-card:is(:hover, :focus-within) .img-cover { transform: scale(1.05); }

.event .btn {
  margin-inline: auto;
  margin-block-start: 40px;
}

/*  VIDEO  */
.img__grid{
  display: grid;
  grid-template-columns: auto auto ;
  gap: 5px;
  /* overflow: hidden; */
}
.img__box{
  width: 100%;
  height: 100%;
  position: relative;
  transition: 2s!important; 
  
}
/* .img__box:hover {
  overflow: hidden;
  transform:scale(1.5);
  overflow: hidden;
} */
.img__box::before{
  width: 0;
  height: 100%;
  position: absolute;
 
  background-image: radial-gradient(circle, rgba(0,0,0,0.5) 25%, rgba(0, 0, 0,0.8) 100%);
  content: '';
  display: none;
  opacity: 0;
  transition: 2s!important;
  
 
 transition-duration: 0.5s;
 
}
.img__box:hover::before{
   
  width: 100%;
  display: block;
  opacity: 1;
 
}
.youtube_video{
  margin: 5% auto;
}
.youtube_video iframe{
  border-radius: 10px;
  
}
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom:  2.5rem;
}

.video__content {
  position: relative;
}

.video__button {
  display: inline-block;
  background-color: #61B081;
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}
/*=============== MEDIA QUERIES ===============*/
 
@media screen and (max-width: 340px) {
   
 
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
 
}
/* For large devices */
@media screen and (min-width: 1024px) {
 
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
 
}
img,
video {
  max-width: 100%;
  height: auto;
} 
 /* club facility*/
  .owl-stage-outer {
    padding: 30px 0;
  }

  .owl-nav {
    display: none;
  }

  .owl-dots {
    text-align: center;

    span {
      position: relative;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      display: block;
      background: #fff;
      border: 2px solid #61B081;
      margin: 0 5px;
    }

    .active {
      box-shadow: none;

      span {
        background: #61B081;
        box-shadow: none;
        height: 12px;
        width: 12px;
        margin-bottom: -1px;
      }
    }
  }
 

  

  

 

.owl-carousel {
  .owl-nav button {
    &.owl-next, &.owl-prev {
      outline: 0;
    }
  }

  button.owl-dot {
    outline: 0;
  }
}
 /* club end */

/* mapsection */
.map__Section{
  position: relative;
 }
 #map{
  background-color: #fff;
  height: 400px;
  padding: 3%;
  /* position: absolute;
  top: 0; */
 }
#map form{
  
}
/*  

.form-outline
.form-control{
  border: 2px dashed #ccc !important;
  outline: none !important;
}
 input:focus{
  border: 2px solid #ccc;
  outline: none;
 }
  */

  .map__Section  .form-control {
    min-height: auto;
    padding: 1.4rem .75rem;
    border: 1px solid #F1F3F4;
    background: transparent;
    transition: all .2s linear;
  }
  .form-outline:focus,
.form-control:focus{
  border: 1px dashed #ccc !important;
  outline: 0 !important;
}
label {
  font-family: var(--fontFamily-dm_sans);
  display: inline-block;
  margin-bottom: .5rem;
}

  .map__Section  .form-control {
    min-height: auto;
    padding: 1.4rem .75rem;
    border: 1px solid #F1F3F4;
    background: transparent;
    transition: all .2s linear;
  }
  .form-outline:focus,
.form-control:focus{
  border: 1px dashed #ccc !important;
  outline: 0 !important;
}
label {
  font-family: var(--fontFamily-dm_sans);
  display: inline-block;
  margin-bottom: .5rem;
}
/* president */
.president{
  /* background-color:#fff !important; */
}
.top__part{}
.bottom__part p{
  text-align: justify;
}

@media (max-width: 991px) {
  /* .pres__img {
 
 
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } */
  .row_section{
    display: grid;
    grid-template-columns: auto;
  }
}
.pres__img {
 
 
  width: 250px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .row_section{
    display: grid;
    grid-template-columns: 25% 70%;
    gap:5%;
  }
  
}
.img__Section img{
    width:100%;
    border-radius:10px;
}
/* .first__letter{
  font-size: 28px;
  color: #61B081;
  font-weight: 600;
} */
.pres__img img {
  
  width: 100%;
}

.pres-img-title{
  padding: 5% 0;
}
.pres-img-title h3{font-weight: 600;}
.pres-img-title p{}
/* president ened */
/* footer */

/*.footer-top { margin-block-end: 70px; }*/

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.footer-brand {
  position: relative;
  padding: 5px 40px;
  background: #131214  ;
  /* backdrop-filter: blur(20px); */
  /* background: var(--smoky-black-1) url("../images/footer-form-bg.png"); */
  background-position: center top;
  background-repeat: repeat;
}

.footer-brand::before,
.footer-brand::after {
  top: 0;
  width: 10px;
  height: 100%;
  
  background: linear-gradient(333deg, rgba(0,0,0,1) 7%, rgba(255,255,255,1) 100%);
  /* background-image: url("./img/tiremark.png"); */
}

.footer-brand::before { left: 0; }

.footer-brand::after { right: 0; }

.footer-brand .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
}

.footer-brand :is(.body-4, .label-1) {
  color:#fff;
  line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
  margin-block: 6px;
  transition: var(--transition-1);
}

.footer-brand .contact-link:is(:hover, :focus-visible) { color: var(--green_type); }

.footer-brand .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 25px;
}

.footer-brand .separator { animation: rotate360 15s linear infinite; }

.footer-brand .label-1 { margin-block-end: 30px; }

.footer-brand .label-1 .span {
  display: inline;
  color: var(--eerie-black-1);
}

.footer-brand .icon-wrapper .input-field { cursor: text; }

.footer-brand .btn { min-width: 100%; }

.footer-list {
  display: grid;
  gap: 20px;
}

.footer-link {
  color: #fff;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-4);
  margin-inline: auto;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--green_type); }

.hr_line{
  height: 1px;
  width: 100px;
  background-color: #fff;
}
.copyright {
  color: #fff;
  line-height: var(--lineHeight-3);
}

.copyright .link {
  display: inline;
  color: var(--green_type);
  text-decoration: underline;
}




/*back to top*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--green_type);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black-1);
  color: var(--green_type);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}





/*media qureies*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



/*re used*/

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number { --fontSize-body-1: 3rem; }



 /*topbar*/
  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    border-block-end: 1px solid var(--white-alpha-20);
    z-index: 4;
    transition: var(--transition-1);
  }

  .topbar:has(~ .header.active) { transform: translateY(-100%); }

  .topbar-item:not(.link),
  .topbar .separator { display: none; }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item { gap: 6px; }

  .topbar-item ion-icon { --ionicon-stroke-width: 60px; }

  .topbar-item .span { font-size: var(--fontSize-label-1); }

  .topbar .link { transition: var(--transition-1); }

  .topbar .link:is(:hover, :focus-visible) { color: var(--green_type); }



  /*HEADER*/

  .header { top: 51px; }

  .header.active { top: 0; }

  .header .btn {
    display: block;
    margin-inline-start: auto;
  }



/*HERO*/

  .hero-btn { transform: scale(0.7); }


 /*SERVICE*/

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /* ABOUT
   */

  .about .container { gap: 80px; }

  .about-banner > .w-100 { padding-inline-start: 90px; }

  .about .abs-img-1 { width: 285px; }

  .about .contact-number { --fontSize-body-1: 2.4rem; }



  /* MENU
   */

  .menu-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .menu-card .badge { margin-block-start: 0; }

  .menu-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }



  /*  EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /*  FOOTER
   */

  .footer-brand > * {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper { position: relative; }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}





/*responsive for larger than 768px screen*/
@media (min-width: 768px) {

 /*re used*/

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.service, .event) .container { max-width: 820px; }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }



  /*HEADER*/

  .navbar_part-list { margin-inline: 30px; }



 /*HERO*/

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--green_type);
    font-size: 2.4rem;
    border: 1px solid var(--green_type);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon { transform: rotate(-45deg); }

  .hero .slider-btn.prev { left: 30px; }

  .hero .slider-btn.next { right: 30px; }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--green_type);
    color: var(--black);
  }


/* member __people */
 

@media (max-width: 992px) {
 
}

 
/* member __people end */
 /* memeber */

  .member .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .member .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  .footer-brand { grid-column: 1 / 3; }

}





/*responsive for larger than 992px screen*/

@media (min-width: 992px) {

 /*CUSTOM PROPERTY*/

  :root {

   /*spacing*/

    --section-space: 100px;

  }


/*REUSED STYLE*/

  :is(.service, .event) .container { max-width: unset; }

  :is(.service, .event) .grid-list { grid-template-columns: repeat(3, 1fr); }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }



/*TOPBAR*/

  .topbar-item:not(.link) { display: flex; }

  .topbar .item-2 { margin-inline-end: auto; }



 /*SERVICE*/
  .service .shape { display: block; }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }


/*ABOUT*/

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }



/*food*/

  .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .special-dish-content { padding-inline: 50px 25px; }

  .special-dish-content .container { position: relative; }

  .special-dish .section-subtitle::after,
  .special-dish .btn { margin-inline: 0; }

  .special-dish-content .wrapper { justify-content: flex-start; }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }



/*menu*/

  .menu .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }



  

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



 /*committee member(for search query)*/
  .member-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }



 /*FOOTER*/
  .footer .grid-list {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    align-items: center;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
    padding-block: 100px;
  }

  .footer-list:last-child { order: 2; }

}





/*responsive for larger than 1200px screen*/

@media (min-width: 1200px) {

/*CUSTOM PROPERTY*/

  :root {

    
    --fontSize-title-2: 2.5rem;

  }



/*re used*/

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }


/*topbar*/

  .topbar .container { max-width: unset; }

  .topbar .separator { display: block; }



/*header*/

  .nav-open-btn,
  .navbar_part > *:not(.navbar_part-list),
  .header .overlay { display: none; }

  .header .container { max-width: unset; }

  .navbar_part,
  .navbar_part.active,
  .navbar_part-list { all: unset; }

  .navbar_part,
  .navbar_part.active { margin-inline: auto 20px; }

  .navbar_part-list {
    display: flex;
    gap: 30px;
  }

  .navbar_part-item { border-block-start: none; }

  .navbar_part .separator { display: none; }

  .navbar_part-link:is(:hover, :focus-visible, .active) .span {
    transform: unset;
  }

  .navbar_part-link {
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-1);
  }

  .navbar_part-link::after { display: block; }

  .navbar_part-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .header .btn { margin-inline-start: 0; }


/*HERO*/

  .hero { height: 880px; }

  .hero-btn {
    bottom: 50px;
    right: 50px;
    transform: scale(1);
  }



/*SERVICE*/

  .service .grid-list { gap: 150px; }

  .service .grid-list li:nth-child(2n+1) { transform: translateY(-160px); }

  .service .section-text { margin-block-end: 75px; }



/*ABOUT*/

  .about { padding-block: 170px 100px; }



 /*food*/

  .special-dish-content {
    padding: 225px 120px;
    padding-inline-end: 0;
  }

  .special-dish-content .container {
    max-width: 460px;
    margin-inline: 0;
  }



  /*menu*/

  .menu .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }



 

  .form-left,
  .form-right { padding: 75px 60px; }



/*FEATURES*/

  .features .grid-list { grid-template-columns: repeat(3, 1fr); }

}





/*responsive for larger than 1400px screen*/

@media (min-width: 1400px) {

/*HEADER*/
  .navbar_part { margin-inline: auto; }



  /*ABOUT*/

  .about-content { padding-inline-end: 90px; }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }



   /*food*/

  .special-dish {
    overflow: visible;
    position: relative;
  }

  .special-dish .shape {
    display: block;
    right: 0;
    z-index: 1;
  }

  .special-dish .shape-1 { top: 45%; }

  .special-dish .shape-2 {
    bottom: 0;
    transform: translateY(50%);
    width: max-content;
  }



 /*FEATURES*/

  .features { overflow: visible; }

  .features .shape { display: block; }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }

}


/* from internal css in index.php 9 july*/
/* all bacgkground image */
.bg_all{
 
  background:url('./Club\ _\ Gradnet/all_bg.jpg');
  background-position: center;
  background-size: cover;
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  padding-bottom: 5px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
  transition: all 1.5s;}
  .bg_all::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .all_bg_text {
     margin-top: 5%;
  }
  .all_bg_text h2{
     text-transform: uppercase;
     font-weight: 600;
 color: #fff;
  }
  
@media (min-width:991px){
  .all_bg_text h2{
      font-size: 40px;
  }
}
@media (max-width:991px){
  .all_bg_text h2{
      font-size: 30px;
  }
 
}


.wavy{
  position: relative;
 
}
.wave{
    position: absolute;
    width:100%;
    height:280px;
    background-image:url('./img/svg.png');
    bottom:0;
    left:0;
     
}
/* .bg_all .wave{
  position: absolute;
  width:100%;
  height:143px;
  background-image:url(images/wave.png);
  bottom:0;
  left:0;
  animation:animate 10s linear infinite;
}
.bg_all .wave::after{
  content:'';
  position: absolute;
  width:100%;
  height:143px;
  background-image:url(img/wave.png);
  top:0;
  left:0;
  opacity:0.6;
  animation-delay: -5s;
  animation:animate 20s linear infinite;
} */
/* all bacgkground image end*/
@media (min-width:991px) {
  .for_desk_logo{
    margin-left: 5%;
  }
  .for_desk_logo img{}
}

.navbar_part-item {
  cursor: pointer;
    position: relative;
    transition: 0.6s!important;
  }
 
.dropdown_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding: 2px 20px;
  border-radius: 10px 0 0;
  border-left: 2px solid #61B081;
  left: 0;
  /*width: 200px;*/
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: 0.6s!important;
  transform-origin: top center;
}
.dropdown_menu-item {
  padding: 7px 0;
  white-space: nowrap;
}
  .dropdown_menu-item a{
    color: #000!important;
  }
  .dropdown_menu-item:hover {
    background-color: #f1f1f1;
  }

  .navbar_part-item:hover .dropdown_menu {
    display: block;
  }


  @media (max-width: 991px) {
   .link_list{
    display: flex !important;
    align-items: center;
    justify-content: center;
   }

  }
  @media (min-width: 991px) {
   
  }



  /* slider__about */
  
@keyframes fade{
from{
  opacity:0.4;
}
to{
  opacity:1;
}
}
#aboutslider{
margin:0 auto;
width:90%;

overflow:hidden;
}

.about_slides{
overflow:hidden;
animation-name:fade;
animation-duration:1s;
display:none;
height: 350px;
}

.about_slides img{
height: 100%;
}

#dot{
display: none;
margin:0 auto;
text-align:center;
}
.dot{
display:inline-block;
border-radius:50%;
background:#d3d3d3;
padding:8px;
margin:10px 5px;
}

#aboutslider .active{
background:black;
}

@media (max-width:567px){
#aboutslider{
  width:100%;

}
}

 
/* from internal css in index.php */

/* search */

        .l_part{
          display:grid;
          grid-template-columns: 1fr 1fr 1fr 1fr;
        }

/* commiittee member */
.comminte_title{

}
.comminte_title{
  z-index: 1;
  position: relative;
  }
  @media (min-width: 991px) {
  .comminte_title:before{
  font-size: 140px;
  opacity: 0.2;
  content: 'Member';
  display: block;
  font-family: "Satisfy" !important;
  font-weight: 400;
  position: absolute;
  z-index: -1;
  margin:auto;
  text-align: center;
  color: #61B081;
  width: 100%;
  line-height: 69px;
  }
  
  }
  @media (max-width: 991px) {
  .comminte_title:before{
  font-size: 50px;
  opacity: 0.2;
  width: 100%;
  content: 'Member';
  display: block;
  font-family: "Satisfy" !important;
  font-weight: 400;
  position: absolute;
  top: 0;
  z-index: -1;
  margin:auto;
  text-align: center;
  color: #61B081;
  
  line-height: 50px;
  }
  
  }

.search_input{
  margin: auto;
  width: 50%;
  background-color: #fff;
}
/*  */
.P_member{
  /* border-radius: 10px; */
}

@media (min-width:991px){
  .members_list{
    /* width:100%;
    display: grid;
    grid-template-columns:49% 49%;
    gap: 2%; */
    }
}
@media (max-width:991px){
  .members_list{
    /* width:100%;
    display: grid;
    grid-template-columns: 100%;
    gap: 2%; */
    }
}
#noResult p{
  font-size: 21px;
  color: #b12111;
}

.search-block{
width:250px;
height:50px;
/* background: rgb(77,221,249);
background: #45aaf2; */
overflow:hidden;
border-radius:100px;
position:relative;
border: 1px solid #ddd;
box-shadow: 0px 10px 15px -5px rgba(0,0,0,0.4);
margin-bottom: 10%;
}

.search-block .icon{
position:absolute;
pointer-events:none;
left:14px;
top:50%;
transform:translateY(-50%);
transition-duration:.8s;
z-index:0;
}

.search-block .icon:before{
margin-top:-4px;
display:block;
content:'';
height:20px;
width:20px;
border-radius:20px;
background:white;
}

.search-block .icon:after{
position:absolute;
bottom:-8px;
right:5px;
display:block;
content:'';
height:15px;
width:4px;
border-radius:20px;
transform:rotate(-45deg);
transform-origin:center top;
background:white;
}

.search-block input[type="search"]{
height:100%;
width:100%;
border:0px;
background:transparent;
position:relative;
outline:0;
-webkit-appearance:none;
padding:0px 20px 0px 50px;
font-size:18px;
color:#2f3542;
z-index:2;
}

.search-block input[type="search"]:focus + .icon{
transform:translate(50%,-50%) scale(24) rotate(180deg);
}

.search-block input[type="search"]::placeholder {
color: white;
opacity: 1;
}

.search-block input[type="search"]:-ms-input-placeholder { 
color: white;
}

.search-block input[type="search"]::-ms-input-placeholder {
color: white;
}

.com_member {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
display: flex !important;
align-items: center;
/* padding: 5px; */
justify-content: center;
margin: 10px 0;
border-radius: 10px;
min-height:200px;
}
 
.member__img {
  width: 30%;
  height: 125px;
  position: relative;
  border-radius: 10px;
}
.member__img::after {
  content: '';
  display: block;
  background-color: #DFEFE6;
  height: 100%;
  width: 5px;
  position: absolute;
  right: 0;
  top: 0;
}
.member__img img {
  width: 100%;
  height: 100%;
  /* border-radius: 100%; */
  /* border: 1px solid #67676724; */
  border-right: none;
  padding: 10%;
}
.member_des {
  width: 70%;
  padding-left: 11px;
}

.member_des h2 {
  font-weight: 600;
  /* letter-spacing: 0.2rem; */
  font-size: 18px;
}
.member_des h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #676767;
}
.member_des p{}
.member_des a{}
.listting_pagination{
padding: 8% 0 !important;
}
.list-section ul{}
.list-section ul li {
  width: 30px;
  cursor: pointer;
  list-style-type: none;
  display: inline-block;
  padding: 4px 0px;
  font-weight: 600;
  margin: 1%;
  background-color: #61B081;
  color: #fff;
  border-radius: 3px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.list-section .listPage li:first-child  {
width: 80px;
}
.list-section .listPage li:last-child  {
width: 80px;
}
.list-section ul li.active{
  color: #131214;
  font-weight: 600;
  background-color: rgba(97, 176, 129,0.5);
}


/* commiittee member end*/
 
 
/* search */


/* extra */
.box_img{
  margin: auto;
  width: 150px;
}
.box_img img{
  margin: auto;
  width: 100%;
}
/* extra end */



/* facilities start */
.facilities__des h3{
  /* font-family: "Satisfy" !important; */
  
  font-weight: 400;
  font-size: 40px;
  color: #61B081;
  line-height: 69px;
  position: relative;
}
.facilities__des h3:before{
  content: 'Facilities';
  display: block;
  font-family: "Satisfy" !important;
  font-weight: 400;
  position: absolute;
  z-index: -1;
  
  color: #61B081;
  
  line-height: 69px;
}

@media (min-width: 991px) {
  .facilities__des h3:before{
    font-size: 140px;
    opacity: 0.2;
  }
  .facilities_box {
    /* margin-bottom: 1%; */
    /* padding:1%; */
    margin:3% auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5)!important;
   
  }
  .facilities__img{
    overflow: hidden;
    width: 50%;
    padding:1%;
        
    display: flex;
    gap: 1%;
    align-items: center;
    justify-content: center;
  }
  

  .facilities__img img{
    width: 100% !important;
     
  }
  /*.facilities__img img:nth-child(1) {*/
  /* width:300px !important;*/
  /* height: 300px;*/
  /*}*/
  /*.facilities__img img:nth-child(2) {*/
  /* width:200px!important;*/
  /* height: 200px;*/
  /*}*/
  /* .facilities__img img:nth-child(3) {
   width:50% !important;
  } */
  .facilities__des{
    width: 49%;
    margin:1%;
  }
 
  .facilities_box:nth-child(even) .facilities__img{
    order: 2!important;
  }
  .facilities_box:nth-child(even) .facilities__des {
    order: 1!important;
    text-align: justify;
  }
  
}


@media (max-width: 991px) {
  .facilities__des h3:before{
    font-size: 70px;
    opacity: 0.4;
  }
  
  .facilities_box {
     
    margin:3% auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5)!important;
  }
  .facilities__img{
    overflow: hidden;
    width: 100%;
    padding:1%;
        
    display: flex;
    gap: 1%;
    align-items: center;
    justify-content: center;
  }
  .facilities__img img {
      object-fit:cover;
    width: 100%;
  }
  .facilities__img img:nth-child(1) {
    max-width:230px !important;
    height: 280px;
   }
   .facilities__img img:nth-child(2) {
    width:180px!important;
    height: 180px;
   }
  .facilities__des{
    width: 100%;
    
  }
}

/* facilities end */


/* photos start */
.img_portion{
  display: grid;
   justify-content: center;
  gap: 1%;
}
@media (min-width: 991px) {
  .img_portion{
    
    grid-template-columns:auto auto auto auto;
    
  }
  .photo_box:nth-child(2) {
    height: 280px;
  }
}
@media (max-width: 991px) {
  .img_portion{
    
    grid-template-columns:auto auto ;

  }
}
 
.photos__section {
  padding-top: 2%;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 
}
.photos__section h2{

position: relative;
}
@media (min-width: 991px) {
.photos__section h2:before{
font-size: 140px;
opacity: 0.2;
content: 'Gallery';
display: block;
font-family: "Satisfy" !important;
font-weight: 400;
position: absolute;
z-index: -1;
margin:auto;
text-align: center;
color: #61B081;
width: 100%;
line-height: 69px;
}

}
@media (max-width: 991px) {
.photos__section h2:before{
font-size: 50px;
opacity: 0.2;
width: 100%;
content: 'Gallery';
display: block;
font-family: "Satisfy" !important;
font-weight: 400;
position: absolute;
top: 0;
z-index: -1;
margin:auto;
text-align: center;
color: #61B081;

line-height: 50px;
}

}


.grid-container :nth-child(2).photos__box{

height: 350px;
}
.grid-container :nth-child(4).photos__box{
height: 270px;
}
.grid-container :nth-child(2n+1).photos__box{
height: 290px;
}


/*photos */

/* ab_president */
.ab_pres__section .card {
  font-family: Arial, Helvetica, sans-serif;
  width:280px;
  height:400px;
  margin: 1em;
  text-align: center;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
  border: none !important;
}
.ab_pres_img{
  width: 100%;
  height: 250px;
  /* margin: auto; */
}
.ab_pres_img img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 10px 10px;
  
  /* clip-path: polygon(0 0, 0 100%, 100% 85%, 100% 0%); */
}
.description {
  height: 100%;
  padding: 2% 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.description h2{
  font-size: 18px;
  font-weight:600;
}
.description p {
  font-weight: 600;
  color: #676767;
  font-size: 12px;
}
 
 
/* ab_president */

/* affiliate */

  /* affiliate */
 
  .affiliate_title{
    z-index: 1;
    position: relative;
    }
    @media (min-width: 991px) {
    .affiliate_title:before{
    font-size: 140px;
    opacity: 0.2;
    content: 'Member';
    display: block;
    font-family: "Satisfy" !important;
    font-weight: 400;
    position: absolute;
    z-index: -1;
    margin:auto;
    text-align: center;
    color: #61B081;
    width: 100%;
    line-height: 69px;
    }
    
    }
    @media (max-width: 991px) {
    .affiliate_title:before{
    font-size: 50px;
    opacity: 0.2;
    width: 100%;
    content: 'Member';
    display: block;
    font-family: "Satisfy" !important;
    font-weight: 400;
    position: absolute;
    top: 0;
    z-index: -1;
    margin:auto;
    text-align: center;
    color: #61B081;
    
    line-height: 50px;
    }
    
    }
    /* .affiliate_member ol li{
      list-style-type:decimal;
    } */
    .affil_list h2{
      font-weight: 600;
      padding: 2% 0;
      text-transform: uppercase;
    }
    .affil_list ul li{
      margin: 0.9rem 0;
      padding: 0 0.5rem;
      line-height: 1.5;
      display: flex;
      position: relative;
    }
    .affil_list ul li >span {
      color: #DFEFE6;
      margin-right: 3%;
      transform: rotate(45deg);
      font-size: 0.9rem;
      line-height: 1.8rem;
      /* border: 1px solid #000; */
  }
  .affil_list ul li >span i{
      /* border: 1px solid #000; */
  }
    /* .affil_list ul li::after {
      content: " ";
      display: inline-block;
       
      width: 10px;
      height: 10px;
      transform: rotate(45deg);
       
      background-color: #DFEFE6;
      font-weight: bold;
       position: absolute;
      margin-right: 1rem;
  } */


  /* Food n Restaurent */
  .rest_food{
    padding: 2% 0;
    position: relative;
  }
  .res_text h2{
    z-index: 1;
    position: relative;
    }
  @media (min-width:991px) {
    .res_text{
      width: 39%;
    }
    .res_grid{
      display: flex;
      align-items: center;
      
      gap: 1%;
    }
    
    .res_img{
      width: 60%;
     height: 500px;
    }
    .res_text h2:before{
      font-size: 140px;
      opacity: 0.2;
      content: 'Food';
      display: block;
      font-family: "Satisfy" !important;
      font-weight: 400;
      position: absolute;
      z-index: -1;
      margin:auto;
      text-align: center;
      color: #61B081;
      width: 100%;
      line-height: 69px;
      }
  }
  @media (max-width:991px) {
    .res_grid{
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 1%;
    }
    .res_img{
      width: 90%;
      height: 300px;
    }
    .res_text{
      background-color: #fff;
      width: 100%;
    }
    .res_text h2{text-align: center;}

    .res_text h2:before{
      font-size: 70px;
      opacity: 0.2;
      width: 100%;
      content: 'Food';
      display: block;
      font-family: "Satisfy" !important;
      font-weight: 400;
      position: absolute;
      top: 0;
      z-index: -1;
      margin:auto;
      text-align: center;
      color: #61B081;
      
      line-height: 50px;
      }
  }
  .res_text h2{}

  
    
  .res_text p{
    color: #4A463C;
    letter-spacing: 0.5px;
  }
  
  .res_img img {
    width: 100%;
    height: 100%;
  }
/* .rest_food::after{
  content: '';
  display: block;
  background: url('/Club _ Gradnet/1.jpg');
  background-size: cover;
  width: 55%;
  height: 400px;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
} */
  /* Food n Restaurent end */


  /* offer */
  .offer_page{
    background-color:#fff  !important;
    padding: 5% 0;
  }
  @media (min-width:991px) {
    .offer_page article{
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .offer_page .article-image-container {
    width: 30%;
    height: 200px;
   }
   .offer_page .content-container {
    
    width: 70%;
    
  }
  .offer_page .content-container .article-title {
    text-align: center;
    padding: 15px 0;
    margin: 0;
    /* font-size: 24px; */
    color: #333;
    border-bottom: 2px solid #eee;
  }
  .offer_page .article-image-container .article-title {
    display: none;
  }
  .offer_page .article-title:before{
    font-size: 140px;
    opacity: 0.2;
  }
  }
  @media (max-width:991px) {
    .offer_page article{
    display: flex;
    flex-direction: column;
    align-items: center;
   }
   .offer_page .article-image-container {
    width:100%;
    padding-bottom: 2%;
   }
   .offer_page .content-container {
    
    width: 100%;
    
  }
  .offer_page .content-container .article-title {
    display: none;
  }
  .offer_page .article-title:before{
    font-size: 70px;
    opacity: 0.2;
  }
  .offer_page .article-image-container .article-title{
    text-align: center;
    padding: 15px 0;
    margin: 2% auto;
    /* font-size: 24px; */
    color: #333;
    border-bottom: 2px solid #eee;
  }
  }
  .offer_page article {
    position: relative;
    margin: 20px auto;
    width: 80%;
    max-width: 1000px;
    /* height: 200px; */
    border: 1px solid #ccc;
   
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    /* overflow: hidden; */
    padding: 2% 1%;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Add transition for smooth effect */
  }
  
  .offer_page article:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* More prominent shadow */
    transform: scale(1.02); /* Slightly scale up */
  }
  
  .offer_page .article-image-container {
 
    /* margin: 16px; */
    overflow: hidden;
  }
  
  .offer_page .article-image-container img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
  }
  
  .offer_page .content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     
    padding: 0 15px;
  }
  
 
  
  .offer_page .content-container .article-content {
    overflow: hidden;
    text-align: justify;
    color: #666;
  }
  
  
  .offer_page .article-title{
    /* font-family: "Satisfy" !important; */
    
    font-weight: 400;
    font-size: 40px;
    color: #61B081;
    line-height: 69px;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .offer_page .article-title:before{
    content: 'Offer';
    display: block;
    font-family: "Satisfy" !important;
    font-weight: 400;
    
    position: absolute;
   
    z-index: -1;
    
    color: #61B081;
    
    line-height: 69px;
  }


  /* offer page end */

  /* for login nav_btn_part */
  
.btn_span{
  display: flex;
  align-items: center;
}

 
  /*@media (min-width: 991px) {*/
   
  /*  .nav_btn_part{*/
  /*    padding: 2px 5px;*/
  /*    background-color: #61B081;*/
  /*    border-radius: 3px;*/
  /*    border: 1px solid transparent;*/
  /*    color: #000;*/
  /*   }*/
  /*   .nav_btn_part:hover{*/
  /*    background-color: transparent;*/
  /*    border:1px solid #61B081;*/
  /*    color: #fff !important;*/
  /*   }*/
  /*   .btn_span i{*/
  /*    margin-right: 5px;*/
  /*  }*/
  /*}*/
  @media (max-width: 991px) {
   
    .btn_span i{
      margin-right: 10px;
    }
  }
  /* login Form section start*/
  .reg_login {
    position: relative;
    min-height: 100vh;
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .reg_login a{
    cursor: pointer;
  }
  .reg_login .container {
    position: relative;
    width: 800px;
    height: 500px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .reg_login .container .user {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .reg_login .container .user .imgBx {
    position: relative;
    width: 50%;
    height: 100%;
    
    transition: 0.5s;
  }
  
  .reg_login .container .user .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .reg_login .container .user .formBx {
    position: relative;
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: 0.5s;
  }
  
  .reg_login .container .user .formBx form h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    color: #555;
  }
  
  .reg_login .container .user .formBx form input {
    position: relative;
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
    color: #333;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
  }
  .reg_login .container .user .formBx form input:focus{
    color: #61B081;
  }
  .reg_login .container .user .formBx form input[type='submit'] {
      max-width: 100px;
      background: #61B081;
      color: #fff;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      padding: 2px 5px;
      
      transition: 0.5s;
  }
  .reg_login .container .user .formBx form .signup {
    position: relative;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
    font-weight: 300;
  }
  
  .reg_login .container .user .formBx form .signup a {
    font-weight: 600;
    text-decoration: none;
    color: #61B081;
  }
  
  .reg_login .container .signupBx {
    pointer-events: none;
  }
  
  .reg_login .container.active .signupBx {
    pointer-events: initial;
  }
  
  .reg_login .container .signupBx .formBx {
    left: 100%;
  }
  
  .reg_login .container.active .signupBx .formBx {
    left: 0;
  }
  
  .reg_login .container .signupBx .imgBx {
    left: -100%;
  }
  
  .reg_login .container.active .signupBx .imgBx {
    left: 0%;
  }
  
  .reg_login .container .signinBx .formBx {
    left: 0%;
  }
  
  .reg_login .container.active .signinBx .formBx {
    left: 100%;
  }
  
  .reg_login .container .signinBx .imgBx {
    left: 0%;
  }
  
  .reg_login .container.active .signinBx .imgBx {
    left: -100%;
  }
  
  @media (max-width: 991px) {
    .reg_login .container {
      max-width: 400px;
    }
  
    .reg_login .container .imgBx {
      display: none;
    }
  
    .reg_login .container .user .formBx {
      width: 100%;
    }
  }
  
   
  .wave_form{
      position: absolute;
      width:100%;
      height:280px;
      background-image:url('./img/modified_svg.png');
      bottom:0;
      left:0;
      /* z-index: -1;  */
  }
  .bg_all{
  
    position: relative;
  }
  .writing_mode{
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
  }
  /* for login nav_btn_part end */


  /* news_brief */
  .news_brief{
    padding: 2% 0;
  }
  @media (min-width: 991px) {
    .news_blog h2{
      font-size: 40px;
    }
    .news_img{
      width: 90%;
      margin: auto;
      height: 450px;
    }
  }
  @media (max-width: 991px) {
    .news_blog h2{
      font-size: 28px;
    }
    .news_img{
      width: 90%;
      margin: auto;
      height: 300px;
    }
  }
  .news_blog h2{
    font-weight: 600;
      
       padding: 2% 0;
       margin: 2% auto;
  }
  .news_blog p{
    padding: 2% 0;
    width: 85%;
    margin:2% auto;
    letter-spacing: 0.1rem;
    text-align: justify !important;
  }
  
  .news_img img{
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  /* news_brief end */

  /* event& entertainment */
  .entertain_event {
    padding: 2rem 1rem;
    margin: auto;
    /* max-width: 1200px; */
  
    h2 {
      color: #61B081;
      margin: auto;
      text-align: center;
      margin-bottom: 1.5rem;
      position: relative;
      font-size: 2.5rem;
  
      &::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #61B081;
        margin: 0.5rem auto 0;
      }
    }
  }
  
  .event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  
  
   
  

  
 @media (max-width:991px){
  .event {
    /* background: url('./img/4.jpg');
    background-size: cover;
    background-repeat: no-repeat; */
    border: 1px solid #ddd;
    margin: 10px;
    padding: 20px;
    width: calc(100% - 30px);
    /*height: 250px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    position: relative;
    overflow: hidden;}
 }
 @media (min-width:991px){
  .event {
    /* background: url('./img/4.jpg');
    background-size: cover;
    background-repeat: no-repeat; */
    border: 1px solid #ddd;
    margin: 10px;
    padding: 20px;
    width: calc(50% - 30px);
    /*height: 250px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    position: relative;
    overflow: hidden;}
 }
  
    .event:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
  .event-list h3 {
    font-weight: 600;
    margin-top: 0;
    color: #61B081;
  }

  .event-list p {
    margin: 0.5rem 0;
  }
  .event-list button {
    background-color: #61B081;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;

    
  }
  .event-list button:hover {
    background-color: darken(#61B081, 10%);
  }
  .event-list .details {
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    /* display: none; */
    height: 150px;
    overflow-y: auto;
  }
  /* event& entertainment end */

  /* notice */
  .Notice_page{
    padding-bottom: 5%;
  }
  .notice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}



.notice h3 {
    font-weight: 600;
    margin-top: 0;
    color: #333;
}

.notice .date {
    font-style: italic;
    color: #666;
}

.notice .summary {
    margin-bottom: 10px;
}
  .notice_title{
    font-weight: 600;
    z-index: 1;
    position: relative;
    padding: 5% 0;
    }
    @media (min-width: 991px) {
      .notice_title{
        margin: auto;
        text-align: center;
        font-size: 40px;
      }
    .notice_title:before{
    font-size: 140px;
    opacity: 0.2;
    content: 'Notice';
    display: block;
    font-family: "Satisfy" !important;
    font-weight: 400;
    position: absolute;
    z-index: -1;
    margin:auto;
    text-align: center;
    color: #61B081;
    width: 100%;
    line-height: 69px;
    }
    .notice {
      background-color: #f4f4f4;
      padding: 15px;
      border-radius: 8px;
      width: calc(50% - 10px);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
    }
    @media (max-width: 991px) {
      .notice {
        background-color: #f4f4f4;
        padding: 15px;
        border-radius: 8px;
        width: calc(100% - 10px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
      .notice_title{
        margin: auto;
        text-align: center;
        font-size: 30px;
      }
    .notice_title:before{
    font-size: 50px;
    opacity: 0.2;
    width: 100%;
    content: 'Notice';
    display: block;
    font-family: "Satisfy" !important;
    font-weight: 400;
    position: absolute;
    top: 0;
    z-index: -1;
    margin:auto;
    text-align: center;
    color: #61B081;
    
    line-height: 60px;
    }
    
    }
 
  /* notice end */