
/* @import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.lato-thin {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: italic;
}
body{
  font-family: "Lato", serif;
} */


*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.html {
  font-size: 62.5%;
  font-family: "Lato", serif;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.container {
  max-width: 100%;
  width: 100%;
  margin: auto;
}

.navbar {
  position: absolute;
  width: 100%;
  color: #000;
  opacity: 0.85;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}
.logo {
  order: 1;
  font-size: 2.3rem;
}

.menu-items li {
  list-style: none;
  margin-left: 10rem;
  font-size: 1.3rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #117964;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;
  }
 
  .Immediate_lable {
    text-align: center !important;
  }
  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .Investor-sec {
    padding-left: 0 !important; padding-right: 0 !important;
  }
  .logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
}


.logo_image{
    width: 420px;
}

.hero_banner_video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
.matters_lable{
    font-weight: bold;
    text-shadow: none;
    text-transform: none;
    font-style: italic;
    color: rgb(255, 255, 255);
    font-size: 36px;
    margin: auto;
    padding: 10px 0px;
}
.development_warpper1{
    background: #242433;
    position: relative;
    top: 0px;
}

/*******/
/* .conceptwrapper{
  height: 860px;
} */
.carousel{
    width:95%;
    margin:0px auto;
  }
  .slick-slide{
    /* margin:20px; */
    /* changed for filims And shows */
    margin: 15px;
  }
  .slick-slide img{

    height: 521px;
    width: 413px;
  }
  .slick-prev, .slick-next{
    background: #000;
    border-radius: 15px;
    border-color: transparent;
  }
  .card{
    border: 2px solid #fff;
    box-shadow: 1px 1px 15px #ccc;
  }
  .card-body{
    background: #fff;
    width: 100%;
    vertical-align: top;
  }
  .card-content{
    text-align: left;
    color: #333;
    padding: 15px;
  }
  .card-meta{
    font-size: 20px;
    opacity: 0.8;
  }
  .card-meta span {
    font-size: 80%;
  }
  .card-text{
    font-size: 15px;
    font-weight: 300;/*changed to 400-300 */
    overflow: hidden;
    line-height: 1.4em;
    word-break: break-word;
    max-height: 5.5em;
    color: #747474;
  }
/*************/
.Cinematicmatters_lable {
  font-weight: bold;
  text-shadow: none;
  text-transform: none;
  color: rgb(255, 255, 255);
  font-size: 36px;
  margin: auto;
  margin-bottom: 20px;
  padding: 0;
  /* padding: 40px 0px; */
}
.Immediate_lable {
  font-weight: bold;
  text-shadow: none;
  text-transform: none;
  color: rgb(255, 255, 255);
  font-size: 36px;
  margin: auto;
  padding: 40px 0px;
}

.Films_lable{
  color: #a9abb1;
  font-size: 48px;
  font-weight: 600;
  padding-left: 54px !important;
 
}

.Press_warpper1{
  /* width: 100%; */
  /* overflow: auto; */
  margin: auto;
}
.Press_re1{
  border-radius: 9px;
  /* margin: 20px;
  padding: 0px;
  background: #fff; */
}

.Michael_img{
  width: 100%;
}
.sub_panle_v1{
  background: #fff;
  height: 226px;
  overflow: hidden;
  padding: 15px 20px 38px 15px;
  width: 100%;
  float: left;
  border-bottom-right-radius:5px ;
  border-bottom-left-radius:5px ;
}
.Premier_lable{
  color: #002664;
  font-family: Lato, "Lato Fallback";
  font-size: 18px;
  font-weight: 600;
}
.Los_p {
  color: #757575;
  font-size: 16px;
  line-height: 25px;
  padding-top: 8px;
  font-weight: 400;
}
.authorBar{
  color: #0a3161;
  font-size: 17px;
  padding: 2px 0px;
  font-weight: 400;
}
/* .inner_img1 img{
  max-height: 213px;
  height: 213px;
  width: 100%;
}
.inner_img1{
  background-image: url(../images/barronscove-1.webp);
  background-size: cover;
  background-position: center;
  max-height: 213px;
  height: 213px;
  background-repeat: no-repeat;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.Michael_img1:hover .inner_img1 img, .Michael_img2:hover .inner_img2, .Michael_img3:hover .inner_img3  {
  transform: scale(1.06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  background-position: center;
}
.inner_img2{
  background-image: url(../images/pexels-photo-210607-1920w.webp);
  background-size: cover;
  background-position: 100%;
  max-height: 213px;
  height: 213px;
  background-repeat: no-repeat;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: all .2s ease-out !important;
}

.inner_img3{
  background-image: url(../images/buffaloed1-jumbo-640w.webp);
  background-size: cover;
  background-position: 100%;
  max-height: 213px;
  height: 213px;
  background-repeat: no-repeat;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: all .2s ease-out !important;
} */

.Press_re1 .card {
  background-color: #fefeff !important;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border:none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
  height: 380px;
  transition: box-shadow 0.2s ease-out; 
}

.Press_re1 .card .card-body {margin-bottom: 15px; padding-bottom: 15px;}
.Press_re1 .card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.2s ease-out, filter 0.2s ease-out; 
}

.Press_re1 .card:hover img, .Press_re1 .card img:hover {
  transform: scale(1.05); 
  filter: brightness(1.2);
}
.Press_re1 .card .card-title a {
  text-decoration: none;
  color: #002664;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
}
.Investor_graph{
  box-shadow: none !important;
}
.Investor_graph_body{
  display: flex; align-items: center; justify-content: center; height: 100%;
}
.Press_re1 .card .card-body .card-meta {
  margin-top: 10px;
  margin-bottom: 10px;

}
.Press_re1 .card .card-body .card-meta>span {
  color: rgba(10,49,97,1);
}

@font-face {
  font-family: Museo Slab;
  src: url(../fonts/Museo_Slab_500.otf)
}



.aph_mobile_header_content{
  display: none;
}
.aph_desktop_header_content, .aph_nav_menu{
  display: flex;
}
.aph_desktop_header_content{
  justify-content: space-between;
}
body#aphRoot{
  text-decoration-skip-ink: none;
}
.aph_header_menu_links{
  width: 60%;
  min-width: 60%;
}
ul.aph_nav_menu li {
  padding: 18px;
  width: 20%;
}
ul.aph_nav_menu li a{
  line-height: 22px;
}
ul.aph_nav_menu li:hover a {
  font-weight: 700;
}
ul.aph_nav_menu li:nth-child(3),
ul.aph_nav_menu li:nth-child(3) a{
  padding-left: 0px;
}
.aph_header_logo {
  margin: 10px;
}
body.fix-mobile-scrolling{
  overflow: initial;
}
.aph_content {
  position: relative;
  transition: transform .3s ease-out;
  height: 100%;
}
.aph_row_01{
  float: none;
  top: 0;
  left: 0;
  width: auto;
  position: relative;
  height: auto;
  
  margin-right: 0px;
  margin-left: 0px;
  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;

  min-width: 0;
  text-align: start;
  background-position: 50% 50%;
  min-height: auto;
}

div#aph, .aph_wrapperouter, .aph_inner{
  height: 100%;
}
div.aph_header_inner_content {
  position: absolute;
  z-index: 101;
  width: 100%;
  padding: 13px 0;
}
.m-tb-1 {
  margin-top: 1em;
  margin-bottom: 1em;
}

#aphheader .aph_nav_menu li:hover a {
  font-weight: 700;
}

.aph_wrapper {
  height: 100%;
}

.Films_lable a{
  text-decoration: none;
  color: #a9abb1;
}

.Films_lable a:hover{
  color: #fff;
  font-weight: 700;
}

