 /* Please ❤ this if you like it! */
 @import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 /* #Primary
================================================== */
:root {
    --theme-bg: #000;
    --theme-bg-light: #f91c01;
}
 body {
     font-family: 'Montserrat', sans-serif !important;
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
     color: #212112;
     background-color: #fff;
     overflow-x: hidden;
     transition: all 200ms linear;
     -webkit-transition: all 200ms linear;
     -moz-transition: all 200ms linear;
     -ms-transition: all 200ms linear;
     -o-transition: all 200ms linear;
}
 span, p {
     font-family: 'Montserrat', sans-serif !important;
     
 }
p {
    color: #565656;
    font-size: 18px;
    text-align: justify;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
 ::selection {
     color: #fff;
     background-color: #8167a9;
 }
 ::-moz-selection {
     color: #fff;
     background-color: #8167a9;
 }
 .padding-top {
    padding-top: 60px;
 }
 .padding-bottom {
    padding-bottom: 60px;
 }
 /* #Navigation
================================================== */
 .start-header {
     opacity: 1;
     transform: translateY(0);
     padding: 0px 0;
     box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
     -webkit-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
 }
 .start-header.scroll-on {
     box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
     padding: 0px 0;
     -webkit-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
 }
 .start-header.scroll-on .navbar-brand img {
     /* height: 24px; */
     -webkit-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
 }
 .navigation-wrap {
  background: #010101;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
 .navbar {
     padding: 0;
 }
 .navbar-brand img {
     width: auto;
     height: 55px;
     display: block;
     transition: 0.5s all ease-in-out;
     -webkit-transition: 0.5s all ease-in-out;
     -moz-transition: 0.5s all ease-in-out;
     -ms-transition: 0.5s all ease-in-out;
     -o-transition: 0.5s all ease-in-out;
}
 .navbar-toggler {
     float: right;
     border: none;
     padding-right: 0;
 }
 .navbar-toggler:active,
 .navbar-toggler:focus {
     outline: none;
 }
 .navbar-light .navbar-toggler-icon {
     width: 24px;
     height: 17px;
     background-image: none;
     position: relative;
     border-bottom: 1px solid #fff;
     transition: all 300ms linear;
 }
 .navbar-light .navbar-toggler-icon:after,
 .navbar-light .navbar-toggler-icon:before {
     width: 24px;
     position: absolute;
     height: 1px;
     background-color: #fff;
     top: 0;
     left: 0;
     content: '';
     z-index: 2;
     transition: all 300ms linear;
 }
 .navbar-light .navbar-toggler-icon:after {
     top: 8px;
 }
 .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
     transform: rotate(45deg);
 }
 .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
     transform: translateY(8px) rotate(-45deg);
 }
 .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
     border-color: transparent;
 }
 .nav-link {
     color: #fff !important;
     font-weight: 600;
     transition: all 200ms linear;
 }
 .nav-item:hover .nav-link {
     color: var(--theme-bg-light) !important;
 }
 .nav-item.active .nav-link {
     color: var(--theme-bg-light) !important;
 }
 .nav-item.active .dropdown-toggle::after {
    border-color: var(--theme-bg-light);
 }
 .nav-item:hover .dropdown-toggle::after {
    border-color: var(--theme-bg-light);
 }
 .nav-link {
     position: relative;
     padding: 5px 0 !important;
     display: inline-block;
 } 
 .nav-item:hover:after {
     bottom: 0;
     opacity: 1;
 }
 .nav-item.active:hover:after {
     opacity: 0;
 }
 .nav-item {
     position: relative;
     transition: all 200ms linear;
     margin-left: 40px;
     text-transform: capitalize;
 } 
 /* #Primary style
================================================== */
  
 .nav-item .dropdown-menu {
     transform: translate3d(0, 10px, 0);
     visibility: hidden;
     opacity: 0;
     max-height: 0;
     display: block;
     padding: 0;
     margin: 0;
     transition: all 200ms linear;
 }
 .nav-item.show .dropdown-menu {
     opacity: 1;
     visibility: visible;
     top: 40px;
     max-height: 999px;
     transform: translate3d(0, 0px, 0);
 }
 .dropdown-menu {
     padding: 10px !important;
     margin: 0;
     font-size: 13px;
     letter-spacing: 1px;
     color: #212121;
     background-color: #fcfaff;
     border: none;
     border-radius: 3px;
     box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
     transition: all 200ms linear;
 }
 .dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: 2px;
    content: "";
    /* border-top: 0.3em solid; */
    /* border-right: 0.3em solid transparent; */
    /* border-bottom: 0; */
    /* border-left: 0.3em solid transparent; */
    /* box-sizing: border-box; */
    height: 9px;
    width: 9px;
    border-style: solid;
    border-color: white;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
}
 .dropdown-item {
    padding: 10px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
    font-size: 15px;
    font-weight: 500;
    border-left: 2px solid transparent;
 }
 .dropdown-item:hover,
 .dropdown-item:focus {
   border-left: 2px solid var(--theme-bg);
   color: var(--theme-bg);
   background: #2a221b29;
} 
.blog-img {
    padding-top: 100%;
    position: relative;
}
 .blog-img img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    left: 0;
    right: 0;
}
.blog-bottom p {
   font-style: italic;
    font-weight: 600;
    color: black;
}
 /* #Media
================================================== */
 @media (max-width: 767px) {
     h1 {
         font-size: 38px;
     }
     .nav-item:after {
         display: none;
     }
     .nav-item::before {
         position: absolute;
         display: block;
         top: 15px;
         left: 0;
         width: 11px;
         height: 1px;
         content: "";
         border: none;
         background-color: #000;
         vertical-align: 0;
     }
     .nav-tabs li.nav-item:before {
      display: none;
     }
     .nav-tabs li.nav-item {
      margin: 0;
      width: 100%;
      text-align: center;
  }
  
     .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 12px;
        right: -10px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #fff;
        vertical-align: 0;
        transition: all 200ms linear;
        transform: rotate(0deg);
     }
     .dropdown-toggle[aria-expanded="true"]::after {
         transform: rotate(90deg);
         opacity: 0;
     }
     .dropdown-menu {
         padding: 0 !important;
         background-color: transparent;
         box-shadow: none;
         transition: all 200ms linear;
     }
     .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
         margin-top: 10px !important;
         margin-bottom: 20px !important;
     }
 }
 @media (max-width: 991px) {
  a.nav-link {
    font-size: 13px;
  }
}
 /* #Link to page
================================================== */
 .logo {
     position: absolute;
     bottom: 30px;
     right: 30px;
     display: block;
     z-index: 100;
     transition: all 250ms linear;
 }
 .logo img {
     height: 26px;
     width: auto;
     display: block;
     filter: brightness(10%);
     transition: all 250ms linear;
 }
 .top-spacer {
  padding-top: 60px;
 }
 .first-section.full-height {
    border-bottom: 2px solid #f8f8f8;
}
 
.hero-slider {
    width: 100%;
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
  }
  
  
  .hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
  }
  
  .hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top ;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  .hero-slider .slide-inner::before {
  content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #0000006e;
    /*backdrop-filter: blur(7px);*/
} 
.hero-slider .slide-inner img {
    position: relative;
    width: 70%;
    height: 80%;
    object-fit: contain;
}
  
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #b5b5b5;
    /*border-radius: 55px;*/
    opacity:0;
    visibility:hidden;
    transition:all .3s ease;
  }
  .hero-slider:hover .swiper-button-prev,
  .hero-slider:hover .swiper-button-next {
    transform:translateX(0);
    opacity:1;
    visibility:visible;
  }
  
  @media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
      display: none;
    }
    
  }
  
  .hero-slider .swiper-button-prev {
    left: 25px;
    transform:translateX(50px);
  }
  
  .hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #b5b5b5;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
  }
  
  .hero-slider .swiper-button-next {
    right: 25px;
    transform:translateX(-50px);
  }
  
  .hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #b5b5b5;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
  }
  
  .hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background:#fff;
    transition:all .2s ease;
  }
  .swiper-button-next:hover,  .swiper-button-prev:hover {
    background: black;
    border-color: black;
    color: #fff;
}
.swiper-button-next:hover:before, .swiper-button-prev:hover:before {
  
    color: #fff;
}
  .hero-slider .swiper-pagination-bullet-active {
    opacity:1;
  }
  
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
    bottom: 30px;
  }
  
  @media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
  /*     display: none; */
    }
  }
  .swiper-pagination {
    text-align:left;
  }
  
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom:50px;
      max-width: 1200px;
      padding: 0 15px;
      margin: 0 auto;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
  }
  @media (max-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom: 0px;
   
  }
  .hero-slider .slide-inner img {
      width: 100%;
    height: 380px;
    object-fit: cover;
  }
  }
  /*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
  .hero-style {
    height: 85vh;
    transition:all .4s ease;
    -webkit-transition:all .4s ease;
    -moz-transition:all .4s ease;
    -ms-transition:all .4s ease;
    -o-transition:all .4s ease;
}
  
  
  
  .hero-style .slide-title,
  .hero-style .slide-text,
  .hero-style .slide-btns {
    max-width: 690px;
  }
  
  .hero-style .slide-title h2 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 40px;
    text-transform: capitalize;
    transition:all .4s ease;
  }
  
  @media (max-width: 1199px) {
    .hero-style .slide-title h2 {
      font-size: 75px;
    }
  }
  
  @media (max-width: 991px) {
    .hero-style .slide-title h2 {
      font-size: 50px;
      margin: 0 0 35px;
    }
  }
  
  @media (max-width: 767px) {
    .hero-style .slide-title h2 {
      font-size: 35px;
      margin: 0 0 30px;
    }
  }
  
  .hero-style .slide-text p {
    opacity: 0.8;
    font-family: Rajdhani;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition:all .4s ease;
  }
  
  @media (max-width: 767px) {
    .hero-style .slide-text p {
      font-size: 16px;
      font-size: 1rem;
      font-weight: normal;
      margin: 0 0 30px;
    }
    .nav-item {
      margin-left: 0;
  }
  .dropdown-item {
    color: #fff;
    font-size: 14px;
    line-height: 10px;
}
.dropdown-item:hover, .dropdown-item:focus {
  color:  #fff; 
}

  }
  
  .hero-style .slide-btns > a:first-child {
    margin-right: 10px;
  }
  
a.splitting-mark.splitting {
    display: none;
}

/*.splitting .char {*/
/*    animation: slide-in 1s cubic-bezier(.5, 0, .5, 1) both;*/
/*    animation-delay: calc(60ms * var(--char-index));*/
/*    transition: transform .3s cubic-bezier(.3,0,.3,1),opacity .3s linear;*/
/*    transition-delay: calc(20ms + (30ms * var(--char-index)));*/
/*}*/
.splitting[data-scroll=in] .char {
   animation: slide-in 1s cubic-bezier(.5, 0, .5, 1) both;
    animation-delay: calc(60ms * var(--char-index));
    transition: transform .3s cubic-bezier(.3,0,.3,1),opacity .3s linear;
    transition-delay: calc(20ms + (30ms * var(--char-index)));
} 
.splitting[data-scroll=out] .char {
  opacity: 0.1;
  transform: translateY(0.25em);
} 
@keyframes slide-in {
  from {
    transform: translateX(1em);
    opacity: 0;
  }
}



  
  /*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
  .theme-btn, .theme-btn-s2{
      background-color: #ffffff;
      font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color:#2b3b95;
      padding: 9px 32px;
      border: 0; 
    border-radius: 3px;
      text-transform: uppercase;
      display: inline-block;
      line-height: initial;
    transition:all .4s ease;
  }
  a {
      text-decoration: none;
      transition: all 0.2s ease;
  }
  .theme-btn-s2{
      background-color: rgba(255, 255, 255, 0.9);
      color: #131e4a;
  }
  .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
      background-color:#2b3b95 ;
      color: #fff;
  }
  .theme-btn-s3{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
  }
  i.fa-chevron-circle-right{
    height:22px;
    width:22px;
  }
  a:hover {
      text-decoration: none;
  }
  @media (max-width: 991px){
    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
      font-size: 13px;
      padding: 15px 25px;
    }
  }
  @media (max-width: 767px){
    .theme-btn, .theme-btn-s2{
      padding: 13px 20px;
      font-size: 13px;
    }
  }
  
  
  .section-title {
    margin-bottom: 20px;
}
  .section-title h3 {
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .section-title h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    height: 20px;
    width: 10px;
    background:#F71B0E;
    transform: translateY(-50%);
    border-radius: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
 .content-text-section p {
    text-align: justify;
 }
 .read-more-link a {
    color: #fff;
    display: flex;
    align-items: center;
    background: #F43607;
    padding: 10px 20px;
    border-radius: 7px;
    justify-content: center;
 }
 .read-more-link a svg {
    width: 20px;
    height: 20px;
    margin-left: 6px;
} 
 

.footer__container {
    grid-template-columns: 1fr .5fr .5fr .5fr;
}
.footer__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
    transition: .3s;
}
.grid {
    display: grid;
}
.footer-section {
  background-color: var(--theme-bg);
  padding: 50px 0;
}
.follow-us {
  padding-top: 60px;
}
h4.footer-title {
     font-size: 20px;
    color: var(--theme-bg-light);
    margin-bottom: 15px;
    font-weight: 600;
}
.follow-us ul {
  display: flex;
}
.follow-us ul li {
  width: 55px;
  height: 35px;
  padding: 0 20px 0 0;
}
.follow-us ul li a {
  display: block;
}
.follow-us ul li a svg {
  width: 100%;
  height: 100%;
}

.footer-links a {
  color: #fff;
}
.footer-links li {
  padding: 0 0 15px;
}
.footer-links a:hover {
  color: var(--theme-bg-light);
  font-weight: 600;
}
.content-text-section {
  padding-bottom: 30px;
}
.right-side-link {
  background: #f5f5f5;
}
.right-side-link ul li {
  border-bottom: 1px solid #cdcdcd;
}
.right-side-link ul li a {
  padding: 15px 25px;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  color: var(--theme-bg);
}
.right-side-link ul li a:hover {
  color: #fff;
  background-color: var(--theme-bg);
}
.right-side-link ul li:last-of-type {
  border-bottom: none;
}
.right-side-link ul li.active a {
  color: #fff;
  background-color: var(--theme-bg);
}
.page-title {
  padding: 40px 0;
  border-bottom: 2px solid #f2f2f2;
  text-transform: uppercase;
}
.page-title h2 {
  position: relative;
  color: var(--theme-bg);
  font-weight: 700;
}
.card-blog-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  grid-auto-rows: minmax(50px, auto);
  width: 100%;
  margin-top: 30px;
}
.user_image {
  padding-top: 70%;
  position: relative;
  display: block;
}
.user_image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-content {
  padding: 15px 20px;
}
.card-content p {
  margin: 0;
    color: #ababab;
    font-size: 16px;
    font-weight: 500;
}
.card-content h4 {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
}
span.user_label {
  position: absolute;
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 7px 18px;
  top: 10px;
  left: 10px;
  z-index: 9;
  border-radius: 0;
}
.nav-tabs li.nav-item {
  margin: 0;
  
} 
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  background: #f5f5f5;
  display: inline-flex;
  padding: 15px 15px;
  border: none;
  margin-bottom: 40px;
} 
.nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 10px 50px !important;
  color: var(--theme-bg) !important;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
}

.nav-tabs .nav-link.active {
  background: var(--theme-bg);
  border: none;
  color: #fff !important;
}
.nav-tabs .nav-link:hover {
  background: var(--theme-bg) !important;
  color: #fff !important;
}
.home-movies-card-section .movies-card-inner {
    grid-template-columns: repeat(3, 1fr);
}
.movies-card-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  grid-auto-rows: minmax(50px, auto);
  width: 100%;
  margin-top: 30px;
}
.poster-card .poster {
    padding-top: 80%;
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-position: bottom;
}
.poster-card .poster img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%; 
  transition: 0.2s all ease-in-out;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out; 
  object-fit: contain;
  /*background-color: #000;*/
}
.poster-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px #ebebeb;
    border-radius: 10px;
}
.poster-card .poster::before {
    content: "";
    background-color: #000000a8;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(5px);
}
.content-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid #e3e3e3;
}
.release_year h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.imdb_rating {
    display: flex;
    align-items: center;
}
.imdb_rating h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.imdb_rating h4 span {
       font-size: 18px;
    font-weight: 600;
    color: #bdbdbd;
}
.imdb_rating i {
    font-size: 15px;
    margin-right: 10px;
}
.content-name {
  /*position: absolute;*/
  bottom: 0;
  background: #e9e9e9;
  width: 100%;
  padding: 14px 20px; 
  text-align: center;
  transition: 0.2s all ease-in-out;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}
.content-name h4 {
  margin: 0;
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
text-wrap: nowrap;
}
.poster-card:hover img {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transition: 0.2s all ease-in-out;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}
.movie-category {
    padding: 20px 20px 20px;
    border-top: 1px solid #e3e3e3;
    margin-top: -1px;
}

.poster-hover {
    position: absolute;
    opacity: 0;
    z-index: 9;
    top: auto;
    bottom: 0;
    background: #fff;
    width: 100%;
    transition: 0.3s all ease-in-out;
    transform: translateY(100%);
}
.poster-card:hover .poster-hover {
 opacity: 1;
  transform: translateY(0%);
}
.movie-category h4 {
    margin: 0;
    font-size: 16px;
    text-transform: capitalize;
    background: #e9e9e9;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 20px;
    font-weight: 600;
}
.footer-logo img {
  width: 100%;
}
.left-side {
  float: left;
  width: auto;
  padding-right: 30px;
  padding-bottom: 10px;
  max-width: 380px;
}
 
.img-grid .wrapper {
  width: 120%;
  margin: 0 -10%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex: 1 1 auto;
}
.img-grid .col {
  flex-basis: 16%;
  padding: 0 10px;
}
.page-title h2 {
  margin: 0;
}
@media (max-width: 1024px) {
.img-grid .wrapper {
  width: 100%; 
  margin: 0;
}
}

@media (max-width: 767px) {
  .img-grid .col {
    padding: 0 5px;
    flex-basis: 26%;
  }
  .card-blog-section {
    grid-template-columns: repeat(1, 1fr);
  } 
  .left-side {
    padding-right: 30px;
    padding-bottom: 10px;
    width: 40%;
}
.movies-card-inner {
  grid-template-columns: repeat(2, 1fr);
}
.nav-tabs li.nav-item, .nav-tabs .nav-link {
  width: 100%;
  text-align: center;
}
.page-title h2 {
  font-size: 22px;
  margin: 0;
}
}

@media (max-width: 480px) {
 .movies-card-inner {
  grid-template-columns: repeat(1, 1fr);
}
.page-title h2 {
  font-size: 20px;
  margin: 0;
}
.address span {
  line-height: 30px;
  color: #a7a7a7;
  font-size: 16px;
}
}
.img-grid .col img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.img-grid .col img:not(:last-child) {
  margin-bottom: 20px;
}
.img-grid .col img.right {
  float: right;
}
.address span {
  line-height: 35px;
  font-weight: 500;
  color: #a7a7a7;
}
.contact-img {
  width: 100%;
  margin-bottom: 30px;
}
.video-blog iframe {
  width: 100%;
  height: 230px;
}
.nav-main-link {
    color: #3f474e;
    text-decoration: none !important;
}

@media (max-width: 1199px) {
    .hero-slider .slide-inner img {
        width: 70%;
        height: 80%;
        position: relative;
        object-fit: contain;
    }
}
@media (max-width: 991px) {
    .hero-style {
      height: 470px;
    }
    .footer-links {
      margin-top: 30px;
  }
  .hero-slider {
      height: 600px;
    }
  }
  
  @media (max-width: 767px) {
    .hero-slider {
      height: 500px;
    }
  }
  
   
  @media (max-width: 640px) {
  .hero-style {
    height: 370px;
}
  }
    @media (max-width: 575px) {
        .hero-slider .slide-inner img {    
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .home-movies-card-section .movies-card-inner {
            grid-template-columns: repeat(1, 1fr);
        }
    }
  @media (max-width: 480px) {
    .hero-style {
      height: 220px;
    }
    .first-section.full-height {
    padding: 0;
}
.hero-slider .slide-inner {
    background-size: cover;
}
.img-grid .wrapper {
    display: block;
}
.left-side {
    padding-right: 0px;
    width: 100%;
}
.hero-slider .slide-inner img {
    width: 90%;
    height: 70%;
    object-fit: contain;
}
  }
  
  @media screen and (min-width: 992px) {
    .hero-style .container {
      padding-top: 95px;
    }
  }
  .movie-production {
   padding: 10px 20px 10px; 
}
.movie-production h6 {
    color: #b3b3b3;
}
.movie-production h5 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}