@import url("https://fonts.cdnprovider.com/path/to/avantgarde-bk-bt.css");
@font-face {
  font-family: "Futura Bold";
  src: url("path/to/futura.woff2") format("woff2"), url("path/to/futura.woff") format("woff"), url("../fonts/futura/FUTURA75BOLD.TTF") format("truetype"); /* Legacy Browsers */
  /* Add additional formats if available */
  font-weight: 700; /* Adjust as needed */
  font-style: bold; /* Adjust as needed */
}
@font-face {
  font-family: "Futura Regular";
  src: url("path/to/futura.woff2") format("woff2"), url("path/to/futura.woff") format("woff"), url("../fonts/futura/FUTURA55REGULAR.TTF") format("truetype"); /* Legacy Browsers */
  /* Add additional formats if available */
  font-weight: normal; /* Adjust as needed */
  font-style: normal; /* Adjust as needed */
}
@font-face {
  font-family: "Futura Medium";
  src: url("path/to/futura.woff2") format("woff2"), url("path/to/futura.woff") format("woff"), url("../fonts/futura/FUTURA65MEDIUM.TTF") format("truetype"); /* Legacy Browsers */
  /* Add additional formats if available */
  font-weight: 400; /* Adjust as needed */
  font-style: normal; /* Adjust as needed */
}
@font-face {
  font-family: "Futura Light";
  src: url("path/to/futura.woff2") format("woff2"), url("path/to/futura.woff") format("woff"), url("../fonts/futura/FUTURA45LIGHT.TTF") format("truetype"); /* Legacy Browsers */
  /* Add additional formats if available */
  font-weight: 300; /* Adjust as needed */
  font-style: bold; /* Adjust as needed */
}
@font-face {
  font-family: "SF Pro Display";
  src: url("path/to/futura.woff2") format("woff2"), url("path/to/futura.woff") format("woff"), url("../fonts/sfPro/SFPRODISPLAYREGULAR.OTF") format("truetype"); /* Legacy Browsers */
  /* Add additional formats if available */
  font-weight: normal; /* Adjust as needed */
  font-style: normal; /* Adjust as needed */
}
body {
  font-family: "Futura", "AvantGarde Bk BT", sans-serif;
  background-color: white !important;
}

.scaled-image img {
    transform: scale(0.95); /* 95% of original size */
    transition: transform 0.3s ease;
}

.scaled-image img:hover {
    transform: scale(1); /* Optional: Hover back to full size */
}

.container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .container {
    max-width: 1420px;
    width: 95%;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1120px;
    width: 95%;
  }
}

a {
  text-decoration: none;
}

.custom-container {
  padding-top: 110px;
  padding-bottom: 1px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .custom-container {
    padding-top: 99px;
    padding-bottom: 40px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 769px) {
  .custom-container {
    padding-bottom: 40px;
  }
}

.inner-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.percent-sp {
  color: rgb(166, 166, 166);
  font-weight: 400;
}
.percent-sp::after {
  display: none;
}

.padding-container {
  padding-top: 98px;
  padding-left: 155px;
  padding-right: 155px;
  padding-bottom: 98px;
}
@media (max-width: 1440px) {
  .padding-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 769px) {
  .padding-container {
    padding-left: 250px;
    padding-right: 250px;
  }
}
@media (max-width: 435px) {
  .padding-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 992px) {
  .mobile-vision-third {
    display: flex;
    justify-content: end;
  }
}

.pt-50 {
  padding-top: 50px;
}

.padding-container-two {
  padding-left: 90px;
}

.hide-on-scroll {
  display: none;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .hide-on-scroll {
    display: block !important;
  }
}

.navbar-brand {
  transition: opacity 0.3s ease; /* Adjust the duration and easing as needed */
}

.show-on-scroll {
  opacity: 1;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 1;
  padding: 25px 30px 0px 30px;
  row-gap: 32px;
  border-radius: 20px;
  background: #d5a373;
}
@media (max-width: 1640px) {
  .dropdown-content {
    font-size: 20px;
    line-height: 10px;
    padding: 19px 13px 0px 13px;
  }
}
@media (max-width: 1441px) {
  .dropdown-content {
    padding: 19px 15px 0px 15px;
  }
}
@media (max-width: 1140px) {
  .dropdown-content {
    padding: 14px 7px 0px 7px;
    border-radius: 13px;
    min-width: unset;
  }
}
@media (max-width: 990px) {
  .dropdown-content {
    position: unset;
    min-width: unset;
    box-shadow: unset;
    padding: unset;
    z-index: 1;
    padding: unset;
    row-gap: unset;
    border-radius: unset;
    background: unset;
  }
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropdown-content .dropdown-item {
  font-family: "Futura Regular";
  font-weight: 400;
  text-align: left;
  color: #fff;
  font-size: 24px;
  line-height: 26px; /* 108.333% */
  margin-bottom: 32px;
}
@media (max-width: 1441px) {
  .dropdown:hover .dropdown-content .dropdown-item {
    margin-bottom: 19px;
    font-size: 21px;
    line-height: 21px;
  }
}
@media (max-width: 1340px) {
  .dropdown:hover .dropdown-content .dropdown-item {
    font-size: 15px;
    line-height: 12px;
  }
}
@media (max-width: 1140px) {
  .dropdown:hover .dropdown-content .dropdown-item {
    font-size: 10px;
    line-height: 5px;
  }
}
@media (max-width: 990px) {
  .dropdown:hover .dropdown-content .dropdown-item {
    font-size: 15px;
    line-height: 16px;
    color: #d5a373;
    text-align: center;
    margin-top: 19px;
  }
}
.dropdown:hover .dropdown-content a:hover {
  color: #fff;
}
@media (max-width: 990px) {
  .dropdown:hover .dropdown-content a:hover {
    color: #d5a373;
  }
}

.lightboxOverlay {
  width: 100% !important;
}

@media (max-width: 435px) {
  .lb-nav {
    display: none !important;
  }
}

.header-wrapper {
  z-index: 999;
  top: 0px;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  background-color: #000000;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 1440px) {
  .header-wrapper {
    z-index: 999;
    top: 0px;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    background-color: #000000;
    padding-top: 3px;
    /* margin-bottom: -18px; */
    padding-bottom: 0px;
  }
}
@media (max-width: 992px) {
  .header-wrapper {
    display: none;
  }
}
.header-wrapper .navbar-toggler {
  border: none;
}
@media (max-width: 769px) {
  .header-wrapper .navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: rgba(222, 42, 42, 0.55);
    background-color: #198754;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
  }
}
.header-wrapper .inner-nav {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 72px;
  border-radius: 50px;
}
@media (max-width: 1440px) {
  .header-wrapper .inner-nav {
    margin-top: -8px;
  }
}
.header-wrapper .mm-logo-wraper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-wrapper .mm-logo {
  max-width: 80px;
  padding: 3px 6px 10px 6px;
}
.header-wrapper .nav-txt-mm-system {
  font-family: "Red Rose";
  font-size: 28px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #333333;
  padding-top: 9px;
}
@media (max-width: 1024px) {
  .header-wrapper .nav-txt-mm-system {
    font-size: 21px;
  }
}
@media (max-width: 769px) {
  .header-wrapper .nav-txt-mm-system {
    font-size: 10px;
  }
}
.header-wrapper .nav-icon-wrapper {
  margin-top: 12px;
}
.header-wrapper .contact-us-button {
  padding: 11px 14px 11px 14px;
  border-radius: 50px;
  background: #d6ae59;
  width: 142px;
  height: unset;
  border: none;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .header-wrapper .contact-us-button {
    width: 123px;
  }
}
@media (max-width: 769px) {
  .header-wrapper .contact-us-button {
    padding: 8px 4px 8px 4px;
    height: 44px;
    border-radius: 50px;
    background: #d6ae59;
    width: 95px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    border: none;
  }
}
.header-wrapper a.nav-link {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: #d5a373;
}
@media (max-width: 1440px) {
  .header-wrapper a.nav-link {
    font-family: "Futura Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
  }
}
@media (max-width: 1024px) {
  .header-wrapper a.nav-link {
    font-size: 15px;
  }
}
.header-wrapper a.nav-link.active {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: #d5a373;
}
@media (max-width: 1440px) {
  .header-wrapper a.nav-link.active {
    font-family: "Futura Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
  }
}
.header-wrapper .navbar-nav {
  gap: 85px;
}
@media (max-width: 1440px) {
  .header-wrapper .navbar-nav {
    gap: 72px;
  }
}
@media (max-width: 769px) {
  .header-wrapper .navbar-nav {
    gap: 10px;
    width: 100%;
    background: #000;
    max-width: 769px;
    min-width: 200px;
    position: fixed;
    top: 92px;
    left: 0px;
    padding: 0px 29px;
    height: 100vh;
    z-index: 9;
    transition: 0s !important;
  }
}
.header-wrapper .logo-container {
  margin: 0 auto;
}
.header-wrapper .pvcu-logo {
  height: 99px;
  max-width: 250px;
}
@media (max-width: 1440px) {
  .header-wrapper .pvcu-logo {
    height: 83px;
    max-width: 228px;
  }
}
.header-wrapper .logo-wrapper {
  /* margin: 0 auto; */
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.header-wrapper .header-wrapper.hide-on-scroll {
  display: none;
}
.header-wrapper .sticky {
  height: 65px;
}
.navigation-section {
  height: 100px;
  background: #000;
}
@media (max-width: 1440px) {
  .navigation-section {
    height: 65px;
  }
}
@media (max-width: 992px) {
  .navigation-section {
    height: 100px;
  }
}
.navigation-section .navbar-toggler {
  border: none;
  position: absolute;
  top: 11px;
}
.navigation-section .navbar-toggler.collapsed {
  position: absolute;
}
.navigation-section .inner-nav {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 72px;
  border-radius: 50px;
}
.navigation-section .mm-logo-wraper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navigation-section .mm-logo {
  max-width: 80px;
  padding: 3px 6px 10px 6px;
}
.navigation-section .nav-txt-mm-system {
  font-family: "Red Rose";
  font-size: 28px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #333333;
  padding-top: 9px;
}
@media (max-width: 1024px) {
  .navigation-section .nav-txt-mm-system {
    font-size: 21px;
  }
}
@media (max-width: 769px) {
  .navigation-section .nav-txt-mm-system {
    font-size: 10px;
  }
}
.navigation-section .nav-wapper {
  display: flex;
  justify-content: right;
  flex-direction: row;
}
.navigation-section .nav-icon-wrapper {
  margin-top: 12px;
}
.navigation-section .contact-us-button {
  padding: 11px 14px 11px 14px;
  border-radius: 50px;
  background: #d6ae59;
  width: 142px;
  height: unset;
  border: none;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .navigation-section .contact-us-button {
    width: 123px;
  }
}
@media (max-width: 769px) {
  .navigation-section .contact-us-button {
    padding: 8px 4px 8px 4px;
    height: 44px;
    border-radius: 50px;
    background: #d6ae59;
    width: 95px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    border: none;
  }
}
.navigation-section a.nav-link {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #d5a373;
}
@media (max-width: 1440px) {
  .navigation-section a.nav-link {
    font-family: "Futura Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .navigation-section a.nav-link {
    font-size: 15px;
  }
}
.navigation-section a.nav-link.active {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #d5a373;
}
@media (max-width: 1440px) {
  .navigation-section a.nav-link.active {
    font-family: "Futura Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
  }
}
.navigation-section .navbar-nav {
  gap: 67px;
}
@media (max-width: 1440px) {
  .navigation-section .navbar-nav {
    gap: 72px;
  }
}
@media (max-width: 769px) {
  .navigation-section .navbar-nav {
    width: 100%;
    background: #ffffff;
    max-width: 769px;
    min-width: 200px;
    position: fixed;
    top: 92px;
    left: 0px;
    gap: 20px;
    padding: 0px 29px;
    height: 100vh;
    z-index: 9;
    transition: 0s !important;
  }
}
@media (max-width: 435px) {
  .navigation-section .navbar-nav {
    gap: 10px;
  }
}
.navigation-section .logo-container {
  margin: 0 auto;
}
.navigation-section .pvcu-logo {
  height: 99px;
  max-width: 250px;
}
@media (max-width: 1440px) {
  .navigation-section .pvcu-logo {
    height: 83px;
    max-width: 228px;
  }
}
.navigation-section .logo-wrapper {
  /* margin: 0 auto; */
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.navigation-section .logo-wrapper.hide-on-scroll {
  display: none;
}
.navigation-section .sticky {
  height: 65px;
}
.mobile-nav {
  justify-content: start !important;
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none !important;
  }
}

.custom-nav-container {
  padding: 0;
  padding: 10px 315px;
}
@media (max-width: 2000px) {
  .custom-nav-container {
    padding: 10px 177px;
  }
}
@media (max-width: 1800px) {
  .custom-nav-container {
    padding: 10px 70px;
  }
}
@media (max-width: 1600px) {
  .custom-nav-container {
    padding: 10px 70px;
  }
}
@media (max-width: 1160px) {
  .custom-nav-container {
    flex-direction: row;
    padding: 10px 30px;
  }
}
@media (max-width: 992px) {
  .custom-nav-container {
    flex-direction: row;
    padding: 30px 30px;
  }
}
.custom-nav-container .navbar-brand {
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
  padding: 0;
  order: 1;
}
@media (min-width: 1160px) {
  .custom-nav-container .navbar-brand {
    order: unset;
  }
  .custom-nav-container .navbar-brand img {
    width: 175px;
  }
}
@media (max-width: 769px) {
  .custom-nav-container .navbar-brand {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 580px) {
  .custom-nav-container .navbar-brand {
    order: unset;
  }
  .custom-nav-container .navbar-brand img {
    width: 200px;
  }
}
@media (max-width: 580px) {
  .custom-nav-container .navbar-brand img {
    width: 182px;
  }
}
@media (max-width: 380px) {
  .custom-nav-container .navbar-brand {
    left: 57%;
    transform: translateX(-50%);
  }
  .custom-nav-container .navbar-brand img {
    width: 152px;
  }
}
.custom-nav-container .navbar-collapse {
  width: 100%;
  margin: 0;
  order: 2;
}
@media (max-width: 769px) {
  .custom-nav-container .navbar-collapse {
    order: unset;
  }
}
.custom-nav-container .navbar-nav {
  gap: 75px;
  width: 100%;
  justify-content: center !important;
}
@media (max-width: 1800px) {
  .custom-nav-container .navbar-nav {
    gap: 58px;
  }
}
@media (max-width: 1440px) {
  .custom-nav-container .navbar-nav {
    padding: 0px;
    gap: 58px;
  }
}
@media (max-width: 1300px) {
  .custom-nav-container .navbar-nav {
    gap: 50px;
  }
}
@media (max-width: 1160px) {
  .custom-nav-container .navbar-nav {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .custom-nav-container .navbar-nav {
    margin-top: 30px;
  }
}
@media (max-width: 992px) {
  .custom-nav-container .navbar-nav {
    margin-top: 30px;
    gap: 20px;
  }
}
.custom-nav-container .navbar-nav .dropdown-coming::after {
  display: none !important;
}
.custom-nav-container .navbar-nav .dropdown-menu {
  width: 100vw;
  padding: 30px 30px;
  text-align: center;
  margin-top: 0;
  border-radius: 0px 0px 30px 30px;
  animation-name: slideDown;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  left: 0;
}
@media (max-width: 992px) {
  .custom-nav-container .navbar-nav .dropdown-menu {
    font-size: 30px;
    line-height: 40px;
    background-color: #000;
  }
}
.custom-nav-container .navbar-nav .dropdown-menu .coming-soon-dropdown {
  font-size: 100px;
  display: flex;
  justify-content: center;
  font-weight: 700;
  line-height: 140px;
  letter-spacing: -0.03em;
  text-align: left;
  color: rgb(102, 102, 102);
}
.custom-nav-container .navbar-nav .dropdown-menu .coming-soon-dropdown:hover {
  background-color: #fff;
}
@media (max-width: 992px) {
  .custom-nav-container .navbar-nav .dropdown-menu .coming-soon-dropdown:hover {
    background-color: #000 !important;
  }
}
@media (max-width: 992px) {
  .custom-nav-container .navbar-nav .dropdown-menu .coming-soon-dropdown {
    font-size: 30px;
    line-height: 40px;
    background-color: #000;
  }
}
.custom-nav-container .navbar-nav .dropdown-custom:hover .dropdown-menu {
  display: block !important;
}
@keyframes slideDown {
  from {
    transform: translateY(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.custom-nav-container .navbar-nav a.nav-link {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #d5a373;
}
@media (max-width: 1440px) {
  .custom-nav-container .navbar-nav a.nav-link {
    font-family: "Futura Regular";
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .custom-nav-container .navbar-nav a.nav-link {
    font-size: 15px;
  }
}
.custom-nav-container .navbar-nav a.nav-link.active {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: #d5a373;
}
@media (max-width: 1440px) {
  .custom-nav-container .navbar-nav a.nav-link.active {
    font-family: "Futura Regular";
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
  }
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #000000;
}

.top-banner .top-banner-video {
  width: 100%;
  margin-top: -210px;
  z-index: -33;
  position: relative;
}
@media (max-width: 1740px) {
  .top-banner .top-banner-video {
    margin-top: -166px;
  }
}
@media (min-width: 1440px) {
  .top-banner .top-banner-video {
    z-index: -33;
    position: relative;
  }
}
@media (max-width: 1440px) {
  .top-banner .top-banner-video {
    margin-top: -135px;
  }
}
@media (max-width: 992px) {
  .top-banner .top-banner-video {
    margin-top: 0px;
  }
}

.cinema-sec .movie-topic-header-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cinema-sec .movie-topic-header {
  font-family: "Futura Medium";
  font-size: 48px;
  line-height: 52.01px;
  letter-spacing: 0.02em;
  text-align: center;
  color: black;
}
@media (max-width: 1440px) {
  .cinema-sec .movie-topic-header {
    font-family: "Futura Medium";
    font-size: 40px;
    line-height: 40.01px;
    letter-spacing: 0.02em;
    text-align: center;
    color: black;
  }
}
@media (max-width: 435px) {
  .cinema-sec .movie-topic-header {
    font-size: 34px;
  }
}
.cinema-sec .movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  -moz-column-gap: 72px;
  column-gap: 49px;
}
@media (max-width: 769px) {
  .cinema-sec .movie-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cinema-sec .movie-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding-top: 70px;
}
.cinema-sec .movie {
  max-width: 463px;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cinema-sec .movie {
    max-width: 302px;
  }
}
.cinema-sec .movie-topic {
  max-width: 280px;
}

.movie-category .custom-container2 {
  padding-bottom: 50px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .movie-category .custom-container2 {
    padding-bottom: 20px;
  }
}
.movie-category .movie-topic-header-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.movie-category .movie-topic-header {
  font-family: "Futura Medium";
  font-size: 48px;
  line-height: 52.01px;
  letter-spacing: 0.02em;
  text-align: center;
  color: black;
}
@media (max-width: 1440px) {
  .movie-category .movie-topic-header {
    font-family: "Futura Medium";
    font-size: 40px;
    line-height: 40.01px;
    letter-spacing: 0.02em;
    text-align: center;
    color: black;
  }
}
@media (max-width: 435px) {
  .movie-category .movie-topic-header {
    font-size: 34px;
  }
}
.movie-category .movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  -moz-column-gap: 72px;
  column-gap: 49px;
}
@media (max-width: 769px) {
  .movie-category .movie-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.movie-category .movie-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding-top: 70px;
}
.movie-category .movie {
  max-width: 463px;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .movie-category .movie {
    max-width: 302px;
  }
}
.movie-category .movie-topic {
  max-width: 280px;
}

.pvcu-middle-banner .custom-container3 {
  width: 100%;
  margin: 0 auto;
}
.pvcu-middle-banner .pvcu-frame {
  width: 100%;
}

.our-vision-sec {
  margin-top: -2px;
  margin-bottom: 0px;
  overflow-x: hidden;
}
.our-vision-sec .custom-container2 {
  padding-bottom: 140px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .our-vision-sec .custom-container2 {
    padding-bottom: 99px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .custom-container2 {
    max-width: 555px;
    padding-top: 94px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .custom-container2 {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .custom-container2 {
    padding-bottom: 0px;
  }
}
.our-vision-sec .custom-containerr {
  padding: 0px !important;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .our-vision-sec .custom-containerr {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .custom-containerr {
    padding-bottom: 0px;
  }
}
.our-vision-sec .our-vision-container {
  height: 100%;
  position: relative;
  margin-bottom: 1px;
  background: rgb(255, 251, 240);
}
.our-vision-sec .our-vision {
  width: 100%;
  padding: 110px 20px 0px 41px;
  position: absolute;
  height: 572px;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
  right: 0;
  max-width: 400px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision {
    width: 100%;
    padding: 37px 20px 0px 22px;
    position: absolute;
    height: 371px;
    -o-object-fit: cover;
    /* object-fit: cover; */
    bottom: 0;
    max-width: 325px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-vision {
    padding: 37px 1px 0px 22px;
    height: 386px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision {
    height: 430px;
    position: relative;
  }
}
@media (max-width: 480px) {
  .our-vision-sec .our-vision {
    width: 100%;
    height: 363px;
    margin-left: 23px;
    padding: 0;
    max-width: 299px !important;
  }
}
@media (max-width: 380px) {
  .our-vision-sec .our-vision {
    margin-left: 0;
  }
}
.our-vision-sec .our-visionn {
  width: 100%;
  padding: 40px 20px 0px 41px;
  position: absolute;
  height: 401px;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0;
  right: 0;
  max-width: 360px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-visionn {
    width: 100%;
    padding: 37px 20px 0px 22px;
    position: absolute;
    height: 306px;
    -o-object-fit: cover;
    /* object-fit: cover; */
    bottom: 0;
    max-width: 264px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-visionn {
    padding: 0px 1px 0px 22px;
    height: 274px;
    right: 22px;
    max-width: 255px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-visionn {
    height: 430px;
    position: relative;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .our-visionn {
    right: -17px;
    max-width: 371px;
  }
}
@media (max-width: 480px) {
  .our-vision-sec .our-visionn {
    width: 100%;
    height: 363px;
    margin-left: 23px;
    padding: 0;
    max-width: 299px !important;
  }
}
@media (max-width: 380px) {
  .our-vision-sec .our-visionn {
    margin-left: 0;
  }
}
.our-vision-sec .our-vision-para-wrapper {
  display: flex;
  flex-direction: column;
  /* max-width: 500px; */
  align-items: flex-end;
  padding: 156px 58px 80px 147px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para-wrapper {
    display: flex;
    flex-direction: column;
    /* max-width: 500px; */
    align-items: flex-end;
    padding: 94px 58px 54px 22px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-vision-para-wrapper {
    padding: 50px 58px 50px 22px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .our-vision-para-wrapper {
    padding: 51px 21px 30px 21px;
  }
}
.our-vision-sec p {
  color: #000000 !important;
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 600px) {
    .our-vision-sec p {
      color: #000000 !important;
    }
  }
}
.our-vision-sec a,
.our-vision-sec a:link,
.our-vision-sec a:visited {
  color: #000000;
  text-decoration: none;
}
.our-vision-sec .our-vision-para-wrapper1 {
  display: flex;
  flex-direction: column;
  /* max-width: 500px; */
  align-items: flex-end;
  padding: 80px 58px 80px 147px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    display: flex;
    flex-direction: column;
    padding: 67px 18px 57px 73px;
    max-width: 647px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    padding: 30px !important;
  }
}
.our-vision-sec .our-vision-para {
  font-family: "Futura Regular";
  font-size: 28px;
  /* font-weight: 500; */
  line-height: 42px;
  letter-spacing: -0.02em;
  text-align: left;
  /* max-width: 500px; */
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para {
    font-family: "Futura Regular";
    font-size: 22px;
    /* font-weight: 500; */
    line-height: 42px;
    letter-spacing: -0.02em;
    text-align: left;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision-para {
    max-width: 350px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .our-vision-para {
    max-width: 100%;
  }
}
.our-vision-sec .our-vision-para1 {
  font-family: "Futura Regular";
  font-size: 27px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -0.02em;
  text-align: justify;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para1 {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .our-vision-para1 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 320px) {
  .our-vision-sec .our-vision-para1 {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-vision-sec .our-vision-para-wrapper1 {
  display: flex;
  flex-direction: column;
  padding: 80px 148px 80px 115px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    display: flex;
    flex-direction: column;
    padding: 50px 18px 50px 73px;
    max-width: 647px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    max-width: 100%;
    padding: 30px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .our-vision-para-wrapper1 {
    padding: 97px 18px 97px 18px;
  }
}
.our-vision-sec .p-l {
  padding-right: 18px;
}
.our-vision-sec .p-r {
  padding-left: 28px;
}
.our-vision-sec .vision-owner {
  font-family: "Futura Bold";
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.02em;
  text-align: left;
  padding-right: 22px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .our-vision-sec .vision-owner {
    font-size: 26px;
    line-height: 28px;
  }
}
.our-vision-sec .our-vision-btn {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-btn {
    font-size: 22px;
  }
}
.our-vision-sec .our-vision-btn-wrapper {
  width: 225px;
  height: 52px;
  padding: 10px 25px;
  /* gap: 4px; */
  background: rgb(255, 251, 240);
  border-radius: 15px;
  justify-content: center;
  border: 1px;
  display: flex;
  opacity: 0px;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
  border: 1px solid black;
  margin-top: 37px;
  transition: all 0.6s ease-in-out;
  color: #000000;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-btn-wrapper {
    width: 180px;
    height: 43px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec .our-vision-btn-wrapper {
    margin-top: 0;
    width: 180px;
  }
}
.our-vision-sec .our-vision-btn-wrapper:hover {
  box-shadow: 0 4px 8px 0 rgba(50, 49, 48, 0.5882352941), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.our-vision-sec .our-vision-arrow {
  font-weight: 600;
  margin-bottom: -5px;
}
@media (max-width: 769px) {
  .our-vision-sec .mobile-align {
    order: 2;
    display: flex;
    justify-content: center;
  }
}
.our-vision-sec .custom-container3 {
  padding-bottom: 140px;
  padding-top: 94px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 769px) {
  .our-vision-sec .custom-container3 {
    max-width: 555px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .custom-container3 {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .custom-container3 {
    padding-bottom: 0px;
  }
}
.our-vision-sec .our-vision2 {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 800px;
  bottom: -3px;
  max-width: 180px;
  margin-left: 130px;
  height: 506px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision2 {
    width: 100%;
    margin-left: 49px;
    padding: 0px 20px 0px 50px;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: -5px;
    max-width: 219px;
    height: 418px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-vision2 {
    width: 100%;
    margin-left: 49px;
    bottom: -6px;
    height: 420px;
    max-width: 216px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision2 {
    position: relative;
    height: 465px;
    max-width: 233px;
  }
}
@media (max-width: 480px) {
  .our-vision-sec .our-vision2 {
    position: relative;
    height: 540px;
    max-width: 189px;
    margin-left: unset !important;
    left: 0;
    right: 0;
    padding: 0px;
    margin-top: -51px;
  }
}
.our-vision-sec .our-vision-para-wrapper2 {
  display: flex;
  flex-direction: column;
  padding: 100px 142px 100px 11px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para-wrapper2 {
    padding: 75px 63px 75px 46px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-vision-para-wrapper2 {
    padding: 50px 65px 50px 73px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision-para-wrapper2 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .our-vision-para-wrapper2 {
    padding: 30px;
  }
}
.our-vision-sec .our-vision-para-wrapper3 {
  display: flex;
  flex-direction: column;
  /* max-width: 650px; */
  /* align-items: flex-end; */
  padding: 80px 58px 80px 147px;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para-wrapper3 {
    padding: 75px 18px 75px 73px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-vision-para-wrapper3 {
    padding: 50px 94px 50px 73px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision-para-wrapper3 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .our-vision-para-wrapper3 {
    padding: 30px;
  }
}
.our-vision-sec .our-vision-para3 {
  font-family: "Futura Regular";
  font-size: 27px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -0.02em;
  text-align: justify;
}
@media (max-width: 1440px) {
  .our-vision-sec .our-vision-para3 {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 1150px) {
  .our-vision-sec .our-vision-para3 {
    max-width: 483px !important;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision-para3 {
    max-width: 100% !important;
  }
}
@media (max-width: 435px) {
  .our-vision-sec .our-vision-para3 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 320px) {
  .our-vision-sec .our-vision-para3 {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-vision-sec .our-vision3 {
  /* width: 100%; */
  /* padding: 40px 20px 0px 41px; */
  position: absolute;
  height: 345px;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0px;
  right: 0;
  max-width: 760px;
}
@media (max-width: 1490px) {
  .our-vision-sec .our-vision3 {
    width: 100%;
    position: absolute;
    height: 276px;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: 0px;
    right: 12px;
    max-width: 292px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec .our-vision3 {
    width: 100%;
    position: absolute;
    height: 265px;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: 0px;
    right: 47px;
    max-width: 282px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec .our-vision3 {
    position: relative;
  }
}
@media (max-width: 480px) {
  .our-vision-sec .our-vision3 {
    padding: 5px 18px 0px 15px;
    height: 361px;
    max-width: 389px;
    bottom: 0px;
    right: 8px;
  }
}
@media (max-width: 320px) {
  .our-vision-sec .our-vision3 {
    padding: 4px 4px 0px 3px;
    height: 288px;
    max-width: 370px;
    bottom: 0px;
    right: 8px;
  }
}

.our-vision-sec-page {
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (max-width: 435px) {
  .our-vision-sec-page {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.our-vision-sec-page .custom-container2 {
  padding-bottom: 140px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .custom-container2 {
    padding-bottom: 99px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .custom-container2 {
    max-width: 555px;
    padding-top: 94px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .custom-container2 {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .custom-container2 {
    padding-bottom: 0px;
  }
}
.our-vision-sec-page .custom-containerr {
  padding-bottom: 0px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .our-vision-sec-page .custom-containerr {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .custom-containerr {
    padding-bottom: 0px;
  }
}
.our-vision-sec-page .our-vision-container {
  height: 100%;
  position: relative;
  margin-bottom: 1px;
  background: rgb(255, 251, 240);
  border-radius: 30px;
}
.our-vision-sec-page .our-vision {
  width: 100%;
  padding: 110px 20px 0px 41px;
  position: absolute;
  height: 572px;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
  right: 0;
  max-width: 400px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision {
    width: 100%;
    padding: 37px 20px 0px 22px;
    position: absolute;
    height: 371px;
    -o-object-fit: cover;
    /* object-fit: cover; */
    bottom: 0;
    max-width: 325px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-vision {
    padding: 37px 1px 0px 22px;
    height: 386px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision {
    height: 430px;
    position: relative;
  }
}
@media (max-width: 480px) {
  .our-vision-sec-page .our-vision {
    width: 100%;
    height: 363px;
    margin-left: 23px;
    padding: 0;
    max-width: 299px !important;
  }
}
@media (max-width: 380px) {
  .our-vision-sec-page .our-vision {
    margin-left: 0;
  }
}
.our-vision-sec-page .our-visionn {
  width: 100%;
  padding: 4px 20px 0px 0px;
  position: absolute;
  height: 361px;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0px;
  right: 0;
  max-width: 327px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-visionn {
    width: 100%;
    padding: 37px 20px 0px 22px;
    position: absolute;
    height: 306px;
    -o-object-fit: cover;
    /* object-fit: cover; */
    bottom: 0;
    max-width: 264px;
  }
}
@media (max-width: 1400px) {
  .our-vision-sec-page .our-visionn {
    height: 293px;
    -o-object-fit: cover;
    /* object-fit: cover; */
    bottom: 0;
    max-width: 256px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-visionn {
    padding: 0px 1px 0px 22px;
    height: 274px;
    right: 22px;
    max-width: 255px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-visionn {
    height: 430px;
    position: relative;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .our-visionn {
    right: -17px;
    max-width: 371px;
  }
}
@media (max-width: 480px) {
  .our-vision-sec-page .our-visionn {
    width: 100%;
    height: 363px;
    margin-left: 23px;
    padding: 0;
    max-width: 299px !important;
  }
}
@media (max-width: 380px) {
  .our-vision-sec-page .our-visionn {
    margin-left: 0;
  }
}
.our-vision-sec-page .our-vision-para-wrapper {
  display: flex;
  flex-direction: column;
  /* max-width: 500px; */
  align-items: flex-end;
  padding: 156px 58px 80px 147px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para-wrapper {
    display: flex;
    flex-direction: column;
    /* max-width: 500px; */
    align-items: flex-end;
    padding: 94px 58px 54px 22px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-vision-para-wrapper {
    padding: 50px 58px 50px 22px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .our-vision-para-wrapper {
    padding: 51px 21px 30px 21px;
  }
}
.our-vision-sec-page p {
  color: #000000 !important;
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 600px) {
    .our-vision-sec-page p {
      color: #000000 !important;
    }
  }
}
.our-vision-sec-page a,
.our-vision-sec-page a:link,
.our-vision-sec-page a:visited {
  color: #000000;
  text-decoration: none;
}
.our-vision-sec-page .our-vision-para-wrapper1 {
  display: flex;
  flex-direction: column;
  /* max-width: 500px; */
  align-items: flex-end;
  padding: 80px 58px 80px 147px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    display: flex;
    flex-direction: column;
    padding: 67px 18px 57px 73px;
    max-width: 647px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    padding: 30px !important;
  }
}
.our-vision-sec-page .our-vision-para {
  font-family: "Futura Regular";
  font-size: 28px;
  /* font-weight: 500; */
  line-height: 42px;
  letter-spacing: -0.02em;
  text-align: left;
  /* max-width: 500px; */
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para {
    font-family: "Futura Regular";
    font-size: 22px;
    /* font-weight: 500; */
    line-height: 42px;
    letter-spacing: -0.02em;
    text-align: left;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision-para {
    max-width: 350px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .our-vision-para {
    max-width: 100%;
  }
}
.our-vision-sec-page .our-vision-para1 {
  font-family: "Futura Regular";
  font-size: 27px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -0.02em;
  text-align: justify;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para1 {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .our-vision-para1 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 320px) {
  .our-vision-sec-page .our-vision-para1 {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-vision-sec-page .our-vision-para-wrapper1 {
  display: flex;
  flex-direction: column;
  padding: 80px 148px 80px 115px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    display: flex;
    flex-direction: column;
    padding: 50px 18px 50px 73px;
    max-width: 647px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    max-width: 100%;
    padding: 30px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .our-vision-para-wrapper1 {
    padding: 97px 18px 97px 18px;
  }
}
.our-vision-sec-page .p-l {
  padding-right: 18px;
}
.our-vision-sec-page .p-r {
  padding-left: 28px;
}
.our-vision-sec-page .vision-owner {
  font-family: "Futura Bold";
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.02em;
  text-align: left;
  padding-right: 22px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .vision-owner {
    font-size: 26px;
    line-height: 28px;
  }
}
.our-vision-sec-page .our-vision-btn {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-btn {
    font-size: 22px;
  }
}
.our-vision-sec-page .our-vision-btn-wrapper {
  width: 225px;
  height: 52px;
  padding: 10px 25px;
  /* gap: 4px; */
  background: rgb(255, 251, 240);
  border-radius: 15px;
  justify-content: center;
  border: 1px;
  display: flex;
  opacity: 0px;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
  border: 1px solid black;
  margin-top: 37px;
  transition: all 0.6s ease-in-out;
  color: #000000;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-btn-wrapper {
    width: 180px;
    height: 43px;
  }
}
@media (max-width: 769px) {
  .our-vision-sec-page .our-vision-btn-wrapper {
    margin-top: 0;
    width: 180px;
  }
}
.our-vision-sec-page .our-vision-btn-wrapper:hover {
  box-shadow: 0 4px 8px 0 rgba(50, 49, 48, 0.5882352941), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.our-vision-sec-page .our-vision-arrow {
  font-weight: 600;
  margin-bottom: -5px;
}
@media (max-width: 769px) {
  .our-vision-sec-page .mobile-align {
    order: 2;
    display: flex;
    justify-content: center;
  }
}
.our-vision-sec-page .custom-container3 {
  padding-bottom: 140px;
  padding-top: 94px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 769px) {
  .our-vision-sec-page .custom-container3 {
    max-width: 555px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .custom-container3 {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .custom-container3 {
    padding-bottom: 0px;
  }
}
.our-vision-sec-page .our-vision2 {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 800px;
  bottom: -20px;
  max-width: 180px;
  margin-left: 130px;
  height: 506px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision2 {
    width: 100%;
    margin-left: 49px;
    padding: 0px 20px 0px 50px;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: -18px;
    max-width: 219px;
    height: 418px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-vision2 {
    width: 100%;
    margin-left: 49px;
    bottom: -18px;
    height: 420px;
    max-width: 216px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision2 {
    position: relative;
    height: 465px;
    max-width: 233px;
  }
}
@media (max-width: 480px) {
  .our-vision-sec-page .our-vision2 {
    position: relative;
    height: 540px;
    max-width: 189px;
    margin-left: unset !important;
    left: 0;
    right: 0;
    padding: 0px;
    margin-top: -51px;
  }
}
.our-vision-sec-page .our-vision-para-wrapper2 {
  display: flex;
  flex-direction: column;
  padding: 100px 142px 100px 11px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para-wrapper2 {
    padding: 75px 63px 75px 46px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-vision-para-wrapper2 {
    padding: 50px 65px 50px 73px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision-para-wrapper2 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .our-vision-para-wrapper2 {
    padding: 30px;
  }
}
.our-vision-sec-page .our-vision-para-wrapper3 {
  display: flex;
  flex-direction: column;
  /* max-width: 650px; */
  /* align-items: flex-end; */
  padding: 80px 58px 80px 147px;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para-wrapper3 {
    padding: 75px 18px 75px 73px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-vision-para-wrapper3 {
    padding: 50px 94px 50px 73px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision-para-wrapper3 {
    padding: 51px 21px 30px 21px;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .our-vision-para-wrapper3 {
    padding: 30px;
  }
}
.our-vision-sec-page .our-vision-para3 {
  font-family: "Futura Regular";
  font-size: 27px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -0.02em;
  text-align: justify;
}
@media (max-width: 1440px) {
  .our-vision-sec-page .our-vision-para3 {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 1150px) {
  .our-vision-sec-page .our-vision-para3 {
    max-width: 483px !important;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision-para3 {
    max-width: 100% !important;
  }
}
@media (max-width: 435px) {
  .our-vision-sec-page .our-vision-para3 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 320px) {
  .our-vision-sec-page .our-vision-para3 {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-vision-sec-page .our-vision3 {
  /* width: 100%; */
  /* padding: 40px 20px 0px 41px; */
  position: absolute;
  height: 345px;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0px;
  right: 0;
  max-width: 760px;
}
@media (max-width: 1490px) {
  .our-vision-sec-page .our-vision3 {
    width: 100%;
    position: absolute;
    height: 276px;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: 0px;
    right: 12px;
    max-width: 292px;
  }
}
@media (max-width: 1400px) {
  .our-vision-sec-page .our-vision3 {
    height: 279px;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: -1px;
    right: unset;
    max-width: 272px;
  }
}
@media (max-width: 1024px) {
  .our-vision-sec-page .our-vision3 {
    width: 100%;
    position: absolute;
    height: 265px;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: 0px;
    right: 47px;
    max-width: 282px;
  }
}
@media (max-width: 992px) {
  .our-vision-sec-page .our-vision3 {
    position: relative;
  }
}
@media (max-width: 480px) {
  .our-vision-sec-page .our-vision3 {
    padding: 5px 18px 0px 15px;
    height: 361px;
    max-width: 389px;
    bottom: 0px;
    right: 8px;
  }
}
@media (max-width: 320px) {
  .our-vision-sec-page .our-vision3 {
    padding: 4px 4px 0px 3px;
    height: 288px;
    max-width: 370px;
    bottom: 0px;
    right: 8px;
  }
}

.sn1,
.sn2,
.sn3,
.sn4,
.sn5,
.sn6,
.sn7,
.sn8,
.sn9 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  /*left: 70px;*/
  z-index: 99;
  border: none !important;
  background: rgb(182,139,98);
  box-shadow: 0 0px 16px 0 rgb(106 92 79 / 80%), 0 6px 20px 0 rgb(106 92 79 / 39%);
  border-radius: 999px;
    padding: 15px 20px;
}
@media (max-width: 1024px) {
  .sn1,
  .sn2,
  .sn3,
  .sn4,
  .sn5,
  .sn6,
  .sn7,
  .sn8,
  .sn9 {
    /*left: 50px;*/
  }
}
@media (max-width: 992px) {
  .sn1,
  .sn2,
  .sn3,
  .sn4,
  .sn5,
  .sn6,
  .sn7,
  .sn8,
  .sn9 {
    /*left: 65px;*/
    /*width: 52px;*/
  }
}
@media (max-width: 580px) {
  .sn1,
  .sn2,
  .sn3,
  .sn4,
  .sn5,
  .sn6,
  .sn7,
  .sn8,
  .sn9 {
    /*left: 38px;*/
  }
}

.sp1,
.sp2,
.sp3,
.sp4,
.sp5,
.sp6,
.sp7,
.sp8,
.sp9 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  /*right: 70px;*/
  z-index: 99;
  border: none !important;
  background: rgb(182,139,98);
   box-shadow: 0 0px 16px 0 rgb(106 92 79 / 80%), 0 6px 20px 0 rgb(106 92 79 / 39%);
  border-radius: 999px;
    padding: 15px 20px;;
  
}
@media (max-width: 1024px) {
  .sp1,
  .sp2,
  .sp3,
  .sp4,
  .sp5,
  .sp6,
  .sp7,
  .sp8,
  .sp9 {
    /*right: -4px;*/
  }
}
@media (max-width: 992px) {
  .sp1,
  .sp2,
  .sp3,
  .sp4,
  .sp5,
  .sp6,
  .sp7,
  .sp8,
  .sp9 {
    right: 10px;
    /*width: 52px;*/
  }
}
@media (max-width: 580px) {
  .sp1,
  .sp2,
  .sp3,
  .sp4,
  .sp5,
  .sp6,
  .sp7,
  .sp8,
  .sp9 {
    /*right: 38px;*/
  }
}

.movie-video-sec {
  margin-bottom: -8px;
}
.movie-video-sec .custom-container2 {
  padding: 0px !important;
  margin-bottom: -10px;
  width: 100%;
  margin: 0 auto;
}
.movie-video-sec .movie-background {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 100%;
  position: relative;
}
.movie-video-sec .movie-background::after {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -99;
  border-radius: 30px; /* Ensure the overlay has the same border radius */
}
.movie-video-sec .video-background {
  width: 100%;
  z-index: -1;
}
.movie-video-sec .movie-grid {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 435px) {
  .movie-video-sec .movie-grid {
    top: 110%;
  }
}
.movie-video-sec .movie {
  width: 100%;
  height: 300px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 1440px) {
  .movie-video-sec .movie {
    width: 100%;
    height: 275px;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
  }
}
@media (max-width: 1070px) {
  .movie-video-sec .movie {
    height: 245px;
  }
}
@media (max-width: 769px) {
  .movie-video-sec .movie {
    height: 200px;
  }
}
@media (max-width: 500px) {
  .movie-video-sec .movie {
    height: 141px;
    width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -34px; /* Adjust as needed */
    border-radius: 11px;
  }
}
@media (max-width: 460px) {
  .movie-video-sec .movie {
    height: 129px;
    margin-top: 2px;
    border-radius: 11px;
  }
}
@media (max-width: 380px) {
  .movie-video-sec .movie {
    height: 95px;
    width: 236px;
    border-radius: 11px;
  }
}
.movie-video-sec .play-btn {
  position: absolute;
  top: 36%;
  left: 38%;
  width: 81.54px;
  height: 81.54px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
}
@media (max-width: 1440px) {
  .movie-video-sec .play-btn {
    position: absolute;
    top: 39%;
    left: 34%;
    width: 60.54px;
    height: 60.54px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
  }
}
@media (max-width: 500px) {
  .movie-video-sec .play-btn {
    height: 149px;
    width: 267px;
    margin-left: 77px;
  }
}
.movie-video-sec .play-btn:hover {
  box-shadow: 0 4px 8px 0 rgba(146, 140, 134, 0.79), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.movie-video-sec .movie-section {
  position: relative;
  height: 325px;
  border-radius: 30px;
}
@media (max-width: 1440px) {
  .movie-video-sec .movie-section {
    border-radius: 20px;
    min-width: 241px;
    max-width: unset;
    height: 300px;
  }
}
@media (max-width: 1070px) {
  .movie-video-sec .movie-section {
    height: 254px;
  }
}
@media (max-width: 769px) {
  .movie-video-sec .movie-section {
    height: 200px;
  }
}
@media (max-width: 460px) {
  .movie-video-sec .movie-section {
    margin: 15px;
    min-width: 161px;
    margin-top: -33px;
    height: 107px;
  }
}
@media (max-width: 500px) {
  .movie-video-sec .movie-section {
    height: 105px;
    position: relative;
  }
}
@media (max-width: 380px) {
  .movie-video-sec .movie-section {
    margin: 15px;
    min-width: 161px;
    margin-top: -35px;
    height: 77px;
  }
}
@media (max-width: 320px) {
  .movie-video-sec .movie-section {
    margin: 0 auto;
    min-width: 161px;
    margin-top: -35px;
    height: 85px;
  }
}
.movie-video-sec .movie-txt {
  font-family: "Futura Medium";
  font-size: 30px;
  font-weight: 500;
  line-height: 41px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1440px) {
  .movie-video-sec .movie-txt {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .movie-video-sec .movie-txt {
    line-height: 29px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .movie-video-sec .movie-txt {
    line-height: 41px;
  }
}
.movie-video-sec .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.movie-video-sec .swiper {
  width: 100%;
  height: 100%;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .movie-video-sec .swiper {
    max-width: 999px;
  }
}
@media (max-width: 435px) {
  .movie-video-sec .swiper {
    max-width: 255px;
  }
}
.movie-video-sec .swiper-slide {
  justify-content: center;
  align-items: center;
}
@media (max-width: 435px) {
  .movie-video-sec .swiper-slide {
    width: 179px;
    margin-right: 20px;
  }
}
.movie-video-sec .sp4 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  right: -32px;
  z-index: 99;
  border: none;
  background: transparent;
}
@media (max-width: 1440px) {
  .movie-video-sec .sp4 {
    right: 35px;
  }
}
@media (max-width: 1024px) {
  .movie-video-sec .sp4 {
    right: 37px;
  }
}
@media (max-width: 435px) {
  .movie-video-sec .sp4 {
    right: 58px;
    width: 52px;
  }
}
.movie-video-sec .sn4 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  left: -32px;
  z-index: 99;
  border: none;
  background: transparent;
}
@media (max-width: 1440px) {
  .movie-video-sec .sn4 {
    left: 35px;
  }
}
@media (max-width: 1024px) {
  .movie-video-sec .sn4 {
    left: 37px;
  }
}
@media (max-width: 435px) {
  .movie-video-sec .sn4 {
    left: 54px;
    width: 52px;
  }
}
.movie-video-sec .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .movie-video-sec .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
    top: -16px;
  }
}
@media (max-width: 1024px) {
  .movie-video-sec .left-arrow {
    width: 43px;
  }
}
@media (max-width: 435px) {
  .movie-video-sec .left-arrow {
    width: 28px;
    left: -65px;
  }
}
.movie-video-sec .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .movie-video-sec .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
    top: -16px;
  }
}
@media (max-width: 1024px) {
  .movie-video-sec .right-arrow {
    width: 43px;
    right: -21px;
  }
}
@media (max-width: 990px) {
  .movie-video-sec .right-arrow {
    width: 43px;
    right: -72px;
  }
}
@media (max-width: 435px) {
  .movie-video-sec .right-arrow {
    width: 28px;
    right: -65px;
  }
}

.bottom-section {
  background: white;
}
.bottom-section .custom-container2 {
  padding-bottom: 85px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .bottom-section .custom-container2 {
    padding-top: 30px;
    padding-bottom: 1px;
  }
}
.bottom-section .footer-logo {
  padding-right: 122px;
  width: 302px;
  height: auto;
}
@media (max-width: 480px) {
  .bottom-section .footer-logo {
    width: 180px;
    padding-right: 0px;
    margin-left: -8px;
  }
}
.bottom-section .footer-desc {
  font-family: "Futura Regular";
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: black;
  padding-top: 16px;
  max-width: 287px;
}
.bottom-section .footer-topic {
  font-family: "SF Pro Display";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  color: #c4905d;
}
@media (max-width: 1440px) {
  .bottom-section .footer-topic {
    font-family: "SF Pro Display";
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: #c4905d;
    margin-bottom: 8px;
  }
}
@media (max-width: 1024px) {
  .bottom-section .footer-topic {
    font-size: 18px;
  }
}
.bottom-section .reach-us-xt {
  font-family: "Futura Regular";
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  color: black;
}
@media (max-width: 1440px) {
  .bottom-section .reach-us-xt {
    font-size: 15px;
    line-height: 17px;
  }
}
.bottom-section .reach-us-item {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}
.bottom-section .reach-icon {
  margin-top: -14px;
}
.bottom-section .india-hq-wrapper {
  display: flex;
  flex-direction: row;
  padding-top: 35px;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.bottom-section .address-txt {
  font-family: "Futura Regular";
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  color: black;
  max-width: 285px;
}
@media (max-width: 1440px) {
  .bottom-section .address-txt {
    font-size: 15px;
    line-height: 20px;
  }
}
.bottom-section .company-item-txt {
  font-family: "Futura Regular";
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  text-align: left;
  color: black;
  margin-left: -25px;
  list-style: none;
}
@media (max-width: 1440px) {
  .bottom-section .company-item-txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
  }
}
.bottom-section .social-media-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1.5rem;
  justify-items: center; 
  align-items: center;
}
.social-media-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px; /* Keep it consistent */
  width: 50px;
}

.social-media-icon {
  height: 130px; /* Fill the anchor */
  /*width: 100%;*/
  object-fit: cover;
}
@media (max-width: 1440px) {
  .bottom-section .social-media-grid {
    -moz-column-gap: 58px;
         column-gap: 58px;
    row-gap: 58px;
  }
}
@media (max-width: 1024px) {
  .bottom-section .social-media-grid {
    -moz-column-gap: 58px;
         column-gap: 58px;
    row-gap: 58px;
  }
}
.social-media-icon:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}
.bottom-section .social-media-icon {
  /*max-width: 50px;*/
}
@media (max-width: 1440px) {
  .bottom-section .social-media-icon {
    /*max-width: 44px;*/
  }
}
.bottom-section .mobile-align {
  align-items: start;
}
@media (max-width: 769px) {
  .bottom-section .mobile-align {
    align-items: center;
  }
}
@media (max-width: 435px) {
  .bottom-section .mobile-align {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer {
  background: #B68B62;
  height: 100%;
  /* border-top: 1px solid; */
}
.footer .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
.footer .footer-txt {
  font-family: "Futura Medium";
  font-size: 15px;
  font-weight: 700;
  line-height: 19.81px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 0;
}
.footer .developed-txt {
  font-family: "Futura Bold ";
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .footer .developed-txt {
    font-size: 13px;
    line-height: 14px;
  }
}
.footer .prodigit-txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.45px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .footer .prodigit-txt {
    font-size: 12px;
  }
}
.footer .ffoter-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
@media (max-width: 1440px) {
  .footer .ffoter-wrapper {
    align-items: center;
    padding: 10px 0px;
  }
}
@media (max-width: 350px) {
  .footer .ffoter-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.footer .developed-company-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  height: 100%;
  vertical-align: middle;
}
.topic .our-vision-topic {
  font-family: "Futura Medium";
  font-size: 64px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -0.02em;
  text-align: center;
  color: black;
  padding-bottom: 53px;
  padding-top: 50px;
}

.movie-desc-sec .custom-container5 {
  padding-top: 91px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .movie-desc-sec .custom-container5 {
    padding-top: 90px;
  }
}
.movie-desc-sec .e-hanuman-video {
  max-width: 823px;
  border-radius: 30px;
  height: 466px;
}
@media (max-width: 1670px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 681px !important;
  }
}
@media (max-width: 1500px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 640px !important;
  }
}
@media (max-width: 1440px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 527px !important;
    height: 313px;
  }
}
@media (max-width: 1142px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 442px !important;
  }
}
@media (max-width: 1080px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 436px !important;
  }
}
@media (max-width: 1120px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 436px !important;
  }
}
@media (max-width: 1030px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 436px !important;
  }
}
@media (max-width: 1024px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 346px !important;
    height: 347px;
  }
}
@media (max-width: 769px) {
  .movie-desc-sec .e-hanuman-video {
    max-width: 100%;
  }
}
@media (max-width: 435px) {
  .movie-desc-sec .e-hanuman-video {
    height: unset;
  }
}
.movie-desc-sec .testimonial-video {
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie-desc-sec .e-hanuman {
  max-width: 348px;
  height: 466px;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .movie-desc-sec .e-hanuman {
    max-width: 294px;
    height: 313px;
  }
}
@media (max-width: 1024px) {
  .movie-desc-sec .e-hanuman {
    max-width: 249px;
    height: 348px;
  }
}
@media (max-width: 768px) {
  .movie-desc-sec .e-hanuman {
    max-width: 100%;
    height: 100%;
  }
}
@media (max-width: 435px) {
  .movie-desc-sec .e-hanuman {
    height: auto;
  }
}
.movie-desc-sec .pie-chart {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 320px) {
  .movie-desc-sec .pie-chart {
    width: 275px;
    height: 275px;
    border-radius: 50%;
    position: relative;
  }
}
.movie-desc-sec .pie-chart::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: black;
  z-index: 1;
}
@media (max-width: 320px) {
  .movie-desc-sec .pie-chart::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 24px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: black;
    z-index: 1;
  }
}
.movie-desc-sec .pie-chart span:after {
  display: none;
}
.movie-desc-sec .pie-chart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.movie-desc-sec .top-wrapper {
  height: 100%;
  background-color: black;
  padding: 72px 80px 72px 80px;
  gap: 24px;
  border-radius: 30px;
  opacity: 0px;
}
@media (max-width: 1440px) {
  .movie-desc-sec .top-wrapper {
    padding: 20px 30px;
  }
}
@media (max-width: 435px) {
  .movie-desc-sec .top-wrapper {
    padding: 72px 10px 72px 10px;
  }
}
.movie-desc-sec .movie-name {
  font-family: "Futura Medium";
  font-size: 48px;
  font-weight: 500;
  line-height: 50px;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 480px) {
  .movie-desc-sec .movie-name {
    text-align: center;
  }
}
.movie-desc-sec .movie-duration {
  font-family: Futura;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: white;
}
.movie-desc-sec .movie-time-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 24px;
}
@media (max-width: 480px) {
  .movie-desc-sec .movie-time-wrapper {
    justify-content: center;
  }
}
.movie-desc-sec .photo-btn {
  width: 246px;
  height: 216px;
  padding: 80px 97px 80px 97px;
  gap: 10px;
  border-radius: 20px;
  opacity: 0px;
  background-color: rgba(56, 56, 56, 0.5);
  border: none;
  transition: box-shadow 0.3s ease;
}
@media (max-width: 1440px) {
  .movie-desc-sec .photo-btn {
    height: 81px;
    width: 69px;
    padding: 58px 91px 58px 48px;
  }
}
@media (max-width: 1024px) {
  .movie-desc-sec .photo-btn {
    height: 112px;
    display: flex;
    padding: 63px 79px 1px 36px;
    /* align-items: center; */
    /* padding: 50% 50%; */
    /* margin: 0 auto; */
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .movie-desc-sec .photo-btn {
    padding: 90px 107px 40px 64px;
  }
}
@media (max-width: 580px) {
  .movie-desc-sec .photo-btn {
    width: 46px;
    height: 113px;
    padding: 75px 82px 18px 40px;
    gap: 10px;
    border-radius: 20px;
    opacity: 0px;
    background-color: rgba(56, 56, 56, 0.5);
    border: none;
    transition: box-shadow 0.3s ease;
  }
}
@media (max-width: 1440px) {
  .movie-desc-sec img.icon {
    max-width: 38px;
    margin-top: -36px;
  }
}
.movie-desc-sec .photo-btn:hover {
  box-shadow: 0 4px 8px 0 rgba(50, 49, 48, 0.5882352941), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.movie-desc-sec .btn-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 1440px) {
  .movie-desc-sec .btn-wrapper {
    margin-top: 31px;
  }
}
@media (max-width: 992px) {
  .movie-desc-sec .btn-wrapper {
    margin-bottom: 10px;
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .movie-desc-sec .btn-wrapper {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 10px;
    align-items: center;
  }
}
.movie-desc-sec .top-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (max-width: 1440px) {
  .movie-desc-sec .top-grid {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 1040px) {
  .movie-desc-sec .top-grid {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 769px) {
  .movie-desc-sec .top-grid {
    flex-direction: column;
    row-gap: 13px;
  }
}
.movie-desc-sec .chip {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 25px;
  background-color: transparent;
  color: white;
  border: 1px solid rgb(56, 56, 56);
  font-family: "Futura Medium";
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 1440px) {
  .movie-desc-sec .chip {
    display: inline-block;
    padding: 0 25px;
    height: 37px;
    font-size: 16px;
    line-height: 34px;
    border-radius: 25px;
    background-color: transparent;
    font-family: "Futura Medium";
    font-size: 15px;
    font-weight: 400;
     color: white;
  border: 1px solid rgb(56, 56, 56);
    text-align: center;
  }
}
@media (max-width: 435px) {
  .movie-desc-sec .chip {
    display: inline-block;
    padding: 0px 14px;
    height: 32px;
    /* font-size: 16px; */
    line-height: 31px;
    border-radius: 25px;
    background-color: transparent;
    font-family: "Futura Medium";
    font-size: 14px;
    font-weight: 400;
    color: white;
  border: 1px solid rgb(56, 56, 56);
    text-align: center;
  }
}
.movie-desc-sec .video-categories {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media (max-width: 1440px) {
  .movie-desc-sec .video-categories {
    padding-top: 17px;
  }
}
@media (max-width: 480px) {
  .movie-desc-sec .video-categories {
    justify-content: center;
  }
}
.movie-desc-sec .movie-para {
  font-family: "Futura Regular";
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.01em;
  text-align: left;
  padding-top: 28px;
  padding-bottom: 28px;
  color: #e6e6e6;
}
@media (max-width: 1440px) {
  .movie-desc-sec .movie-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }
}
@media (max-width: 435px) {
  .movie-desc-sec .movie-para {
    text-align: justify;
  }
}
.movie-desc-sec .description-item {
  max-width: 1051px;
  height: 62px;
  padding: 18px 24px;
  gap: 10px;
  border-radius: 20px;
  opacity: 0px;
  margin-bottom: 24px;
  background: #383838;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1440px) {
  .movie-desc-sec .description-item {
    height: 47px;
    padding: 14px 24px;
  }
}
@media (max-width: 480px) {
  .movie-desc-sec .description-item {
    height: 100%;
    padding: 7px 24px;
    gap: 10px;
    border-radius: 20px;
    opacity: 0px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.movie-desc-sec .description-txt {
  color: #e6e6e6;
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: left;
  display: inline;
}
@media (max-width: 1440px) {
  .movie-desc-sec .description-txt {
    font-size: 18px;
    line-height: 19px;
    margin-bottom: 0px;
  }
}
.movie-desc-sec .description-answer {
  font-family: "Futura Light";
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #e6e6e6;
  display: inline;
}
@media (max-width: 1440px) {
  .movie-desc-sec .description-answer {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0px;
  }
}
.movie-desc-sec .pie-chart-txt {
  font-family: "SF Pro Display";
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #e6e6e6;
}
.movie-desc-sec .rate {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: SF Pro Display;
  font-size: 68px;
  font-weight: 700;
  color: #e6e6e6;
  z-index: 1;
}
@media (max-width: 1440px) {
  .movie-desc-sec .rate {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: SF Pro Display;
    font-size: 58px;
    font-weight: 700;
    color: #e6e6e6;
  }
}
.movie-desc-sec .btn-txt {
  font-family: SF Pro Display;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
}
.movie-desc-sec .btn-txt {
  font-family: SF Pro Display;
  font-size: 12px;
  font-weight: 200;
  line-height: 14px;
  text-align: left;
  padding-top: 4px;
  padding-left: 3px;
  color: #ffffff;
}

.topic1 .our-vision-topic1 {
  font-family: "Futura Medium";
  font-size: 48px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -0.02em;
  text-align: center;
  color: black;
  padding-bottom: 24px;
  padding-top: 160px;
}
@media (max-width: 1440px) {
  .topic1 .our-vision-topic1 {
    padding-top: 99px;
    font-family: "Futura Medium";
    font-size: 40px;
    line-height: 40.01px;
    letter-spacing: 0.02em;
    text-align: center;
    color: black;
  }
}
@media (max-width: 1024px) {
  .topic1 .our-vision-topic1 {
    font-size: 51px;
    font-weight: 500;
    text-align: center;
    padding-top: 134px;
  }
}
@media (max-width: 435px) {
  .topic1 .our-vision-topic1 {
    font-size: 47px;
    font-weight: 500;
    text-align: center;
    padding-top: 77px;
  }
}
.topic1 .rate {
  position: absolute;
  top: 38%;
  left: 34%;
  font-family: SF Pro Display;
  font-size: 68px;
  font-weight: 700;
  color: #e6e6e6;
}

.video-sec .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .video-sec .custom-container2 {
    max-width: 1120px;
  }
}
@media (max-width: 1024px) {
  .video-sec .custom-container2 {
    max-width: 700px;
  }
}
@media (max-width: 769px) {
  .video-sec .custom-container2 {
    max-width: 400px;
  }
}
@media (max-width: 440px) {
  .video-sec .custom-container2 {
    max-width: 265px;
    padding: 10px 20px 10px 20px;
  }
}
@media (max-width: 320px) {
  .video-sec .custom-container2 {
    max-width: 245px;
    padding: 10px 20px 10px 20px;
  }
}
.video-sec .carousel {
  width: 90%;
  margin: 0px auto;
}
.video-sec .slick-slide {
  margin: 10px;
}
.video-sec .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.video-sec .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.video-sec .testimonial-video {
  max-width: 450px;
  height: 360px;
  background-color: #000;
  border-radius: 30px;
  border: 1px solid black;
}
@media (max-width: 1440px) {
  .video-sec .testimonial-video {
    max-width: 450px;
    height: 276px;
  }
}
@media (max-width: 1024px) {
  .video-sec .testimonial-video {
    max-width: 345px;
    height: 250px;
  }
}
@media (max-width: 440px) {
  .video-sec .testimonial-video {
    max-width: 200px;
    height: 225px;
  }
}
@media (max-width: 320px) {
  .video-sec .testimonial-video {
    max-width: 157px;
    height: 225px;
  }
}
.video-sec .test {
  transition: all 0.4s ease-in-out;
}
.video-sec .test:hover {
  scale: 1.1;
}
.video-sec .swiper {
  width: 1165px;
  height: 100%;
  padding: 40px 15px 15px 15px;
}
@media (max-width: 1440px) {
  .video-sec .swiper {
    max-width: 999px;
  }
}
@media (max-width: 435px) {
  .video-sec .swiper {
    max-width: unset;
  }
}
.video-sec .swiper1 {
  width: 1724px;
  height: 100%;
}
.video-sec .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 435px) {
  .video-sec .swiper-slide {
    width: 179px;
    margin-right: 5px;
  }
}
.video-sec .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.video-sec .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
}
@media (max-width: 1440px) {
  .video-sec .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
  }
}
.video-sec .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  text-align: center;
  color: black;
}
@media (max-width: 1440px) {
  .video-sec .cast-name {
    font-size: 19px;
  }
}
.video-sec .cast-character {
  font-family: "Futura Light";
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .video-sec .cast-character {
    font-size: 19px;
    margin-top: -13px;
  }
}
.video-sec .testimonial-img {
  max-width: 326px;
  height: 427px;
  border-radius: 30px;
}
@media (max-width: 769px) {
  .video-sec .testimonial-img {
    max-width: unset;
    width: 100%;
  }
}
.video-sec .swiper-button-next,
.video-sec .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.video-sec .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.video-sec .sp4 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  right: 80px;
  z-index: 99;
  border: none;
  background: rgb(182,139,98);
    border-radius: 999px;
    padding: 15px 20px;;
}
@media (max-width: 1024px) {
  .video-sec .sp4 {
    right: -52px;
  }
}
@media (max-width: 440px) {
  .video-sec .sp4 {
    right: -84px;
    width: 52px;
  }
}
@media (max-width: 320px) {
  .video-sec .sp4 {
    right: -53px;
    width: 52px;
  }
}
.video-sec .sn4 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  left: 80px;
  z-index: 99;
  border: none;
  background: rgb(182,139,98);
    border-radius: 999px;
    padding: 15px 20px;;
}
@media (max-width: 1024px) {
  .video-sec .sn4 {
    left: -52px;
  }
}
@media (max-width: 440px) {
  .video-sec .sn4 {
    left: -84px;
    width: 52px;
  }
}
@media (max-width: 320px) {
  .video-sec .sn4 {
    left: -53px;
    width: 52px;
  }
}
.video-sec .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec .left-arrow {
    width: 43px;
    position: relative;
    left: -85px;
  }
}
@media (max-width: 1024px) {
  .video-sec .left-arrow {
    width: 43px;
    left: 0;
  }
}
@media (max-width: 435px) {
  .video-sec .left-arrow {
    width: 28px;
  }
}
.video-sec .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec .right-arrow {
    width: 43px;
    position: relative;
    right: -85px;
  }
}
@media (max-width: 1024px) {
  .video-sec .right-arrow {
    width: 43px;
    right: 0;
  }
}
@media (max-width: 435px) {
  .video-sec .right-arrow {
    width: 28px;
  }
}
.video-sec .left-arrow1 {
  position: relative;
  width: 68px;
  left: -99px;
}
@media (max-width: 1024px) {
  .video-sec .left-arrow1 {
    width: 50px;
  }
}
.video-sec .right-arrow2 {
  width: 68px;
  position: relative;
  right: -247px;
}
@media (max-width: 1024px) {
  .video-sec .right-arrow2 {
    width: 50px;
  }
}
.video-sec .swiper-slide {
  background: transparent;
}
.video-sec .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.video-sec .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.video-sec .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}

.video-sec1 .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .video-sec1 .custom-container2 {
    max-width: 1120px;
  }
}
@media (max-width: 1024px) {
  .video-sec1 .custom-container2 {
    max-width: 700px;
  }
}
@media (max-width: 769px) {
  .video-sec1 .custom-container2 {
    max-width: 500px;
  }
}
.video-sec1 .carousel {
  width: 90%;
  margin: 0px auto;
}
.video-sec1 .slick-slide {
  margin: 10px;
}
.video-sec1 .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.video-sec1 .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.video-sec1 .testimonial-video {
  max-width: 680px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid black;
}
.video-sec1 .swiper {
  width: 1165px;
  height: 100%;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .video-sec1 .swiper {
    max-width: 999px;
  }
}
.video-sec1 .swiper1 {
  width: 1724px;
  height: 100%;
}
.video-sec1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-sec1 .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.video-sec1 .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
}
@media (max-width: 1440px) {
  .video-sec1 .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
  }
}
.video-sec1 .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.01em;
  text-align: center;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .video-sec1 .cast-name {
    font-size: 19px;
  }
}
.video-sec1 .testimonial-img {
  width: 80%;
  height: 100%;
  border-radius: 30px;
}
.video-sec1 .swiper-button-next,
.video-sec1 .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.video-sec1 .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.video-sec1 .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec1 .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec1 .left-arrow {
    width: 43px;
    left: -33px;
  }
}
@media (max-width: 435px) {
  .video-sec1 .left-arrow {
    width: 28px;
  }
}
.video-sec1 .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec1 .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec1 .right-arrow {
    width: 43px;
    right: -33px;
  }
}
@media (max-width: 435px) {
  .video-sec1 .right-arrow {
    width: 28px;
  }
}
.video-sec1 .swiper-slide {
  background: transparent;
}
.video-sec1 .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.video-sec1 .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.video-sec1 .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}

.video-sec2 .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .video-sec2 .custom-container2 {
    max-width: 700px;
  }
}
@media (max-width: 769px) {
  .video-sec2 .custom-container2 {
    max-width: 500px;
  }
}
.video-sec2 .carousel {
  width: 90%;
  margin: 0px auto;
}
.video-sec2 .slick-slide {
  margin: 10px;
}
.video-sec2 .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.video-sec2 .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.video-sec2 .testimonial-video {
  max-width: 680px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid black;
}
.video-sec2 .swiper {
  width: 1165px;
  height: 100%;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .video-sec2 .swiper {
    max-width: 999px;
  }
}
.video-sec2 .swiper1 {
  width: 1724px;
  height: 100%;
}
.video-sec2 .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 435px) {
  .video-sec2 .swiper-slide2 {
    margin-left: unset;
  }
}
.video-sec2 .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
  border: 1px solid transparent;
  border-radius: 50%;
}
@media (max-width: 1440px) {
  .video-sec2 .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
    border: 1px solid transparent;
    border-radius: 50%;
  }
}
@media (max-width: 1024px) {
  .video-sec2 .cast-img {
    max-width: 103px;
    /* margin-left: 67px; */
    height: 104px;
  }
}
.video-sec2 .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 0;
  color: black;
}
@media (max-width: 1440px) {
  .video-sec2 .cast-name {
    font-size: 19px;
    margin-bottom: 10px;
  }
}
.video-sec2 .cast-character {
  font-family: "Futura Light";
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .video-sec2 .cast-character {
    font-size: 19px;
    margin-top: -13px;
  }
}
@media (max-width: 1024px) {
  .video-sec2 .cast-character {
    font-size: 12px;
    margin-top: -20px;
  }
}
.video-sec2 .testimonial-img {
  max-width: 326px;
  height: 427px;
  border-radius: 30px;
}
@media (max-width: 769px) {
  .video-sec2 .testimonial-img {
    max-width: unset;
    width: 100%;
  }
}
.video-sec2 .swiper-button-next,
.video-sec2 .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.video-sec2 .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.video-sec2 .sp2 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  right: 70px;
  z-index: 99;
  border: none;
  background: rgb(182,139,98);
    border-radius: 999px;
    padding: 15px 20px;;
}
@media (max-width: 1024px) {
  .video-sec2 .sp2 {
    /*right: -52px;*/
  }
}
@media (max-width: 440px) {
  .video-sec2 .sp2 {
    /*right: 24px;*/
    width: 52px;
  }
}
.video-sec2 .sn2 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  left: 70px;
  z-index: 99;
  border: none;
  background: rgb(182,139,98);
    border-radius: 999px;
    padding: 15px 20px;;
}
@media (max-width: 1024px) {
  .video-sec2 .sn2 {
    /*left: -52px;*/
  }
}
@media (max-width: 440px) {
  .video-sec2 .sn2 {
    left: -14px;
    width: 52px;
  }
}
.video-sec2 .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec2 .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec2 .left-arrow {
    width: 43px;
    left: 22px;
  }
}
@media (max-width: 435px) {
  .video-sec2 .left-arrow {
    width: 28px;
  }
}
.video-sec2 .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec2 .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec2 .right-arrow {
    width: 43px;
    right: 22px;
  }
}
@media (max-width: 769px) {
  .video-sec2 .right-arrow {
    right: -20px;
  }
}
@media (max-width: 435px) {
  .video-sec2 .right-arrow {
    width: 28px;
  }
}
.video-sec2 .left-arrow1 {
  position: relative;
  width: 68px;
  left: -99px;
}
@media (max-width: 1024px) {
  .video-sec2 .left-arrow1 {
    width: 50px;
  }
}
.video-sec2 .right-arrow2 {
  width: 68px;
  position: relative;
  right: -247px;
}
@media (max-width: 1024px) {
  .video-sec2 .right-arrow2 {
    width: 50px;
  }
}
.video-sec2 .swiper-slide {
  background: transparent;
}
.video-sec2 .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.video-sec2 .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.video-sec2 .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}

.video-sec3 {
  margin-bottom: 150px;
}
.video-sec3 .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .video-sec3 .custom-container2 {
    max-width: 700px;
  }
}
@media (max-width: 769px) {
  .video-sec3 .custom-container2 {
    max-width: 500px;
  }
}
.video-sec3 .carousel {
  width: 90%;
  margin: 0px auto;
}
.video-sec3 .slick-slide {
  margin: 10px;
}
.video-sec3 .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.video-sec3 .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.video-sec3 .testimonial-video {
  max-width: 680px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid black;
}
.video-sec3 .swiper {
  width: 1165px;
  height: 100%;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .video-sec3 .swiper {
    max-width: 999px;
  }
}
.video-sec3 .swiper1 {
  width: 1724px;
  height: 100%;
}
.video-sec3 .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 435px) {
  .video-sec3 .swiper-slide2 {
    margin-left: unset;
  }
}
.video-sec3 .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
  margin-bottom: 0px;
  border: 1px solid transparent;
  border-radius: 50%;
}
@media (max-width: 1440px) {
  .video-sec3 .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
    border: 1px solid transparent;
    border-radius: 50%;
  }
}
@media (max-width: 1024px) {
  .video-sec3 .cast-img {
    max-width: 103px;
    /* margin-left: 67px; */
    height: 104px;
  }
}
.video-sec3 .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.01em;
  text-align: center;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .video-sec3 .cast-name {
    font-size: 19px;
  }
}
.video-sec3 .cast-character {
  font-family: "Futura Light";
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .video-sec3 .cast-character {
    font-size: 19px;
    margin-top: -13px;
  }
}
@media (max-width: 1024px) {
  .video-sec3 .cast-character {
    font-size: 12px;
    margin-top: -20px;
  }
}
.video-sec3 .testimonial-img {
  max-width: 326px;
  height: 427px;
  border-radius: 30px;
}
@media (max-width: 769px) {
  .video-sec3 .testimonial-img {
    max-width: unset;
    width: 100%;
  }
}
.video-sec3 .swiper-button-next,
.video-sec3 .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.video-sec3 .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.video-sec3 .sp3 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  right: 70px;
  z-index: 99;
  border: none;
  background: rgb(182,139,98);
    border-radius: 999px;
    padding: 15px 20px;;
}
@media (max-width: 1024px) {
  .video-sec3 .sp3 {
    /*right: -52px;*/
  }
}
@media (max-width: 440px) {
  .video-sec3 .sp3 {
    right: 24px;
    width: 52px;
  }
}
.video-sec3 .sn3 {
  /*width: 80px;*/
  position: absolute;
  /*height: 78px;*/
  left: 70px;
  z-index: 99;
  border: none;
 background: rgb(182,139,98);
    border-radius: 999px;
    padding: 15px 20px;;
}
.fa-chevron-right{
    color:white !important;
}
.fa-chevron-left{
    color:white !important;
}
@media (max-width: 1024px) {
  .video-sec3 .sn3 {
    /*left: -52px;*/
  }
}
@media (max-width: 440px) {
  .video-sec3 .sn3 {
    left: -14px;
    width: 52px;
  }
}
.video-sec3 .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec3 .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec3 .left-arrow {
    width: 43px;
    left: 22px;
  }
}
@media (max-width: 435px) {
  .video-sec3 .left-arrow {
    width: 28px;
  }
}
.video-sec3 .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec3 .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec3 .right-arrow {
    width: 43px;
    right: 22px;
  }
}
@media (max-width: 769px) {
  .video-sec3 .right-arrow {
    right: -20px;
  }
}
@media (max-width: 435px) {
  .video-sec3 .right-arrow {
    width: 28px;
  }
}
.video-sec3 .left-arrow1 {
  position: relative;
  width: 68px;
  left: -99px;
}
@media (max-width: 1024px) {
  .video-sec3 .left-arrow1 {
    width: 50px;
  }
}
.video-sec3 .right-arrow2 {
  width: 68px;
  position: relative;
  right: -247px;
}
@media (max-width: 1024px) {
  .video-sec3 .right-arrow2 {
    width: 50px;
  }
}
.video-sec3 .swiper-slide {
  background: transparent;
}
.video-sec3 .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.video-sec3 .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.video-sec3 .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}

.video-sec4 {
  padding-bottom: 99px;
}
.video-sec4 .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .video-sec4 .custom-container2 {
    max-width: 700px;
  }
}
@media (max-width: 769px) {
  .video-sec4 .custom-container2 {
    max-width: 500px;
  }
}
.video-sec4 .carousel {
  width: 90%;
  margin: 0px auto;
}
.video-sec4 .slick-slide {
  margin: 10px;
}
.video-sec4 .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.video-sec4 .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.video-sec4 .testimonial-video {
  max-width: 680px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid black;
}
.video-sec4 .swiper {
  height: 100%;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .video-sec4 .swiper {
    max-width: unset;
  }
}
.video-sec4 .swiper1 {
  width: 1724px;
  height: 100%;
}
.video-sec4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-sec4 .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.video-sec4 .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
}
@media (max-width: 1440px) {
  .video-sec4 .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
  }
}
.video-sec4 .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.01em;
  text-align: center;
  color: black;
}
@media (max-width: 1440px) {
  .video-sec4 .cast-name {
    font-size: 19px;
  }
}
.video-sec4 .testimonial-img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.video-sec4 .swiper-button-next,
.video-sec4 .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.video-sec4 .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.video-sec4 .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec4 .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec4 .left-arrow {
    width: 43px;
    left: -33px;
  }
}
@media (max-width: 435px) {
  .video-sec4 .left-arrow {
    width: 28px;
  }
}
.video-sec4 .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec4 .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
  }
}
@media (max-width: 1024px) {
  .video-sec4 .right-arrow {
    width: 43px;
    right: -33px;
  }
}
@media (max-width: 435px) {
  .video-sec4 .right-arrow {
    width: 28px;
  }
}
.video-sec4 .swiper-slide {
  background: transparent;
}
.video-sec4 .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.video-sec4 .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.video-sec4 .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}

.video-sec5 {
  padding-bottom: 148px;
}
@media (max-width: 1440px) {
  .video-sec5 {
    padding-bottom: 99px;
  }
}
@media (max-width: 768px) {
  .video-sec5 {
    padding-bottom: 50px;
  }
}
.video-sec5 .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .video-sec5 .custom-container2 {
    max-width: 700px;
  }
}
@media (max-width: 769px) {
  .video-sec5 .custom-container2 {
    max-width: 500px;
  }
}
.video-sec5 .movie-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
@media (max-width: 1440px) {
  .video-sec5 .movie-wrapper {
    padding-top: unset;
  }
}
.video-sec5 .movie-topic {
  width: 100%;
  height: 100%;
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 600px) {
    .video-sec5 .movie-topic {
      width: 100% !important;
      height: 100% !important;
    }
  }
}
.video-sec5 .carousel {
  width: 90%;
  margin: 0px auto;
}
.video-sec5 .slick-slide {
  margin: 10px;
}
.video-sec5 .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.video-sec5 .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.video-sec5 .testimonial-video {
  max-width: 680px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid black;
}
.video-sec5 .swiper {
  height: 100%;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .video-sec5 .swiper {
    padding-top: unset;
    max-width: unset;
  }
}
.video-sec5 .swiper1 {
  width: 1724px;
  height: 100%;
}
.video-sec5 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: start;
}
.video-sec5 .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.video-sec5 .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
}
@media (max-width: 1440px) {
  .video-sec5 .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
  }
}
.video-sec5 .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.01em;
  text-align: center;
  color: black;
}
@media (max-width: 1440px) {
  .video-sec5 .cast-name {
    font-size: 19px;
  }
}
.video-sec5 .testimonial-img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.video-sec5 .swiper-button-next,
.video-sec5 .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.video-sec5 .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.video-sec5 .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec5 .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
    top: -74px;
  }
}
@media (max-width: 1024px) {
  .video-sec5 .left-arrow {
    width: 43px;
    left: -33px;
  }
}
@media (max-width: 435px) {
  .video-sec5 .left-arrow {
    width: 28px;
  }
}
.video-sec5 .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .video-sec5 .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
    top: -74px;
  }
}
@media (max-width: 1024px) {
  .video-sec5 .right-arrow {
    width: 43px;
    right: -33px;
  }
}
@media (max-width: 435px) {
  .video-sec5 .right-arrow {
    width: 28px;
  }
}
.video-sec5 .swiper-slide {
  background: transparent;
}
.video-sec5 .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.video-sec5 .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.video-sec5 .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}

.upcoming-slider {
  padding-bottom: 22px;
}
.upcoming-slider .custom-container2 {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .upcoming-slider .custom-container2 {
    max-width: 990px;
  }
}
@media (max-width: 769px) {
  .upcoming-slider .custom-container2 {
    max-width: 500px;
  }
}
.upcoming-slider .flex-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 992px) {
  .upcoming-slider .flex-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 44px;
  }
}
.upcoming-slider .carousel {
  width: 90%;
  margin: 0px auto;
}
.upcoming-slider .slick-slide {
  margin: 10px;
}
.upcoming-slider .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}
.upcoming-slider .wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}
.upcoming-slider .testimonial-video {
  max-width: 680px;
  height: 360px;
  border-radius: 30px;
  border: 1px solid black;
}
.upcoming-slider .swiper {
  height: 100%;
}
@media (max-width: 1440px) {
  .upcoming-slider .swiper {
    max-width: unset;
  }
}
.upcoming-slider .swiper1 {
  width: 1724px;
  height: 100%;
}
.upcoming-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upcoming-slider .swiper-slide2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.upcoming-slider .cast-img {
  max-width: 166px;
  /* margin-left: 67px; */
  height: 166px;
}
@media (max-width: 1440px) {
  .upcoming-slider .cast-img {
    max-width: 125px;
    /* margin-left: 67px; */
    height: 121px;
  }
}
.upcoming-slider .cast-name {
  font-family: "Futura Medium";
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.01em;
  text-align: center;
  color: black;
}
@media (max-width: 1440px) {
  .upcoming-slider .cast-name {
    font-size: 19px;
  }
}
.upcoming-slider .testimonial-img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 1650px) {
  .upcoming-slider .testimonial-img {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .upcoming-slider .testimonial-img {
    max-width: 428px;
  }
}
@media (max-width: 600px) {
  .upcoming-slider .testimonial-img {
    max-width: 324px;
  }
}
@media (max-width: 435px) {
  .upcoming-slider .testimonial-img {
    max-width: 230px;
  }
}
.upcoming-slider .adhira-promo-img {
  height: 468px;
  max-width: 519px;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .upcoming-slider .adhira-promo-img {
    height: 299px;
    max-width: 417px;
    border-radius: 20px;
  }
}
@media (max-width: 1024px) {
  .upcoming-slider .adhira-promo-img {
    height: auto;
    max-width: 319px;
  }
}
@media (max-width: 992px) {
  .upcoming-slider .adhira-promo-img {
    margin-bottom: 30px;
  }
}
@media (max-width: 435px) {
  .upcoming-slider .adhira-promo-img {
    height: auto;
    max-width: 234px;
    border-radius: 20px;
    padding-bottom: 20px;
  }
}
.upcoming-slider .swiper-button-next,
.upcoming-slider .swiper-button-prev {
  position: relative;
  width: 0px;
  height: 0px;
  color: transparent;
}
.upcoming-slider .swiper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 1265px;
  height: 100%;
}
@media (max-width: 1700px) {
  .upcoming-slider .swiper-container {
    max-width: 1080px;
  }
}
@media (max-width: 1440px) {
  .upcoming-slider .swiper-container {
    max-width: 900px;
  }
}
@media (max-width: 1055px) {
  .upcoming-slider .swiper-container {
    max-width: 854px;
  }
}
@media (max-width: 1020px) {
  .upcoming-slider .swiper-container {
    max-width: 815px;
  }
}
@media (max-width: 992px) {
  .upcoming-slider .swiper-container {
    max-width: 590px;
  }
}
@media (max-width: 500px) {
  .upcoming-slider .swiper-container {
    max-width: 419px;
  }
}
@media (max-width: 435px) {
  .upcoming-slider .swiper-container {
    max-width: 300px;
  }
}
.upcoming-slider .left-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .upcoming-slider .left-arrow {
    width: 43px;
    position: relative;
    left: -78px;
  }
}
@media (max-width: 1024px) {
  .upcoming-slider .left-arrow {
    width: 43px;
    left: -33px;
  }
}
@media (max-width: 435px) {
  .upcoming-slider .left-arrow {
    width: 28px;
  }
}
.upcoming-slider .right-arrow {
  width: 65px;
}
@media (max-width: 1440px) {
  .upcoming-slider .right-arrow {
    width: 43px;
    position: relative;
    right: -78px;
  }
}
@media (max-width: 1024px) {
  .upcoming-slider .right-arrow {
    width: 43px;
    right: -33px;
  }
}
@media (max-width: 435px) {
  .upcoming-slider .right-arrow {
    width: 28px;
  }
}
.upcoming-slider .swiper-slide {
  background: transparent;
}
.upcoming-slider .swiper-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
}
.upcoming-slider .testimonial-para {
  max-width: 780px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #0d0d0d;
}
.upcoming-slider .para-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 25px;
}
.upcoming-slider .comin-soon-txt2 {
  font-family: "Futura Bold";
  font-size: 60px;
  font-weight: 700;
  line-height: 0px;
  letter-spacing: 0px;
  text-align: right;
  color: #666666;
  transform: rotate(180deg);
  transform-origin: right;
  white-space: nowrap;
  writing-mode: vertical-rl;
  margin-bottom: 0px;
  padding-left: 46px;
  /* margin-left: 37px; */
}
@media (max-width: 1900px) {
  .upcoming-slider .comin-soon-txt2 {
    letter-spacing: 2px;
    padding-left: 71px;
  }
}
@media (max-width: 1440px) {
  .upcoming-slider .comin-soon-txt2 {
    font-size: 47px;
    line-height: -1px;
    letter-spacing: -1px !important;
    padding-left: 52px;
  }
}
@media (max-width: 1080px) {
  .upcoming-slider .comin-soon-txt2 {
    font-size: 37px;
    letter-spacing: 1px !important;
    margin-left: 20px !important;
  }
}
@media (max-width: 992px) {
  .upcoming-slider .comin-soon-txt2 {
    transform: unset;
    transform-origin: unset;
    white-space: unset;
    writing-mode: unset;
    text-align: center;
    margin-left: unset;
    padding-left: unset;
  }
}
@media (max-width: 435px) {
  .upcoming-slider .comin-soon-txt2 {
    font-size: 30px;
    line-height: 51px;
  }
}

.bottom-background {
  background: #B68B62;
  padding-top: 300px;
}
@media (max-width: 435px) {
  .bottom-background {
    padding-top: 150px;
  }
}

.upcoming-movie-sec .custom-container5 {
  padding-top: 99px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 110px;
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .custom-container5 {
    padding-top: 90px;
  }
}
.upcoming-movie-sec .top-wrapper {
  height: 100%;
  background-color: black;
  padding: 72px 80px 72px 80px;
  gap: 24px;
  border-radius: 30px;
  opacity: 0px;
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .top-wrapper {
    padding: 20px 20px;
  }
}
@media (max-width: 435px) {
  .upcoming-movie-sec .top-wrapper {
    padding: 31px 10px 12px 10px;
  }
}
.upcoming-movie-sec .adhira-poster {
  max-width: 1440px;
  /*height: 728px;*/
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .adhira-poster {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .upcoming-movie-sec .adhira-poster {
    max-width: 1440px;
    height: 100%;
  }
}
@media (max-width: 435px) {
  .upcoming-movie-sec .adhira-poster {
    height: auto;
  }
}
.upcoming-movie-sec .upcoming-movie-desc {
  font-family: "Futura Regular";
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.01em;
  text-align: left;
  color: white;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .upcoming-movie-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding-top: 25px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .upcoming-movie-sec .upcoming-movie-desc {
    font-size: 22px;
  }
}
@media (max-width: 769px) {
  .upcoming-movie-sec .upcoming-movie-desc {
    text-align: justify;
  }
}
@media (max-width: 435px) {
  .upcoming-movie-sec .upcoming-movie-desc {
    font-size: 15px;
    line-height: 20px;
  }
}
.upcoming-movie-sec .testimonial-video {
  max-width: 700px;
  height: 465px;
  margin-left: 224px;
  margin-right: 37px;
  /* margin: 0 auto; */
  border: 1px solid rgba(128, 128, 128, 0.1411764706);
  border-radius: 30px;
}
@media (max-width: 1580px) {
  .upcoming-movie-sec .testimonial-video {
    max-width: 660px;
    height: 460px;
    margin-left: 228px;
    margin-right: 37px;
  }
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .testimonial-video {
    max-width: 600px;
    height: 298px;
    margin-left: 130px;
    margin-right: 37px;
    /* margin: 0 auto; */
    border: 1px solid rgba(128, 128, 128, 0.231372549);
    border-radius: 30px;
  }
}
@media (max-width: 1080px) {
  .upcoming-movie-sec .testimonial-video {
    max-width: 482px;
    height: 295px;
    margin-left: 125px;
    margin-right: 37px;
  }
}
@media (max-width: 992px) {
  .upcoming-movie-sec .testimonial-video {
    max-width: 482px;
    height: 275px;
    margin-left: unset;
    margin-right: unset !important;
  }
}
@media (max-width: 580px) {
  .upcoming-movie-sec .testimonial-video {
    max-width: 400px;
    height: 275px;
  }
}
@media (max-width: 480px) {
  .upcoming-movie-sec .testimonial-video {
    max-width: 300px;
    height: 275px;
  }
}
.upcoming-movie-sec .adhira-promo-img {
  height: 468px;
  max-width: 519px;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .adhira-promo-img {
    height: 299px;
    max-width: 417px;
    border-radius: 20px;
  }
}
@media (max-width: 1024px) {
  .upcoming-movie-sec .adhira-promo-img {
    height: auto;
    max-width: 319px;
  }
}
@media (max-width: 992px) {
  .upcoming-movie-sec .adhira-promo-img {
    margin-bottom: 30px;
  }
}
@media (max-width: 435px) {
  .upcoming-movie-sec .adhira-promo-img {
    height: auto;
    max-width: 234px;
    border-radius: 20px;
    padding-bottom: 20px;
  }
}
.upcoming-movie-sec .comin-soon-txt {
  font-family: "Futura Bold";
  font-size: 60px;
  font-weight: 700;
  line-height: -1px;
  letter-spacing: 0px;
  text-align: right;
  color: #666666;
  transform: rotate(180deg);
  transform-origin: right;
  white-space: nowrap;
  writing-mode: vertical-rl;
  /* padding-left: 66px; */
  /* margin-left: 37px; */
}
@media (max-width: 3000px) {
  .upcoming-movie-sec .comin-soon-txt {
    letter-spacing: 2px;
  }
}
@media (max-width: 1440px) {
  .upcoming-movie-sec .comin-soon-txt {
    font-size: 41px;
    line-height: -1px;
    letter-spacing: -1px !important;
  }
}
@media (max-width: 1080px) {
  .upcoming-movie-sec .comin-soon-txt {
    font-size: 37px;
    letter-spacing: 1px !important;
    margin-left: 20px !important;
  }
}
@media (max-width: 992px) {
  .upcoming-movie-sec .comin-soon-txt {
    transform: unset;
    transform-origin: unset;
    white-space: unset;
    writing-mode: unset;
    text-align: center;
  }
}
@media (max-width: 435px) {
  .upcoming-movie-sec .comin-soon-txt {
    font-size: 30px;
    line-height: 51px;
  }
}
.upcoming-movie-sec .mobile-align {
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .upcoming-movie-sec .mobile-align {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}

.award-sec {
  background: url(../images/award-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center;
  margin-top: 0px;
  margin-bottom: 0px;
}
.award-sec .custom-container2 {
  padding-bottom: 140px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .award-sec .custom-container2 {
    padding-bottom: 99px;
  }
}
@media (max-width: 769px) {
  .award-sec .custom-container2 {
    max-width: 555px;
    padding-top: 94px;
  }
}
@media (max-width: 992px) {
  .award-sec .custom-container2 {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .award-sec .custom-container2 {
    padding-bottom: 0px;
  }
}
.award-sec .custom-containerr {
  padding-bottom: 0px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .award-sec .custom-containerr {
    padding-bottom: 0px;
  }
}
@media (max-width: 435px) {
  .award-sec .custom-containerr {
    padding-bottom: 0px;
  }
}
.award-sec .award {
  max-width: 730px;
  height: 546px;
  flex-shrink: 0;
}
@media (max-width: 1600px) {
  .award-sec .award {
    max-width: 590px;
    height: auto;
  }
}
@media (max-width: 1440px) {
  .award-sec .award {
    max-width: 515px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .award-sec .award {
    max-width: 406px;
    height: auto;
  }
}
@media (max-width: 435px) {
  .award-sec .award {
    max-width: 280px;
    height: auto;
  }
}
.award-sec .award-topic-para {
  color: #fffbf0;
  text-align: center;
  font-family: "Futura Medium";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 54px; /* 112.5% */
  letter-spacing: 0.96px;
}
@media (max-width: 1600px) {
  .award-sec .award-topic-para {
    text-align: center;
    font-family: "Futura Medium";
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 0.96px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1440px) {
  .award-sec .award-topic-para {
    font-size: 37px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
  }
}
@media (max-width: 1200px) {
  .award-sec .award-topic-para {
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
  }
}
@media (max-width: 990px) {
  .award-sec .award-topic-para {
    font-size: 39px;
    font-style: normal;
    font-weight: 500;
    line-height: 39px;
  }
}
@media (max-width: 435px) {
  .award-sec .award-topic-para {
    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
  }
}
.award-sec .custom-container {
  padding: 133px 247px 133px 350px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 100px;
       column-gap: 100px;
  justify-content: space-between;
}
@media (max-width: 2300px) {
  .award-sec .custom-container {
    padding: 133px 90px 133px 230px;
  }
}
@media (max-width: 1800px) {
  .award-sec .custom-container {
    padding: 133px 50px 133px 106px;
  }
}
@media (max-width: 1600px) {
  .award-sec .custom-container {
    padding: 102px 94px 98px 94px;
  }
}
@media (max-width: 1200px) {
  .award-sec .custom-container {
    padding: 102px 25px 98px 52px;
  }
}
@media (max-width: 1024px) {
  .award-sec .custom-container {
    padding: 102px 21px 98px 57px;
    -moz-column-gap: 114px;
         column-gap: 114px;
  }
}
@media (max-width: 990px) {
  .award-sec .custom-container {
    flex-direction: column;
    -moz-column-gap: 100px;
    row-gap: 50px;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 435px) {
  .award-sec .custom-container {
    padding: 102px 21px 98px 21px;
  }
}
.award-sec .award-sub-para {
  color: #fff;
  text-align: justify;
  font-family: "Futura Regular";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px; /* 146.429% */
  letter-spacing: -0.56px;
  max-width: 700px;
}
@media (max-width: 1600px) {
  .award-sec .award-sub-para {
    color: #fff;
    text-align: justify;
    font-family: "Futura Regular";
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.56px;
    max-width: unset;
  }
}
@media (max-width: 1440px) {
  .award-sec .award-sub-para {
    color: #fff;
    text-align: justify;
    font-family: "Futura Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1200px) {
  .award-sec .award-sub-para {
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .award-sec .award-sub-para {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
}
@media (max-width: 990px) {
  .award-sec .award-sub-para {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    max-width: 500px;
  }
}
@media (max-width: 435px) {
  .award-sec .award-sub-para {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    max-width: 500px;
  }
}
.award-sec .awards-bottom-wrapper {
  border-radius: 20px;
  background: rgba(51, 51, 51, 0.8);
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  max-width: 445px;
}
@media (max-width: 1600px) {
  .award-sec .awards-bottom-wrapper {
    margin-top: 47px;
    gap: 34px;
  }
}
@media (max-width: 1440px) {
  .award-sec .awards-bottom-wrapper {
    border-radius: 20px;
    background: rgba(51, 51, 51, 0.8);
    display: flex;
    padding: 26px;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-top: 31px;
    max-width: 445px;
  }
}
.award-sec .award-name {
  color: #fff;
  font-family: "Futura Regular";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 112.5% */
  letter-spacing: 0.64px;
  margin-bottom: 0px;
}
@media (max-width: 1600px) {
  .award-sec .award-name {
    color: #fff;
    font-family: "Futura Regular";
    font-size: 21px;
    /* font-style: normal; */
    /* font-weight: 400; */
    line-height: 0px;
    letter-spacing: -0.36px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .award-sec .award-name {
    font-size: 19px;
  }
}
@media (max-width: 435px) {
  .award-sec .award-name {
    font-size: 14px;
  }
}
.award-sec .left-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.award-sec .mobile-align {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .award-sec .mobile-align {
    align-items: flex-end;
  }
}

.lightbox-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 25, 25, 0.85);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 440px) {
  .lightbox-container {
    width: 100%;
    height: 100%;
  }
}
.lightbox-container .lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-container .lightbox-image-wrapper {
  display: flex;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.lightbox-container .lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}
.lightbox-container .lightbox-btn,
.lightbox-container #close {
  color: white;
  z-index: 9999999;
  cursor: pointer;
  position: absolute;
  font-size: 50px;
}
.lightbox-container .lightbox-btn:focus {
  outline: none;
}
.lightbox-container .left {
  left: 50px;
}
@media (max-width: 440px) {
  .lightbox-container .left {
    left: 0;
  }
}
.lightbox-container .right {
  right: 50px;
}
@media (max-width: 440px) {
  .lightbox-container .right {
    right: 0;
  }
}
.lightbox-container #close {
  top: 50px;
  right: 50px;
}
.lightbox-container .lightbox-image {
  width: 100%;
  box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
  max-height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }
  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}
.lightbox-container .slideleft {
  animation-name: slideleft;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}
@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }
  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.lightbox-container .slideright {
  animation-name: slideright;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

.bg-blac {
  background: linear-gradient(0deg, rgba(87, 87, 87, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.our-vision-link {
  color: #000 !important;
}

.lightbox-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 25, 25, 0.85);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 440px) {
  .lightbox-container {
    width: 100%;
    height: 100%;
  }
}

.lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-wrapper {
  display: flex;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}

.lightbox-btn,
#close {
  color: white;
  z-index: 9999999;
  cursor: pointer;
  position: absolute;
  font-size: 50px;
}

.lightbox-btn:focus {
  outline: none;
}

.left {
  left: 50px;
}

.right {
  right: 50px;
}

#close {
  top: 50px;
  right: 50px;
}

.lightbox-image {
  width: 100%;
  box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
  max-height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }
  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}
.slideleft {
  animation-name: slideleft;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }
  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.slideright {
  animation-name: slideright;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

.carousel-control-prev-icon {
  background-image: url("../images/existing-videos/left.png");
  width: 56px;
  height: 56px;
}
@media (max-width: 435px) {
  .carousel-control-prev-icon {
    width: 32px;
    height: 32px;
  }
}

.carousel-control-next-icon {
  background-image: url("../images/existing-videos/right.png");
  width: 56px;
  height: 56px;
}
@media (max-width: 435px) {
  .carousel-control-next-icon {
    width: 32px;
    height: 32px;
  }
}

.privacy .privacy-topic {
  color: #fff;
  font-family: "Futura Regular";
  font-size: 58px;
  font-style: normal;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -1.28px;
  text-align: center;
}
@media (max-width: 330px) {
  .privacy .privacy-topic {
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
  }
}
.privacy .para-privacy {
  color: #e6e6e6;
  font-family: Futura;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.24px;
  text-align: justify;
}
@media (max-width: 435px) {
  .privacy .para-privacy {
    font-size: 15px;
  }
}
.privacy .privacy-sub-topic {
  color: #e6e6e6;
  font-family: "Futura Bold";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.24px;
  text-align: justify;
  margin-bottom: unset;
}
@media (max-width: 435px) {
  .privacy .privacy-sub-topic {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 5px;
  }
}
.privacy .privacy-sub-sub-topic {
  color: #e6e6e6;
  font-family: Futura;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.24px;
  text-align: justify;
}
@media (max-width: 435px) {
  .privacy .privacy-sub-sub-topic {
    font-size: 16px;
    line-height: normal;
  }
}
.privacy .privacy-sub-italic-topic {
  color: #e6e6e6;
  font-family: "Futura Bold";
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: -0.24px;
  text-align: justify;
}
@media (max-width: 435px) {
  .privacy .privacy-sub-italic-topic {
    font-size: 16px;
    line-height: normal;
  }
}
.privacy .para-wrapper {
  display: flex;
  max-width: 1600px;
  padding: 50px 65px;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  background-color: rgb(182,139,98);
  border-radius: 30px;
  margin: 94px 160px 81px 160px;
}
@media (max-width: 1600px) {
  .privacy .para-wrapper {
    margin: 54px 50px 81px 50px;
    padding: 26px 41px;
  }
}
@media (max-width: 500px) {
  .privacy .para-wrapper {
    display: flex;
    max-width: 1600px;
    padding: 20px 16px;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    border-radius: 30px;
    margin: 44px 15px 81px 15px;
  }
}
.privacy .terms-topic {
  color: #000;
  font-family: "Futura Regular";
  font-size: 58px;
  font-style: normal;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -1.28px;
  text-align: center;
}
@media (max-width: 500px) {
  .privacy .terms-topic {
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 41px;
  }
}
@media (max-width: 330px) {
  .privacy .terms-topic {
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
  }
}
.privacy .para-wrapper-terms {
  display: flex;
  max-width: 1600px;
  padding: 50px 65px;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  background-color: #fffbf0;
  border-radius: 30px;
  margin: 94px 160px 81px 160px;
}
@media (max-width: 1600px) {
  .privacy .para-wrapper-terms {
    margin: 54px 50px 81px 50px;
    padding: 26px 41px;
  }
}
@media (max-width: 500px) {
  .privacy .para-wrapper-terms {
    display: flex;
    max-width: 1600px;
    padding: 20px 16px;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    background-color: #fffbf0;
    border-radius: 30px;
    margin: 44px 15px 81px 15px;
  }
}
.privacy .para-terms {
  color: #4d4d4d;
  font-family: Futura;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.24px;
  text-align: justify;
}
@media (max-width: 500px) {
  .privacy .para-terms {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
  }
}
@media (max-width: 435px) {
  .privacy .para-terms {
    font-size: 15px;
  }
}/*# sourceMappingURL=styles.css.map */
