/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/

:root {
  --primary-color: #fa7d09;
  --primary-hover-color: #ffa550;
  --secondary-color: #4a4a4a;
  --background-color: #f8f7ff;
  --white-color: white;
  --dropdown-hover-background-color: #f8f9fa;
  --navbar-shadow-color: rgba(0, 0, 0, 0.1);
  --navbar-scroll-color: #e2e0ea;
  --orange-color: #fa7d09;
}

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

.job-navbar {
  background-color: var(--background-color);
  /* padding: 15px 0; */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999 !important;
  transition: all 0.5s ease;
}

.job-navbar.scrolled {
  background-color: var(--navbar-scroll-color);
  box-shadow: 0 2px 10px var(--navbar-shadow-color);
}

.job-navbar .navbar-brand img {
  height: 80px;
  width: auto;
}

.job-navbar .navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem !important;
  position: relative;
}

.job-navbar .navbar-nav .nav-link i {
  font-size: 10px;
}

.job-navbar .navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Dropdown styles */
.job-navbar .dropdown-menu {
  display: none;
  background-color: var(--white-color);
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px var(--navbar-shadow-color);
  margin-top: 0;
}

.job-navbar .dropdown:hover .dropdown-menu {
  display: block;
}

.job-navbar .dropdown-item {
  color: var(--secondary-color);
  padding: 8px 16px;
}

.job-navbar .dropdown-item:hover {
  background-color: var(--dropdown-hover-background-color);
  color: var(--primary-color);
}

/* Auth buttons */
.job-navbar .sign-in {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 40px;
  transition: color 0.3s ease;
  border: 1px solid var(--primary-color);
}

.job-navbar .sign-in:hover {
  color: var(--primary-color);
}

.job-navbar .register {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
}

.job-navbar .register:hover {
  background-color: var(--primary-hover-color);
  color: var(--white-color);
}

/* Mobile menu */
@media (max-width: 991.98px) {
  .job-navbar .navbar-collapse {
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px var(--navbar-shadow-color);
  }

  .job-navbar .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .job-navbar .navbar-nav .nav-item {
    padding: 0.5rem 0;
  }

  .job-navbar .auth-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 1rem 0;
  }

  .job-navbar .sign-in {
    display: block;
    text-align: center;
  }

  .job-navbar .register {
    display: block;
    text-align: center;
  }
}




.arrow_left-1 {
  height: 1.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  width: 1.5rem;
  object-fit: contain;
}

.content__gallery__image {
  height: 20.63rem;
  object-fit: cover;
  border-radius: var(--radius-xs);
}

.columnadventure__title {
  color: var(--black_900) !important;
  line-height: 4.81rem;
}

.city-profile {
  gap: var(--space-xs);
  display: flex;
  background-color: var(--white_a700);
  box-shadow: var(--shadow-xs);
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 2.38rem var(--space-7xl);
  border-radius: var(--radius-md);
  @media only screen and (max-width: 550px) {
    padding: var(--space-3xl);
  }
}


.city-profile__image {
  height: 8.5rem;
  width: 44%;
  object-fit: contain;
}

.celebrationprofile {
  background-color: var(--white_a700);
  box-shadow: var(--shadow-xs);
  width: 100%;
  display: flex;
  padding: 2.63rem var(--space-md);
  border-radius: var(--radius-sm);
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.celebrationprofile__content {
  width: 100%;
  display: flex;
  align-items: center;
}


.celebrationprofile__icon {
  height: 4.63rem;
  width: 30%;
  object-fit: contain;
}

.celebrationprofile__details {
  gap: var(--space-sm);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.content__title {
  color: var(--black_900) !important;
}

.celebrationprofile__description {
  line-height: 1.19rem;
}

.film-industry-profile {
  gap: var(--space-6xl);
  display: flex;
  background-color: var(--white_a700);
  width: 32%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xs);

  padding: 2.25rem var(--space-4xl);
  border-radius: var(--radius-sm);
  /* &:hover {
    box-shadow: var(--shadow-xs);
  } */

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-3xl);
  }
}

.film-industry-profile__image {
  height: 20.5rem;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.swiper{
  height: 600px;
  padding: 40px 0px !important;
}

.swiper2{
  height: 450px;
  padding: 40px 0px !important;
}

.swiper-pagination-bullet {
  background: var(--orange_700) !important;
  width: 12px !important;
  height: 12px !important;
  top: 200px !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: 0px !important;
}

.film-industry-profile__title {
  color: var(--black_900) !important;
  margin-top: 2rem;
}

.cuisine-profile {
  background-color: var(--white_a700);
  box-shadow: var(--shadow-sm);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.38rem var(--space-7xl);
  border-radius: var(--radius-md);
  @media only screen and (max-width: 550px) {
    padding: var(--space-3xl);
  }
}

.cuisine-profile__image {
  height: 5rem;
  margin-top: 1.75rem;
  width: 28%;
  object-fit: contain;
}

.cuisine-profile__title {
  color: var(--black_900) !important;
  margin-top: 2rem;
}

.city-profile__description {
  text-align: center;
  line-height: 1.19rem;
}

.user-profile-image {
  width: 24%;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.user-profile-image__image {
  height: 20.88rem;
  object-fit: cover;
}

.footer__links-list-2 {
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0px !important;

}

.footer__links-list {
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0px !important;
}

.footer__social-icon--instagram {
  height: 1.5rem;
}
.footer__social-icon i{
  font-size: 20px;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer__social-icon:hover i{
  color: var(--orange_700) !important;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/

.newscreenbody {
  margin-top: 3.63rem;
}

.column_two {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content__section {
  padding-left: var(--space-xs);
  padding-right: var(--space-xs);
}

.content__section--intro {
  gap: var(--space-xl);
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.content__text-box {
  margin-bottom: 6.5rem;
  gap: var(--space-7xl);
  align-self: flex-end;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.content__text-box--primary {
  gap: var(--space-3xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
}

.content__text-box__line {
  gap: var(--space-md);
  align-self: stretch;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.content__text-box__line--highlight {
  height: 0.25rem;
  margin-bottom: 1rem;
  align-self: flex-end;
  background-color: var(--orange_700);
  width: 8%;
  @media only screen and (max-width: 550px) {
    margin-bottom: 0px;
  }
}

.content__text-box__subtitle {
  color: var(--black_900) !important;
  line-height: 5.06rem;
}

.content__text-box__subtitle-span {
  color: var(--black_900);
}

.content__text-box__subtitle-span-1 {
  color: var(--orange_700);
}

.content__text-box__button {
  color: var(--white_a700) !important;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  background-color: var(--orange_700) !important;
  height: 3.88rem;
  transition: 0.3s;
  min-width: 12.13rem;
  border-radius: 10px !important;
}

.content__section--gallery {
  gap: var(--space-3xl);
  display: flex;
  width: 100%;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.content__gallery {
  gap: 2.75rem;
  display: flex;
  width: 46%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content__gallery__image--featured {
  height: 27.13rem;
  width: 52%;
  object-fit: contain;
  border-radius: var(--radius-xs);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content__section--details {
  margin-top: 10rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.content__details__image {
  height: 40.75rem;
  border-bottom-left-radius: var(--radius-sm);
  border-top-left-radius: 200px;
  border-bottom-right-radius: var(--radius-sm);
  width: 44%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content__details {
  gap: 4.38rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    gap: 3.25rem;
  }

  @media only screen and (max-width: 550px) {
    gap: 2.19rem;
  }
}

.content__details__text-box {
  gap: var(--space-6xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-end;
}

.content__details__text-box__description {
  color: var(--black_900) !important;
  margin-right: 0.38rem;
  line-height: 1.5rem;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.content__details__text-box__button {
  color: var(--white_a700) !important;
  margin-left: 7.75rem;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  background-color: var(--orange_700) !important;
  height: 3.88rem;
  min-width: 12.13rem;
  transition: 0.3s;

  border-radius: 10px !important;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}


.content__section--growth {
  margin-top: 3.75rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.content__growth {
  margin-bottom: 7.25rem;
  gap: var(--space-6xl);
  align-self: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.content__growth__text-box {
  gap: var(--space-6xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

.content__growth__text-box__heading {
  color: var(--black_900) !important;
  text-align: right;
  line-height: 4.81rem;
}

.content__growth__text-box__description {
  color: var(--black_900) !important;
  text-align: right;
  line-height: 1.5rem;
}

.content__growth__text-box__button {
  color: var(--white_a700) !important;
  margin-right: 9.25rem;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  background-color: var(--orange_700) !important;
  height: 3.88rem;
  min-width: 15rem;
  transition: 0.3s;
  border-radius: 10px !important;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }
}

.arrow_left-2 {
  height: 1.5rem;
  margin-top: 0.13rem;
  margin-bottom: 0.38rem;
  width: 1.75rem;
  object-fit: contain;
}

.content__growth__image {
  height: 40.75rem;
  border-top-right-radius: 200px;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  width: 44%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.column_three {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0px 150px 0px;
}

.content {
  gap: 5.25rem;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 3.94rem;
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 2.63rem;
  }
}

.content__tourism {
  margin-left: 9.5rem;
  margin-right: 9.5rem;
  gap: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content__grid {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media only screen and (max-width: 550px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.row_four {
  height: 55.13rem;
  margin-top: 8rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;


  background-image: url(../new/img_group_176.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.section {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }
}

.section__content {
  width: 100%;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.section__content__media {
  height: 46.63rem;
  flex: 1;
  position: relative;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    width: 100%;
    flex: unset;
  }
}

.section__content__media__image {
  height: 24.63rem;
  width: 64%;
  position: absolute;
  bottom: 0.06rem;
  right: 10%;
  margin: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--orange_700);
}

.section__content__details {
  width: 66%;
  position: absolute;
  left: 0rem;
  top: 0rem;
  margin: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--orange_700);
}

.section__content__details__info {
  margin-top: 1rem;
  margin-left: 0.88rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.section__content__details__info__row {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.section__content__details__info__image {
  height: 32.5rem;
  align-self: center;
  width: 96%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.section__content__details__info__view {
  height: 0.38rem;
  margin-bottom: 11.25rem;
  background-color: var(--black_900);
  width: 0.75rem;
}

.section__content__details__info__line {
  height: 1.13rem;
  margin-bottom: 10.38rem;
  background-color: var(--black_900);
  width: 0.25rem;
  @media only screen and (max-width: 550px) {
    width: 1.13rem;
    height: 0.25rem;
  }
}

.section__content__details__info__row--secondary {
  width: 8%;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__content__details__info__line--secondary {
  height: 0.88rem;
  background-color: var(--black_900);
  width: 0.19rem;
}

.section__content__details__info__view--secondary {
  height: 0.13rem;
  align-self: flex-end;
  background-color: var(--black_900);
  width: 0.75rem;
}

.section__content__media__image--secondary {
  height: 22rem;
  width: 62%;
  object-fit: contain;
  position: absolute;
  bottom: 1.38rem;
  right: 12%;
  margin: auto;
  border-radius: var(--radius-lg);
}

.section__content__text {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__content__text__heading {
  line-height: 4.81rem;
}

.section__content__text__grid {
  margin-top: 0.88rem;
  align-self: stretch;
}

.section__content__text__grid__container {
  display: grid;
  gap: 1.8rem;
  /* row-gap: 2.25rem; */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  @media only screen and (max-width: 1050px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.section__content__text__button {
  color: var(--white_a700) !important;
  margin-top: 3rem;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  background-color: var(--orange_700) !important;
  height: 3.88rem;
  min-width: 12.13rem;
  border-radius: 10px !important;
}

.column_five {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-1 {
  gap: 3.25rem;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }

  @media only screen and (max-width: 550px) {
    gap: var(--space-6xl);
  }
}

.content__description {
  margin-left: 9.5rem;
  margin-right: 9.5rem;
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content__list {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  gap: var(--space-7xl);
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}































.stackadventurea {
  height: 59.5rem;
  margin-top: 10.13rem;
  background-image: url(../new/img_group_24.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.columnadventure {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  height: max-content;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }
}

.columnadventure__content {
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.columnadventure__grid {
  align-self: center;
  width: 64%;
  display: grid;
  gap: 2.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  @media only screen and (max-width: 1050px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.columnadventure__view {
  height: 18.13rem;
  margin-top: 6.75rem;
  background-color: var(--white_a700);
  width: 18.13rem;
  border-radius: var(--radius-xl);
}

.home__traveler-image {
  height: 42.5rem;
  width: 40%;
  object-fit: contain;
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  margin: auto;
}

.column_six {
  margin-top: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.columnview-more {
  gap: var(--space-8xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 2.06rem;
  }
}

.columnview-more__content {
  margin-left: 8.38rem;
  margin-right: 10.75rem;
  gap: var(--space-lg);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.columnview-more__list {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  gap: var(--space-2xl);
  display: flex;
  align-self: stretch;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.columnview-more__button {
  color: var(--white_a700) !important;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  background-color: var(--black_900) !important;
  height: 3.88rem;
  transition: 0.3s;
  min-width: 12.13rem;
  border-radius: 10px !important;
}

.arrow_left {
  height: 1.5rem;
  margin-top: 0.38rem;
  margin-bottom: 0.13rem;
  width: 1.5rem;
  object-fit: contain;
}

.footer {
  margin-top: 6rem;
  padding-top: var(--space-6xl);
  padding-bottom: var(--space-6xl);
  display: flex;
  background-color: var(--black_900);
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.footer__bottom-section {
  margin-top: 3.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__top-section {
  gap: var(--space-8xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 2.06rem;
  }
}

.footer__logo-row {
  margin-left: 16.13rem;
  margin-right: 16.38rem;
  gap: 2rem;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.footer__logo {
  height: 8.5rem;
  width: 17.88rem;
  object-fit: contain;
}

.footer__newsletter-input {
  color: var(--gray_600) !important;
  margin-bottom: 2.13rem;
  padding-left: var(--space-4xl);
  padding-right: var(--space-md);
  background-color: var(--white_a700) !important;
  height: 3rem;
  border-radius: 10px !important;
}

.warning {
  height: 2.25rem;
  width: 2.5rem;
  object-fit: contain;
}

.footer__links-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.footer__about-column {
  gap: var(--space-4xl);
  display: flex;
  width: 14%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__tourism-column {
  gap: var(--space-4xl);
  align-self: center;
  display: flex;
  width: 18%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__culture-column {
  gap: var(--space-4xl);
  display: flex;
  width: 12%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__stories-column {
  gap: var(--space-4xl);
  display: flex;
  width: 16%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__entertainment-column {
  gap: var(--space-4xl);
  display: flex;
  width: 18%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__communities-column {
  gap: var(--space-4xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__divider {
  height: 0.06rem;
  margin-top: 3.5rem;
  background-color: var(--white_a700);
  align-self: stretch;
  width: 100%;
}

.footer__social-section {
  margin-top: 0.75rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  gap: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
  }
}

.footer__social-row {
  width: 16%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__social-icon--close {
  height: 0.88rem;
}

.footer__social-icon--close:hover{
  fill: red !important;
  cursor: pointer;
}


.btn-orange-hover:hover{
  background: black !important;
}


.btn-black-hover:hover{
  background-color: var(--orange_700) !important;
}
a{
  text-decoration: none !important;
}


.about-us-after::after{
  content: '';
  background: #72c76a;
  display: block;
  width: 100%;
  height: 4px;
}

.tourism-after::after{
  content: '';
  background: #fc4ce5;
  display: block;
  width: 100%;
  height: 4px;
}
.culture-after::after{
  content: '';
  background: #643714;
  display: block;
  width: 100%;
  height: 4px;
}
.stories-after::after{
  content: '';
  background: #0661b0;
  display: block;
  width: 100%;
  height: 4px;
}
.entertainment-after::after{
  content: '';
  background: #2befaf;
  display: block;
  width: 100%;
  height: 4px;
}

.communities-after::after{
  content: '';
  background: #3f386d;
  display: block;
  width: 100%;
  height: 4px;
}


.wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap a {
  color: #fff;
}

.hover-fx {
  font-size: 20px;
  display: inline-block;
  cursor: pointer;
  width: 45px;
  height: 45px;
  margin: 15px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 300ms;
}

.hover-fx:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  box-sizing: content-box;
  box-shadow: 0 0 0 3px #fff;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 300ms;
}

.hover-fx:hover {
  background-color: #fff;
  color: black;
}

.hover-fx:hover:after {
  opacity: 1;
  transform: scale(1.15);
}





/* Matrimonial Section */


.matrimonial-hero-section{
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../new/matrimonial-couple.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.matrimonial-hero-section .content__text-box__subtitle-span{
 padding-bottom: 150px;
}

.matrimonial-form {
  background-color: black;
  color: white;
  padding: 50px 30px;
  border-radius: 10px;
  width: 600px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: -25%;
  right: 0;
  margin: 0 auto;
}
.matrimonial-btn{
  background: var(--orange_700) !important;
  padding: 15px 0px;
  border-radius: 4px;
  transition: 0.3s;
}

.matrimonial-btn-hover:hover{
  background: black !important;
}

.matrimonial-black-btn{
  background: black !important;
  padding: 15px 0px;
  border-radius: 4px;
  transition: 0.3s;
}

.matrimonial-black-btn-hover:hover{
  background: var(--orange_700) !important;
  
}


.matrimonial-white-btn{
  background: white !important;
  padding: 15px 0px;
  border-radius: 4px;
  transition: 0.3s;
}



.matrimonial-form label {
  color: white;
}


.matrimonial-second-hero-section{
  height: 50vh;
  background: #fbf9f9 url('../new/matrmonial-hero-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  background-position: center;
}





.profile-section__name-field {
  gap: var(--space-xs);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

.profile-section__input--email {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  background-color: var(--white_a700) !important;
  align-self: stretch;
  height: 42px;
  border-radius: 10px !important;
}

.user-profile {
  background-color: var(--white_a700);
  box-shadow: var(--shadow-xs);
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px var(--space-xl);
  border-radius: var(--radius-lg);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

.user-profile__image {
  height: 110px;
  width: 40%;
  object-fit: contain;
}

.user-profile__title {
  color: var(--black_900) !important;
  margin-top: 40px;
}

.user-profile__description {
  text-align: center;
  line-height: 19px;
}

.item__image--unlock {
  height: 26px;
}

.title__main {
  color: var(--black_900) !important;
}

.user-profile-3 {
  height: 388px;
  width: 32%;
  position: relative;
  align-content: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    height: auto;
  }
}

.user-profile__image-3 {
  height: 388px;
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.user-profile__details {
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  gap: var(--space-xs);
  background-color: var(--black_900_cc);
  flex: 1;
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 0px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-4xl);
}

.user-profile__date {
  align-self: flex-end;
}

.footer__culture-list {
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__about-list {
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__icon--instagram {
  height: 24px;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.matrimonial {
  background-color: var(--gray_50);
  width: 100%;
}

.column_seven {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.columnheaderlog {
  z-index: 4;
  align-self: stretch;
  position: relative;
}

.header {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  z-index: 5;
  position: relative;
  display: flex;
  background-color: var(--orange_700);
  justify-content: center;
  align-items: center;
}

.header__top {
  padding-left: var(--space-xs);
  padding-right: var(--space-xs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.header__logo {
  height: 98px;
  width: 206px;
  object-fit: contain;
}

.header__navigation {
  width: 76%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.header__menu {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
}

.header__actions {
  gap: 30px;
  display: flex;
  align-items: center;
}

.header__actions-item--register {
  color: var(--black_900) !important;
  padding-left: var(--space-6xl);
  padding-right: var(--space-6xl);
  font-size: 19px;
  background-color: var(--white_a700) !important;
  height: 68px;
  min-width: 274px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.row_two {
  height: 488px;
  margin-top: -40px;
  position: relative;
  background-image: url(../new/img_group_12.png);
  background-size: cover;
  background-repeat: no-repeat;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.row_one {
  padding-top: 126px;
  padding-bottom: 126px;
  background-color: var(--black_900_7f);
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

.matrimonial__row {
  margin-top: 146px;
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.profile-section {
  margin-top: -96px;
  padding-left: 36px;
  padding-right: 36px;
  position: relative;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.profile-section__main-row {
  margin-left: 56px;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
  }
}

.profile-section__image {
  height: 146px;
  margin-bottom: 66px;
  z-index: 3;
  align-self: flex-end;
  width: 16%;
  position: relative;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.profile-section__content-row {
  margin-left: -60px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
    margin-left: 0px;
  }
}

.profile-section__image--small {
  height: 344px;
  z-index: 2;
  width: 36%;
  position: relative;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.profile-section__form {
  margin-left: -356px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    margin-left: 0px;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.profile-section__form-group {
  gap: var(--space-3xl);
  z-index: 1;
  position: relative;
  background-color: var(--black_900);
  width: 100%;
  padding: 32px 40px;
  border-radius: var(--radius-md);
  @media only screen and (max-width: 550px) {
    width: 100%;
    padding: var(--space-4xl);
  }
}

.profile-section__input--name {
  color: var(--black_900) !important;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  font-size: 14px;
  background-color: var(--white_a700) !important;
  align-self: stretch;
  height: 42px;
  border-radius: 10px !important;
}

.profile-section__terms-checkbox {
  color: var(--white_a700);
  font-size: 13px;
  font-weight: 700;
  gap: var(--space-sm);
  display: flex;
}

.profile-section__submit-button {
  color: var(--white_a700) !important;
  padding-left: var(--space-6xl);
  padding-right: var(--space-6xl);
  font-size: 20px;
  background-color: var(--orange_700) !important;
  align-self: stretch;
  height: 52px;
  border-radius: 10px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.profile-section__privacy-row {
  height: 344px;
  margin-bottom: 52px;
  margin-left: -168px;
  align-self: flex-end;
  position: relative;
  background-image: url(../new/img_mask_group.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 74px 32px;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
    margin-left: 0px;
    padding: var(--space-4xl);
  }
}

.profile-section__privacy-view {
  height: 54px;
  margin-top: 138px;
  background-color: var(--white_a700);
  width: 20%;
}

.column_two {
  margin-top: 32px;
  align-self: stretch;
}

.rowunitingpeopl {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--white_a700);
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

.column100verifi {
  margin-bottom: 74px;
  gap: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 550px) {
    gap: 30px;
  }
}

.matrimonial__column {
  padding-left: 38px;
  padding-right: 38px;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.matrimonial__content-1 {
  margin-left: 38px;
  gap: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.matrimonial__list {
  gap: var(--space-8xl);
  display: flex;
  width: 88%;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.user-profile-1 {
  gap: var(--space-xs);
  display: flex;
  background-color: var(--white_a700);
  box-shadow: var(--shadow-xs);
  width: 32%;
  flex-direction: column;
  align-items: center;
  padding: 38px var(--space-xl);
  border-radius: var(--radius-lg);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

.rowyourperfect {
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.matrimonial__image {
  height: 488px;
  border-top-right-radius: 200px;
  width: 32%;
  object-fit: contain;
  margin-top: -50px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.matrimonial__intro {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  gap: var(--space-3xl);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.matrimonial__content {
  gap: var(--space-2xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
}

.matrimonial__title {
  color: var(--black_900) !important;
  text-align: center;
  line-height: 77px;
  font-size: 40px !important;
  line-height: 40px;
}

.matrimonial__description {
  text-align: center;
  line-height: 29px;
  font-size: 20px !important;
}

.matrimonial__button {
  color: var(--white_a700) !important;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
  font-size: 24px;
  gap: var(--space-md);
  background-color: var(--orange_700) !important;
  height: 62px;
  min-width: 194px;
  border-radius: 10px !important;
  @media only screen and (max-width: 1050px) {
    font-size: 22px;
  }
}

.arrow_left {
  height: 24px;
  margin-top: 4px;
  margin-bottom: 4px;
  width: 24px;
  object-fit: contain;
}

.matrimonial__image-1 {
  height: 488px;
  margin-left: 14px;
  border-top-left-radius: 200px;
  width: 32%;
  margin-top: -60px;
  object-fit: cover;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.section {
  margin-top: 70px;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.section__profile {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  gap: 82px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 61px;
  }

  @media only screen and (max-width: 550px) {
    gap: 41px;
  }
}

.profile__details {
  gap: 64px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    gap: 32px;
  }
}

.details__title {
  margin-left: 146px;
  margin-right: 146px;
  gap: var(--space-4xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.details__preferences {
  margin-left: 4px;
  display: flex;
  align-items: flex-end;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
  }
}

.preferences__info {
  gap: 46px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.info__image {
  height: 100px;
  margin-left: 46px;
  width: 68%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.preferences__explore {
  /* padding-left: 70px; */
  /* padding-right: 56px; */
  gap: var(--space-6xl);
  display: flex;
  width: 30%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
  }
}

.explore__options {
  margin-right: 6px;
  align-self: stretch;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.options__locks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4xl);
}

.locks__item {
  gap: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.item__image--unlock-gray {
  height: 44px;
  margin-right: 6px;
  align-self: flex-start;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.options__search {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.search__input {
  color: var(--black_900) !important;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  font-size: 9px;
  gap: var(--space-2xl);
  align-self: flex-end;
  background-color: var(--white_a700) !important;
  box-shadow: var(--shadow-sm);
  width: 78%;
  height: 22px;
  border-radius: 10px !important;
}

.dhi-group {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 14px;
}

.search {
  height: 14px;
  width: 12px;
  object-fit: contain;
}

.search__divider {
  height: 3px;
  background-color: var(--gray_300);
  width: 32%;
}

.search__divider-1 {
  height: 6px;
  margin-top: 28px;
  background-color: var(--blue_gray_200);
  width: 54%;
}

.search__divider-2 {
  height: 3px;
  background-color: var(--blue_gray_100_01);
  width: 32%;
}

.search__divider-3 {
  height: 6px;
  margin-top: 34px;
  background-color: var(--gray_300_02);
  width: 44%;
}

.search__divider-4 {
  height: 3px;
  background-color: var(--gray_300_02);
  width: 32%;
}

.explore__title {
  color: var(--black_900) !important;
  margin-left: 12px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.preferences__connect {
  gap: var(--space-6xl);
  align-self: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.connect__image {
  height: 134px;
  margin-right: 42px;
  width: 68%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.profile__matches {
  gap: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.matches__details {
  gap: 44px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.details__title-1 {
  margin-left: 128px;
  margin-right: 164px;
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.matches__list {
  gap: var(--space-7xl);
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.matches__button {
  color: var(--white_a700) !important;
  padding-left: var(--space-4xl);
  padding-right: var(--space-4xl);
  font-size: 24px;
  gap: var(--space-sm);
  background-color: var(--orange_700) !important;
  height: 62px;
  min-width: 194px;
  border-radius: 10px !important;
  @media only screen and (max-width: 1050px) {
    font-size: 22px;
  }
}

.arrow_left-1 {
  height: 24px;
  margin-top: 6px;
  margin-bottom: 2px;
  width: 24px;
  object-fit: contain;
}

.find-image-container{
  height: 200px;
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.find-image-container img{
  width: 80%;
}

.matches-section{
  position: relative;
}
.matches-section img{
  width: 100%;
  height: 100% !important;
}
.matches-list{
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0,0.7);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}













/* Registration Page */

.registration-bg-light {
  background-color: #f8f9fa;
}
.registration-input{
  height: 50px;
}
.registration-input:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.text-orange{
  color: var(--orange_700);
}

.registration-google-btn {
  color: #545454;
  background-color: white !important;
  border: 1px solid #dee2e6 !important;
}

.registration-google-btn:hover {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  border: 1px solid #dee2e6;

}

.registration-register-btn {
  background-color: #ff6b00;
  border: none;
}

.registration-register-btn:hover {
  background-color: #ff5500;
}

.registration-benefit-icon {
  width: 50px;
  height: 50px;
  color: #ff6b00;
}

.registration-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #6c757d;
}

.registration-divider::before,
.registration-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #dee2e6;
}

.registration-divider span {
  padding: 0 10px;
  margin-top: -3px;
}

.registration-checkbox {
  accent-color: #ff6b00;
}

.register-icon-box{
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

.registration2-bg-image{
  background: url('../new/registration2-bg-image.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.registration2-bg-image label{
  font-weight: 600;
}

.registration2-bg-image form{
  background: white;
  padding: 50px;
}
.registration2-bg-image .col-lg-12{
  padding: 100px;
}

.matrimony-nav-link-icon a{
  border: 1px solid white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.matrimony-nav-link-icon a:hover{
  border: 1px solid black;
  background: #000;
}
.matrimony-nav-link-icon i{
  font-size: 16px !important;
}












/* matrimony-section */



/* Sidebar Styles */
.matrimony-sidebar {
  background-color: #fff;
  border: 1px solid #dee2e6;
  height: 450px;
   border-radius: 10px;
}

.matrimony-avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.matrimony-profile-header{
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 15px;
}
.matrimony-profile-header i{
  border: 1px solid black;
  padding: 20px;
  border-radius: 50%;
  font-size: 30px;
}

.matrimony-greeting {
  font-size: 1.5rem;
  font-weight: 600;
}

.matrimony-user-id {
  color: #6c757d;
  font-size: 0.9rem;
}

.matrimony-edit-link {
  color: var(--orange_700);
  text-decoration: none;
}

.matrimony-nav {
  margin-top: 2rem;
}

.matrimony-nav-item {
  margin-bottom: 1rem;
}

.matrimony-nav-item a {
  color: black;
  text-decoration: none;
  padding: 0.75rem;
  display: block;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.matrimony-nav-item a:hover {
  background-color: #f8f9fa;
  color: black;
}

.matrimony-nav-item i{
  font-size: 12px;
}

/* Filters Styles */
.matrimony-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.matrimony-filter-btn,
.matrimony-filter-tag {
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.matrimony-filter-btn i{
  color: var(--orange_700);
}
.matrimony-filter-btn:hover,
.matrimony-filter-tag:hover {
  background-color: #f8f9fa;
}

/* Profile Card Styles */
.matrimony-profile-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid #e9ecef;
  transition: box-shadow 0.2s;
}

.matrimony-profile-card:hover {
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.matrimony-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matrimony-profile-content {
  padding: 1.5rem;
}

.matrimony-last-seen {
  /* color: #6c757d; */
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.matrimony-profile-name {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--orange_700);
}
.matrimony-last-seen{
  font-weight: 500;
}

.matrimony-profile-details {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.matrimony-profile-occupation,
.matrimony-profile-education {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.matrimony-profile-education{
  padding-bottom: 80px;
}
.matrimony-profile-actions {
  
  background: rgba(250, 125, 9, 0.17); 
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
  bottom: 0;
  height: 80px;
  margin-left: 0px !important;
}

.matrimony-action-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.matrimony-send-interest {
  color: var(--orange_700);
}


.matrimony-shortlist,
.matrimony-super-interest,
.matrimony-chat {
  color: var(--orange_700);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .matrimony-sidebar {
      min-height: auto;
      border-right: none;
      border-bottom: 1px solid #e9ecef;
  }

  .matrimony-profile-actions {
      justify-content: center;
  }

  .matrimony-action-btn {
      flex: 1;
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .matrimony-profile-actions {
      flex-direction: column;
  }

  .matrimony-action-btn {
      width: 100%;
  }
}


/* matrmimony-profile section  */


.matrimony-profile-main-content .shadow-sm{
  border: 1px solid #dee2e6;
}

.matrimony-profile-bg-image {
  height: 50vh;
  background: 
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0) 50%), 
    url(../new/matrimony-bg-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
}

.matrimony-picture{
  position: absolute;
  right: 20px;
  display: flex;
  gap: 20px;
  top: 20px;
}

.matrimony-total-picture{
  background: white;
  height: 30px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
}

.matrimony-total-menu{
  background: white;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.matrimony-profile-bg-image h6{
  position: absolute;
  left: 0;
  padding: 10px 250px 10px 25px;
  bottom: 60px;
  color: white;
  font-weight: normal;
  font-style: italic;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
}

.matrimony-details{
  padding-bottom: 100px;
}

.matrimonial-tabs {
  margin: 0 ;
  padding: 0;
  border: none !important;
  background: none;
  list-style: none;
  position: absolute;
  display: flex;
}



.matrimonial-tabs-link {
  display: block;
  padding: 10px 15px;
  background: none;
  color: white !important;
  border: none !important;
  text-decoration: none;
  font-size: 16px ;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  margin: 0 ;  
  transition: color 0.3s ease ;
}

/* .matrimonial-tabs-link:hover {
  color: var(--orange_700) !important; 
} */

.matrimonial-tabs-link.active1 {
  border-bottom: 5px solid var(--orange_700) !important; /* Active tab bottom border */
  /* color: var(--orange_700) !important; Active tab text color */
  background: transparent !important;
}

.tab-content {
  padding: 15px;
}
.matrimonial-tabs-content{
  height: 200px;
}

.matrimonial-tabs-content-item {
  display: none;
}

.matrimonial-tabs-content-item.active1 {
  display: block;
}

.matrimonial-tabs-icon-text {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.matrimonial-tabs-icon-text i {
  margin-right: 10px;
  font-size: 18px;
  color: #555;
}

.matrimonial-tabs-icon-text span {
  font-size: 16px;
  color: #333;
}

.cursor-pointer{
  cursor: pointer;
}
















/* Profile Details Styling */
.matrimony-profile-match-details {
  background-color: #fff;
}

.matrimony-profile-match-header {
  background: rgba(250, 125, 9, 0.47) !important;
  border-radius: 30px;
}

.matrimony-profile-match-section-title {
  color: black;
  font-size: 30px !important;
  margin-top: 20px ;
  font-weight: 600;
}

.matrimony-profile-match-section i {
  color: black;
  background: #ebebeb;
  padding: 20px;
  font-size: 1.1rem;
  width: 24px;
  border-radius: 50%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.matrimony-profile-match-progress {
  height: 4px;
  background-color: #f5f5f5;
}

.matrimony-profile-match-progress .progress-bar {
  background-color: #ff6b6b;
}

.matrimony-profile-match-progress .badge {
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Preserve your existing styles */
.matrimony-profile-match-sidebar {
  background: #fff;
  border-radius: 8px;
}

.matrimony-profile-match-avatar-container{
  position: relative;
}


  .matrimony-profile-match-avatar img {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  object-fit: cover;
  justify-content: center;
}

.matrimony-profile-match-avatar1{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-left: -10px;
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  object-fit: cover;
  justify-content: center;
}
.matrimony-profile-match-avatar1 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.matrimony-check-icon-container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  border-radius: 50%;
  width: 18px;
  background: #0BC815;
  position: absolute;
  bottom: 0;
  left: 0;
}

.matrimony-check-icon{
  color: white;
  font-size: 12px;
  padding-top: 2px;
}


.matrimony-check-icon{
  position: absolute;
}

.matrimony-profile-match-greeting {
  font-size: 18px;
  font-weight: 600;
}

.matrimony-profile-match-user-id {
  font-size: 14px;
  color: #666;
}

.matrimony-profile-match-edit-link {
  color: #ff6b6b;
  text-decoration: none;
}

.matrimony-profile-match-nav-item {
  margin-bottom: 10px;
}

.matrimony-profile-match-nav-item a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  border-radius: 4px;
}

.matrimony-profile-match-nav-item a:hover {
  background: #f5f5f5;
}

.matrimony-profile-match-bg-image {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/placeholder.svg');
  background-size: cover;
  background-position: center;
  padding: 20px;
  position: relative;
}

.matrimony-profile-match-picture {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.matrimony-profile-match-total-picture {
  background: rgba(255,255,255,0.2);
  padding: 5px 10px;
  border-radius: 4px;
  color: white;
}

.matrimony-profile-match-total-menu {
  color: white;
}

.matrimony-profile-match-details h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.matrimony-profile-match-details h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

.matrimony-profile-match-details p {
  font-size: 14px;
  margin-bottom: 0;
}

.matrimony-profile-match-bg-image h6 {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: white;
  padding: 5px 10px;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

/* Additional utility classes */
.matrimony-profile-match-text-primary {
  color: var(--orange_700) !important;
}

.matrimony-profile-match-bg-light {
  background-color: #f8f9fa !important;
}

.matrimony-profile-match-border {
  border: 1px solid #dee2e6 !important;
}

.basic-details-text{
  font-size: 22px;
}
.matrimony-profile-match-basic-details p{
  font-size: 18px;
  font-weight: 600; 
}
.matrimony-profile-match-basic-details i{
  font-size: 30px;
  color: #0BC815;
  opacity: 0.6;
}

.basic-details-data-container{
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 20px;
}

.send-interest-section{
  background: rgba(0, 0, 0, 0.62);
}

.send-interest-section i{
  font-size: 22px;
  margin-bottom: 10px;
}

.send-interest-section i{
  transition: 0.3s;
  background: #959595;
  display: flex;
  align-items: center;justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;

}
.send-interest-section button:hover i{
  background: var(--orange_700);
}