/*
Theme Name: Exclusive Production
Theme URI: https://exclusive.com/
Author: Kantipur Infotech
Author URI: https://https://kantipurinfotech.com//
Description: Exclusive Production Theme.
Tags: Production
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
Note: The CSS files are loaded from assets/css/ folder.
*/

@import url("https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
  --blue-theme: #1465bc;
  --heading-font-large: 36px;
  --heading-font-small: 16px;
  --secondary-bg: #edf2f4;
  --primary-color: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: poppins;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

::selection {
  background-color: rgb(37, 37, 37);
  color: white;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

/* body{
    background-color: white;
} */

/* header navbar */

.headernavigation {
  position: absolute;
  top: -100px;
  z-index: 1;
  transition: all 300ms ease-in-out;
}

#headernavigation > .container-fluid {
  max-width: 1400px !important;
}

#headernavigation .container-fluid {
  max-width: 800px;
}

.header-top {
  background-color: #edf5f7;
}

.header-top .left,
.right {
  max-width: fit-content;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .header-bottom .right {
    display: none;
  }

  .header-bottom .row .navbar {
    width: fit-content !important;
  }

  .header-bottom .row {
    justify-content: space-between;
  }
}

.header-top .row {
  justify-content: space-between;
  padding-bottom: 0.5rem;
}

.header-top .left .search {
  --space: 20px;
  margin-left: calc(var(--space) + 10px);
  padding-left: var(--space);
  border-left: 1px solid rgb(200, 200, 200);
  position: relative;
}

.header-top .search i {
  position: absolute;
  left: 30px;
  top: 10px;
}

.header-top .search input {
  border: none;
  background-color: transparent;
  padding: 10px 10px 10px 30px;
  border: 1px solid rgba(209, 209, 209, 0);
}

.header-top .search input:active,
.header-top .search input:focus {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 232, 232);
  border-radius: 10vw;
  box-shadow: 0 2px 1px rgb(235, 235, 235);
  outline: none;
}

.right {
  gap: 20px;
}

.right .contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right .contact h3,
.right .contact p {
  font-size: 14px;
  /* color: white; */
  color: black;
}

.right .contact i {
  font-size: 16px;
  /* color: #bebebe; */
  color: black;
}

.header-top .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a5a9d;
  color: white;
  width: 30px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.header-top .icon .ri-phone-fill {
  font-size: 18px;
}

.header-top .contact h3,
.header-top .contact p {
  line-height: 1.3;
}

.header-top .contact h3 {
  font-size: 12px;
  color: rgb(137, 137, 137);
}

.header-top .contact p {
  font-size: 12px;
  color: rgb(0, 0, 0);
}

.header-top .image {
  width: 120px;
}

.header-bottom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: all 200ms ease-out;
}

.headerNavigation {
  position: fixed !important;
  /* top: 0; */
}

#headernavigation {
  animation: navanimation 1500ms cubic-bezier(0.43, 0.13, 0.23, 0.9);
}

@keyframes navanimation {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  30% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.text-animation {
  overflow-y: hidden;
}

/* 
.text-animation h4 {
    animation: textmove 2000ms cubic-bezier(0.43, 0.13, 0.23, 0.9);
}

@keyframes textmove {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    30% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
} */

.hero-section {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  position: relative;
}

#sec-video {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero-section .hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 5%;
  padding-right: 5%;
}

.hero-content h4 {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 700;
  color: rgb(239, 253, 255);
  /* margin-bottom: 1rem; */
  line-height: 1.3;
  letter-spacing: 1.5px;
}

.hero-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #859ab1;
}

.header-bottom .row {
  /* justify-content: end; */
  align-items: center;
  margin-block: 0.25rem;
}

.header-bottom .row .navbar {
  width: calc(100% - 515px);
}

.header-bottom .row .mail-logo {
  width: 200px;
}

.right {
  width: 250px;
}

.header-bottom .row .menu {
  font-size: 24px;
}

.header-bottom .row .navbar {
  background-color: transparent !important;
}

.navbar-nav {
  width: 100%;
  justify-content: space-between;
  padding: 0 10px;
}

.header-bottom .row .navbar .nav-link {
  font-size: 18px;
  font-weight: 500;
  /* color: white; */
  color: black;
}

.header-bottom .social-link h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0px;
}

.header-bottom .social-link .icons i {
  font-size: 20px;
  border: 2.5px solid black;
  padding: 5px;
  margin-right: 5px;
  transition: all 100ms ease-in-out;
}

.header-bottom .social-link .icons i:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

/* herosection */

.heading-cm {
  max-width: 1320px;
  margin: auto;
}

.heading-single {
  font-size: var(--heading-font-large);
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: fit-content;
}

.image-l {
  overflow: hidden;
}

.about-us-single .row {
  margin-block: 6rem;
}

@media (min-width: 991px) {
  .about-us-single .image {
    margin-right: 1.5rem;
  }

  .about-us-single .content {
    margin-left: 1.5rem;
  }
}

.about-us-single .image {
  aspect-ratio: 5 /4;
}

.image {
  aspect-ratio: 5/ 4;
}

.about-us-single .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-single .content h3 {
  font-size: var(--heading-font-large);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-us-single .content p {
  font-size: 18px;
  text-align: justify;
  line-height: 1.6;
}

.services-single {
  background-color: var(--secondary-bg);
  padding: 6rem 0;
}

.services-single .services-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.services-single .services-card img {
  width: 70px;
}

.card-group > a {
  background-color: white;
  border: 1px solid rgba(171, 223, 231, 0);
}

.services-single .services-card .card-cm {
  padding: 30px;
  max-width: 280px;
  border: 1px solid rgba(201, 201, 201, 0);
}

.card-group > a:hover {
  border: 1px solid rgb(171, 223, 231);
  background-color: rgb(250, 253, 255);
}

.services-single .services-card .card-cm h3 {
  font-size: 24px;
  margin: 20px 0 15px;
  color: black;
  font-weight: 600;
}

.services-single .services-card .card-cm p {
  line-height: 1.8;
  color: black;
  color: #555;
}

.upcoming-movies {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.overflow-bg-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.overflow-bg-image::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.upcoming-movies .swiper {
  width: 100%;
  height: 100%;
}

.upcoming-movies .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #757575;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 5 /4.5;
  background-color: transparent;
}

.upcoming-movies .swiper-slide .card {
  height: 100%;
  border: none;
  background-color: transparent;
}

.upcoming-movies .swiper-slide .card__image {
  width: 100%;
  aspect-ratio: 5 /4;
  overflow: hidden;
}

.upcoming-movies .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.click-btn {
  max-width: 1320px;
  margin: auto;
  display: flex;
  justify-content: end;
  gap: 20px;
  position: relative;
  margin-bottom: 1rem;
}

.button-div {
  position: absolute;
  right: 0;
  width: 130px;
  top: 10px;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
}

.click-btn .button-div .swiper-button-next,
.click-btn .button-div .swiper-button-prev {
  background-color: white;
  height: 30px;
  width: 50px;
  transition: all 300ms ease-in-out;
}

.click-btn .button-div .swiper-button-next:hover,
.click-btn .button-div .swiper-button-prev:hover {
  background-color: rgb(210, 210, 210);
}

.click-btn .button-div .swiper-button-next span,
.click-btn .button-div .swiper-button-prev span {
  color: black;
}

.button-div div::after {
  display: none !important;
}

.upcoming-movies .swiper-slide .card__image img {
  transition: all 1000ms cubic-bezier(0.43, 0.13, 0.23, 0.9);
}

.upcoming-movies .swiper-slide .card__image img:hover {
  transform: scale(1.2);
}

.upcoming-movies .swiper-slide .card__content {
  position: absolute;
  bottom: 0px;
  right: 25px;
  left: 25px;
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  padding: 25px 0;
  color: white;
}

.upcoming-movies .swiper-slide .card__content h3 {
  font-size: 22px;
}

.upcoming-movies .swiper-slide .card__content p {
  font-size: 14px;
  color: rgb(152, 152, 152);
}

.play-btn {
  opacity: 0;
  font-size: 30px;
  color: rgb(150, 135, 19);
  position: absolute;
  top: 50%;
  right: calc(50% - 100px);
  transform: translate(-50%, -50%);
  background-color: white;
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 1000ms ease-in-out;
}

.play-btn::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  animation: ripple 4s linear infinite;
}

@keyframes ripple {
  0% {
    width: 80px;
    height: 80px;
  }

  80% {
    width: 150px;
    height: 150px;
  }

  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}

.play-btn i {
  padding-left: 5px;
}

.upcoming-movies .swiper-slide:hover {
  transition: all 1000ms ease-in-out;
}

.upcoming-movies .swiper-slide:hover .play-btn {
  opacity: 1;
}
/* 
.upcoming-movies .swiper-slide.swiper-slide-active .play-btn {
    transition-delay: 500ms;
    opacity: 1;
}

.upcoming-movies .swiper-slide.swiper-slide-active .active-img {
    transform: scale(1.2);
} */

.nav-tabs {
  gap: 20px;
}

.nav-tabs .nav-link {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000000;
  border: none;
  border-radius: 0;
}

.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: black;
  border-radius: 0;
  border: none;
}

.nav-tabs .nav-link:focus-visible {
  border: none;
  color: #ffffff;
  border-radius: 0;
  background-color: black;
}

.video-tab {
  max-width: 1320px;
  margin: auto;
  margin-top: 40px;
}

.video-tab .nav-link {
  color: white;
}

.carousel2 .swiper-slide .video {
  width: 100% !important;
  aspect-ratio: 16 / 9;
}

.carousel2 .swiper-slide iframe {
  width: 100% !important;
  height: 100%;
}

.button-div2 {
  display: flex;
  flex-direction: row-reverse;
  height: 30px;
  width: 110px;
  justify-content: space-between;
}

.yt-single {
  padding: 6rem 0;
  background-color: rgb(35, 35, 35);
}

.click-btn2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.click-btn2 .swiper-button-prev2,
.swiper-button-prev4,
.click-btn2 .swiper-button-next2,
.swiper-button-next4 {
  background-color: black;
  color: white;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.click-btn2 .swiper-button-prev2:hover,
.swiper-button-prev4:hover,
.click-btn2 .swiper-button-next2:hover,
.swiper-button-next4:hover {
  background-color: rgb(45, 45, 45);
}

.click-btn .swiper-button-prev3,
.click-btn .swiper-button-next3 {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.click-btn .swiper-button-prev3:hover,
.click-btn .swiper-button-next3:hover {
  background-color: rgb(157, 157, 157);
}

.click-btn2 h3 {
  margin: 0;
}

.carousel2 .content h3 {
  font-size: 16px;
  color: rgb(255, 255, 255);
}

.cli-carousel-sec {
  background-color: var(--secondary-bg);
}

.cli-carousel-single {
  padding: 5rem 0;
}

.carousel3 .swiper-slide img {
  width: auto;
  height: 100px;
  margin: auto;
}

.carousel3 .swiper-slide {
  opacity: 0.85;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.carousel3 .swiper-slide:hover {
  opacity: 1;
}

.carousel3 .swiper-slide .content h3 {
  font-size: 16px;
  text-align: center;
}

.p-card {
  padding: 30px;
  background-color: white;
  border-radius: 16px;
  border: 1px solid rgb(238, 238, 238);
}

.p-card-img {
  background-color: #f9faff;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-card a {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-card button {
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
  padding: 5px 10px;
  background-color: white;
}

.p-card button:hover {
  background-color: rgba(245, 245, 245, 0.5);
}

.subsidiary .swiper-slide {
  height: 350px;
}

.subsidiary .card-cm {
  border: 1px solid rgb(217, 217, 217);
  height: 100%;
}

.subsidiary .card-cm img {
  height: 250px;
}

.subsidiary .card-cm h4 {
  padding: 10px;
  font-size: 18px;
  line-height: 1;
}

.swiper-container,
.swiper-subsidiary {
  max-width: 1320px;
  margin: auto;
  overflow: hidden;
}

/* 
.swiper-container .swiper-slide h3{
    font-size: 1rem;
} */

.about-hero img {
  height: 600px;
  object-fit: cover;
  filter: brightness(0.4);
}

.about-area {
  margin-block: 5rem;
}

.about-area img,
.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-area .about-img,
.big-image {
  position: relative;
  padding-left: 40px;
  height: 650px;
}

.about-area .small-img,
.big-image .small-image {
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 1;
  width: 45%;
  aspect-ratio: 1/ 1;
}

.about-area .small-img {
  border: 5px solid white;
}

.big-image .small-image {
  bottom: -50px;
}

.big-image .small-image img {
  border-radius: 50%;
  border: 5px solid white;
}

.about-area-right > * {
  margin-bottom: 1rem;
}

.about-area-right .about-heading h3 {
  font-size: 16px;
  color: var(--blue-theme);
}

.about-area-right .about-title h3 {
  font-size: var(--heading-font-large);
  font-weight: 700;
}

.about-area-right .experience p {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-area-right .experience span {
  font-size: var(--heading-font-large);
  font-weight: 600;
  color: var(--blue-theme);
  padding-right: 10px;
}

.about-area-right .about-content {
  letter-spacing: 1px;
  font-size: 1rem;
  text-align: justify;
}

@media (min-width: 991px) {
  .about-area .about-img {
    padding-right: 20px;
  }

  .about-area .about-area-right {
    padding-right: 20px;
  }
}

.message-sec {
  padding: 8rem 0;
  max-width: 100vw;
  overflow: hidden;
}

.message {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-left: 60px;
  background-color: #1a5a9d;
}

.message-heading {
  font-size: 44px;
  font-weight: 700;
  color: white;
}

.message-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.message-image .image {
  position: absolute;
  right: -50px;
  height: 300px;
  max-width: 500px;
}

.message-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-image .image h3 {
  position: absolute;
  bottom: -10px;
  left: 15px;
  font-size: 18px;
  padding: 4px 10px;
  background-color: #e41e2b;
  color: white;
}

.message .content {
  height: 400px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
  gap: 30px;
}

.message .content h4 {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: 300;
  color: rgb(255, 255, 255);
}

/* 
.message .detail {
    margin-top: 20px;
}

.message .detail h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.message .detail p {
    font-size: 18px;
    text-transform: uppercase;
    color: #c1c1c1;

} */

.button-cm .cta {
  cursor: pointer;
  font-weight: 400;
  font-family: Helvetica, "sans-serif";
  transition: all 0.2s;
  padding: 10px 15px;
  border-radius: 5px;
  background: var(--blue-theme);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: white;
}

.button-anim {
  animation: buttonmove 2000ms ease-out;
}

@keyframes buttonmove {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  70% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.button-cm .cta:hover {
  background: #0e4c8f;
}

.button-cm .cta > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.button-cm .cta:hover svg {
  transform: translateX(5px);
}

.button-cm .cta:active {
  transform: scale(0.95);
}

.heading-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.heading-center h4 {
  font-size: 16px;
  color: var(--blue-theme);
  margin-bottom: 1rem;
}

.heading-center h3 {
  font-size: var(--heading-font-large);
  font-weight: 700;
}

.trailer-sec .heading-center h3 {
  color: white;
}

.trailer-sec {
  padding: 5rem 0;
  background-color: #202020;
}

.swiper-trailer-image {
  height: 400px;
}

.swiper-trailer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-trailer .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-block: 12px;
}

.swiper-trailer .content p {
  font-size: 16px;
  color: rgb(177, 177, 177);
  text-align: center;
}

.history {
  margin-block: 5rem;
}

.history-left > * {
  margin-bottom: 2rem;
}

.history-left .heading h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-theme);
}

.history-left .title h3 {
  font-size: 34px;
  font-weight: 700;
}

.history-left .content-range {
  background-color: #f3f3f3;
  height: 500px;
  overflow-y: scroll;
}

.content-range .real {
  padding: 20px;
  display: flex;
  transition: all 300ms ease-in-out;
}

.content-range .real:hover {
  background-color: #202020;
  color: white !important;
}

.content-range .real:hover .p-cm {
  color: rgb(225, 225, 225);
}

.content-range .real .date-range {
  width: 26%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-right: 30px;
  border-right: 2.5px dotted var(--blue-theme);
}

.content-range .real .date-range h4 {
  font-size: 18px;
  font-weight: 600;
}

.content-range .real .date-range p {
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-theme);
}

.content-range .real .content {
  width: calc(74% - 30px);
}

.content-range .real .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.content-range .real .content p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #444444;
  transition: all 300ms ease-in-out;
}

.service-hero img {
  height: 500px;
  object-fit: cover;
  transform: rotate(180deg);
  filter: brightness(0.8);
}

.creation-hero img {
  height: 600px;
  object-fit: cover;
  filter: brightness(0.8);
}

.contact-hero img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
}

.search-cm input.p-1 {
  outline: none !important;
  border: 1px solid rgb(205, 205, 205);
}

.search-cm input.p-1:focus-visible {
  outline: 1px solid rgb(96, 96, 96);
}

.our-service,
.coming-movie,
.creation-sec,
.contact-sec,
.contact-secbtm {
  padding: 5rem 0;
  background-color: #f4f5f9;
}

.contact-sec {
  background-color: white;
}

/* 
.service-card .col .card {
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    border: none;
    transition: all 300ms ease-in-out;
}

.service-card .col .card:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 21px 36px 24px rgba(218, 217, 255, 0.4);
    -moz-box-shadow: 0px 21px 36px 24px rgba(218, 217, 255, 0.4);
    box-shadow: 0px 21px 36px 24px rgba(218, 217, 255, 0.4);
}

.service-card .col .card:hover .s-icon {
    background-color: #272727;
    color: white;
}

.service-card .service-icon i {
    font-size: 24px;
    background-color: #F4F5F9;
    padding: 25px;
    border-radius: 50%;
    border: 1px solid rgb(230, 237, 253);
    transition: all 200ms ease-in-out;
}

.service-card .service-heading {
    font-size: 20px;
    font-weight: 700;
}

.service-card .service-desc {
    font-size: 16px;
    color: rgb(79, 79, 79);
    letter-spacing: 1px;
} */

.service-cards {
  background-color: white;
  padding: 50px;
  border-radius: 16px;
}

.service-card-reverse {
  flex-direction: row-reverse;
}

.service-cards .image-l {
  width: 100%;
  aspect-ratio: 6 /4.5;
  border-radius: 8px;
  overflow: hidden;
}

/* 

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms cubic-bezier(0.43, 0.13, 0.23, 0.9);
    filter: saturate(0);
}

.service-card-image img:hover {
    transform: scale(1.05);
    filter: saturate(1);
}  */

.service-card-content {
  padding: 30px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.service-card-content h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}

.service-card-content h3::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 8px;
  background-color: #1a5a9d;
  bottom: -15px;
  left: 0;
}

.service-card-content p {
  font-size: 16px;
  letter-spacing: 0.7px;
  color: rgb(64, 64, 64);
}

.coming-movie .soon-image {
  width: 100%;
  max-height: 700px;
  min-height: 300px;
  aspect-ratio: 5 /3;
}

.coming-movie .play-btn:hover {
  cursor: pointer;
}

.coming-movie .soon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-movie .row {
  position: relative;
}

.coming-movie .soon-image-heading {
  position: absolute;
  top: -50px;
  left: 50px;
  background-color: white;
  max-width: fit-content;
  padding: 25px;
  border: 1px solid rgb(198, 198, 198);
}

.video-pop .modal-dialog {
  max-width: 100vw;
  position: relative;
}

.video-pop .modal-content {
  max-width: 800px;
  min-width: 300px;
  margin: auto;
  position: static;
}

.video-pop .modal-header {
  position: absolute;
  top: 10%;
  right: 7%;
  border-bottom: 0;
  font-size: 24px;
}

.video-pop video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-pop .modal-body {
  padding: 0;
}

.soon-image-heading h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.soon-image-heading p {
  font-size: var(--heading-font-large);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1rem;
}

.testimonials {
  padding: 5rem 0;
  background-color: #0a0a0a;
}

.test-card {
  padding-left: 50px;
  border-left: 4px solid rgb(255, 255, 255);
}

.test-card > * {
  margin-top: 1rem;
}

.test-card h4 {
  font-size: var(--heading-font-large);
  font-weight: 600;
  color: white;
}

.test-card > p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #dfdfdf;
  -webkit-line-clamp: 2;
  margin-block: 25px;
}

.test-card .e-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.test-card .e-info img {
  width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.test-card .e-info h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.test-card .e-info p {
  font-size: 14px;
  font-weight: 400;
  color: #bfbfbf;
  margin-top: 5px;
}

.header-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-search .heading-center {
  text-align: left;
}

.subsidiary {
  padding: 5rem 0;
}

.creation-card-cm {
  margin-bottom: 50px;
}

.sub-heading {
  margin-bottom: 10px;
}

.sub-heading h4 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
}

.creation-card-cm .content-image {
  width: 100%;
  height: 280px;
  position: relative;
}

.creation-card-cm .content-image .tag {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background-color: black;
  color: white;
  padding: 5px 12px;
}

.creation-card-cm .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creation-card-cm .card {
  border: 1.5px solid rgb(215, 227, 255);
  border-radius: 8px;
  overflow: hidden;
}

.creation-card-cm .card .content {
  padding: 20px;
}

.creation-card-cm .card .content .info {
  font-size: 14px;
  color: rgb(96, 96, 96);
  margin-top: 1rem;
}

.creation-card-cm .card .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-block: 1rem;
}

.creation-card-cm .sub-heading a {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
}

.creation-card-cm .sub-heading a:hover {
  text-decoration: underline;
}

.contact-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.contact-list {
  list-style-type: none;
  padding: 0;
}

.contact-list > * {
  margin-bottom: 1.5rem;
}

.contact-list .phone,
.contact-list .email,
.contact-list .location,
.contact-list .website {
  display: flex;
  align-items: center;
  gap: 20px;
  /* justify-content: space-between; */
}

.contact-list .icon {
  background-color: rgb(230, 230, 230);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
}

.contact-list .icon i {
  color: #093463;
  position: relative;
  z-index: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.contact-list .detail {
  width: calc(100% - 100px);
}

.contact-list .detail h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-list .detail p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #555;
  font-weight: 400;
}

.contact-list .detail p:hover {
  color: #08509d;
}

.contact-list .anim-bg {
  position: relative;
}

.contact-list .anim-bg:before {
  position: absolute;
  content: "";
  height: 0%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #093463;
}

.contact-list .anim:hover {
  cursor: pointer;
}

.contact-list .anim:hover .anim-bg::before {
  height: 100%;
}

.contact-list .anim:hover .anim-bg i {
  color: white;
}

.follow-us {
  display: flex;
  gap: 10px;
  align-items: center;
}

.follow-us h4 {
  font-size: 18px;
}

.follow-us .social-icon {
  background-color: rgb(235, 235, 235);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease-in-out;
}

.follow-us .social-icon:hover {
  cursor: pointer;
  background-color: #093463;
  color: white;
}

.contact-secbtm input,
.contact-secbtm textarea {
  padding: 14px;
  border: none;
  border-radius: 6px;
}

.contact-secbtm input:focus-visible,
.contact-secbtm textarea:focus-visible {
  border: none !important;
  box-shadow: none !important;
  outline: 1.5px solid rgb(187, 187, 187);
}

.contact-secbtm .row {
  margin-bottom: 1rem;
}

.map iframe {
  width: 100%;
  height: 560px;
}

.minimal .header-bottom {
  position: absolute !important;
  background-color: transparent !important;
  backdrop-filter: blur(0px) !important;
  padding: 2rem 0 !important;
  box-shadow: none;
}

.minimal .right .contact h3,
.minimal .right .contact p {
  color: white;
}

.minimal .right .contact i {
  color: rgb(229, 229, 229);
}

.minimal .header-bottom .row .navbar .nav-link {
  color: white;
}

.header-bottom .nav-logo {
  display: none;
}

.header-bottom .body-logo {
  display: block !important;
}

.minimal .body-logo {
  display: none !important;
}

.minimal .nav-logo {
  display: block;
}

.header-bottom {
  box-shadow: 0 1px 1px rgb(227, 227, 227);
}

body {
  background-color: #f4f5f9;
}

.team-sec {
  margin: 5rem 0;
}

.team-sec .row {
  border-bottom: 1px solid rgb(215, 215, 215);
  margin-block: 3rem;
}

.team-sec .bod .team-image {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgb(178, 178, 178);
}

.team-sec .bod .team-image img {
  width: 180px;
  height: 180px;
  padding: 15px;

  border-radius: 50%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}

.bod .col-lg-2 {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
  transition: all 200ms ease-in-out;
}

.bod .col-lg-2 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .bod .col-lg-2:hover .team-image img {
    transform: scale(1.1);
} */

.bod .col-lg-2:hover {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 4px 24px;
}

.team-sec .bod .team-desc h4 {
  font-size: 16px;
  font-weight: 600;
  color: black;
  text-align: center;
  line-height: 2;
}

.team-sec .bod .team-desc p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
}

.main-footer {
  background-color: black;
}

.main-footer .left-image,
.main-footer .right-image {
  width: 500px;
}

.footer-logo p {
  font-size: 16px;
  color: rgb(209, 209, 209);
  font-weight: 300;
  margin-block: 20px;
}

.footer-social-link {
  display: flex;
  gap: 10px;
}

.footer-logo a {
  background-color: rgb(32, 32, 32);
  color: #707dc5;
  width: 30px;
  height: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease-in-out;
}

.footer-logo a:hover {
  background-color: #1a5a9d;
  color: white;
}

.footer-heading h4 {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-links {
  margin-top: 35px;
}

.footer-links ul {
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.footer-links li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 16px;
  font-weight: 400;
  color: rgb(209, 209, 209);
  transition: all 200ms ease-in-out;
  border-left: 2px solid rgba(255, 255, 255, 0);
}

.footer-links li:hover {
  padding-left: 10px;
  border-left: 2px solid white;
  color: white;
}

.info-details {
  margin-top: 35px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
}

.info-details i {
  margin-right: 10px;
}

.info-details p {
  color: rgb(209, 209, 209);
}

.bottom-footer {
  border-top: 1px solid rgb(54, 54, 54);
  text-align: center;
  padding: 20px 0;
}

.bottom-footer h4 {
  font-size: 16px;
  color: rgb(209, 209, 209);
}

.image-sec {
  background-color: white;
  padding: 5rem 0;
}

.image-sec .container {
  background-color: #f4f5f9;
  padding: 40px;
  border-radius: 16px;
}

.image-sec .image-box {
  aspect-ratio: 5 /4;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-bottom: 15px;
}

.image-sec .image-box .img-cat {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 20px;
  background-color: black;
  color: white;
  padding: 5px 12px;
}

.image-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms cubic-bezier(0.43, 0.13, 0.23, 0.9);
}

.image-sec img:hover {
  transform: translateX(30px) scale(1.2);
}

.gcontainer {
  max-width: 1000px;
  aspect-ratio: 5 / 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navbar-offcanvas {
  background-color: #202020;
}

.navbar-offcanvas .logo {
  width: 180px;
}

.navbar-offcanvas nav li {
  color: rgb(185, 185, 185);
  list-style: none;
  font-size: 20px;
  padding: 15px 10px;
  transition: all 200ms ease-in-out;
  border-radius: 16px;
  border: 1px solid rgba(98, 98, 98, 0);
}

.navbar-offcanvas nav li:hover {
  color: rgb(255, 255, 255);
  background-color: #3d3d3d;
  border: 1px solid #565656;
  padding-left: 20px;
}

.navbar-offcanvas nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.navbar-offcanvas nav ul i {
  margin-right: 20px;
}

.navbar-offcanvas .offcanvas-header {
  border-bottom: 1px solid #393939;
  margin: 20px;
}

.navbar-offcanvas .offcanvas-body {
  margin-top: 40px;
  border-bottom: 1px solid #393939;
}

.offcanvas-icon {
  border-top: 1px solid #393939;
  margin-top: 80px;
  padding-top: 30px;
}

.offcanvas-icon .social-icon {
  background-color: #2d2d2d;
}

.offcanvas-icon .social-icon i {
  color: rgb(141, 141, 141);
}

/* Pagination */

.page-change {
  display: flex;
  justify-content: center;
}

.page-change ul {
  margin: 30px 0 30px 0;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 0;
  display: flex;
  justify-content: center;
  text-align: right;
  position: relative;
}

.page-change ul li {
  margin: 0 0 7px 0;
  display: inline-block;
}

.page-change ul li a {
  display: block;
  text-align: center;
  color: rgba(0, 0, 0, 0.6705882353);
  padding: 0 12px;
  line-height: 45px;
  margin: 0 8px;
  height: 45px;
  font-weight: 500;
  font-size: 18px;
  background: rgb(248, 243, 243);
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  min-width: 45px;
}

.page-change ul li a.active {
  color: white;
  background: #00adef;
  border: 1px solid #00adef;
}

.page-change ul li.active a {
  color: white;
  background: #000;
  border: 1px solid #000;
}

.page-change ul li.active a:hover {
  color: white;
  background: #000;
  border: 1px solid #000;
}

.page-change ul li a:hover {
  color: white;
  background: #000;
  border: 1px solid #000;
}

.page-change ul li:first-child a:hover {
  color: rgba(0, 0, 0, 0.6705882353);
  background: rgb(248, 243, 243);
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
}

.page-change ul li:last-child a:hover {
  color: rgba(0, 0, 0, 0.6705882353);
  background: rgb(248, 243, 243);
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
}

/* Single Page */

.single-page {
  padding: 30px 0px;
}

.single-cat {
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
  width: max-content;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: Barlow;
}

.single-head {
  font-weight: 700;
  line-height: normal;
  font-size: 35px;
  margin: 10px 0px;
  letter-spacing: 1px;
  color: var(--primary-text);
  font-family: Barlow;
}

.single-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-top: 20px;
  margin-bottom: 0px;
  padding: 10px 0px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px dashed var(--primary-color);
}

.sub-head {
  margin: 20px 0px;
  color: var(--secondary-text);
  font-weight: 500;
  line-height: normal;
  font-size: 16px;
  margin: 10px 0px;
  color: var(--secondary-text);
}

.post-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 2px dashed var(--primary-color);
}

.post-writer {
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: end;
  border-left: 4px solid var(--primary-color);
}

.writer-img {
  width: 45px;
  height: 45px;
  padding: 5px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.writer-det {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.writer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wri-name a {
  color: var(--primary-text);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.wri-name a:hover {
  color: var(--primary-color);
}

.single-page .time {
  font-size: 14px;
  margin: 0px;
}

.the-content {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 20px 0 22px 0;
  text-align: justify;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
}

.author-post {
  margin: 20px 0px;
}

/* recent-post */

.recent-post {
  padding: 20px;
  background: #fff;
  position: sticky;
  top: 80px;
}

.re-post {
  display: flex;
  align-items: center;
  margin: 10px 0px;
}

.number {
  font-weight: 800;
  border-radius: 6px;
  font-size: 20px;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
  margin-right: 20px;
  font-family: Barlow;
}

.recent-post .title a {
  color: var(--secondary-text);
}

.recent-post .title {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}

.re-post .title a {
  transition: all 0.3s ease-in-out;
}

.re-post:hover .title a {
  color: var(--primary-color);
}

.re-post:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 2px solid #e9e9e9;
}

.category {
  padding: 30px 0px;
}

.post a {
  color: #000;
}


	.single-head .creation-hero img {
		height: 150px;
	}
	
	.single-page iframe {
    height: 600px;
    width: 100%;
    border: 0;
}

.category .creation-hero img {
	height: 300px;
}

 .top-part .title {
	font-weight: 600;
}

.top-part .time {
	font-size: 12px;
}

.top-part .writer {
	font-size: 12px;
}

