/**************GENERAL**************/
/***********************************/
/***********************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

*:focus {
  outline: 2px dotted #1b3159;
}

html {
  /* 1rem = 10px */
  font-size: 62.5%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  font-family: 'Rouge Script', cursive;
  font-style: italic;
  overflow-x: hidden;
}

/****************HERO****************/
/************************************/
/************************************/
/*To make the rest of the page the color of #e1c591 */

.hero {
  display: flex;
  position: relative;
}

.header-box {
  background-color: #1b3159;
  background-image: url(png/wild-flowers.png);
  display: flex;
  flex-direction: column;
  width: 30rem;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

/* So that the size of the Ruby's Marquees logo does 
not change when we adjust the page size */
.ruby-logo {
  width: 100%;
  padding: 2.4rem;
  border-bottom: 1px solid #e1c591;
  /*Distance between ruby's marquees logo and navigation */
  margin-bottom: 6rem;
}

/* So that the r logo size chnages when we adjust the size 
of the page but is always 100% the size of the container */

.r-img-box {
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
  width: 100%; /*or 87% if we chnage the width of heafder-box to 13%*/
  height: 100vh;
  flex: 1;
  margin-left: 30rem;
}

.r-logo {
  animation: fade 15s ease-in-out infinite;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  gap: 4.8rem;
  font-style: normal;
}

.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #f0e2c8;
  font-size: 2.8rem;

  transition: all 0.5s;
}

.main-nav-link:active,
.main-nav-link:hover {
  cursor: pointer;
  text-decoration: none;
  color: #e1c591;
  font-size: 2.8rem;
}

.social-flex-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.social-link-box {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}

.social-link-header {
  list-style: none;
  display: flex;
  gap: 4.8rem;
}

.icon-header {
  width: 2.6rem;
  height: 2.6rem;
  fill: #f0e2c8;
}

/*******************About Us/*******************/
/***********************************************/
/***********************************************/

.section-about-us {
  display: flex;
  justify-content: center;
  margin-left: 30rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
}

.grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.about-us-text-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.van-text-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.family-text-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.heading-1 {
  font-size: 3.6rem;
  color: #1b3159;
  font-style: normal;
}

.para-home {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.area-list {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #16140e;
}

.enquire-now-btn-box {
  padding-top: 1.2rem;
}

.enquire-now-btn,
.enquire-now-btn:link,
.enquire-now-btn:visited {
  display: inline-block;
  padding: 0.8rem;
  font-family: 'Playfair Display', serif;
  background-color: #f3e8d3;
  color: #16140e;
  border: none;
  font-style: italic;

  font-size: 1.6rem;

  transition: all 0.5s;
}

.enquire-now-btn:hover,
.enquire-now-btn:active {
  cursor: pointer;
  background-color: #ead6b2;
  color: #716349;
}

.small-r-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.small-r-logo {
  animation: fade 5s ease-in-out infinite;
  width: 20%;
}

.family-illus-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4.8rem;
}

.family-illus {
  width: 15%;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.marquee-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.van-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.family-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-img {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}
.marquee-2-img {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}

.marquee-3-img {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}

/******************Marquees******************/
/************************************************/
/************************************************/

.marquees {
  display: flex;
}

.page-container {
  flex: 1;
  margin-left: 30rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
}

.marquees-heading {
  font-size: 4.2rem;
  color: #1b3159;
  font-style: normal;
  font-weight: 400;
}

.logo-marquees-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.2rem;
}

.marquee-type-box {
  display: grid;
  gap: 4.8rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 3.2rem 9.6rem;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
  padding: 6.4rem 0;
}

.marquee-type-heading,
.marquee-type-heading:visited,
.marquee-type-heading:link {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #1b3159;
  text-decoration: none;
  padding: 1.6rem;
  background-color: #ead6b2;
  opacity: 75%;
}

.marquee-type-heading:hover,
.marquee-type-heading:active {
  opacity: 40%;
}

.title-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.wedding-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/flower.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.special-occasion-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/party.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}

.festival-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/holy.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}

.corporate-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/toast.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}

.logo-marquees {
  width: 10rem;
}

/******************EQUIPMENT******************/
/**********************************************/
/**********************************************/

.equipment {
  display: flex;
}

.page-container {
  flex: 1;
  margin-left: 30rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
}

.equipment-heading {
  font-size: 4.2rem;
  color: #1b3159;
  font-style: normal;
  font-weight: 400;
}

.logo-equipment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.2rem;
}

.logo-equipment {
  width: 10rem;
}

.equipment-type-box {
  display: grid;
  gap: 4.8rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 3.2rem 9.6rem;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
  padding: 6.4rem 0;
}

.equipment-type-heading,
.equipment-type-heading:visited,
.equipment-type-heading:link {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #1b3159;
  text-decoration: none;
  padding: 1.6rem;
  background-color: #ead6b2;
  opacity: 75%;
}

.equipment-type-heading:hover,
.equipment-type-heading:active {
  opacity: 40%;
}

.title-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.lighting-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/lighting.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}

.furniture-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/furniture.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}

.flooring-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/decoration.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}

.heating-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/heating.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-top: 1px solid #1b3159;
}
/******************Gallery******************/
/**********************************************/
/**********************************************/
.gallery {
  display: flex;
}

.page-container {
  flex: 1;
  margin-left: 30rem;
  background-color: #e1c591;
}

.logo-gallery-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3.2rem 9.6rem;
  border: 2px solid #1b3159;
  padding: 1.6rem;
}

.gallery-heading {
  font-size: 4.2rem;
  color: #1b3159;
  font-style: normal;
  font-weight: 400;
}

.carousel {
  display: flex;
  align-items: center;
  position: relative;
  margin: 2.4rem 0;
}

.btn-comp {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b3159;

  font-style: normal;
  gap: 3.6rem;
}

.left-btn-2,
.left-btn-2:link,
.left-btn-2:visited {
  transition: all 0.5s;
  font-size: 6.4rem;
}

.left-btn-2:active,
.left-btn-2:hover {
  cursor: pointer;
  color: #5f6f8b;
}

.right-btn-2,
.right-btn-2:link,
.right-btn-2:visited {
  transition: all 0.5s;
  font-size: 6.4rem;
}

.right-btn-2:active,
.right-btn-2:hover {
  cursor: pointer;
  color: #5f6f8b;
}

.carousel-picture {
  width: 75%;
  border: 2px solid #1b3159;
  opacity: 85%;
}

.gallery-slogan {
  font-size: 4.2rem;
  font-style: normal;
  color: #1b3159;
}

/******************CONTACT-US******************/
/**********************************************/
/**********************************************/

.contact-us {
  display: flex;
  justify-content: center;
}

.form-container {
  flex: 1;
  margin-left: 30rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
}

.contact-form-box {
  text-align: center;
  padding: 4.8rem 2.4rem;
  margin: 6.4rem 9.6rem;
  border: 2px solid #1b3159;
}

.logo-form {
  width: 10rem;
}

.form-heading-box {
  margin-bottom: 2.4rem;
}

.form-heading {
  color: #1b3159;
  font-size: 3.6rem;
  font-style: normal;
}

.form-para {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
  margin-bottom: 4.8rem;
}

.form-input-container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.form-input-container input {
  padding: 1.2rem;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  border: none;
  background-color: #f3e8d3;
  font-style: italic;
}

.large-input {
  width: 70%;
  height: 30vh;
}

.form-btn,
.form-btn:link,
.form-btn:visited {
  padding: 0.8rem;
  font-family: 'Playfair Display', serif;
  background-color: #f3e8d3;
  color: #16140e;
  border: none;
  font-size: 1.6rem;
  font-style: italic;

  transition: all 0.5s;
}

.form-btn:hover,
.form-btn:active {
  cursor: pointer;
  background-color: #ead6b2;
  color: #716349;
}

.form-slogan-box {
  margin-top: 3.2rem;
}

.form-slogan {
  font-style: normal;
  color: #1b3159;
  font-size: 3.6rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  margin-left: 30rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
}

.contact-info-box {
  display: flex;
  gap: 24rem;
  text-align: center;
  padding-left: 48rem;
  padding-right: 48rem;
  padding-bottom: 4.8rem;
}

.sandev {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 1px solid #1b3159;
}

.inderpaul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 1px solid #1b3159;
}

.logo-card {
  width: 25rem;
}

.a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #16140e;
}

.b {
  font-style: normal;
  color: #1b3159;
  font-size: 2.6rem;
}

.map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
  border-bottom: 1px solid #1b3159;
}

.map-1 {
  width: 50rem;
  height: 40rem;

  width: 100%;
  height: 40vh;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 10;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 40%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;

  background-color: #1b3159;
  background-image: url(png/wild-flowers-rotate.png);
  padding: 6rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.5s;
}

.modal-open .modal {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-open .overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-modal-nav {
  width: 4.8rem;
  height: 4.8rem;
  background: none;
}

.close-modal-nav {
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  font-size: 5rem;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
}

.modal-logo {
  width: 70%;
  margin-bottom: 1.6rem;
}

.modal-para {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #f0e2c8;
  text-align: center;
  line-height: 3rem;
}

.link-7:link,
.link-7:visited {
  text-decoration: none;
  color: #f0e2c8;
  font-size: 1.8rem;
}

.link-7:active,
.link-7:hover {
  text-decoration: underline;
}

/***************FOOTER**************/
/***********************************/
/***********************************/
.footer {
  margin-left: 30rem;
  padding: 2.4rem 3.2rem;
  background-color: #e1c591;
  background-image: url(png/wild-flowers-rotate.png);
}

.footer-overflow {
  height: 100vh;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6.4rem;
}

.footer-heading {
  font-size: 1.8rem;
  margin-top: 1.8rem;
  margin-bottom: 2.4rem;
  color: #16140e;
}

.logo-column {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.sister-column {
  display: flex;
  flex-direction: column;
  /* margin: auto; */
  gap: 2.4rem;
  margin-top: 3.2rem;
  font-family: 'Playfair Display', serif;
}

.social-link {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.footer-logo {
  display: block;
  width: 25rem;
  margin-bottom: 4.8rem;
}

.icon {
  width: 2.2rem;
  height: 2.2rem;
}

.address-column {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 2.4rem;
  font-family: 'Playfair Display', serif;
}

.address {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.link-1:link,
.link-1:visited {
  text-decoration: none;
  color: #16140e;
  font-size: 1.6rem;
}

.link-1:active,
.link-1:hover {
  text-decoration: underline;
}

.navigation-column {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 0;
  gap: 2.4rem;
  font-family: 'Playfair Display', serif;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
}

.link-2:visited,
.link-2:link {
  text-decoration: none;
  color: #16140e;
  font-size: 1.6rem;

  transition: all 1s;
}

.link-2:active,
.link-2:hover {
  text-decoration: underline;
}

/******************MOBILE NAVIGATION******************/
/*****************************************************/
.open-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.hidden-nav {
  display: none;
}

.close-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
}

.social-icon-hidden {
  width: 2.8rem;
  height: 2.8rem;
  fill: #f0e2c8;
}

/***********************WEDDINGS***********************/
/*****************************************************/
.weddings {
  display: flex;
}

.wedding-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/flower.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.wedding-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.wedding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.wedding-text-1-box,
.wedding-text-2-box,
.wedding-text-3-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.para-wedding {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.heart-icon {
  width: 4.8rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.heart-icon {
  font-size: 48px;
  animation: bounce 1s infinite;
}

.click-here-btn,
.click-here-btn:link,
.click-here-btn:visited {
  display: inline-block;
  padding: 0.8rem;
  font-family: 'Playfair Display', serif;
  background-color: #f3e8d3;
  color: #16140e;
  border: none;
  font-style: italic;

  font-size: 1.6rem;

  transition: all 0.5s;
}

.click-here-btn:hover,
.click-here-btn:active {
  cursor: pointer;
  background-color: #ead6b2;
  color: #716349;
}

.wedding-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-img-3-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}
/***********************SPECIAL OCCASIONS***********************/
/***************************************************************/
.special-occasion {
  display: flex;
}

.special-occasion-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/party.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.special-occasion-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.special-occasion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.special-occasion-text-1-box,
.special-occasion-text-2-box,
.special-occasion-text-3-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.para-special-occasion {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.click-here-btn,
.click-here-btn:link,
.click-here-btn:visited {
  display: inline-block;
  padding: 0.8rem;
  font-family: 'Playfair Display', serif;
  background-color: #f3e8d3;
  color: #16140e;
  border: none;
  font-style: italic;

  font-size: 1.6rem;

  transition: all 0.5s;
}

.click-here-btn:hover,
.click-here-btn:active {
  cursor: pointer;
  background-color: #ead6b2;
  color: #716349;
}

.special-occasion-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-occasion-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-occasion-img-3-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}

/***********************FESTIVALS***********************/
/*******************************************************/

.festivals {
  display: flex;
}

.festival-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/holy.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.festival-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.festival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.para-festival {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.festival-text-1-box,
.festival-text-2-box,
.festival-text-3-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.festival-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.festival-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.festival-img-3-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}
/***********************CORPORATE EVENTS***********************/
/**************************************************************/

.corporate-event {
  display: flex;
}

.corporate-event-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/toast.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.corporate-events-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.corporate-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid;
}

.para-corporate-event {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.corporate-event-text-1-box,
.corporate-event-text-2-box,
.corporate-event-text-3-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.list-bold {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #495a7a;
}

.corp-list {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  list-style: none;
}

.hyp::before {
  content: '-';
  margin-right: 1.6rem;
}

.equipment-list:link,
.equipment-list:visited {
  text-decoration: underline;
  color: #716349;
}

.equipment-list:active,
.equipment-list:hover {
  text-decoration: none;
  color: #393225;
}

.corporate-event-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-event-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-event-img-3-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}
/**************************LIGHTING*****************************/
/**************************************************************/

.lighting {
  display: flex;
}

.lighting-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/lighting.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.lighting-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.lighting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.para-lighting {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.link-5:link,
.link-5:visited {
  text-decoration: underline;
  color: #716349;
}

.link-5:active,
.link-5:hover {
  text-decoration: none;
  color: #393225;
}

.lighting-text-1-box,
.lighting-text-2-box,
.lighting-text-3-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.lighting-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lighting-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lighting-img-3-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}

/**************************FURNITURE*****************************/
/**************************************************************/

.furniture {
  display: flex;
}

.furniture-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/furniture.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.furniture-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.furniture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.para-furniture {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.furniture-text-1-box,
.furniture-text-2-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.furniture-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.furniture-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}

/**************************Decorations*****************************/
/**************************************************************/

.decorations {
  display: flex;
}

.decorations-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/decoration.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.decorations-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.decoration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 9.6rem;
  row-gap: 2.4rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.para-decoration {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.decoration-text-1-box,
.decoration-text-2-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 1.6rem;
}

.decoration-img-1-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-img-2-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}

/**************************HEATING*****************************/
/**************************************************************/

.heating {
  display: flex;
}

.heating-2-box {
  display: grid;
  place-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-size: cover;
  background-image: url(img/heating.webp);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border: 1px solid #1b3159;
}

.title-2-box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
}

.heating-2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #f9f3e9;
  text-decoration: none;
  padding: 1.6rem;
  font-weight: lighter;
}

.heating-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 4.8rem;
  margin: 0 9.6rem;
  margin-top: 4.8rem;
  padding: 6.4rem 0;
  border-top: 1px solid #1b3159;
  border-bottom: 1px solid #1b3159;
}

.para-heating {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #16140e;
}

.heating-text-1-box,
.heating-text-2-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 2.4rem;
}

.img-one {
  width: 80%;
  object-fit: cover;
  opacity: 85%;
  border: 1px solid #1b3159;
  padding: 1.2rem;
}
