@import url('https://fonts.googleapis.com/css2?family=Alice&family=Carter+One&family=Merienda:wght@300&family=Sixtyfour:SCAN@7&family=Yatra+One&display=swap');
/*-----------------------------------*\
  #index.css
\*-----------------------------------*/

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * COLORS
   */
  --Dark-Slate-Green: #16423C;
  --Green-Sheen: #6A9C89;
  --Jet-Stream: #C4DAD2;
  --Platinum : #E9EFEC;
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --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;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::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;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

main{
  overflow: hidden;
}

body {
  background-color: var(--white-alpha-20);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  -webkit-user-select: none; /* Safari */
  user-select: none;
  height: 200vh;
}

body.loaded {
  overflow: overlay;
}

body.nav-active {
  overflow: hidden;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: var(--Green-Sheen);
}

/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
 color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.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);
  color: var(--smoky-black-1);
}

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

.body-3 {
  font-size: var(--fontSize-body-3);
  color: var(--smoky-black-1);
}

.body-4 {
  font-size: var(--fontSize-body-4);
  color: var(--smoky-black-1);
}

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

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

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

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

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

.contact-number {
  color: var(--Green-Sheen);
  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 #a0b7af;
  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-Sheen);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url("../images/separator.svg");
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {
  position: relative;
  color: black;
  font-size: var(--fontSize-label-1);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--Dark-Slate-Green);
  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(--Jet-Stream);
  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(--smoky-black-1);
}

.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-Sheen);
  color: var(--black);
}

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

.btn-secondary .text-2 {
  color: var(--white);
}

.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(--pink-crayola);
  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(--white);
}

.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(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

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

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

.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;
}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

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

.header.active {
  padding-block: 15px;
  background-color: var(--Dark-Slate-Green);
  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: var(--white);
  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 {
  position: fixed;
  background-color: var(--Dark-Slate-Green);
  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.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .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 .close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--black-alpha-80);
}

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

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

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

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

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

.navbar-link .span {
  transition: var(--transition-1);
  font-size: 1.5rem;
  color: var(--white);
  
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: var(--white);
  transform: translateX(20px);
}

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

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

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

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

.navbar .body-4  {
  color: rgb(226, 220, 220);
}

.navbar .contact-number 
{
  color: rgb(226, 220, 220);
}
.sidebar-link {
  transition: var(--transition-1);
}

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

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

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

.navbar::-webkit-scrollbar-thumb {
  background-color: var(--white-alpha-10);
}

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

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


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

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

.hero {
  margin-top: 10vh;
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  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;
  -webkit-user-select: none; /* Safari */
  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;
  color: black;
}

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

.hero-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background-color: var(--Green-Sheen);
  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);
}

.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 .hero-title 
{
font-family: "Alice", serif;
font-weight: 400;
font-style: normal;

background: rgba(60, 60, 60, 0.4);
}
.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;
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/
#about .section-text {
  margin-block: 15px 30px;
  margin-right: 150px;
  text-align: justify;
}

.aboutus {
  padding: 10vh 0;
  display: grid;
  align-items: center; 
  grid-template-columns: 1fr 1fr;
  color: var(--black-alpha-80);
 }

 #about .btn {

  margin-block-start: 26px;
}

#about .decor{
  color: var(--black-alpha-80);
}
 
.aboutus img {
  margin-left: 20px;
   max-width:80%;
   max-height:100%;
 }
 
 .section-title{
    color: var(--eerie-black-1);
 }

 .aboutus .text h2{
  font-size: 5rem;
 }

 .aboutus .text p{
  font-size: 2rem;
 }


 /* About Section */
 #about {
	background:  var(--Platinum);
}
#about h2::after {
	bottom: 0;
	margin-left: 0;
	left: 0;
 
}


#about .about-text {
	padding: 80px 0;
}




/*-----------------------------------*\
  #Services
\*-----------------------------------*/

.fea-sec{
  background: var(--Platinum);
}

.features .section-title {
  margin-block-end: 40px;
  color: rgb(245, 245, 245);
  background-color: var(--Dark-Slate-Green); 
  margin-bottom: 5svh;
}

.features .serv-btn{
  margin-top: 10svh;
 margin-left: 42%;
}
.features .card-title{
  margin-top: 120px;
  background: rgba(60, 60, 60, 0.6);

}

.feature-card1 {

  background-image: url("../images/wed1.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 100%;
   border: 5px solid  var(--Green-Sheen);
   transition: transform 0.9s ease-in-out;

}

.feature-card2 {
  background-image: url("../images/bith1.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}

.feature-card3 {

  background-image: url("../images/lighting3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
    border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}

.feature-card4 {
  background-image: url("../images/decor10.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;
}

.feature-card5 {

  background-image: url("../images/indoor1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}

.feature-card6 {
  background-image: url("../images/flower\ decor.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}

.feature-card7 {
  background-image: url("../images/birthday4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;
}

.feature-card8 {
  background-image: url("../images/outdoor1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}

.feature-card9 {
  background-image: url("../images/government.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 100%;

  border: 5px solid var(--Green-Sheen);
    transition: transform 0.9s ease-in-out;

}

.feature-card10 {
  background-image: url("../images/corporate.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;


}

.feature-card11 {
  background-image: url("../images/laxmi\ poojan.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}

.feature-card12 {
  background-image: url("../images/college.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  width: 270px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 100%;
  border: 5px solid var(--Green-Sheen);
  transition: transform 0.9s ease-in-out;

}


.feature-card1:hover {
  transform: rotateY(360deg);
}

.feature-card2:hover {
  transform: rotateY(360deg);
}

.feature-card3:hover {
  transform: rotateY(360deg);
}

.feature-card4:hover {
  transform: rotateY(360deg);
}

.feature-card5:hover {
  transform: rotateY(360deg);
}

.feature-card6:hover {
  transform: rotateY(360deg);
}

.feature-card7:hover {
  transform: rotateY(360deg);
}

.feature-card8:hover {
  transform: rotateY(360deg);
}

.feature-card9:hover {
  transform: rotateY(360deg);
}

.feature-card10:hover {
  transform: rotateY(360deg);
}

.feature-card11:hover {
  transform: rotateY(360deg);
}

.feature-card12:hover {
  transform: rotateY(360deg);
}
/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.gallery{
  background:var(--Platinum);
 
  padding: 75px 0;
  margin: 0 auto;
  width: 100%;
}

.gallery .image{
  width: 100%;
  padding: 0 50px;
}
.gallery h2{
  position: relative;
  margin-bottom: 45px;
  font-size: 8rem;
  text-align: center;
  color: var(--eerie-black-1);
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: 100%;
  height: 90vh;
}

.item {
  flex: 1;
  border-radius: 50px;
  border: 1px solid rgb(49, 48, 48);
  height: 90%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: flex 0.8s ease;
  
  &:hover{
    flex: 7;
  
  }
}

.item-1 { 
  background-image: url("../images/bhumi\ pujan.JPG");
}

.item-2 { 
  background-image: url('../images/ganpati.jpg');
}


.item-3 { 
  background-image: url('../images/ganpati\ 1.jpg');
}

.item-4 { 
  background-image: url('../images/nirmal.JPG');
}

.item-5 { 
  background-image: url('../images/janmastami.jpg');
}

.item-6 { 
  background-image: url('../images/potluck.jpg');
}

.item-7 { 
  background-image: url('../images/decor1.jpg');
}

.item-8 { 
  background-image: url('../images/decor2.jpg');
}

.item-9 { 
  background-image: url('../images/eternis\ entrance.jpg');
}

.item-10 { 
  background-image: url('../images/decor\ eternis.jpg');
}

.item-11 { 
  background-image: url('../images/Event\ decoration\ entrance\ gate.jpg');
}

.item-12 { 
  background-image: url('../images/Event\ decoration.jpg');
}



/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/


#footer {
    background-color:  var(--Green-Sheen) !important;
}

#footer .row{
display: flex;
gap: 20px;
padding-top: 5vh;
}

#footer h5{
	padding-left: 10px;
  padding-bottom: 6px;
  color: var(--smoky-black-1);
}

#footer h3{
font-size: 2.5rem;
	padding-left: 10px;
  border-left: 2px solid #eeeeee;
  margin-bottom: 10px;
  color:#ffffff;
}


#footer a {
    color: var(--smoky-black-1);
    text-decoration: none !important;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

#footer ul.social li{
	padding: 3px 0;
}
#footer ul.social li a i {
  margin-right: 5px;
	font-size:25px;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
#footer ul.social li:hover a i {
	font-size:30px;
	margin-top:-10px;
}
#footer ul.social li a,
#footer ul.quick-links li a{
	color:var(--smoky-black-1);
}
#footer ul.social li a:hover{
	color:#eeeeee;
}
#footer ul.quick-links li{
	padding: 3px 0;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
#footer ul.quick-links li:hover{
	padding: 3px 0;
	margin-left:5px;
	font-weight:700;
}
#footer ul.quick-links li a i{
	margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
  font-weight: 700;
}

#footer .links{
  margin-left: 5%;
  width: 20%;
  text-align: left;
}

#footer ul{
  margin-top: 2vh;
}
hr{
  width: 70%;
}
.google{
  margin-top: 2vh;
  margin-left: 5%;
}

.social{
  display: flex;
  gap: 30px;
}
 
.contact{
  width: 45%;
  text-align: left;
}

.findus{
  text-align: left;
  width: 30%;
}

.findus iframe{
  width: 100%;
}
.address{
  margin-top: 2vh;
}
.socialmedia{
  margin-top: 8vh;
  margin-left: 37%;
}
.footer-bottom{
  margin-left: 31%;
  padding-bottom: 1vh;
}
.copyright {
  color: var(--smoky-black-1);
  line-height: var(--lineHeight-3);
}

.disclaimer{
  color: var(--smoky-black-1);
  line-height: var(--lineHeight-3);
  margin-left: 6%;
}

.disclaimer .link {
  display: inline;
  color: var(--white) !important;
  
}

.copyright .link {
  display: inline;
}



.fa.fa-twitter{
	font-family:sans-serif;
}
.fa.fa-twitter::before{
	content:"𝕏";
}
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--Green-Sheen);
  color: var(--white);
  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(--white);
  color: var(--Green-Sheen);
}

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

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

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

@media (min-width: 575px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fontSize-body-2: 2rem;
  }

  /**
   * REUSED STYLE
   */

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

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

  /**
   * HEADER
   */

  .header {
    top: 0px;
  }

  .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;
  }


}

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

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .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-list {
    margin-inline: 30px;
  }

  /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--Dark-Slate-Green);
    font-size: 2.4rem;
    border: 1px solid var(--Dark-Slate-Green);
    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-Sheen);
    color: var(--black);
  }


    /**
   * RESERVATION
   */

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

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

}

/**
 * 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%;
  }


  /**
   * 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;
  }
  /**
   * RESERVATION
   */

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }


}

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

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;
  }

  /**
   * REUSED STYLE
   */

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

  /**
   * HEADER
   */

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

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

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

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

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

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

  .navbar .separator {
    display: none;
  }

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

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

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

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

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

  /**
   * HERO
   */

  .hero {
    height: 880px;
    margin-top: 7svh;
  }

  .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;
  }

 

 

  /**
   * FEATURES
   */

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

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

@media (min-width: 1400px) {
  /**
   * HEADER
   */

  .navbar {
    margin-inline: auto;
  }

  /**
   * ABOUT
   */

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

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

  /**
   * FEATURES
   */

  .features {
    overflow: visible;
  }

  .features .shape {
    display: block;
  }

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

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

@media (max-width: 320px) {
  /**
  header
  */
.header .menuhome{
  font-size: 15px;
  color: silver;
  margin-left: 10px;
}


  .header .dropdown-content #hover-underline{
    display: none;
  }

  .header #logo{
    width: 100% !important;
    height: 20vh !important;
  }


/**
  About us
  */
  .aboutus{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
  }

  .aboutus .image img{
    margin-left: 10%;
    width: 100%;
    margin-bottom: 5vh;
  
  }
  .aboutus h2{
    text-align: center;
  }
  #about .section-text{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    font-size: 1.8rem;
  }
  .about-btn{
    margin-left: 20%;
  }
  /**
  our services
  */

  .features .serv-btn{
    margin-left: 15%;
  }


  /**
  gallery
  */

  .gallery-wrap {
    flex-direction: column;
  }
  
  .item {
    flex: 3;
  }


  /**
  Footer
  */
  #footer .row {
    gap: 10px;
  }
  #footer .links{
    width: 40%;
  }

  #footer .contact{
    width: 55%;
  }
#footer h3{
  font-size: 2rem;
}

#footer h5{
  font-size: 1rem;
  line-height: 2;
}

#footer .envelop{
  font-size: 0.8rem;
}

.findus{
  display: none;
}




.socialmedia{
  margin-left: 10%;
} 

.social {
  gap: 20px;
}

.footer-bottom{
  margin-left: 5%;
  text-align: center;
}


}

@media screen and (min-width: 321px) and (max-width: 380px) {
  /**
  header
  */
  .header .menuhome{
    font-size: 15px;
    color: silver;
    margin-left: 10px;
  }

  .header .dropdown-content #hover-underline{
    display: none;
  }

  .header #logo{
    width: 100% !important;
    height: 20vh !important;
  }
  

/**
  About us
  */
  .aboutus{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
  }

  .aboutus .image img{
    margin-left: 10%;
    width: 100%;
    margin-bottom: 5vh;
  
  }
  .aboutus h2{
    text-align: center;
  }

  #about .section-text{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    font-size: 2.1rem;
  }
  .about-btn{
    margin-left: 20%;
  }

   /**
  our services
  */

  .features .grid-list{
    padding-left: 12%;
  }
  .features .serv-btn{
    margin-left: 20%;
  }
  
  /**
  gallery
  */

  .gallery-wrap {
    flex-direction: column;
  }
  
  .item {
    flex: 3;
  }

  /**
  Footer
  */
  #footer .row {
    gap: 10px;
  }
  #footer .links{
    width: 40%;
  }

  #footer .contact{
    width: 50%;
  }
#footer h3{
  font-size: 2rem;
}

#footer h5{
  font-size: 1rem;
  line-height: 2;
}

#footer .envelop{
  font-size: 0.8rem;
  
 
}

.findus{
  display: none;
}




.socialmedia{
  margin-left: 17%;
 
} 

.social {
  gap: 20px;

}



.footer-bottom{
  margin-left: 5%;
  text-align: center;
}
}




@media screen and (min-width: 431px) and (max-width: 770px) {
  /**
  header
  */

  .header .menuhome{
    font-size: 15px;
    color: silver;
    margin-left: 10px;
  }

  .header .dropdown-content #hover-underline{
    display: none;
  }
  

  /**
  About us
  */
  .aboutus{
    display: flex;
    flex-wrap: wrap;
   }
 
   .aboutus .image img{
     margin-left: 10%;
     width: 100%;
     margin-bottom: 5vh;
   
   }
   .aboutus h2{
     text-align: center;
   }
 
   .aboutus p{
     width: 80%;
     margin-left: 10%;
   }
   .about-btn{
     margin-left: 35%;
   }

  
   /**
  our services
  */

  .features .grid-list{
    padding-left: 8%;
  }
    /**
  gallery
  */

  .gallery-wrap {
    flex-direction: column;
  }

}


@media screen and (min-width: 381px) and (max-width: 430px) {
  /**
  header
  */

  .header .menuhome{
    font-size: 15px;
    color: silver;
    margin-left: 10px;
  }

  .header .dropdown-content #hover-underline{
    display: none;
  }
 
  

/**
  About us
  */
  .aboutus{
   display: flex;
   flex-wrap: wrap;
  }

  .aboutus .image img{
    margin-left: 10%;
    width: 100%;
    margin-bottom: 5vh;
  
  }
  .aboutus h2{
    text-align: center;
  }

  #about .section-text{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    font-size: 1.8rem;
  }
  .about-btn{
    margin-left: 25%;
  }

  
  
   /**
  our services
  */

  .features .grid-list{
    padding-left: 16%;
  }
  .features .serv-btn{
    margin-left: 25%;
  }
    
    /**
  gallery
  */

  .gallery-wrap {
    flex-direction: column;
  }
  
  .item {
    flex: 2;
  }

  /**
  Footer
  */
  #footer .row {
    gap: 10px;
  }
  #footer .links{
    width: 40%;
  }

  #footer .contact{
    width: 50%;
  }
#footer h3{
  font-size: 2rem;
}

#footer h5{
  font-size: 1rem;
  line-height: 2;
}

#footer .envelop{
  font-size: 0.8rem;
  
 
}

.findus{
  display: none;
}




.socialmedia{
  margin-left: 16%;
 
} 

.social {
  gap: 25px;

}



.footer-bottom{
  margin-left: 2%;
  text-align: center;
}
  
}

@media screen and (min-width: 771px) and (max-width:1030px){
  /**
  header
  */

  
  .header .menuhome{
    font-size: 15px;
    color: silver;
    margin-left: 10px;
  }

  .header .dropdown-content #hover-underline{
    display: none;
  }

  /**
  About us
  */
  .aboutus{
   margin-left: 4%;
   }
 
   .aboutus .image img{
    
     margin-bottom: 5vh;
   
   }
   
   .aboutus p{
     width: 90%;
   }
   .about-btn{
     margin-left: 25%;
   }


   /**
  our services
  */

  .features .grid-list{
    padding-left: 15%;
  }

    /**
  gallery
  */

  .gallery-wrap {
    flex-direction: column;
    height: 120vh;
  }
  
  
}

@media screen and (min-width: 1030px) and (max-width: 1440px) {

  /**
  header
  */

  .header .menuhome{
    display: none;
  }

  

}


@media screen and (min-width: 1441px) and (max-width: 2580px) {
  .header .menuhome{
    display: none;
  }
  
}



/*-----------------------------------*\
  #about.css
\*-----------------------------------*/

.home {
  margin-top: 15vh;
  background-size: 100% 100vh;
  background-repeat: no-repeat;
  position: relative;
  padding-block: 10px;
  min-height: 70vh;
  height: 70vh;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 0;
}

.home h1 {
color:var(--white);
background: rgba(60, 60, 60, 0.4);
margin-left: 10%;
    margin-right: 10%;
margin-top: 20vh;
font-size: 15rem;
font-family: "Alice", serif;
}



.story{
  color: var(--smoky-black-1);
  text-align: center;
  background-color: var(--Platinum);
  padding: 8vh 0;
}

.story .section-text{
  margin-left: 10%;
  margin-right: 10%;
  font-size: 2rem;
}

.story .headline-1{
  color: var(--smoky-black-1);
  
}

.vision-mission{
  display: flex; 
  gap: 20px;
  height: 95vh;
}

.vision-mission p{
  font-size: 1.4rem;
  text-align: justify;
  padding: 0 2% 2% 2%;
}
.vision{
  background-color: var(--Jet-Stream);
  width: 100%;
}

.mission{
  
  background-color: var(--Jet-Stream);
  width: 100%;
}

.slogan{
  width: 100%;
  padding: 0 5%;
}


/*ISO Certificate*/

  .iso{
    width: 100%;
    background-color: var(--Platinum);
    padding-top: 10vh;
  }
  .iso hr {
 margin-left: 16%;
 
  }

.iso h2 {
  text-align: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
  font-size: 42px;
  padding-left: 3%;
  color: var(--smoky-black-1);
  font-family: sans-serif;
  font-weight: normal;
}

.iso h2:hover{
  color: rgb(6, 95, 211);
  transform: scale(1.2);
}

.iso-img{
  display: flex;
  flex-wrap: wrap;
              gap: 40px;
              width: 100%;
              padding-left: 20%;
              padding-right: 10%;
              padding-bottom: 15vh;

}

.iso-img img{
  height: 75vh;
  width: 42%;
  border: 2px solid var(--smoky-black-1);
}

.iso-img img:hover{
  transform: scale(1.1);
}


@media (max-width: 320px) {
  /**
  home
  */

.home{
  margin-top: 0;
  background-size: 100% 45vh;
  background-position: center;
}

.home h1{
  font-size: 4rem;
  margin-top: 32vh;
}


.story .headline-1{
  padding-top: 0;
}

.story .section-title{
  font-size: 5rem;
}
.story .section-text{
  font-size: 1.3rem;
  text-align: justify;
  line-height: 20px;
}

/**
services
*/

.vision-mission {
  flex-wrap: wrap;
  margin-bottom: 10vh;
}
.services .img{
   display: none;
}

.testi-text{
  line-height: 20px;
}

.services .slogan{
  font-size: 1rem;
  line-height: 20px;
  margin-top: 50svh;
  
}


 /**
 iso
 */ 
 .iso h2{
  font-size: 20px;
padding: 5vh;
 }
.iso-img{
  padding-left: 10%;
}

.iso-img img {
  height: 50vh;
  width: 100%;}
}

@media screen and (min-width: 321px) and (max-width: 380px) {
  /**
  home
  */

  .home{
    margin-top: 0;
    background-size: 100% 50vh;
    background-position: center;
  }
  
  .home h1{
    font-size: 5rem;
    margin-top: 32vh;
  }
  
  
  .story .headline-1{
    padding-top: 0;
  }
  
  .story .section-title{
    font-size: 5rem;
  }
  .story .section-text{
    font-size: 1.3rem;
    text-align: justify;
    line-height: 20px;
  }
  
  /**
  services
  */
  
  .vision-mission {
    flex-wrap: wrap;
    margin-bottom: 10vh;
  }
  .services .img{
     display: none;
  }
  
  .testi-text{
    line-height: 20px;
    padding-bottom: 5svh;
  }
  
  .services .slogan{
    font-size: 1rem;
    margin-top: 21svh;
    
  }
  
  
   /**
   iso
   */ 
   .iso h2{
    font-size: 20px;
  padding: 5vh;
   }
  .iso-img{
    padding-left: 10%;
  }
  
  .iso-img img {
    height: 50vh;
    width: 100%;
  }
  }
 




@media screen and (min-width: 431px) and (max-width: 770px) {

 /**
  home
  */

  .home{
    margin-top: 0;
    background-size: 100% 50vh;
    background-position: center;
  }
  
  .home h1{
    font-size: 6rem;
    margin-top: 32vh;
  }
  
  
  .story .headline-1{
    padding-top: 0;
  }
  
  .story .section-title{
    font-size: 5rem;
  }
  .story .section-text{
    font-size: 1.5rem;
    
    line-height: 20px;
  }


  
  /**
  services
  */
  .services .img{
     display: none;
  }
  
  .vision-mission p {
    font-size: 1.4rem;
    line-height: 21px;
}
   /**
   iso
   */ 
   .iso h2{
    font-size: 30px;

   }

  .iso img{
height:100%;

  }

}


@media screen and (min-width: 381px) and (max-width: 430px) {
  /**
  home
  */

  .home{
    margin-top: 0;
    background-size: 100% 50vh;
    background-position: center;
  }
  
  .home h1{
    font-size: 5rem;
    margin-top: 32vh;
  }
  
  
  .story .headline-1{
    padding-top: 0;
  }
  
  .story .section-title{
    font-size: 5rem;
  }
  .story .section-text{
    font-size: 1.3rem;
    text-align: justify;
    line-height: 20px;
  }
  
  /**
  services
  */
  
  .vision-mission {
    flex-wrap: wrap;
    
  }
  .services .img{
     display: none;
  }
  
  .testi-text{
    line-height: 20px;
    padding-bottom: 5svh;
    
    
  }
  
  .services .slogan{
    font-size: 1rem;
    margin-top: 10svh;
    
  }
  
  
   /**
   iso
   */ 
   .iso h2{
    font-size: 20px;
  padding: 3vh;
   }
  .iso-img{
    padding-left: 10%;
  }
  
  .iso-img img {
    height: 50vh;
    width: 100%;
  }

 

  
}

@media screen and (min-width: 771px) and (max-width:1030px){
 /**
   iso
   */ 
   
   .iso img{
    height:100%;
    
      }

      .vision-mission p{
        line-height: 25px
      };

}

@media screen and (min-width: 1441px) and (max-width: 2580px) {
  .home{
    margin-top: 7vh;
  }

  .vision   p{
    font-size: 1.6rem;
    text-align: justify;
  }
    .mission p{
    font-size: 2rem;
    text-align: justify;
  }
}

/*-----------------------------------*\
  #project.css
\*-----------------------------------*/

.infocardContainer * {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 300;
}
h3 {
  font-weight: 400; font-style: italic; font-family: "Fira Sans Condensed", sans-serif;
}
.infocardContainer {
  display: flex;
  height: 200px;
  width: 200px;
  border-radius: 100px;
  background:  var(--Green-Sheen);
  transition: all 0.3s ease-in;
  margin: auto;
  margin-top: 100px;
 
}
.pro-main{
  display: flex; 
  gap: 20px;
  flex-wrap:wrap;
}
.infocardContainer:hover {
  width: 550px;
  border-radius: 100px 10px 100px 100px;
  transition: all 0.5s ease-out;
}

.infocardContainer div {
  color: var(--smoky-black-1);
  flex-shrink: 1;
  width: 100%;
}

.infocardContainer div * {
  display: flex;
  --flex: inherit;
  overflow: hidden;
  text-overflow: hidden;
  color: var(--smoky-black-1);
  white-space: nowrap;
  width: 0;
  height: auto;
  transition: all 0.3s ease-in;  
}

.infocardContainer:hover div *{
  display: flex;
  visibility: visible;
  transition: all 0.5s ease-out;
  width: 100%;
  height: auto;
}

.infocardContainer #main, .infocardContainer #main img{
  height: 200px;
  width: 200px;
  padding-right: 10px;
  border-radius: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.infocardContainer #main img{
  height: 250px;
  width: 250px;
  transition: none;
  display: float;
  position: relative;
  border: 10px solid rgb(255, 254, 254);
  margin: 0 0 0 0; padding: 0 0 0 0;
}

.infocardContainer #textbois {
  position: relative;
  padding-top: 4vh; 
  padding-left: 13%;
}

.infocardContainer #textbois h4{
  text-transform: uppercase;
}

.projects{
  background-color: var(--Platinum);
}

@media (max-width: 320px) {
  .pro-sec{
    background-size: 100% 100%;
    background-position: center;
  }

  .pro-sec h1{
   margin-top: 38vh;
  }

  .infocardContainer:hover {
    width: 300px;
    height: 130px;
  }

  .infocardContainer :hover #main img {
    height: 130px;
    width: 130px;
  }

  .infocardContainer:hover #textbois {
    padding-top: 2vh;
    padding-left: 2%;
    line-height: 24px;
  }

  .infocardContainer:hover #main, .infocardContainer:hover #main img{
    height: 130px;
    width: 130px;
    padding-right: 0px;
    border-radius: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }

  .infocardContainer:hover #textbois h4, p{
   font-size: 1rem;
   
  }

  .infocardContainer:hover #textbois h3{
    font-size: 1.5rem;
   }
}


@media screen and (min-width: 321px) and (max-width: 380px) {
  .pro-sec{
    background-size: 100% 100%;
    
  }

  .pro-sec h1{
   margin-top: 38vh;
  }

  .infocardContainer:hover {
    width: 350px;
    height: 130px;
  }

  .infocardContainer :hover #main img {
    height: 150px;
    width: 150px;
  }

  .infocardContainer:hover #textbois {
    padding-top: 2vh;
    padding-left: 2%;
    line-height: 24px;
  }

  .infocardContainer:hover #main, .infocardContainer:hover #main img{
    height: 150px;
    width: 150px;
    padding-right: 0px;
    border-radius: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }

  .infocardContainer:hover #textbois h4, p{
   font-size: 1rem;
   
  }

  .infocardContainer:hover #textbois h3{
    font-size: 1.5rem;
   }

}



@media screen and (min-width: 381px) and (max-width: 430px) {
  .pro-sec{
    background-size: 100% 100%;
    
  }

  .pro-sec h1{
   margin-top: 38vh;
  }

  .infocardContainer:hover {
    width: 400px;
    height: 160px;
  }

  .infocardContainer :hover #main img {
    height: 150px;
    width: 150px;
  }

  .infocardContainer:hover #textbois {
    padding-top: 4vh;
    padding-left: 2%;
    line-height: 24px;
  }

  .infocardContainer:hover #main, .infocardContainer:hover #main img{
    height: 160px;
    width: 160px;
    padding-right: 0px;
    border-radius: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }

  .infocardContainer:hover #textbois h4, p{
   font-size: 1.3rem;
  }

  .infocardContainer:hover #textbois h3{
    font-size: 2rem;
   }

}


@media screen and (min-width: 431px) and (max-width: 770px) {
  .pro-sec{
    background-size: 100% 100%;
  }

  .pro-sec h1{
   margin-top: 38vh;
  }

  .infocardContainer {
    width: 160px;
    height: 160px;
  }

  .infocardContainer #main img {
    height: 200px;
    width: 200px;
  }

  .infocardContainer:hover {
    width: 430px;
    height: 180px;
  }

  .infocardContainer :hover #main img {
    height: 200px;
    width: 200px;
  }

  .infocardContainer:hover #textbois {
    padding-top: 4vh;
    padding-left: 2%;
    line-height: 26px;
  }

  .infocardContainer:hover #main, .infocardContainer:hover #main img{
    height: 180px;
    width: 180px;
  
  }
  .infocardContainer:hover #textbois h4, p{
    font-size: 1.4rem;
   }
 
   .infocardContainer:hover #textbois h3{
     font-size: 2rem;
    }
  
  
}


@media screen and (min-width: 771px) and (max-width: 1025px){
  
  .infocardContainer {
    width: 180px;
    height: 180px;
  }

  .infocardContainer #main img {
    height: 210px;
    width: 210px;
  }

  .infocardContainer:hover #textbois {
    padding-top: 3vh;
    padding-left: 6%;
    line-height: 30px;
  }
}

@media screen and (min-width: 1441px) and (max-width: 2560px) {

  .project{
    height: 150vh;
  }
 
  .home h1 {
    margin-top: 25vh;
  }

}
/*-----------------------------------*\
  #our services.css
\*-----------------------------------*/

.our-services ul{
  margin-top: 5vh;
}
 .slogans{
margin-top: 4vh;
color: var(--smoky-black-1);
font-style: italic;
font-size: 2.5rem;
}


@media (max-width: 320px) {

.fea-sec{
  padding-top: 0;
}

.fea-sec .section-title{
  font-size: 3.5rem;
}
.fea-sec .body-2{
  font-size: 1.3rem;
  text-align: justify;
  line-height: 20px;
}

/**
services
*/


.slogans{
  font-size: 1.5rem;
  line-height: 20px;
}

}

@media screen and (min-width: 321px) and (max-width: 380px) {
  .fea-sec{
    padding-top: 0;
  }
  
  .fea-sec .section-title{
    font-size: 4rem;
  }
  .fea-sec .body-2{
    font-size: 1.3rem;
    text-align: justify;
    line-height: 20px;
  }
  
  /**
  services
  */

  .slogans{
    padding: 0 4%;
    text-align: justify;
    font-size: 1.5rem;
    line-height: 20px;
  }


  }
 




@media screen and (min-width: 431px) and (max-width: 770px) {

  .fea-sec{
    padding-top: 0;
  }
  
  
  
  /**
  services
  */
   .our-services ul  {
    padding-left: 12%;
  }
  
  .slogans{
    font-size: 1.5rem;
    line-height: 20px;
  }


}


@media screen and (min-width: 381px) and (max-width: 430px) {
  .fea-sec{
    padding-top: 0;
  }
  
  .fea-sec .section-title{
    font-size: 4rem;
  }
  .fea-sec .body-2{
    font-size: 1.3rem;
    text-align: justify;
    line-height: 20px;
  }
  
  /**
  services
  */
  
  .slogans{
    padding: 0 4%;
    text-align: justify;
    font-size: 1.5rem;
    line-height: 20px;
  }


  
}

@media screen and (min-width: 771px) and (max-width:1030px){
 
  .home h1 {
    font-size: 12rem;
  }
  
  
  /**
  services
  */
  
  .slogans{
    margin: 0 4px;
    font-size: 2rem;
    line-height: 25px;
  }
    }


/*-----------------------------------*\
  #contact.css
\*-----------------------------------*/

.contact-home {
  margin-top: 15vh;
  background-size: 100% 75vh;
  background-repeat: no-repeat;
  position: relative;
  padding-block: 10px;
  min-height: 70vh;
  height: 70vh;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 0;
}

.contact-home h1 {
  color:var(--white);
  background: rgba(60, 60, 60, 0.4);
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 14vh;
  font-size: 15rem;
  font-family: "Alice", serif;
}

.reservation {
  padding: 5svh 0;
  background-color: var(--Platinum);
}

.reservation-form{
  background-color: var(--Dark-Slate-Green);
}

.reservation-form .btn{
  border-color: var(--Green-Sheen);
  color: var(--white);
  background-color: transparent;
}

.reservation-form .btn::before{
  background-color:var(--Green-Sheen);
}

.reservation-form input{
background-color:rgb(249, 239, 239);
color: var(--smoky-black-1);
}

.reservation-form textarea{
  background-color: rgb(249, 239, 239);
  color: var(--smoky-black-1);
  }

  .reservation-form #event{
    background-color: rgb(249, 239, 239);
    color: var(--smoky-black-1);
    }
.form-text {
  margin-block-end: 40px;
}
.form-text span {
  color: white;
  display: inline;
}

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

.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-3 {
  color: var(--white);
  line-height: var(--lineHeight-3);
}

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

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

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

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

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

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

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


@media (max-width: 320px) {

  /**
  hero
  */
 
  .contact-home h1{
    font-size: 5rem;
    margin-top: 25vh;
  }
  
  .contact-home{
    background-size: 100% 85%;
    
  }

  .reservation iframe{
   width: 100%;
  }

  
.form-right .body-3{
  margin-left: 4%;
  font-size: 1.2rem;
}

  
  }
  
  @media screen and (min-width: 321px) and (max-width: 380px) {
  /**
  hero
  */
 
  .contact-home h1{
    font-size: 5rem;
    margin-top: 25vh;
  }
  
  .contact-home{
    background-size: 100% 85%;
    
  }

  .reservation iframe{
   width: 100%;
  }

  
.form-right .body-3{
  margin-left: 7%;
  font-size: 1.5rem;
}
  
    }
  
  
  @media screen and (min-width: 431px) and (max-width: 770px) {
  

    .contact-home h1{
      font-size: 12rem;
      margin-top: 25vh;
    }
  
    .reservation iframe{
     width: 80%;
    }
  
    
  .form-right .body-3{
    margin-left: 18%;
  }
  
  
  }
  
  
  @media screen and (min-width: 381px) and (max-width: 430px) {
  /**
  hero
  */
 
  .contact-home h1{
    font-size: 5rem;
    margin-top: 25vh;
  }
  
  .contact-home{
    background-size: 100% 85%;
    
  }

  .reservation iframe{
   width: 100%;
  }

  
.form-right .body-3{
  margin-left: 11%;
  font-size: 1.5rem;
}
    
  }
  
  @media screen and (min-width: 771px) and (max-width:1030px){
    .contact-home h1{
      margin-top: 22vh;
    }
    .form-right .body-3{
      margin-left: 6%;
      font-size: 1.5rem;
    }
  }

  @media screen and (min-width: 1441px) and (max-width: 2560px) {

    .contactus{
      height: 140vh;
    }
   .contact-home{
      margin-top: 0;
    }
    .contact-home h1 {
      margin-top: 25vh;
    }

  }



/**
disclaimer
*/

.disclaimers{
  margin-top: 25svh;
}