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

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



body {
  margin: 0;
  padding: 0;
  font-family: Inter;
}


img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  display: block;
}

ul {
  margin: 0;
  margin-inline: unset !important;
  padding: 0;
  list-style: none;
}

input {
  background-color: transparent;
  width: 100%;
}

[type="text"],
input:where(:not([type])),
[type="email"],
[type="url"],
[type="password"],
[type="number"],
[type="date"],
[type="datetime-local"],
[type="month"],
[type="search"],
[type="tel"],
[type="time"],
[type="week"],
[multiple],
textarea,
select,
button {
  appearance: none;
  background-color: transparent;
  border-color: unset;
  border-width: 0;
  border-radius: unset;
  padding: unset;
  font-size: unset;
  line-height: unset;
  color: inherit;
}
input:focus-visible,
[multiple]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}






@font-face {
  font-display: swap;
  font-style: normal;
  src: url("../font-family/InterBold.ttf");
  font-family: "Inter";
  font-weight: 700;
}
@font-face {
  font-display: swap;
  font-style: normal;
  src: url("../font-family/InterRegular.ttf");
  font-family: "Inter";
  font-weight: 400;
}









:root {
  /*------Color variables------*/
  --black_900: #000000;
  --deep_orange_a400: #ff3700;
  --gray_50: #faf9f9;
  --gray_600: #848484;
  --orange_700: #fa7d09;
  --white_a700: #ffffff;

  /*------Shadow variables------*/
  --shadow-xs: 0 4px 4px 0 #fa7d09;
  --shadow-sm: 0 4px 4px 0 #ff3700;

  /*------Border radius variables------*/
  --radius-xs: 10px;
  --radius-sm: 20px;
  --radius-md: 36px;
  --radius-lg: 40px;
  --radius-xl: 144px;

  /*------Spacing variables------*/
  --space-xs: 0.38rem;
  --space-sm: 0.5rem;
  --space-md: 0.63rem;
  --space-lg: 0.88rem;
  --space-xl: 1rem;
  --space-2xl: 1.13rem;
  --space-3xl: 1.25rem;
  --space-4xl: 1.38rem;
  --space-5xl: 1.5rem;
  --space-6xl: 1.63rem;
  --space-7xl: 1.88rem;
  --space-8xl: 4.13rem;
}



.ui.input.round {
  border-radius: var(--radius-xs);
}

.ui.input.size-xs {
  height: 3rem;
  padding-left: var(--space-4xl);
  padding-right: var(--space-md);
  font-size: 1rem;
}

.ui.input.fill.white_a700 {
  background-color: var(--white_a700);
  color: var(--gray_600);
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  color: var(--gray_600);
  font-size: 1rem;
  gap: var(--space-xl);
  align-self: flex-end;
  background-color: var(--white_a700);
  flex-grow: 1;
  border-radius: var(--radius-xs);
}

/*-------------------------------------
  2. Button CSS
--------------------------------------*/
.ui.button.round {
  border-radius: var(--radius-xs);
}

.ui.button.size-xs {
  height: 3.88rem;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  font-size: 1.5rem;
}

.ui.button.fill.black_900 {
  background-color: var(--black_900);
  color: var(--white_a700);
}

.ui.button.fill.orange_700 {
  background-color: var(--orange_700);
  color: var(--white_a700);
}

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--white_a700);
  font-size: 1.5rem;
  font-weight: 700;
  gap: var(--space-xs);
  border-radius: var(--radius-xs);
  @media only screen and (max-width: 1050px) {
    font-size: 1.38rem;
  }
}

/*-------------------------------------
  3. Text CSS
--------------------------------------*/
.ui.text.size-textxs {
  font-size: 1rem;
  font-weight: 400;
}

.ui.text.size-texts {
  font-size: 1.5rem;
  font-weight: 400;
  @media only screen and (max-width: 1050px) {
    font-size: 1.38rem;
  }
}

.ui.text {
  color: var(--black_900);
  font-family: Inter;
}

/*-------------------------------------
  4. Heading CSS
--------------------------------------*/
.ui.heading.size-headingxs {
  font-size: 0.94rem;
  font-weight: 700;
}

.ui.heading.size-headings {
  font-size: 1rem;
  font-weight: 700;
}

.ui.heading.size-headingmd {
  font-size: 1.25rem;
  font-weight: 700;
}

.ui.heading.size-headinglg {
  font-size: 1.5rem;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 1.38rem;
  }
}

.ui.heading.size-headingxl {
  font-size: 2rem;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 1.88rem;
  }

  @media only screen and (max-width: 550px) {
    font-size: 1.75rem;
  }
}

.ui.heading.size-heading2xl {
  font-size: 2.25rem;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 2.13rem;
  }

  @media only screen and (max-width: 550px) {
    font-size: 2rem;
  }
}

.ui.heading.size-heading3xl {
  font-size: 4rem;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 3rem;
  }
}

.ui.heading.size-heading4xl {
  font-size: 4.19rem;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 3rem;
  }
}

.ui.heading {
  color: var(--white_a700);
  font-family: Inter;
}

/*-------------------------------------
  5. Container CSS
--------------------------------------*/
.container-xs {
  max-width: 80.63rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}





* { 
  box-sizing: border-box;
  line-height: normal;
  font-family: sans-serif;
  margin: unset;
}
.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 {
    font-family: sans-serif;;
    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;
    }
  }




/* Navbar Start */


 
  /* .nav-bg {
    background: #fa7d09;
    width: 100%;
  }
  
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    border-radius: 0px;
    background: black;
    margin-top: 0;
  }
  
  .dropdown-menu {
    padding:  0px !important;
  }
  
  .dropdown-item:hover {
    background: #faf9f9 !important;
    color: black !important;
  }
  
  .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 10px;
  }
  
  .navbar-brand img {
    height: 80px; 
  }
  
  .navbar-nav .nav-link {
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: bold;
  }
  
  .navbar-nav {
    margin-left: auto;
  }
  
  .header-navbar .nav-item {
    padding: 0 15px;
  }
  
  
  @media (max-width: 992px) {
    .navbar-nav {
      text-align: center;
    }
  
    .navbar-nav .nav-item {
      padding: 10px 0;
    }
  
    .navbar-toggler {
      border: none;
      outline: none;
    }
  }
  
  @media (max-width: 576px) {
    .navbar-brand img {
      height: 50px;
    }
  } */

/* Navbar End */

.matrimony-homepage-navbar {
  background: #fa7d09;
    width: 100%;
}

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

.matrimony-homepage-navbar .navbar-nav .nav-item .nav-link {
  font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: bold;
  transition: color 0.3s ease;
}

.matrimony-homepage-navbar .navbar-nav .nav-item .nav-link:hover {
  /* background: #faf9f9 !important;
  color: black !important; */
}

.matrimony-homepage-navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  display: none ;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  z-index: 9999;
  padding: 0px !important;
  border-radius: 0px !important;
}

.matrimony-homepage-navbar .dropdown-menu .dropdown-item {
  color: black;
    padding: 10px 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.matrimony-homepage-navbar .dropdown-menu .dropdown-item:hover {
  background: #3b3b3d !important;
    color: white !important;
}

.matrimony-homepage-navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.header-navbar .nav-item {
  margin: 0 15px;
}


@keyframes growDown {
  0% {
      transform: scaleY(0);
  }
  80% {
      transform: scaleY(1.1);
  }
  100% {
      transform: scaleY(1);
  }
}











  
  .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;
  width: 62rem;
  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
  --------------------------------------*/
  .home {
    background-color: var(--gray_50);
    width: 100%;
  }
 
  .newscreenbody {
    margin-top: 167px;
  }
  
  .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: 100%;
    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-items: start;
    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;
    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 {
    background: #faf9f9;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .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: black; */
    background: 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 {
    background: #faf9f9;
    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(../public/images/img_group_24.png); */
       background: 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 {
    background-color: white !important;

    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 {
    /* background-color: white !important; */
    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 {
   justify-content: center;
    gap: 3rem;
    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;
    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);
  }





  /*=========== TABLE OF CONTENTS ===========
1. Input CSS
2. Button CSS
3. Text CSS
4. Heading CSS
5. Container CSS
==========================================*/

/*-------------------------------------
  1. Input CSS
--------------------------------------*/