/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}

a {
  color: #007bff;
}

a:hover {
  color: #0b6bd3;
  text-decoration: none;
}
a:focus, button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1366px;
  }
  .container-fluid {
    padding: 0 75px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1540px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #148291;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #ee7843;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 992px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
  padding: 30px 0;
}

#header.header-bg {
  background: #075767;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #4e4039;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #eb5d1e;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #eb5d1e;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #ee7843;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3c1300;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #eb5d1e;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 19, 19, 0.5);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #B8E2EE;
  padding: 15px 20px;
  font-weight: 800;
  font-size: 69px;
  transition: 0.3s;
  line-height: 1;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ffffff;
  text-decoration: none;
}

.mobile-nav-toggle {
  position: absolute;
  right: 75px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 99999;
  border: 0;
  background: none;
  font-size: 45px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 0
}

.mobile-nav-toggle i {
  color: #ffffff;
}

.mobile-nav-toggle i {
  display: flex;
}
.mobile-nav-toggle i:before{
  display: none;
}
.mobile-nav-toggle i.icofont-navigation-menu img.close-icon {
  display: none;
}
.mobile-nav-toggle i.icofont-close img.ham-icon {
  display: none;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(78, 64, 57, 0.9);
  overflow: hidden;
  display: none !important;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
  width: 100%;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 992px) {
  .mobile-nav a {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .mobile-nav a {
    font-size: 32px;
  }

  .logo {
    display: none;
  }
  #header {
    padding: 20px 0;
  }
  #header.header-bg {
    background-color: transparent;
    box-shadow: none;
  }
  #header .container-fluid {
    justify-content: end;
  }
  .mobile-nav-toggle {
    padding: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #075767;
    position: static;
    border-radius: 5px;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* disables interaction with the iframe */
}

#volume-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

#volume-btn:focus {
  outline: none;
}

#volume-icon {
  width: 32px;
  height: 32px;
}

#hero .abt-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgb(0 56 68 / 50%); 
  z-index: 9;
}

#hero .abt-banner-content {
  position: absolute;
  z-index: 99;
  width: 100%;
  text-align: center;
  color: #ffffff;
  bottom: 10%;
  padding: 0 100px;
}
.abt-banner-content h3 {
  font-weight: 300;
  font-size: 36px;
}
.abt-banner-content h2 {
  font-weight: 800;
  font-size: 75px;
}
.abt-banner-content p {
  font-weight: 500;
  font-size: 21px;
}


.img-fluid
{width: 100% !important;}

.news-banner-img{
  width: 100% !important;
  height: 100vh;
}



@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero {
    height: 42vh;
  }
  .abt-banner-content h3 {
    font-size: 27px;
  }
  .abt-banner-content h2 {
    font-size: 45px;
  }
  .abt-banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #hero {
    height: 26vh;
  }
  #hero .abt-banner-content {
    padding: 0 20px;
  }
  .abt-banner-content h3 {
    font-size: 24px;
  }
  .abt-banner-content h2 {
    font-size: 35px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}


.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 115px;
  font-weight: 800;
  padding-bottom: 0;
  margin-bottom: 15px;
  color: #f1f1f1;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
}
.section-title h2 span {
  font-size: 48px;
  font-weight: 800;
  color: #087688;
  text-transform: capitalize;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.section-title h2 span i {
  color: #2d2d2d;
  font-style: normal;
}


.section-title p {
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 30px;
  position: relative;
  font-size: 21px;
  font-weight: 500;
  color: #2d2d2d;
  line-height: 42px;
}

.portfolio-text{
  font-size: 18px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
}

.pixi-brand{
  font-size: 14px;
  margin-top: 10px !important;
}

.showcase{margin-bottom: 45px;}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 45px;
  }
  .section-title h2 span {
    font-size: 24px;
  }
  .section-title p {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  text-align: center;
  position: relative;
  padding-top: 60px;
}
.icon-left,
.icon-right {
  position: absolute;
  top: 50px;
  z-index: 1;
}

.icon-left {
  left: 5%;
}

.icon-right {
  right: 5%;
}
.about h3 {
  font-weight: 400;
  font-size: 32px;
  color: #2d2d2d;
}

.about h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.about p {
  font-size: 18px;
  line-height: 32px;
  color: #2d2d2d;
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about h2, .about h3 {
    font-size: 18px;
  }
  .about p {
    font-size: 16px;
  }
  .icon-left, .icon-right {
    top: 10px;
  }
  .icon-left img, .icon-right img {
    width: 50px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

.service-card {
  flex: 1 1 calc(25% - 30px); /* 4 in a row with gap */
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  background-color: #fff;
}

/* Tablet: 2 in a row */
@media (max-width: 991px) {
  .service-card {
    flex: 1 1 calc(50% - 30px) !important;
  }
}

/* Mobile: 1 in a row */
@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-card:hover {
  border: 2px solid #00bcd4; /* Highlight border */
}

.service-icon {
  width: 90px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.service-card:hover h4 {
  color: #087688;
}

.service-card p {
  font-size: 18px;
  color: #3c3c3c;
  min-height: 70px;
  font-weight: 400;
  line-height: 32px;
}

.service-card a {
  display: inline-block;
  font-size: 15px;
  color: #3c3c3c;
  font-weight: 700;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  opacity: 1;
  transition: 0.3s;
}

.clients .section-title {
  margin: 30px 0;
}

.clients .section-title p {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients .section-title p span {
  width: 100px;
  height: 2px;
  display: inline-block;
  background-color: #2d2d2d;
  margin: 0 30px;
}
@media (max-width: 767px) {
  .clients .section-title p {
    font-size: 24px;
  }
  .clients .section-title p span {
    display: none;
  }
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/


/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 800px;
  width: 90%;
  background: #000;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Our work
--------------------------------------------------------------*/

.project1 {
  border-bottom: 1px solid #d9d9d9;
  padding: 60px 0;
}
.swipe-banner img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 40px;
}

.swipe-content {
  display: flex;
  gap: 30px;
}

.right-posters {
  display: flex;
  gap: 30px;
  overflow: auto;
  height: fit-content;
}
.right-posters img {
  overflow: auto;
  border-radius: 10px;
}

.left-info {
  width: 30%;
}

.left-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 800;
}

.tag {
  background-color: #EDF8F8;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  height: 42px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 20px;
}

.platforms img {
  margin-right: 10px;
}

.left-info p {
  margin: 20px 0;
  color: #2d2d2d;
  line-height: 32px;
  font-size: 18px;
}

.left-info h5 {
  font-weight: 500;
  font-size: 18px;
  color: #2d2d2d;
}

.platforms {
  margin: 15px 0;
}

.watch-trailer-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: transparent;
  color: #1F85A7;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #1F85A7;
  font-size: 16px;
  transition: all 1s;
}
.watch-trailer-btn:hover {
  background-color: #1F85A7;
  color: #ffffff;
  border: 2px solid #1F85A7;
}
.video-btn {
  display: flex;
  gap: 15px;
}

.project2 .swipe-content .left-info {
  order: 2;
}

.project3 {
  border-bottom: none;
}
.about .explore-btn {
  margin-top: 20px;
  margin-bottom: 0;
}
.explore-btn {
  text-align: center;
}
.explore-btn a {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1601px) {
  .left-info {
    width: 50%;
  }
  .video-btn {
    display: block;
  }
  .watch-trailer-btn {
    text-align: center;
    margin-right: 15px;
  }
}

@media (max-width: 1199px) {
  .swipe-content {
    display: block;
  }
  .left-info {
    width: 100%;
  }
  .project1 {
    padding: 30px 0;
  }
  .project1 .right-posters {
    display: none;
  }
  .project2 .right-posters, .project3 .right-posters {
    display: flex;
  }
  .video-btn {
    display: flex;
  }
  .watch-trailer-btn {
    display: inline-block;
    text-align: center;
  }
  .project2 .swipe-content .left-info, .project3 .swipe-content .left-info {
    margin-bottom: 30px;
  }
  .project2 .swipe-content .right-posters img, .project3 .swipe-content .right-posters img {
    width: 100%;
    margin-bottom: 30px;
  }
  .project1.project-main {
    display: flex;
    flex-direction: column;
  }
  .project1.project-main .swipe-banner {
    order: 2;
  }
  .project1.project-main .swipe-banner img {
    margin: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .project2 .right-posters, .project3 .right-posters {
    display: block;
  }
  .project2 .right-posters img:last-child, .project3 .right-posters img:last-child {
    margin: 0;
  }
  .video-btn {
    display: block;
  }
  .watch-trailer-btn {
    display: block;
    text-align: center;
  }
  .left-info h5 {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# BTS
--------------------------------------------------------------*/

@media (min-width: 1600px) {
  .bts-content {
    top: 15%;
  }
  .bts-content h3 {
    font-size: 60px;
  }
  .bts-content h2 {
    font-size: 90px;
  }
}

.bts {
  position: relative;
}

.bts-carousel {
  position: absolute;
  bottom: 0;
}

.bts-wrapper {
  position: relative;
}
.bts-content {
  position: absolute;
  width: 100%;
  top: 20%;
  text-align: center;
}
.bts-content h3 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.bts-content h2 {
  color: #ffffff;
  font-size: 75px;
  font-weight: 700;
  line-height: 1;
}
.bts-content a {
  display: inline-block;
  background-color: #ffffff;
  color: #2d2d2d;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 50px;
  border: 2px solid #ffffff;
  transition: all 1s;
}


@media (max-width: 1122px) {
  .bts-content h3 {
    font-size: 24px;
  }
  .bts-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .bts-carousel {
    position: relative;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .bts-content h3 {
    font-size: 21px;
  }
  .bts-content h2 {
    font-size: 30px;
  }
  .bts-content a {
    font-size: 14px;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Award
--------------------------------------------------------------*/

.awards {
  padding-top: 60px;
  text-align: center;
}

.awards h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 20px;
}
.awards p {
  font-size: 21px;
  font-weight: 500;
  color: #000000;
}

.platform-logos {
  margin: 60px 0;
}
.platform-logos ul {
  padding: 0;
  list-style: none;
  text-align: center;
  display: flex;
  gap: 50px;
  overflow: auto;
  height: fit-content;
  justify-content: space-between;
}
.platform-logos ul li {
  overflow: auto;
}
.platform-logos ul li img {
  width: 75%;
}
@media (max-width: 767px) {
  .awards h2 {
    font-size: 27px;
  }
  .awards p {
    font-size: 18px;
  }
  .platform-logos ul {
    gap: 15px;
  }
  .platform-logos ul li img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# CTA section
--------------------------------------------------------------*/

.cta {
  padding-bottom: 60px;
}

.cta-wrapper {
  padding: 60px 0;
  background-image: url(../img/bts-bg.gif);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  border-radius: 20px;
}
.cta-content {
  z-index: 99;
  position: relative;
}
.cta-wrapper h2 {
  font-size: 90px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
}
.cta-wrapper h3 {
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.cta-wrapper a {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 700;
  transition: all 1s;
}

.cta-wrapper a:hover {
  display: inline-block;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #2d2d2d;
  transition: all 1s;
}
.cta-wrapper .overlay {
  border-radius: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: hsla(189, 93%, 32%, 0.8);
  background: linear-gradient(180deg, hsla(189, 93%, 32%, 0.8) 0%, hsla(188, 100%, 10%, 0.8) 100%);
  background: -moz-linear-gradient(180deg, hsla(189, 93%, 32%, 0.8) 0%, hsla(188, 100%, 10%, 0.8) 100%);
  background: -webkit-linear-gradient(180deg, hsla(189, 93%, 32%, 0.8) 0%, hsla(188, 100%, 10%, 0.8) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#06889E", endColorstr="#002B32", GradientType=1 );
}
@media (max-width: 992px) {
  .cta-wrapper h2 {
    font-size: 60px;
  }
  .cta-wrapper h3 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .cta-wrapper {
    padding: 30px 0;
  }
  .cta-wrapper h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .cta-wrapper h3 {
    font-size: 22px;
  }
  .cta-wrapper a {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.footer-top {
  background-color: #EDF8F8;
  padding: 30px 0;
  text-align: center;
}
.footer-logo {
  max-width: 320px;
}
.footer-top p {
  font-size: 18px;
  color: #2d2d2d;
  font-weight: 700;
  margin: 25px 0;
}
.footer-top p span {
  margin: 0 20px;
}
.footer-top a {
  font-size: 18px;
  color: #434343;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.footer-top h5 {
  margin-bottom: 0;
}
.footer-top h5 a {
  margin-bottom: 0;
}
.footer-top h5 a img.instagram-icon {
  margin: 0 15px;
}
.footer-bottom {
  background-color: #148291;
  padding: 15px 0;
}
.footer-bottom p {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-bottom p {
    font-size: 14px;
  }
}

.showrunner-section p {
  text-align: center;
  margin-bottom: 60px;
  line-height: 30px;
  font-size: 18px;
}

.section-title2 h2 {
  color: #148291;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.brand-growth .brands-area {
  text-align: center;
}
.brand-growth .brands-area p {
  line-height: 30px;
  margin-bottom: 60px;
  font-size: 18px;
}
.brand-growth .brands-area > img {
  margin-bottom: 60px;
}
.talent-carousel img {
  border-radius: 20px;
}
.promoter {
  padding-bottom: 60px;
}
.promoter-profile-wrapper {
  background-color: #EDF8F8;
  border: 2px solid #1F85A7;
  padding: 60px;
  border-radius: 20px;
  margin-top: 110px;
}
.promoter-profile-wrapper.upendra-profile {
  margin-top: 260px;
}

.promoter-name {
  margin-bottom: 15px;
}
.promoter-name h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 36px;
  margin: 0;
}
.promoter-name h6 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 36px;
  margin: 0;
}
.promoter-content p {
  font-size: 18px;
  font-weight: 400;
  color: #2d2d2d;
  line-height: 36px;
  width: 95%;
}

.promoter-img {
  width: 100pxpx;
  height: 330px;
  display: flex;
  align-items: flex-end;
}
.promoter-img img {
  display: none;
}
.promoter-img:after {
  position: absolute;
  bottom: -66px;
  left: 0;
}
.harsh-profile .promoter-img:after {
  content: url(../img/harsh.png);
}
.upendra-profile .promoter-img:after {
  content: url(../img/upendra.png);
}

@media (max-width: 1199px) {
  .harsh-profile .promoter-img:after {
    content: '';
    background-image: url(../img/harsh.png);
  }
  .upendra-profile .promoter-img:after {
    content: '';
    background-image: url(../img/upendra.png);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
  .promoter-img:after {
    position: absolute;
    bottom: -60px;
    left: 0;
    height: inherit;
    width: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
}
@media (max-width: 992px) {
  .promoter-profile-wrapper {
    padding: 30px 30px 0;
  }
  .promoter-profile-wrapper {
    margin-top: 30px;
  }
  .promoter-profile-wrapper.upendra-profile {
    margin-top: 60px;
  }
  .promoter-name h2 {
    font-size: 21px;
    line-height: 1;
  }
  .promoter-name h6 {
    font-size: 14px;
    line-height: 1;
    margin-top: 10px;
  }
  .promoter-content p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 0;
  }
  .promoter-content img {
    width: 92px;
    margin: 20px 0;
  }
  .promoter-img:after {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .promoter-content p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
  }
  .promoter-img:after {
    width: 160px;
  }
  .showrunner-section p, .brand-growth .brands-area p {
    font-size: 16px;
  }
  .section-title2 h2 {
    font-size: 27px;
  }
  .showrunner .section-title h2 {
    line-height: 1.2;
  }
  .showrunner .section-title h2 span {
    display: block;
  }
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/

.new-banner-wrapper {
  position: absolute;
  bottom: 10%;
  padding: 0 75px;
  width: 100%;
}
.new-banner-inner {
  color: #ffffff;
  align-items: center;
}
.new-banner-content h3 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 0;
  text-transform: uppercase;
}
.new-banner-content h2 {
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.new-banner-content p {
  font-size: 21px;
  line-height: 36px;
  font-weight: 500;
}

.news-banner-carousel .owl-item {
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.4s ease;
}
.news-banner-carousel .owl-item.center {
  opacity: 1;
  transform: scale(1);
}
.news-banner-carousel .item img {
  border-radius: 10px;
  width: 100%;
  border: 2px solid #ffffff;
}

.showcase-section {
  text-align: center;
  margin-bottom: 60px;
}
.showcase-section p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
}
.showcase-section h5 {
  font-size: 24px;
  line-height: 42px;
  font-weight: 600;
}
.event-card {
  background-color: #F8F8F8;
  border-radius: 10px;
}
.event-card img {
  border-radius: 10px;
}
.event-card p {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 20px 10px;
}
.event-carousel .owl-nav {
  margin-top: 30px;
  display: flex !important;
  justify-content: center;
  gap: 45px;
}

.modal-dialog.showcase-modal {
  width: 70%;
  max-width: 100%;
}
.modal-dialog.showcase-modal .modal-content {
  max-width: 100%;
}
.news-room-inner {
  background-color: #F8F8F8;
  border: 1px solid #DEDEDE;
  padding: 15px;
  border-radius: 20px;
  min-height: 720px;
}
.news-room-inner > img {
  margin-bottom: 15px;
}
.news-room-content > img {
  margin-bottom: 20px;
}
.news-room-content h2 {
  font-size: 21px;
  line-height: 32px;
  font-weight: 800;
  color: #2d2d2d;
}
.news-room-content h5 {
  font-size: 14px;
  line-height: 32px;
  font-weight: 600;
  color: #148291;
}
.news-room-content p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: #2d2d2d
}
.news-room-content a {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #585858;
}
.news-room-wrapper {
  row-gap: 30px;
}
.news-awards {
  padding-bottom: 60px;
}

.new-banner-content.desktop h3, .new-banner-content.desktop h2 {
  display: block;
}
.new-banner-content.mobile h3, .new-banner-content.mobile h2 {
  display: none;
}
@media only screen 
  and (max-device-width: 1366px) 
  and (hover: none) 
  and (pointer: coarse) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .news-hero {
    height: 100% !important;
    padding: 0;
    flex-direction: column;
  }
  .new-banner-wrapper {
    position: static;
    padding: 0 25px;
  }
  
  .news-banner-img {
    position: relative;
  }
  .new-banner-content.mobile {
    position: absolute;
    bottom: 10%;
    text-align: center;
    color: #ffffff;
    width: 100%;
  }
  .new-banner-inner {
    color: #2d2d2d;
    margin-top: 30px;
    flex-direction: column;
  }
  .new-banner-inner .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .new-banner-content.desktop h3, .new-banner-content.desktop h2 {
    display: none;
  }
  .new-banner-content.mobile h3, .new-banner-content.mobile h2 {
    display: block;
  }
  .new-banner-content h3 {
    font-size: 24px;
  }
  .new-banner-content h2 {
    font-size: 45px;
  }
  .new-banner-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen 
  and (max-device-width: 1366px) 
  and (min-width: 768px)
  and (hover: none) 
  and (pointer: coarse) {
  .new-banner-content h3 {
    font-size: 30px;
  }
  .new-banner-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .showcase-modal-wrapper {
    display: none !important;
  }
  .news-page .modal-backdrop {
    display: none !important;
  }
  .news-page.modal-open {
    overflow: visible;
  }
}

.home-morden-text p {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
.know-btn {
  background-color: #F1F6F5;
  padding: 20px;
}
.know-btn p {
  font-size: 30px;
  font-weight: 300;
  line-height: 47px;
}
.know-btn a {
  background-color: #148291;
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 47px;
  text-transform: uppercase;
  transition: 0.5s all;
}
@media (max-width: 1199px) {
  .home-morden-text p {
    font-size: 20px;
  }
  .know-btn p {
    font-size: 24px;
  }
}

.tickets-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ticket {
  flex: 1 1 calc(25% - 20px); /* 4 per row on desktop */
  display: flex;
  justify-content: flex-start;
  background: #F1F6F5;
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
}

.ticket img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.ticket-details {
  padding: 20px;
}
.ticket-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ticket-info {
  flex: 1;
}
.ticket-date {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0;
  color: #ED0E0E;
  margin-bottom: 4px;
}
.ticket-city {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0;
  color: #2D2D2D;
  margin-bottom: 4px;
}
.ticket-time {
  font-size: 0.875rem;
  color: #2D2D2D;
  font-weight: bold;
}
.ticket-price {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}
.ticket-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #FFF9F9;
  border: 2px solid #D51A20;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ticket-button img, .ticket-button svg {
  width: 30px;
  height: auto;
}
.ticket-button:hover {
  background: #D51A20;
  color: #FFF9F9;
  border-color: #FFF9F9;
}
.ticket-button:hover svg .bms-bg {
  fill: #ffffff;
}
.ticket-button:hover svg .bms-text {
  fill: #000000;
}
.ticket-button:hover svg .arrow {
  fill: #ffffff;
}

.bms-wrapper {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.bms-wrapper .bms-upper h3 {
  font-size: 34px;
  font-weight: 300;
  line-height: 60px;
  color: #2d2d2d;
}
.bms-wrapper .bms-upper h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 46px;
  color: #2d2d2d;
}
.bms-wrapper .bms-bottom {
  width: 100%;
}
.bms-wrapper .bms-bottom h5 {
  font-size: 42px;
  font-weight: 300;
  line-height: 64px;
  color: #2d2d2d;
}
.bms-wrapper .bms-bottom a {
  background-color: #ED0E0E;
  display: block;
  border-radius: 5px;
  transition: .5s all;
}
.bms-wrapper .bms-bottom a:hover {
  background-color: #c90a0a;
  transition: .5s all;
}
.bms-wrapper img {
  width: auto;
  margin: auto;
}

@media (max-width: 1199px) {
  .ticket {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Responsive: tablet - 2 per row */
@media (max-width: 991px) {
  .bms-wrapper .bms-upper h3 {
    font-size: 28px;
  }
  .bms-wrapper .bms-upper h4 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .bms-wrapper .bms-bottom h5 {
    font-size: 32px;
  }
}

/* Responsive: mobile - 1 per row */
@media (max-width: 575px) {
  .ticket {
    flex: 1 1 100%;
  }
}

.artist h5 {
  margin: 0;
  padding: 0;
  text-align: center;
}
.artist h3 {
  margin: 20px 0;
  padding: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 43px;
  color: #2d2d2d;
}
.artist p {
  margin: 0;
  padding: 0;
  text-align: center;
}
.artist p a {
  font-size: 21px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
}

.ticket-time a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.ticket-time a img {
  width: auto;
  display: inline-block;
}
.static-btn {
  background-color: #E4FFDE;
  border: 2px solid #1FAB00;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
}
.static-btn p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  text-align: center;
}
.ticket-price h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
