/* unclickable container */
.menu_search_flex.unclickable,
nav.sc_menu-container.unclickable {
  opacity: 0.3;
}
.sc_menu-container.unclickable {
  pointer-events: none; /* make entire container non-clickable */
}

.menu_search_flex.unclickable a,
.menu_search_flex.unclickable button,
.sc_menu-container.unclickable a,
.sc_menu-container.unclickable button,
.sc_menu-container.unclickable input,
.sc_menu-container.unclickable [tabindex],
.sc_menu-container.unclickable [role="button"] {
  pointer-events: auto; /* restore interactivity only for these */
}
.secondary_global .tata_header.desktop.show_primary {
  display: block;
}
.secondary_global .tata_header.desktop {
  display: none;
}
#main-content.overlay-01:before {
  background: rgba(0,0,0,0.6);
  content: "";
  display: block;
  height: 100vh;
  position: fixed;
  width: 100vw;
  z-index: 51;
}
.header_v1_col2 .tata_header.desktop {
  transition: none;
}
.secondary_global .tata_header.desktop.show_primary {
  top: 0;
}
.secondary_global .menu_container {
  border: 0px;
}
p.menu-text {
  display: none;
}
/* top header */
.Header_top_menu ul {
  gap: 20px;
  display: flex;
  margin: 0px;
  padding: 0px;
}
/* Login */
.Header_top_menu ul li  a {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 325;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-decoration: none;
}


@media (max-width: 1024px ) {
  .header {
    background: linear-gradient(#000000 8.55%, rgba(0, 0, 0, 0) 96.5%);
    {#  background: linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)); */
    backdrop-filter: blur(4px); 
    #}
  }
  .header.tata_hm {
    background: #001119;
  }
  .top_header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header.tata_hm  .top_header {
    background: #001119;
  }
  header#header .content-wrapper {
    padding: 0px;
    height: 100%;
  }
  .menu_container.open,
  header#header .hs_cos_wrapper_type_module {
    height: 100%;
  }
  .header.tata_hm {
    bottom: 0;
    height: auto;
    position: fixed;
    right: auto;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 99;
  }
}


.accordion {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}
.accordion__intro {
  position: relative;
  cursor: pointer;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
}
.accordion h4, .accordion p {
  margin: 0;
  line-height: 1;
}
.accordion p {
  margin: 0;
}
.accordion__active .accordion__content {
  opacity: 1;
}
