.two-column-section {
  display: flex;
  padding: 20px;
  box-sizing: border-box;
  width: 90%;
  margin: 0 auto;
}

.left-side {
  flex: 1;
  padding: 20px;
  background-color: black;
  color: white;
  position: relative;
  overflow: hidden;
  /* Ensure the background word is clipped */
}

.background-word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 10em;
  /* Adjust size as needed */
  color: transparent;
  /* Make the fill color transparent */
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
  /* Ensure it is behind other content */
}

.background-word span {
  display: inline-block;
  vertical-align: middle;
}

.section-heading {
  font-size: 4rem;
  ;
  margin-top: 0;
  position: relative;
  z-index: 1;
  /* Ensure it appears above the background word */
}

.section-paragraph {
  position: relative;
  z-index: 1;
  /* Ensure it appears above the background word */
}

.list {
  padding-left: 20px;
  list-style-type: disc;
  position: relative;
  z-index: 1;
  /* Ensure it appears above the background word */
}

.list-item {
  margin-bottom: 10px;
}

.right-side {
  flex: 1;
}

.image-row {
  display: flex;
}

.image-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.image-container:hover .overlay {
  opacity: 1;
}

.overlay-heading {
  margin-top: 0;
}

.overlay-paragraph {
  margin: 0;
}

.outline-white {
  color: white;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.section-heading {
  font: normal 700 3.4rem / 1 "Montserrat", sans-serif;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
}

.section-heading small {
  display: block;
  font: normal 500 1.4rem / 1.2 "Montserrat", sans-serif;
  margin-top: 2.4rem;
}

.section-paragraph {
  font: normal 300 1.2rem / 1.4 "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 25px;
}

.list-heading {
  font-size: 1.3rem;
}

.list-item {
  display: flex;
  align-items: center;
}


/*image right sidebar*/
.right-side {
  flex: 1;
  position: relative;
}

.image-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 42vh;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Background color */
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  /* Ensure contents are clipped */
}

.overlay-heading,
.overlay-paragraph {
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  /* Initial background color for heading and paragraph */
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  /* Ensure background transition effect is contained */
  transform: translateY(100%);
  /* Start background from below */
  transition: transform 0.5s ease;
  /* Smooth transition */
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover .overlay-heading,
.image-container:hover .overlay-paragraph {
  transform: translateY(0);
  /* Move background into view on hover */
}


.overlay-heading {
  margin: 0;
  background-color: black;
  /* Black background for heading */
  padding: 10px;
  border-radius: 5px;
  font-size: 15px;
  position: absolute;
  /* Position at the top */
  top: 10px;
  width: calc(100% - 50px);
  /* Width adjustment to fit padding */
}

.overlay-paragraph {
  margin: 0;
  background-color: black;
  /* Black background for paragraph */
  padding: 10px;
  border-radius: 5px;
  font-size: 10px;
  position: absolute;
  /* Position at the bottom */
  bottom: 10px;
  width: calc(100% - 50px);
  /* Width adjustment to fit padding */
}

/**/
.inner__info,
.inner__media {
  position: relative;
}

@media only screen and (min-width: 1200px) {

  .inner__info,
  .inner__media {
    height: 100%;
  }
}

.media-container {
  position: relative;
  overflow: hidden;
  height: 568px;
  min-height: 568px;
}

.media-container.portfolio-container {
  height: auto;
}

@media only screen and (min-width: 768px) {
  .media-container {
    height: 760px;
  }

  .media-container.portfolio-container {
    height: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .media-container {
    height: 100%;
  }

  .media-container.portfolio-container {
    height: 100%;
  }
}

.inner .media-container {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.inner .media-container {
  opacity: 1;
  overflow: hidden;
}

.inner .media-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050505;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out, -moz-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, -moz-transform 0.5s ease-in-out;
  z-index: 2;
}

.inner.animate-in .media-container {
  opacity: 1;
  -webkit-transition-delay: 2s;
  -moz-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}

.inner.animate-in .media-container {
  opacity: 1;
}

.inner.animate-in .media-container::after {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.my-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.my-gallery figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  z-index: 1;
}

.my-gallery figure figcaption .works-description__caption {
  position: absolute;
  top: 2rem;
  left: 2rem;
  text-transform: uppercase;
  color: white;
  background-color: #050505;
  padding: 0.4rem 0.8rem;
}

.my-gallery figure figcaption .works-description__caption span {
  font: normal 500 1.2rem/1.2 "Montserrat", sans-serif;
}

.my-gallery figure figcaption h4 {
  display: block;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: -moz-calc(100% - 4rem);
  width: calc(100% - 4rem);
}

.my-gallery figure figcaption h4 span {
  display: inline-block;
  font: normal 700 1.6rem/1.2 "Montserrat", sans-serif;
  text-transform: uppercase;
  color: white;
  background-color: #050505;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.5rem;
}

.my-gallery figure figcaption h4 small {
  display: inline-block;
  font: normal 500 1.2rem/1.2 "Montserrat", sans-serif;
  text-transform: uppercase;
  color: white;
  background-color: #050505;
  padding: 0.4rem 0.8rem;
}

.my-gallery figure figcaption p {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .my-gallery figure {
    height: 50vh;
    background-color: #ffffff;
  }

  .my-gallery figure figcaption .works-description__caption {
    background-color: transparent;
    overflow: hidden;
  }

  .my-gallery figure figcaption .works-description__caption::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s 0.1s ease-in-out;
    transition: -webkit-transform 0.3s 0.1s ease-in-out;
    -o-transition: transform 0.3s 0.1s ease-in-out;
    -moz-transition: transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
    transition: transform 0.3s 0.1s ease-in-out;
    transition: transform 0.3s 0.1s ease-in-out, -webkit-transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  }

  .my-gallery figure figcaption .works-description__caption span {
    display: block;
    position: relative;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .my-gallery figure figcaption h4 span {
    position: relative;
    background-color: transparent;
    overflow: hidden;
  }

  .my-gallery figure figcaption h4 span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 0;
    -webkit-transform: translateY(102%);
    -moz-transform: translateY(102%);
    -ms-transform: translateY(102%);
    transform: translateY(102%);
    -webkit-transition: -webkit-transform 0.3s 0.1s ease-in-out;
    transition: -webkit-transform 0.3s 0.1s ease-in-out;
    -o-transition: transform 0.3s 0.1s ease-in-out;
    -moz-transition: transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
    transition: transform 0.3s 0.1s ease-in-out;
    transition: transform 0.3s 0.1s ease-in-out, -webkit-transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  }

  .my-gallery figure figcaption h4 span strong {
    display: block;
    position: relative;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .my-gallery figure figcaption h4 small {
    position: relative;
    background-color: transparent;
    overflow: hidden;
  }

  .my-gallery figure figcaption h4 small::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 0;
    -webkit-transform: translateY(101%);
    -moz-transform: translateY(101%);
    -ms-transform: translateY(101%);
    transform: translateY(101%);
    -webkit-transition: -webkit-transform 0.3s 0.1s ease-in-out;
    transition: -webkit-transform 0.3s 0.1s ease-in-out;
    -o-transition: transform 0.3s 0.1s ease-in-out;
    -moz-transition: transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
    transition: transform 0.3s 0.1s ease-in-out;
    transition: transform 0.3s 0.1s ease-in-out, -webkit-transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  }

  .my-gallery figure figcaption h4 small em {
    display: block;
    position: relative;
    background-color: transparent;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .my-gallery figure img {
    width: auto;
    height: 50vh;
  }

  .my-gallery figure .works-image {
    opacity: 0;
  }

  .my-gallery figure .works-link {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
  }

  .my-gallery figure .works-link .picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-transition: background-position 0.5s;
    -o-transition: background-position 0.5s;
    -moz-transition: background-position 0.5s;
    transition: background-position 0.5s;
    -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.7s;
    transition: opacity 0.5s ease-in-out, -webkit-transform 0.7s;
    -o-transition: transform 0.7s, opacity 0.5s ease-in-out;
    -moz-transition: transform 0.7s, opacity 0.5s ease-in-out, -moz-transform 0.7s;
    transition: transform 0.7s, opacity 0.5s ease-in-out;
    transition: transform 0.7s, opacity 0.5s ease-in-out, -webkit-transform 0.7s, -moz-transform 0.7s;
  }
}

@media only screen and (min-width: 1400px) {
  .my-gallery figure figcaption .works-description__caption {
    font-size: 1.4rem;
  }

  .my-gallery figure figcaption h4 small {
    font-size: 1.4rem;
  }
}

.no-touch .my-gallery figure:hover figcaption .works-description__caption::before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}

.no-touch .my-gallery figure:hover figcaption .works-description__caption span {
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.1s ease-in-out;
  -o-transition: opacity 0.3s 0.1s ease-in-out;
  -moz-transition: opacity 0.3s 0.1s ease-in-out;
  transition: opacity 0.3s 0.1s ease-in-out;
}

.no-touch .my-gallery figure:hover figcaption h4 span::before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}

.no-touch .my-gallery figure:hover figcaption h4 span strong {
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.1s ease-in-out;
  -o-transition: opacity 0.3s 0.1s ease-in-out;
  -moz-transition: opacity 0.3s 0.1s ease-in-out;
  transition: opacity 0.3s 0.1s ease-in-out;
}

.no-touch .my-gallery figure:hover figcaption h4 small::before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}

.no-touch .my-gallery figure:hover figcaption h4 small em {
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.1s ease-in-out;
  -o-transition: opacity 0.3s 0.1s ease-in-out;
  -moz-transition: opacity 0.3s 0.1s ease-in-out;
  transition: opacity 0.3s 0.1s ease-in-out;
}

.no-touch .my-gallery figure:hover .works-link .picture {
  -webkit-transform: scale3d(1.06, 1.06, 1);
  -moz-transform: scale3d(1.06, 1.06, 1);
  transform: scale3d(1.06, 1.06, 1);
  opacity: 0.2;
}

.my-gallery figure .works-image {
  opacity: 0;
}


/*slider section*/


.body-section {
  height: 100vh;
  display: grid;
  place-marriage-items: center;
  background-color: black;
  overflow: hidden;
  margin-bottom: 40px;
}

.main-slider-image {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.marriage-item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;

  &:nth-child(1),
  &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) {
    left: 50%;
  }

  &:nth-child(4) {
    left: calc(50% + 220px);
  }

  &:nth-child(5) {
    left: calc(50% + 440px);
  }

  &:nth-child(6) {
    left: calc(50% + 660px);
    opacity: 0;
  }
}

.marriage-content {
  width: min(30vw, 400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica, sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;

  & .marriage-title {
    text-transform: uppercase;
    width: 100%;
    margin: 0;
    color: var(--color-title);
    text-transform: lowercase;
    letter-spacing: -0.05em;
    text-indent: -0.05em;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
  }

  & .marriage-description {
    margin: 1rem 0 1.5rem;
    font-size: 2rem;
    font-size: 1.7rem;
    line-height: 1.6;
    color: white;
  }

  & button {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
}

.marriage-item:nth-of-type(2) .marriage-content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.marriage-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;

  & .btn-mrg {
    font-size:20px;
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 0 0.25rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }
  }
}

@media (width > 650px) and (width < 900px) {
  .marriage-content {
    & .marriage-title {
      font-size: 2.5rem;
    }

    & .marriage-description {
      font-size: 1.5rem;
    }

    & button {
      font-size: 0.7rem;
    }
  }

  .marriage-item {
    width: 160px;
    height: 270px;

    &:nth-child(3) {
      left: 50%;
    }

    &:nth-child(4) {
      left: calc(50% + 170px);
    }

    &:nth-child(5) {
      left: calc(50% + 340px);
    }

    &:nth-child(6) {
      left: calc(50% + 510px);
      opacity: 0;
    }
  }
}

@media (width < 650px) {
  .marriage-content {
    & .marriage-title {
      font-size: 1.5rem;
    }

    & .marriage-description {
      font-size: 0.90rem;
    }

    & button {
      font-size: 0.7rem;
    }
  }

  .marriage-item {
    width: 130px;
    height: 220px;

    &:nth-child(3) {
      left: 50%;
    }

    &:nth-child(4) {
      left: calc(50% + 140px);
    }

    &:nth-child(5) {
      left: calc(50% + 280px);
    }

    &:nth-child(6) {
      left: calc(50% + 420px);
      opacity: 0;
    }
  }
}

/**/

.card-marriage-design {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom:40px
}
@media(max-width:600px){
  .card-marriage-design {
    padding: 2rem 0rem;
  }
}

.cyan {
  border-top: 5px solid hsl(180, 62%, 55%); 
  grid-area: 1 / 1 / 3 / 2;
}

.red {
  border-top: 5px solid hsl(0, 78%, 62%);
}

.orange {
  border-top: 5px solid  hsl(34, 97%, 64%);
}

.blue {
  border-top: 5px solid  hsl(212, 86%, 64%);
  grid-area: 1 / 3 / 3 / 4;
}

.header-marriage {
  text-align: center;
  color: hsl(229, 6%, 66%);
  font-size: 15px;
  font-weight: 400;
}


.header_title {
  width: 100%;
  font-size: 5rem;
	margin: 0;
	color: var(--color-title);
	text-transform: lowercase;
	letter-spacing: -0.05em;
	text-indent: -0.05em;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}


.header_title,
.card_title {
  color: hsl(234, 12%, 34%);
}

.header_description {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.7rem;
  line-height: 1.6;
  color: white;
}
@media(max-width:1200px){
  .header_description {
    color:white;
  }
}

.card_grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.card-dd {
  /* max-width: 320px; */
  margin: 0 auto;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
  background-color: rgb(255 255 255 / 76%);
}

.card_title {
  margin-bottom: 1rem;
  width: 100%;
  font-size: 3.5rem;
	text-transform: lowercase;
	letter-spacing: -0.05em;
	text-indent: -0.05em;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

.card_content {
  margin-bottom: 0.1rem;
  font-size: 1.6rem;
  color:black;
}

.card_img {
  margin-left: auto;
  display: block;
  width:25%;
}

@media (max-width: 768px) {
  .card_grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    align-items: stretch;
  }

  .cyan {
    grid-area: auto;
  }

  .blue {
    grid-area: auto;
  }

  .card-dd {
    max-width: 300px;
  }
}

@media screen and (max-width: 500px) {
  .card_grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

.header_title {
  width: 100%;
	margin: 0;
	color: var(--color-title);
	text-transform: lowercase;
	letter-spacing: -0.05em;
	text-indent: -0.05em;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 5rem;
}

@media (max-width:1024px){
  .header_title {
    width: 100%;
	margin: 0;
	color: var(--color-title);
	text-transform: lowercase;
	letter-spacing: -0.05em;
	text-indent: -0.05em;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
  font-size: 5rem;
}
}




/* 

Kamal's css

*/
.media__body {
  display: block;
  overflow: hidden;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.media {
  display: block;
  position: relative;
}

.media:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.media__img {
  display: block;
}

.media__img>img {
  display: block;
}

.media__img--slide {
  position: relative;
}

.media__img--slide .slick__wrap-content {
  position: relative;
}

.media__img--slide .slick__dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.media__img--slide .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.media__img--slide .slick-next {
  right: 20px;
}

.media__img--slide .slick-prev {
  left: 20px;
}

.media__img--zoom {
  overflow: hidden;
}

.media__img--zoom>img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.media__img--zoom>img:hover {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.media__body {
  display: block;
  overflow: hidden;
}

.media__title {
  margin-bottom: 0;
}

.media__text {
  margin-bottom: 0;
}

.media__link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.media__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.media__video {
  position: relative;
}

.media__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.media__quote-info {
  font-size: 15px;
  color: #808080;
  display: block;
}

.media__quote-text {
  margin-bottom: 15px;
}

/* Media Beside */
.media--beside>.media__img {
  float: left;
}

.media--beside-reverse>.media__img {
  float: right;
}

/* Color text white on black background*/
.media--reverse .media__avatar,
.media--reverse .media__title,
.media--reverse .media__label,
.media--reverse .media__tag {
  color: #fff;
}

.media--reverse .media__avatar a,
.media--reverse .media__title a,
.media--reverse .media__label a,
.media--reverse .media__tag a {
  color: #fff;
}

/* ==========================================================================
#TITLE
========================================================================== */
.title-sub {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 400;
}

.title-sub--c8 {
  color: #888;
}

.title-sub--ceb {
  color: #ebebeb;
}

.title-1 {
  font-weight: 700;
  font-size: 38px;
  color: #222;
  line-height: -webkit-calc(50/38);
  line-height: -moz-calc(50/38);
  line-height: calc(50/38);
}

.title-2 {
  font-size: 700;
  font-size: 48px;
  color: #222;
  line-height: -webkit-calc(60/48);
  line-height: -moz-calc(60/48);
  line-height: calc(60/48);
}

.title-3 {
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  color: #222;
  line-height: 1.2;
}

.title-4 {
  font-size: 25px;
  line-height: -webkit-calc(48/25);
  line-height: -moz-calc(48/25);
  line-height: calc(48/25);
  color: #fff;
}

@media (max-width: 991px) {
  .title-4 {
    line-height: 1.2;
    font-size: 22px;
  }
}

.title-5 {
  font-size: 18px;
  color: #222;
  font-weight: 400;
  text-transform: uppercase;
}

.title-6 {
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
}

.title-7 {
  font-size: 25px;
  font-weight: 700;
  text-transform: inherit;
  color: #222222;
}

.title--sm a {
  font-weight: 700;
  font-size: 18px;
  color: #222;
  text-transform: uppercase;
}

.title--sm a:hover {
  color: #666;
}

.title--sm2 {
  font-weight: 700;
  font-size: 18px;
  color: #222;
  text-transform: uppercase;
}

.title--sm3 a {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
}

.title--sm3:hover {
  color: #ebebeb;
}

.title--light {
  color: #ffffff;
}

.title-sub--sm {
  font-size: 11px;
  color: #888;
}

.title-number {
  position: relative;
  text-align: center;
}

.title-number .title {
  position: relative;
  z-index: 9;
}

.title-number .number {
  font-size: 72px;
  color: #ebebeb;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.media-project-3 .media__text {
  margin-bottom: 50px;
}

.media__text {
  margin-bottom: 0;
}

.wrap--w1790 {
  max-width: 1790px;
}

.media-project-3 {
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.media-project-3.right .media__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.media-project-3.right .add,
.media-project-3.right .year {
  right: auto;
  left: 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.media-project-3.right .media__content {
  padding-left: 0;
  padding-right: 80px;
  text-align: right;
}

.media-project-3.right .pointer {
  left: auto;
  right: -63px;
}

.media-project-3.right .pointer:before {
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: -9px;
}

.media-project-3 .media__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  .media-project-3 .media__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.media-project-3 .media__content {
  padding-left: 80px;
  max-width: 600px !important;
  position: relative;
}

@media (max-width: 1199px) {
  .media-project-3 .media__content {
    padding-left: 30px;
  }
}

.media-project-3 .media__img {
  width: 685px;
  overflow: hidden;
}

.media-project-3 .media__img > a {
  display: block;
  overflow: hidden;
}

.media-project-3 .media__img img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.media-project-3 .media__img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.media-project-3 .media__img a {
  display: block;
}

.media-project-3 .add,
.media-project-3 .year {
  text-transform: uppercase;
  color: #888;
  position: absolute;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  right: 0;
  letter-spacing: 0.2em;
}

.media-project-3 .add {
  top: 0;
}

.media-project-3 .year {
  bottom: 0;
}

.media-project-3 .title-sub {
  margin-bottom: 13px;
}

.media-project-3 .title-3 {
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .media-project-3 .title-3 {
    font-size: 38px;
  }
}

.media-project-3 .media__text {
  margin-bottom: 50px;
}

.media-project-3 .pointer {
  width: 115px;
  height: 1px;
  background: #222;
  position: absolute;
  left: -63px;
  top: 63px;
  z-index: 9;
}

.media-project-3 .pointer:before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #222;
  background: transparent;
  left: 0px;
  top: 50%;
  margin-top: -4.5px;
  margin-left: -9px;
}

@media (max-width: 1199px) {
  .media-project-3 .pointer {
    width: 82px;
  }
}

@media (max-width: 991px) {
  .media-project-3 {
    overflow: visible;
  }
  .media-project-3 .media__content {
    width: 100%;
    max-width: 100%;
  }
  .media-project-3 .media__body {
    visibility: visible;
    overflow: visible;
  }
  .media-project-3 .media__content {
    padding-left: 0;
    padding-top: 40px;
  }
  .media-project-3 .media__img {
    width: 100%;
  }
  .media-project-3 .add,
  .media-project-3 .year {
    right: auto;
    top: -35px;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  .media-project-3 .add {
    left: 0;
  }
  .media-project-3 .year {
    right: 0;
    bottom: auto;
  }
  .media-project-3 .pointer {
    display: none;
  }
  .media-project-3.right .media__content {
    width: 100%;
    max-width: 100%;
  }
  .media-project-3.right .media__body {
    overflow: visible;
    display: block;
  }
  .media-project-3.right .media__content {
    padding-top: 40px;
  }
  .media-project-3.right .media__img {
    width: 100%;
  }
  .media-project-3.right .add,
  .media-project-3.right .year {
    right: auto;
    top: -35px;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  .media-project-3.right .add {
    right: 0;
    left: auto;
  }
  .media-project-3.right .year {
    left: 0;
    bottom: auto;
  }
}


.media__img {
  display: block;
}

.media__img > img {
  display: block;
}

.media__img--slide {
  position: relative;
}

.media__img--slide .slick__wrap-content {
  position: relative;
}

.media__img--slide .slick__dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.media__img--slide .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.media__img--slide .slick-next {
  right: 20px;
}

.media__img--slide .slick-prev {
  left: 20px;
}

.media__img--zoom {
  overflow: hidden;
}

.media__img--zoom > img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.media__img--zoom > img:hover {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.media__img {
  display: block;
}

.media__img > img {
  display: block;
}

.media__img--slide {
  position: relative;
}

.media__img--slide .slick__wrap-content {
  position: relative;
}

.media__img--slide .slick__dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.media__img--slide .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.media__img--slide .slick-next {
  right: 20px;
}

.media__img--slide .slick-prev {
  left: 20px;
}

.media__img--zoom {
  overflow: hidden;
}

.media__img--zoom > img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.media__img--zoom > img:hover {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/*CTA SECTION*/
.image-CTA-div img{
  width:100%;
  border:10px solid white;
}

.image-CTA-div {
  position: relative;
  overflow: hidden; 
}

.arch-top {
  display: block;
  width: 100%; 
  height: auto; 
  border-top-left-radius: 50% 35%; 
  border-top-right-radius: 50% 35%; 
  border-bottom: 1px solid #ccc; 
}

.cta-section {
  background-color: #5f5639;
  position: relative;
  display: flex;
  justify-content: center;
  padding:50px 0px;
}

.cta-content {
  border-top: 4px solid rgb(202 164 143); 
  border-bottom: 4px solid rgb(202 164 143); 
  padding: 50px 0px;
  margin: 0 auto;
  width:90% ;
  display: flex;
  align-items: center;
}

.cta-button {
  font-size: 1.5rem;
  color: white;
  border: 1px solid white;
  padding: 5px 10px;
}

.cta-button:hover {
  color: rgb(252, 198, 28); 
  transform: scale(1.05); 
  text-decoration: none;
}

.siderow-marriage-cta h5{
  color:white;
}

.siderow-marriage-cta h2{
  color:white;
}

.siderow-marriage-cta p{
  font-size:1.7rem;
  padding:15px 0px;
  color:white;
  line-height: 1.6;
}
@media(max-width:800px){
  .rightside-cta{
    padding-top:30px;
  }
  .image-CTA-div{
    padding-top:30px;
  }
}

/*Footer start*/
.footer-marraige {
  background-color: #000; 
  color: #fff; 
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  max-width: 130px;
}

.footer-menu {
  margin-bottom: 20px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
}

.footer-menu ul li {
  margin: 0 15px; 
}

.footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  transition: color 0.3s;
}

.footer-menu ul li a:hover {
  color: rgb(252, 198, 28); 
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1.3rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-menu ul {
    flex-direction: row;
    justify-content: center; 
  }

}

@media (max-width: 600px) {
  .footer-logo img {
    max-width: 120px; 
  }

  .footer-menu ul li {
    flex: 1 1 100%; 
    margin: 10px 0; 
  }

  .footer-menu ul li a {
    font-size: 1rem; 
  }
}

/*Footer end*/

/*gallery marriage start*/
.left-right-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 20px;
}
@media(max-width:600px){
  .left-right-section {
    padding: 0px 0px;
  }
}

.left-content {
  flex: 1;
  max-width: 40%; 
  padding: 20px;
}



.left-content p {
  font-size: 1.7rem;
  line-height: 1.6;
  color: white; 
  margin-bottom: 20px;
}

.gallery-marriage {
  flex: 2;
  max-width: 60%;
  padding: 20px;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333; 
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.gallery-item:hover {
  transform: scale(1.05); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
}


@media (max-width: 768px) {
  .left-content, .gallery-marriage {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
/*gallery marriage end*/

