/* General CSS -- starts here*/
html{
	scroll-behavior: smooth;
}
body{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	overflow-x: hidden;
}
a{
    color: #2192cd;
    text-decoration: none;
    transition: 0.3s;
}
.nav-item .nav-link{
    color: #020100;
}
.nav-item .nav-link:hover{
    color: #2192cd;
}
.dropdown:hover>.dropdown-menu{
    display: block;
    border: none;
    border-radius: 0px;
}
.dropdown-item{
	color:rgba( 0,0,0 , 0.65);
}
.dropdown-toggle::after{
	display:none
}
.btn-brand{
	background: #2192cd;
	border-color: #2192cd;
	border-radius: 30px 0px 30px 0px;
	box-shadow: 3px 3px 10px 0px #2192cd45;
}
.btn-brand:hover, .btn-brand:focus, .btn-brand:active, .btn-brand:focus-visible{
	background-color: #268cc2 !important;
	border-color: #268cc2 !important;
}
.btn-brand-outline{
	color: #2192cd;
	border-color: #2192cd;
	border-radius: 30px 0px 30px 0px;
	box-shadow: 3px 3px 10px 0px #2192cd45;
}
.btn-brand-outline:hover, .btn-brand-outline:focus, .btn-brand-outline:active, .btn-brand-outline:focus-visible{
	background-color: #2192cd !important;
	border-color: #2192cd !important;
	color: #fff;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}
.section-title h2:before {
    margin: 0 15px 10px 0;
}
.section-title h2:after {
    margin: 0 0 10px 15px;
}
.section-title h2:before, .section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: #2192cd;
    display: inline-block;
}
.form-check-input:checked {
    background-color: #2192cd;
    border-color: #2192cd;
}
.form-check-input:focus {
    border-color: #2192cd;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(33 146 205 / 28%);
}
.scrollToTopBtn {
	background-color: #2192cd;
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 30px;
	line-height: 48px;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	opacity: 0;
	transform: translateY(100px);
	transition: all .5s ease;
}
.showBtn {
	opacity: 1;
	transform: translateY(0);
}
.hero-image {
    border: 6px solid #fff;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
/*Js Player*/
.plyr--full-ui.plyr--video .plyr__control--overlaid{
background: none;
	/* color: #2192cd; */
}
.plyr__control--overlaid svg{
	width: 40px;
	height: 40px;
}
.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true]{
	background: #2192cd;
}
.plyr--full-ui input[type=range]{
	color: #2192cd;
}
/*Js Player*/
/*Animated Section Title*/
.animated-section-title{
	position:relative;
}
.animated-section-title .area{
    background: #2192cd;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    height:40vh;
	position: relative;
}
.animated-section-title .circles{
    width: 100%;
    height: 100%;
    overflow: hidden;
	position: absolute;
	margin: 0px;
	padding-left:0px;
}
.animated-section-title .circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}
.animated-section-title .circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
.animated-section-title .circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.animated-section-title .circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.animated-section-title .circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.animated-section-title .circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.animated-section-title .circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}
.animated-section-title .circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}
.animated-section-title .circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.animated-section-title .circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.animated-section-title .circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
/*Animated Section Title*/
/* General CSS -- ends here*/
/* Hero Section - Home Page -- starts here*/
.hero{
    z-index: -2;
}
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    width: 5rem;
    height: 5rem;
}
.hero .carousel-control-next, .hero .carousel-control-prev {
	opacity: 1;
}
.hero .carousel-caption {
    right: 65%;
    bottom: unset;
    top: 200px;
    left: 10%;
    padding: 20px 15px 10px 30px;
    color: #2192cd;
    text-align: left;
    background: #ffffffd6;
    border-radius: 50px 0px 50px 0px;
}
/* Hero Section - Home Page -- ends here*/
/* Companies Section - Home Page -- starts here*/
.companies .company-logo img {
	padding: 40px;
	max-width: 80%;
	transition: 0.3s;
	opacity: 0.5;
	filter: grayscale(100);
}
.companies .company-logo img:hover {
	filter: none;
	opacity: 1;
}
/* Companies Section - Home Page -- ends here*/
/* About Section - Home Page -- starts here*/
.about{
	background-color: #f4f4f4;
}
.about .content h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	padding: 10px 20px;
	background: #2192cd36;
	color: #2192cd;
	border-radius: 7px;
	display: inline-block;
}
.about .content h2 {
	font-weight: 700;
}
.about .content p:last-child {
	margin-bottom: 0;
}
.about .icon-box {
	padding: 50px 40px;
	box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: all 0.3s ease-out 0s;
	background-color: #fff;
}
.about .icon-box i {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 32px;
	line-height: 0;
	transition: all 0.4s ease-out 0s;
	background-color: #2192cd36;
	color: #2192cd;
}
.about .icon-box h3 {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
}
.about .icon-box p {
	margin-bottom: 0;
}
.about .icon-box:hover i{
	background-color: #2192cd;
	color: #fff;
}
.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
	margin-top: -40px;
}
@media (max-width: 768px) {
.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
	margin-top: 0;
}
}
/* About Section - Home Page -- ends here*/
/* Our Companies Section - Home Page -- starts here*/
.our-companies .company-card{
    box-shadow: 0 4px 16px rgba(33,37,41, 0.1);
    border-radius: 10px;
	overflow: hidden;
}
.our-companies .company-wrapper{
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}
.our-companies .company-wrapper .company-info{
	padding: 40px;
}
.our-companies .company-wrapper .divider{
    border: 2px solid #2192cd;
    width: 50px;
    margin: 10px 0px;
}
.our-companies .company-wrapper .company-stats{
    background: #e5e5e5;
    border-radius: 10px;
    padding: 10px;
}
.our-companies .company-wrapper .company-stats span{
    font-size: 30px;
    font-weight: bold;
    color: #2192cd;
}
.our-companies .company-wrapper .company-stats p{
    margin-bottom: 2px;
    font-size: 13px;
    color: #525252;
}
/* Our Companies Section - Home Page -- ends here*/
/* What's New Section - Home Page -- starts here*/
.whats-new{
    background-color: #f4f4f4;
}
.whats-new .news-card{
	box-shadow: 0 4px 16px rgba(33,37,41, 0.1);
    border-radius: 10px;
	overflow: hidden;
}
.whats-new .swiper-button-next, .whats-new .swiper-button-prev{
	border: 2px solid #2192cd;
	padding: 8px 5px;
	background: #fffbfbd9;
	width: 35px;
}
.whats-new .swiper-button-next i, .whats-new .swiper-button-prev i{
	font-size: 25px;
	color: #2192cd;
}

/* What's New Section - Home Page -- ends here*/
/* Newsletter Section - Home Page -- starts here*/
.bigfoot-newsletter .content-wrapper{
    width: max-content;
    margin: 0px auto;
}
.bigfoot-newsletter .newsForm{
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
}
.bigfoot-newsletter #data .content-wrapper {
    width: 70%;
}
/* Newsletter Section - Home Page -- ends here*/
/* Our mission and Vision - About Us Page -- starts here*/
.about-us .wrapper{
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}
.about-us .wrapper .content{
    padding: 30px;
}
.about-us .wrapper .content ul { list-style-type: "✔";}
.about-us .wrapper .content ul li{
    padding-left: 8px;
}
.about-us .wrapper .content ul li b{
    color: #2192cd;
}
.vimiss{
	background-color: #f4f4f4;
	z-index: -2;
}
.vimiss .mission-wrapper .mission-content{
    max-width: 400px;
    float: right;
	padding: 30px;
    background-color: #fff;
    margin-top: -160px;
    position: relative;
}
/* Our mission and Vision - About Us Page -- ends here*/
/* Addresses - Contact Us Page -- starts here*/
.addresses{
	background-color: #f4f4f4;
	z-index: 2;
}
.addresses p{
	margin-bottom: 0px;
}
.addresses .wrapper{
    background: #2192cd;
    border-radius: 30px 0px;
    padding: 50px 0px;
	color: #fff;
}
/* Addresses - Contact Us Page -- ends here*/
/* Executive Bios - Executive Bios Page -- start here*/
.executive-bios .wrapper{
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}
.executive-bios .wrapper .content{
    padding: 40px;
}
.executive-bios .wrapper .divider{
    border: 2px solid #2192cd;
    width: 50px;
    margin: 10px 0px;
}
.executive-bios .wrapper h5 {
    font-size: 15px;
    color: #6d6c6c;
}
.executive-bios .wrapper h4 {
	margin-bottom: 0px;
}
/* Executive Bios - Executive Bios Page -- ends here*/
/* Bigfoot Studios - Bigfoot Studios Page -- starts here*/
.bigfoot-studios{
	background-color: #f4f4f4;
}
.bigfoot-studios .bigfoot-studios-wrapper .bigfoot-studios-content{
    max-width: 400px;
    float: right;
	padding: 100px 30px;
    background-color: #fff;
    margin-top: -160px;
    position: relative;
}
.bigfoot-studios .bigfoot-studios-wrapper .bigfoot-studios-content h2{
    font-size: 26px;
}
.bigfoot-studios .content{
    padding: 30px;
}
.bigfoot-studios .content ul { list-style-type: "✔";}
.bigfoot-studios .content ul li{
    padding-left: 8px;
}
.bigfoot-studios .content ul li b{
    color: #2192cd;
}
/* Bigfoot Studios - Bigfoot Studios Page -- ends here*/
/* Bigfoot Properties - Bigfoot Properties Page -- starts here*/
.bigfoot-properties .properties-card{
    box-shadow: 0 4px 16px rgba(33,37,41, 0.1);
    border-radius: 10px;
	overflow: hidden;
}
.bigfoot-properties .properties-card .divider {
    border: 2px solid #2192cd;
    width: 50px;
    margin: 10px 0px;
}
.bigfoot-properties .properties-card .content {
    padding: 40px;
}
.bigfoot-properties .properties-card .content ul { list-style-type: "✔";}
.bigfoot-properties .properties-card .content ul li{
    padding-left: 8px;
}
.bigfoot-properties .properties-card .content ul li b{
    color: #2192cd;
}
/* Bigfoot Properties - Bigfoot Properties Page -- ends here*/
/* Expansion Initiative - Future Developments Page -- starts here*/
.expansion-initiative .expansion-card{
    box-shadow: 0 4px 16px rgba(33,37,41, 0.1);
    border-radius: 10px;
	overflow: hidden;
}
.expansion-initiative .expansion-card .divider {
    border: 2px solid #2192cd;
    width: 50px;
    margin: 10px 0px;
}
.expansion-initiative .expansion-card .content {
    padding: 40px;
}
.expansion-initiative .expansion-card .content ul { list-style-type: "✔";}
.expansion-initiative .expansion-card .content ul li{
    padding-left: 8px;
}
.expansion-initiative .expansion-card .content ul li b{
    color: #2192cd;
}
/* Expansion Initiative - Future Developments Page -- ends here*/
/* Press Release - Press Release Page -- starts here*/
.press-releases .wrapper {
	min-width: 270px;
	height: 470px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.3s linear 0s;
	overflow: hidden;
	position: relative;
}
.press-releases .wrapper:hover {
	box-shadow: 0 1px 35px 0 rgba(0, 0, 0, 0.3);
}
.press-releases .thumbnail {
	position: relative;
	overflow: hidden;
	background: black;
}
.press-releases .thumbnail img {
	width: 120%;
	transition: all 0.3s;
}
.press-releases .wrapper:hover .thumbnail img {
	transform: scale(1.1);
	opacity: 0.6;
}
.press-releases .thumbnail .date {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #2192cd;
	padding-top: 10px;
	color: #fff;
	font-weight: bold;
	border-radius: 100%;
	height: 55px;
	width: 55px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 12px;
	text-transform: uppercase;
}
.press-releases .date div:first-child {
	font-size: 18px;
	line-height: 1.2;
}
.press-releases .content {
	position: absolute;
	width: 100%;
	height: 178px;
	bottom: 0;
	background: #fff;
	padding: 20px;
	transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
}
.press-releases .wrapper:hover .content {
	height: 278px;
}
.press-releases .content .reigion {
	position: absolute;
	top: -42px;
	left: 0;
	color: #fff;
	text-transform: uppercase;
	background: #2192cd;
	padding: 10px 15px;
	font-weight: bold;
}
.press-releases .title {
	margin: 0;
	padding: 0 0 5px;
	color: #333333;
	font-size: 20px;
	font-weight: 700;
}
.press-releases .sub-title {
	margin: 0;
	padding: 0 0 10px;
	color: #2192cd;
	font-size: 16px;
    font-weight: 600;
}
.press-releases .description {
	color: #666666;
	font-size: 14px;
	line-height: 1.8em;
	height: 0;
	opacity: 1;
	margin-bottom: 5px;
	transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	overflow: hidden;
}
.press-releases .wrapper:hover .description {
	height: 100px;
}
/* Press Release - Press Release Page -- ends here*/
.press-video .wrapper {
	min-width: 270px;
	height: 480px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.3s linear 0s;
	overflow: hidden;
	position: relative;
}
.press-video .date div:first-child {
	font-size: 18px;
	line-height: 1.2;
}
.press-video .title {
	margin: 0;
	padding: 0 0 5px;
	color: #333333;
	font-size: 20px;
	font-weight: 700;
}
.press-video .content{
    padding: 20px;
}
/* Press Video - Press Video Page -- ends here*/
/* Press Soundclips - Press Soundclips Page -- starts here*/
.press-soundclips .wrapper {
	min-width: 270px;
	height: 520px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.3s linear 0s;
	overflow: hidden;
	position: relative;
}
.press-soundclips .title {
	margin: 0;
	padding: 0 0 5px;
	color: #333333;
	font-size: 20px;
	font-weight: 700;
}
.press-soundclips .content .divider{
    border: 2px solid #2192cd;
    width: 50px;
    margin: 10px 0px;
}
.press-soundclips .content{
    padding: 20px;
}
.press-soundclips .thumbnail {
	position: relative;
	overflow: hidden;
	background: black;
}
.press-soundclips .thumbnail img {
	width: 100%;
	transition: all 0.3s;
}
.press-soundclips .wrapper:hover .thumbnail img {
	transform: scale(1.1);
	opacity: 0.6;
}
/* Press Soundclips - Press Soundclips Page -- ends here*/
/* Press Releases Detail - Press Releases Page -- start here*/
.press-releases-detail .blog h2{
    font-size: 25px;
    font-weight: bold;
}
.press-releases-detail .blog h3{
    font-size: 16px;
    font-weight: bold;
} 
.press-releases-detail .blog p, .press-releases-detail .blog li {
    font-size: 14px;
}
.press-releases-detail .blog li {
    line-height: 1.4;
}
.press-releases-detail .blog .date, .press-releases-detail .blog .location{
	font-size: 14px;
    color: #6e6d6d;
	margin-bottom: 5px;
}
.press-releases-detail .blog .date i, .press-releases-detail .blog .location i{
    color: #2192cd;
    margin-right: 8px;
}
.press-releases-detail .blog .press-img img{
    border-radius: 20px;
    box-shadow: 5px 5px 9px #ccccccb0;
    max-width: 100%;
    height: auto;
    width: 100%!important;
}
.press-releases-detail .related-blogs .post-img img{
    border-radius: 10px;
    box-shadow: 5px 5px 9px #ccccccb0;
    max-width: 100%;
    height: auto;
    width: 100%!important;
}
.press-releases-detail .related-blogs .content h3{
    font-size: 16px;
    font-weight: bold;
}
.press-releases-detail .related-blogs .content p {
    font-size: 13px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 2;
    -webkit-box-orient: vertical;
	margin-bottom: 0px;
}
.press-releases-detail .related-blogs .movie-img img{
    border-radius: 10px;
    box-shadow: 5px 5px 9px #ccccccb0;
    max-width: 100%;
    height: auto;
    width: 100%!important;
}
/* Press Releases Detail - Press Releases Page -- ends here*/
/* Showreels - Showreels Page -- start here*/
.showreel .related-reels .content .btnPlay{
    background: transparent;
	color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    border: none;
	transition: all 0.3s;
}
.showreel .related-reels .thumbnail {
	position: relative;
	overflow: hidden;
	background: black;
}
.showreel .related-reels .content .btnPlay:hover{
	background: #2192cd;
}
.showreel .related-reels img{
	transition: all 0.3s;
	width: 100%;
}
.showreel .related-reels .wrapper:hover img{
	transform: scale(1.1);
	opacity: 0.6;
}
/* Showreels - Showreels Page -- ends here*/
/* TE-video - Trailers and Episodes Page -- starts here*/
.TE-video .others .content .btnPlay{
    background: transparent;
	color: #fff;
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius: 50px;
    border: none;
	transition: all 0.3s;
}
.TE-video .others .thumbnail {
	position: relative;
	overflow: hidden;
	background: black;
	border-radius: 10px;
}
.TE-video .others .wrapper{
	position: relative;
}
.TE-video .others .wrapper.active{
    pointer-events: none;
    opacity: 0.7;
}
.TE-video .others .content .btnPlay:hover{
	background: #2192cd;
}
.TE-video .others img{
	transition: all 0.3s;
	width: 100%;
}
.TE-video .others .wrapper:hover img{
	transform: scale(1.1);
	opacity: 0.6;
}
.TE-video .swiper-button-next, .TE-video .swiper-button-prev{
	border: 2px solid #2192cd;
	padding: 8px 5px;
	background: #fffbfbd9;
	width: 35px;
}
.TE-video .swiper-button-next i, .TE-video .swiper-button-prev i{
	font-size: 25px;
	color: #2192cd;
}
/* TE-video - Trailers and Episodes Page -- ends here*/
/*Footer CSS starts here*/
.footer {
  background-color: #f4f4f4;
  font-size: 14px;
}
.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about .logo span {
  color: #32353a;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer .footer-about p {
  font-size: 14px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(33, 37, 41, 0.5);
  font-size: 16px;
  color: rgba(33,37,41, 0.5);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: #2192cd;
  border-color: #2192cd;
}

.footer h4 {
  color: #32353a;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #212529;
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: #2192cd;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #ddd;
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/*Footer CSS ends here*/