.banner_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.banner_video {
  width: 100%;
  height: 100vh;
}
.banner_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner_section_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 10vw, 100px);
  padding-bottom: clamp(40px, 10vw, 70px);
}
.banner_container {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
  z-index: 12;
  bottom: 0;
  /* height: 50%; */
}
.banner_section_holder::before,
.banner_section_holder::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 390px;
  background: var(--bg_grad_01);
  top: 0;
  left: 0;
  pointer-events: none;
}
.banner_section_holder::after {
  height: 187px;
  background: var(--bg_grad_02);
  bottom: 0;
  top: inherit;
}
.banner_container .custom_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(30px, 10vw, 140px);
}
.brandhub_image figure {
 position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 102%;
  display: inline-block;
  margin: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.brandhub_image video {
    width: 99%;
    margin: 0 auto;
    height: 280px;
    object-fit: cover;
    object-position: center;
}
.brandhub_image {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* my banner styles */
.banner_video {
  position: relative;
}
.banner_video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: hsl(var(--bg_clr_black) / 0.7);
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.banner_video.active::after {
  opacity: 0.55;
}

.main_hd img {
  filter: drop-shadow(2px 2px 6px #000000);
}
/* my banner styles */
.btn_grp {
  border: 0.3px solid hsl(var(--clr_border_white) / 44%);
  width: fit-content;
}
.banner_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.banner_content .heading2 span {
  letter-spacing: -3px;
}
.vector0 {
  max-width: 33px;
}
.vector {
  max-width: 53px;
}
.main_hd .heading1 {
  text-shadow: 0px 2px 2px hsl(var(--bg_clr_black) / 60%);
}
.section_hd {
  display: flex;
  flex-direction: column;
}
.section_hd > * {
  width: 50%;
}

.section_hd p {
  align-self: end;
  /* margin-top: -30px; */
  color: hsl(var(--text_clr_secondary_05));
}
.gradient_text {
  text-align: center;
  background: var(--text_grad01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.collaboration_logos .nav-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(46%,300px),1fr));
  gap: clamp(5px, 10vw, 20px);
}
.collaboration_logos .nav-pills .nav-link {
  aspect-ratio: 16 / 8;
  border-radius: 19px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s ease-in-out;
  justify-content: center;
}
.collaboration_logos .nav-pills .nav-link .fa-plus{
  opacity: 0;
  transition: 0.4s ease-in-out;
  transform: scale(0);
  position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--bg_clr_white) / 38%);
    border-radius: 100%;
}
.collaboration_logos .nav-pills .nav-link .fa-plus:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: hsl(var(--bg_clr_white) / 38%);
  content: "";
  border-radius: 50%;
  opacity: 0;
}
.collaboration_logos .nav-pills .nav-link .fa-plus:hover::after{
  animation: roundpls 0.7s linear forwards;
  opacity: 1;
}
@keyframes roundpls {
  0% {
    transform: scale(0);
    opacity: 1;
}
 
100% {
    transform: scale(2);
    opacity: 0;
}
}
.collaboration_logos .nav-pills .nav-link:hover .fa-plus{
  opacity: 1;
  transform: scale(1);
}
 
.light_model {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}
.grid_img_holder{
  border-radius: 20px;
  background: hsl(var(--bg_clr_black));
  overflow: hidden;
  transition: 0.5s;
  cursor: pointer;
}
.lightbox_holder{
  justify-content: center;
}
.grid-img{
  border-radius: 20px;
  border: 1px solid hsl(var(--border_clr_03));
  display: inline-flex;
  object-fit: cover;
  width: 100%;
  transition: 0.5s;
}
.grid_img_holder:hover img{
  transform: scale(1.2);
  opacity: 0.8;
}
.image-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(45%, 270px), 1fr));
  gap: 20px;
}
#lightbox-img-prev,#lightbox-img-next{
  max-width: 200px;
  opacity: 0.6;
  border-radius: 10px;
}
.thumbnails-wrapper img{
  width: 94px;
  height: 94px;
  opacity: 0.6;
  object-fit: cover;
  border-radius: 10px;
}
.thumbnails-wrapper img.active{
  opacity: 1;
}
.thumbnails-wrapper {
  width: 100%;
  overflow: overlay;
  margin: 0 auto;
}
.thumbnail-slider{
  padding: 0 15px;

}
/* width */
.thumbnails-wrapper::-webkit-scrollbar {
  height: 8px;
  border-radius: 10px;
}

/* Track */
.thumbnails-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.thumbnails-wrapper::-webkit-scrollbar-thumb {
  background: #888;
}


.light_model.hidden {
  display: none;
}
 
#lightbox-img {
  max-width: 70%;
  max-height: 80%;
  border-radius: 10px;
}
 
.arrow {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
}
 
.left { left: 30px; }
.right { right: 30px; }
 
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.paramount_white img,
.konami_white img {
  max-width: 205px;
  transition: 0.3s ease-in-out;
}
.paramount_white,
.konami_white {
  width: 100%;
  border-radius: 19px;
}
.paramount_white:hover,
.konami_white:hover {
  box-shadow: 0px 57px 20px -40px hsl(var(--bg_light));
}
.collaboration_logos .fade {
  transition: opacity 0.35s linear;
}
.collaboration_logos .nav-pills .nav-link.paramount_white {
  background-color: hsl(var(--clr_primary_02));
}
.collaboration_logos .nav-pills .nav-link.konami_white {
  background-color: hsl(var(--clr_primary_03));
}
.collaboration_logos .nav-pills .nav-link.active {
  box-shadow: 0px 57px 20px -40px hsl(var(--bg_light));
}
.collaboration_logos .nav-pills .nav-link.active img,
.collaboration_logos .nav-pills .nav-link:hover img {
  transform: scale(1.1);
}
.collaboration_logos > .tab-content .nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(44%, 214px), 1fr));
  gap: 40px;
}
.collaboration_logos .nav-pills {
  padding-bottom: 40px;
}
.collaboration_logos > .tab-content .nav .nav-link.logo_box {
  border: 1px solid hsl(var(--border_clr_01));
  aspect-ratio: 16 / 13;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
  justify-content: center;
  background: hsl(var(--bg_clr_white));
  box-shadow: none;
}
.collaboration_logos > .tab-content .nav .logo_box:hover {
  border-color: hsl(var(--border_clr_02));
}
.collaboration_logos > .tab-content .nav .logo_box.active {
  box-shadow: 0px 16.676px 12.07px -6.353px hsl(var(--bg_clr_black) / 8%);
  border: 1px solid hsl(var(--border_clr_01));
}
.collaboration_logos > .tab-content .nav .logo_box img {
  max-width: 144px;
  transition: 0.3s ease-in-out;
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(40%, 270px), 1fr));
  gap: 20px;
}
.image_channel_link {
  border-radius: 20px;
  border: 1px solid hsl(var(--border_clr_03));
  display: inline-flex;
  overflow: hidden;
}

.image_channel_link img {
  transition: all 0.5s ease-in-out;
  width: 100%;
  object-fit: cover;
}
.image_channel_link:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}
.overlay_wh::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 250px;
  background: var(--bg_grad_03);
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.section_offer .section_off_inn {
  width: min(100%, 466px);
}
.section_offer .section_off_inn2 {
  width: min(100%, 375px);
}
.section_offer .section_off_inn h2 {
  line-height: 1;
}
.section_offer .section_off_inn h3 {
  line-height: 1.2;
  letter-spacing: -1px;
  background: var(--text_grad02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading_2 .heading_6 {
  color: hsl(var(--clr_primary_04));
}
.the_brands_section {
  position: relative;
}
.the_brands_section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  background: hsl(var(--bg_clr_prime_red_02))
    url(../images/watercolor-paper-texture.webp) no-repeat center center / cover;
  top: 0;
}
.the_brands_section .heading_6 {
  color: hsl(var(--text_caption_hd));
}
.the_brands_section .heading_2 {
  max-width: 1060px;
  line-height: 1.3;
  font-weight: var(--fw_medium);
}
.brand_hub_div {
  column-count: 2;
}
.brand_hub_div figure {
  overflow: hidden;
  background: hsl(var(--bg_clr_black));
  border-radius: 20px;
}
.brand_hub_div figure img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
  transition: all 0.5s ease-in-out;
}
.brand_hub_div figure:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}
.map_hd p {
  max-width: 786px;
  margin: 0;
  width: 100%;
  color: hsl(var(--text_clr_secondary_05));
}
.mission_list ul li {
  color: hsl(var(--text_clr_secondary));
  font-style: italic;
}
.mission_list ul li h2 {
  letter-spacing: -3px;
  font-weight: 100;
  font-family: "Mixta_Pro_UltraLight";
}
.mission_list ul {
  column-count: 5;
}
.mission_inn {
  gap: clamp(30px, 10vw, 70px);
}
.mission_sec .map_img_div {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -1;
}
.mission_sec .map_img_div img {
  max-width: clamp(200px, 30vw, 500px);
  height: auto;
}
.main_video video {
  width: 100%;
  height: 774px;
  object-fit: cover;
  object-position: center;
}

/* new added */
/* Footer */
.footer_sec {
  width: 100%;
}
.send_email_sec {
  width: 100%;
}
.send_email_sec .inner_send_email {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: -45px;
}
.inner_send_email .send_email_content {
  display: flex;
  flex-direction: column;
  max-width: 530px;
  gap: 24px;
  flex: 1;
}
.inner_send_email .send_email_content h2 {
  font-weight: var(--fw_medium);
  color: hsl(var(--text_clr_black));
}
.inner_send_email .send_email_content .sub_text {
  font-weight: var(--fw_regular);
  color: var(--text_clr_secondary_05);
}

.inner_send_email .right_side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 460px;
  flex: 1;
}
.send_email_form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: hsl(var(--bg_clr_black));
  min-height: 52px;
  padding: 6px;
  border: 0.3 solid hsl(var(--bg_clr_white) / 0.12);
}
.send_email_form > div{
  width: 100%;
}
.send_email_form form{
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.send_email_form input {
  color: hsl(var(--text_clr_white)) !important;
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
}
.send_email_form .submit_holder {
  position: relative;
}
.send_email_form .wpcf7-spinner{
 position:absolute;
}
.send_email_form input[type="submit"]{
  min-height: 100%;
  padding-inline: 0;
  min-width: 100%;
  border: 0
}
.send_email_form .submit_holder i {
  font-size: 16px;
  color: hsl(var(--clr_primary_01));
  transition: 0.4s ease-in-out;
}
.send_email_form .submit_holder p{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.send_email_form .wpcf7-not-valid-tip{
  position: absolute;
    top: calc(100% + 10px);
}

.side_image img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
}

.footer_inner {
  width: 100%;
  background: hsl(var(--bg_clr_white) / 0.2);
  backdrop-filter: blur(72px);
  border-top: 1px solid rgba(132, 132, 132, 0.12);
}

.footer_inner .footer_inner_menu_area {
  width: 100%;
}

.footer_inner .footer_inner_menu_area .footer_grid {
  display: grid;
  /* grid-template-columns: 54fr 46fr; */
  padding-block-start: clamp(20px, 10vw, 50px);
  padding-block-end: clamp(40px, 10vw, 70px);
}

.footer_grid .right_side {
  width: 100%;
  padding-inline-start: clamp(0px, 10vw, 50px);
  border-left: 1px solid hsl(var(--text_clr_black) / 0.2);
}

.footer_grid .right_side .menu_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  gap: clamp(20px, 10vw, 38px);
}

.footer_grid .right_side .menu_box .label {
  font-weight: var(--fw_bold);
  font-family: var(--font_sofia);
  color: hsl(var(--text_clr_black));
}

.footer_grid .right_side .list_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  width: 100%;
}

.footer_grid .right_side .list_list li {
  list-style: none;
}

.footer_grid .right_side .list_list .list_link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--fw_regular);
  color: hsl(var(--text_clr_black));
  list-style: none;
}

.footer_grid .right_side .list_list .list_link:hover {
  text-decoration: underline;
}

.brand_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 350px;
}
.brand_logo .body1.text {
  color: hsl(var(--text_clr_secondary_05));
}
.social_links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.social_links .list_link {
  border-radius: 50%;
  border: 1.052px solid rgba(0, 0, 0, 0.09);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--bg_clr_black) / 0.6);
  transition: all 0.3s ease-in-out;
}
.copy_write_menu a {
  color: hsl(var(--text_clr_secondary_05));
}

.social_links .list_link:hover {
  background: hsl(var(--bg_clr_black) / 0.1);
  color: hsl(var(--bg_clr_black) / 0.8);
}

.footer_grid .left_side {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-inline-end: clamp(0px, 10vw, 50px);
}

.footer_grid .left_side .menu_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  max-width: 450px;
  width: 100%;
  gap: clamp(20px, 10vw, 38px);
}

.footer_grid .left_side .list_list li {
  list-style: none;
}

.footer_grid .left_side .list_list {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));

  column-gap: 75px;
  align-items: center;
  justify-content: space-between;
}

.footer_grid .left_side .list_list .list_link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--fw_regular);
  color: hsl(var(--text_clr_black));
  list-style: none;
}

.footer_grid .left_side .list_list .list_link:hover {
  text-decoration: underline;
}

.footer_grid .left_side .menu_box .label {
  font-weight: var(--fw_bold);
  font-family: var(--font_sofia);
  color: hsl(var(--text_clr_black));
}

.copy_write_sec {
  width: 100%;
  max-width: 1520px;
  margin-inline: auto;
  border-top: 1px solid hsl(var(--text_clr_black) / 0.2);
  padding-block: 20px;
}

.copy_write_sec .text {
  color: hsl(var(--text_clr_secondary_05));
}

.inner_copy_write {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.copy_write_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
}

/* Footer */

/* 22-04-2025 new */
.collaborations_hd .heading_2 {
  color: hsl(var(--text_clr_secondary_01));
  /* font-family: "Unna", serif; */
  font-family: "AtacamaTrial";
  font-weight: var(--fw_medium);
}

.banner_container .heading2 {
  /* font-family: "Unna", serif; */
  font-family: "AtacamaTrial";
  font-weight: var(--fw_medium);

  letter-spacing: -1.54px;
  line-height: 1.1;
}

@media (min-width: 992px) {
  .section_hd > h2 {
    width: 54%;
    line-height: 1.4;
  }
  .section_hd > p {
    width: 62%;
    position: relative;
    left: 0px;
  }
  .banner_section_content {
    gap: 0;
  }

  .banner_content:nth-of-type(2) {
    padding-inline-start: 60px;
  }
  
}

.section_offer .section_off_inn h3 {
  line-height: 1.1;
  font-weight: 100;
  font-size: clamp(22px, 10vw, 47px);
  font-family: "Mixta_Pro_UltraLight";
}

.section_offer .section_off_inn {
  width: min(100%, 460px);
}

.section_offer .section_off_inn h2 {
  /* font-family: "Unna", serif; */
  font-weight: var(--fw_medium);
  font-family: "AtacamaTrial";
  line-height: 1.2;
}

.section_offer .section_off_inn:nth-of-type(2) {
  width: min(100%, 374px);
}

.mission_sec .section_hd > h2 {
  font-weight: var(--fw_medium);
  /* font-family: "Unna", serif; */
  font-family: "AtacamaTrial";
}

/* 22-04-2025 new */

/*akhilesh*/
/* .wpcf7-response-output {
  display: none;
} */

p.no_result {
  text-align: center;
  font-size: 20px;
}
.terms_table td{
  border: 1px solid #ddd;
  padding: 10px 20px;
}
.page-template-terms-condition li,.privacy-policy li{
  list-style-type: disc;
  margin-block-end: 1rem;
}
.privacy-policy ul,.page-template-terms-condition ul{
  list-style: disc;
  padding-inline-start: 1.5rem;
}
.privacy-policy h4,.page-template-terms-condition h4{
  font-size: 18px;
  font-weight: 600
}