/* 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,
  .tata_header_mb.mobiles,
   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;
}
 