body{
	font-size:14px;
	font-weight:400;
	background-color:#000;
	overflow-x:hidden;
    font-family: "Montserrat", serif;
}

h1{
	font-size:26px;
}

h2{
	font-size:24px;
}

h3{
	font-size:22px;
}

h4{
	font-size:20px;
}

h5{
	font-size:18px;
}

h6{
	font-size:16px;
}

a {
    color: #505d6e;
	text-decoration:none;
}
a:hover{
	text-decoration:none;
}

p {
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    margin-bottom: 10px;
}

img {
    max-width: 100%;
}

.cursor {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border: 1px solid #fff;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 1px solid #000;
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.circle {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  background: #CB4B16;
  border-radius: 80%;
  backface-visibility: hidden;
}
.header-top {
    padding-top: 25px;
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    width: 100%;
	z-index:9;
	padding-left: 30px;
}
.wrapper{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #3A0082;
	clip-path: circle(24px at calc(100% - 55px) 55px);
	transition: all 0.7s ease-in-out;
	z-index:9;
	padding:5rem;
	display: flex;
    align-items: end;
}
.nav-btn.open .wrapper{
	clip-path: circle(100%);
}
.menu-btn{
	position: absolute;
	z-index: 2;
	right: 30px;
	top: 5px;
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	font-size: 20px;
	color: #000;
	cursor: pointer;
	background: #3A0082;
	z-index:99;
}
.nav-btn.open .menu-btn i:before{
	content: "\f00d";
}
.open .menu-btn {
    background-color: #000;
}
.menu-btn:before {
    background: #000;
    content: "";
    width: 60px;
    height: 60px;
    left: -5px;
    top: -4px;
    position: absolute;
    border-radius: 50%;
    transform: scale(.8);
    transition: 1s cubic-bezier(.075,.82,.165,1);
}
.menu-btn:hover:before {
    transform: scale(1);
}
.open .menu-btn:before{
	background-color: #fff;
}
.logo-img {
    padding-top: 15px;
}
.wrapper-logo {
    position: fixed;
    top: 40px;
    left: 31px;
}
.wrapper ul{
	list-style: none;
	padding:0;
	text-align: center;
	width:96%;
	text-align:left;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.wrapper ul li{
	margin: 0;
}
.wrapper ul li a{
	text-decoration: none;
    font-weight: 500;
    padding: 0px;
    color: #ffffff;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 11.22vmin;
    transition: transform .5s cubic-bezier(.075,.82,.165,1);
    width: fit-content;
    overflow: hidden;
    display: block;
	line-height: 14.22vmin;
    font-weight: 900;
}
.wrapper ul li a:hover {
    transform: translate3d(20px,0,0);
}
/* .content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	text-align: center;
	width: 100%;
	color: #202020;
	overflow:hidden;
}
.content .title{
	font-size: 60px;
	font-weight: 700;
	letter-spacing:-3px;
	color:#290844;
	transform: translateY(100%);
	animation-name:moveup;
	animation-duration:1.0s;
	animation-delay:0.3s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.35, 0, 0.07, 1);
}
@keyframes moveup {
	from {transform: translateY(100%);}
	to {transform: translateY(0%);}
} */

.menu {
	position: absolute;
	top: 20px;
	right: 20px;
	height: 46px;
	width: 46px;
}
.menu-link {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1002;
}
.menu-icon {
	position: absolute;
	width: 25px;
	height: 18px;
	margin: auto;
	left: 0;
	top: 0px;
	right: 0;
	bottom: 1px;
}
.menu-line {
	background-color: #fff;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	position: absolute;
	left: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-line-1 { 
	top: 0; 
}
.menu-line-2 {
	top: 0;
	bottom: 0;
	margin: auto;
}
.menu-line-3 { 
	bottom: 0; 
}
.open .menu-line{
	background-color:#000000;
}
.open .menu .menu-line-2 { 
	opacity: 0;
}
.open .menu .menu-line-1 { 
	transform: translateY(7px) translateY(-50%) rotate(-45deg); 
}
.open .menu .menu-line-3 { 
	transform: translateY(-7px) translateY(50%) rotate(45deg); 
}


#background-video,
.background-video {
	width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.home-banner {
    padding-top: 270px;
    padding-bottom: 65px;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
}
.banner-text-heading {
    /* max-width: 760px; */
	/* mix-blend-mode: exclusion; */
}
.banner-text-heading .banner-heading {
    /* font-size: 160px;
    font-family: PP Formula Condensed;
    color: #fff;
    margin: -20px 0 0 0;
    font-weight: 200;
    letter-spacing: 5px; */
    font-size: 90px;
    color: #fff;
    margin: -20px 0 0 0;
    font-weight: 800;
    letter-spacing: 0;
}
.banner-text-heading .banner-sub-heading {
	font-size: 80px;
    color: #fff;
    font-weight: 100;
    line-height: 82px;
}
.banner-text-heading .banner-sub-heading2{
	/* font-size: 50px;
	line-height: 50px;
	font-family: PP Formula Condensed;
    color: #fff;
    font-weight: 100; */
	font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
}
.bnr-btn {
    padding-top: 55px;
    margin-bottom: -110px;
}
.bnr-btn .bnr-btntxt {
    font-size: 32px;
    color: #fff;
    font-weight: 800;
	margin: 0;
}
.bnr-btn .bnr-btn__btn{
	font-size: 18px;
    color: #fff;
    font-weight: 200;
	text-transform: uppercase;
}
.work-title{
	margin: 0;
	font-size: 90px;
	color:#fff;
    font-weight: 200;
	width: 100%;
	text-align: center;
	z-index: 1;
	display:flex;
	white-space: nowrap;
	column-gap:0px;
    font-weight: 300;
}
.work-title .paralax-title1{
	position: relative;
    display: flex;
    text-transform: uppercase;
    color: #dafe09;
}
.work-title b {
    font-weight: bold;
}
.work-title2,
.work-title3{
	display:inline-block;
	white-space:nowrap;
}
.work-title2 .paralax-title2,
.work-title3 .paralax-title2{
	display:inline-block;
	margin: 0 10px;
}
:root {
	--color-text: navy;
	--color-bg: papayawhip;
	--color-bg-accent: #ecdcc0;
	--size: clamp(10rem, 41rem, 30rem);
	--gap: calc(var(--size) / 14);
	--duration: 30s;
	--scroll-start: 0;
	--scroll-end: calc(-100% - var(--gap));
}
.marqueehome {
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
    /* transform: rotate(-5deg); */
    margin-right: -20px;
    margin-left: -20px;
}
.images-home1 {
    overflow-x: hidden;
    padding-bottom: 10px;
    margin-top: 0;
    /* box-shadow: 0px -40px 60px 50px #000; */
	position:relative;
}
.marquee__group {
	flex-shrink: 0;
	padding-right: 20px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll-x var(--duration) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
	.marquee__group {
		animation-play-state: paused;
	}
}
.marqueehome--reverse .marquee__group {
	animation-direction: reverse;
}
@keyframes scroll-x {
	from {
		transform: translateX(var(--scroll-start));
	}
	to {
		transform: translateX(var(--scroll-end));
	}
}
.marqueehome:hover .marquee__group {
	-webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
.marquee__group span {
    cursor: pointer;
}
dialog {
	padding: 0;
    background: #000;
    max-width: 870px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    animation: fadeIn .5s ease both;
}
dialog::backdrop {
	animation: fadeIn .5s ease both;
	background: #000000db;
	z-index: 2;
	backdrop-filter: blur(20px);
}
dialog .x {
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;
    background-color: #fff;
	padding:10px;
 
}
dialog .x:hover {
	background-color:#dafe09;
}
dialog video {
	width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
}
.work-sectionhm {
    padding-bottom: 20px;
}
.outer-container{
	overflow:hidden;
}
.circle-watch{
	cursor: pointer;
	background: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    transform: translate3d(100%,100%,0);
    transition: transform 2s cubic-bezier(.02,1.23,.79,1.08);
    z-index: 1;
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    padding-top: 51px;
    line-height: 23px;
    color: #000;
}
.about-home-section {
    padding-top: 70px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
}
.about-home-section.studio01 {
	height: 100vh;
    display: flex;
    align-items: center;
}
.ab-sec-hm {
    /* max-width: 650px; */
    margin: 0 auto;
    padding: 0;
}
.ab-sec-hm .about-hmhdng {
    /* margin: 0 0 -10px 0;
    font-size: 160px;
    color: #fff;
    font-family: 'Formula Condensed Light';
    font-weight: normal; */
	margin: 0;
    font-size: 100px;
    color: #fff;
    font-weight: 700;
}
.ab-sec-hm .about-hmtxt {
    /* font-size: 22px;
    line-height: 36px;
    color: #fff;
	font-family: 'Futura PT Light';
	margin-bottom:40px; */
    font-size: 28px;
    line-height: 46px;
    color: #fff;
    margin-bottom: 40px;
}
.about-hmbtn {
    border: #898989 solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 50px;
    width: 170px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 16px;
}
.about-hmbtn:hover{
	background-color:#dafe09;
	border-color:#dafe09;
	color:#000;
	animation: rotate 0.7s ease-in-out both;	
	animation-delay: 0.06s
}
.about-hmbtn:hover span{
	animation: storm 0.7s ease-in-out both;
	animation-delay: 0.06s
}
@keyframes rotate{
    0%{
		transform: rotate(0deg) translate3d(0, 0, 0);}
    25%{
	transform: rotate(3deg) translate3d(0, 0, 0);}
    50%{
	transform: rotate(-3deg) translate3d(0, 0, 0);}
    75%{
	transform: rotate(1deg) translate3d(0, 0, 0);}
    100%{
	transform: rotate(0deg) translate3d(0, 0, 0);}
}
  
@keyframes storm {
    0%{
	transform: translate3d( 0, 0, 0) translateZ(0);}
    25%{
	transform: translate3d( 4px, 0, 0) translateZ(0);}
    50%{
	transform: translate3d( -3px, 0, 0) translateZ(0);}
    75%{
	transform: translate3d( 2px, 0, 0) translateZ(0);}
    100%{
transform: translate3d( 0, 0, 0) translateZ(0)}
}
.image-stick {
    position: relative;
}
.image-stick img {
    width: 100%;
}
.stick-text {
    position: absolute;
    top: 50%;
    width: 98%;
    left: 2%;
    right: 2%;
    transform: translateY(-50%);
    text-align: left;
}
.stick-btn:before {
    content: "";
    width: 42px;
    height: 42px;
    border: #fff solid 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
    transition: 1s cubic-bezier(.075,.82,.165,1);
}
.sticky-sec1:hover .stick-btn:before {
    background-color: #dafe09;
    border-color: #dafe09;
	border-radius: 50%;
}
.stick-btn:after {
    content: "\f061";
    position: absolute;
    left: 14px;
    top: 3px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}
.sticky-sec1:hover .stick-btn:after {
    color: #000;
}
.stick-text .stick-hng {
	font-size: 30px;
    color: #fff;
    margin: 0;

    font-weight: 800;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 10px;
}
.stick-text .stick-btn {
    font-size: 19px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}
.stick-text.stick-blck-txt .stick-hng {
    color: #000;
    font-size: 24px;
}
.stick-blck-txt .stick-btn:before,
.stick-blck-txt .stick-btn:after{
	border-color:#000;
	color:#000;
}
@keyframes btnstickstretch {
  0% {
    letter-spacing:1px;
  }
  30% {
    letter-spacing: 20px;
  }
  85% {
    letter-spacing: 0px;
  }
}
.stick-text .stick-btn:hover{
	color:#dafe09;
	animation: btnstickstretch 3s 1;
}
.sticky-sec5 .stick-text .stick-hng,
.sticky-sec5 .stick-text .stick-btn {
	color:#000;
}
.work-image {
    width: 100%;
    display: flex;
    column-gap: 20px;
}



.sticky-sec1{
	position: relative;
    background-color: #3A0082;
}
.stick-img img {
    margin: auto;
    display: block;	
    width: 100%;
}
.box-stick{
	-webkit-clip-path: inset(-1px -1px -1px -1px);
    clip-path: inset(-1px -1px -1px -1px);
    transition: -webkit-clip-path .5s cubic-bezier(.075,.82,.165,1);
    transition: clip-path .5s cubic-bezier(.075,.82,.165,1);
    transition: clip-path .5s cubic-bezier(.075,.82,.165,1),-webkit-clip-path .5s cubic-bezier(.075,.82,.165,1);
}
.sticky-sec1:hover .box-stick{
    -webkit-clip-path: inset(8px 8px 8px 8px);
    clip-path: inset(8px 8px 8px 8px);
}
.sticky-sec2{
	background:url(../images/img002.jpg) center center no-repeat;
	background-size: cover;
}
.sticky-sec3{
	background:url(../images/img013.jpg) top center no-repeat;
	background-size: cover;
}
.sticky-sec4{
	background:url(../images/img014.jpg) top center no-repeat;
	background-size: cover;
}
.sticky-sec5{
	background:url(../images/img015.jpg) top center no-repeat;
	background-size: cover;
}
.sticky-sec6{
	background:url(../images/img016.jpg) bottom center no-repeat;
	background-attachment: scroll;
	background-size: cover;
	position:relative;
}


/**work box***/
.innerpage-banner {
    padding-top: 200px;
    padding-bottom: 100px;
    padding-left: 60px;
    padding-right: 60px;
}
.textbnr-top p {
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    line-height: 46px;
}
.workbox-outer{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	overflow: hidden;
}
.work-box {
	height: 350px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background-color: #3A0082;
    margin: 0;	
    border:none;
    display: none;
    width: 33.33%;
    position: relative;
    overflow: hidden;    
}
.work-box a{
	-webkit-clip-path: inset(-1px -1px -1px -1px);
    clip-path: inset(-1px -1px -1px -1px);
	transition: -webkit-clip-path .5s cubic-bezier(.075,.82,.165,1);
    transition: clip-path .5s cubic-bezier(.075,.82,.165,1);
    transition: clip-path .5s cubic-bezier(.075,.82,.165,1),-webkit-clip-path .5s cubic-bezier(.075,.82,.165,1);
}
.work-box:hover a{
    -webkit-clip-path: inset(8px 8px 8px 8px);
    clip-path: inset(8px 8px 8px 8px);
}
#loadMore {
    /* width: 200px; */
    color: #fff;
    display: block;
    text-align: center;
    /* margin: 20px auto; */
    padding: 25px;
    border-radius: 0;
    border: none !important;
    background-color: #3A0082;
    transition: .3s;
    font-size: 20px;
    font-weight: 400;
}
#loadMore:hover {
	color: #fff;
    background-color: transparent;
    text-decoration: none;
}
.noContent {
	color: #000 !important;
	background-color: transparent !important;
	pointer-events: none;
}
#loadMore.noContent {
    display: none;
}
.bxwrk-inr .wrkimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.wrktxt {
    position: absolute;
    bottom: 40px;
    left: 40px;
	transition: 1s cubic-bezier(.075,.82,.165,1);
}
.work-box:hover .wrktxt{
	bottom: 50px;
}
.wrktxt p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 24px;
	margin:0;
}
.work-box a {
    display: block;
    height: 100%;
	width:100%;
}
.bxwrk-inr .wrkimg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.wrktxt p:before {
    content: "";
	width: 41px;
    height: 43px;
    border: #ccc solid 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    border-radius: 50%;
	transition: 1s cubic-bezier(.075,.82,.165,1);
}
.wrktxt p:after {
	content: "\f061";
	position: absolute;
    left: 14px;
    top: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #fff;
    font-size: 16px;   
}
/* .wrktxt p::before,
.wrktxt p:after{
    display: none;
} */
.work-box:hover .wrktxt p:before{
	background-color:#3A0082;
	border-color:#3A0082;
}
.work-box:hover .wrktxt p:after{
	color:#fff;
}
/**work box***/


/***work detail**/
.inner-detail-banner {
    height: 570px;
    overflow: hidden;
}
.inner-detail-banner img {
    height: 570px;
    width: 100%;
    object-fit: cover;
}
.wrkdtl-title {
    padding-top: 80px;
    padding-bottom: 80px;
}
.desc-wrktxt h4,
.desc-wrktxt h1 {
    font-size: 60px;
    color: #fff;
    font-weight: bold;
    line-height: 65px;
    margin: 0 0 30px 0;
}
.desc-wrktxt p {
    font-size: 28px;
    line-height:46px;
    color: #fff;
    margin-bottom: 40px;
}
.video-work video {
    width: 100%;
}
.video-work {
    margin-bottom: 20px;
}
.detl-workimg {
    max-height: 670px;
    overflow: hidden;
    height: 670px;
    position: relative;
}
.detl-workimg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.detl-workimg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.wrk-rowcenter {
    display: flex;
    align-items: center;
}
.grey-bg2{
	background-color: #121212;
}
.grey-bg1{
	background-color:#000;
}
.grey-bg3 {
    margin-right: 15px;
}
.wrkshp-img img {
    width: 100%;
}
.wrktxt-shp{
	padding-left:45px;
}
.wrktxt-shp p,
.wrktxt-shp a {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}
.wrkaudio-main{
	padding-bottom:20px;
}
.ab-sec-hm .about-hmhdng.work-txt40detl {
    font-size: 40px;
    margin-bottom: 20px;
}
.work-txt40detl{
    max-width: 650px;
	margin: 0 auto;
}
.work-txt40detl h3{
    font-size: 40px;
	margin: 0 0 20px 0;
    color: #fff;
    font-weight: 700;
}
.work-txt40detl p{
    font-size: 17px;
    line-height: 35px;
    color: #fff;
    margin-bottom: 0;
}
.wrk-smltxt {
    max-width: 570px;
    margin: 0 auto;
}
.wrk-smltxt p {
	font-size: 17px;
    color: #fff;
    line-height: 34px;
    margin-bottom: 30px;
}
.wrk-smltxt p:last-child{
	margin-bottom:0;
}
.work-txt40detl.work-txtlight h3 {
    font-weight: 400;
}
.detl-likework {
    background-color: #fff;
    padding-bottom: 70px;
    padding-top: 70px;
    margin-top: 90px;
}
.likewrk-detltxt h3 {
    font-size: 40px;
    margin: 0 0 30px 0;
    color: #000;
    font-weight: 700;
}
/***work detail**/


/**contact us**/
.paddesk-lftryt{
	padding-left: 60px;
    padding-right: 60px;
}
.contmain-add {   
	padding-bottom: 65px;
}
.addcont-txt {
    display: flex;
    column-gap: 30px;
}
.conthead-add p {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}
.conthead-add {
    margin-bottom: 35px;
}
.txt-contadd {
    width: 33.33%;
    display: block;
}
.txt-contadd a {
    color: #fff;
}
.txt-contadd a:hover {
    color: #dafe09;
}
.txt-contadd p {
    font-size: 26px;
    color: #fff;
    line-height: 26px;
    margin-bottom: 20px;
}
.txt-contadd span {
    display: block;
    font-size: 17px;
    color: #fff;
    line-height: 28px;
}
.conttalk-main {
    padding-top: 100px;
    padding-bottom: 80px;
}
.tlk-txt p {
    font-size: 40px;
    color: #fff;
    margin: 0 0 20px 0;
}
.tlk-txt a,
.tlk-txt span {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    border-bottom: #fff solid 1px;
    line-height: 55px;
    display: inline-block;
}
.tlk-fom {
    position: relative;
    border-radius: 0;
    float: left;
    width: 100%;
}
.tlk-fom .form-control {
    box-shadow: none;
    border-radius: 0;
    height: 57px;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 400;
    border: 1px solid #ffffff78;
    background: #ffffff26;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 3px;
}
.tlk-fom input::-webkit-input-placeholder, 
.tlk-fom textarea::-webkit-input-placeholder { 
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.tlk-fom input::-ms-input-placeholder, 
.tlk-fom textarea::-ms-input-placeholder { 
  color: #000;
}

.tlk-fom input:placeholder,
.tlk-fom textarea:placeholder {
  color: #000;
}
.tlk-fom textarea.form-control {
    height: 200px;
    resize: none;
    padding: 10px 15px;
}
.tlk-fom button {
	background-color: #3A0082;
    border: none;
    border-radius: 0;
    color: #fff;
    height: 55px;
    line-height: 58px;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 45px;
    width: auto;
    border-radius: 3px;
}
.tlk-fom button:hover {
    background-color: #fff;
    color: black;
}
.tlk-fom button.btn:focus, 
.tlk-fom button.btn.active {
    outline: 0;
    background: #dafe09;
    color: #000;
}
.tlk-fom .form-group {
    margin: 0 0 6px 0;
    text-align: left;
    padding-left: 0;
}
.pad-rmv-left {
    padding-left: 0;
}
.pad-rmv-right {
    padding-right: 0;
}
.pad-rmv-desk{
	padding-left:0;
	padding-right:0;
}
/**contact us**/


/**spaces***/
.desc-wrktxt.space-bnrtxt p {
    font-size: 22px;
    line-height: 44px;
}
.desc-wrktxt.space-bnrtxt p:last-child{
	margin-bottom:0;
}
.venu-boxmn {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 70px;
}
.inr-bxvnu {
    margin-bottom: 23px;
    position: relative;
    width: 50%;
    padding-right: 10px;
	overflow:hidden;
}
.inr-bxvnu:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 0;
}
.inr-bxvnu img {
    height: 450px;
    object-fit: cover;
    width: 100%;
	-webkit-transition: .5s cubic-bezier(.075,.82,.165,1);
    -moz-transition: .5s cubic-bezier(.075,.82,.165,1);
    transition: .5s cubic-bezier(.075,.82,.165,1);
}
.inr-bxvnu p {
    color: #fff;
    background-color: #000;
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 22px;
}
.inr-bxvnu:hover img{
	transform:scale(1.1);
}
/**spaces***/


/**about us**/
#about-video1{
	width:100%;
	height:100vh;
	object-fit:cover;
}
.spc-40detl h5 {
    font-size: 27px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 47px;
}
.spc-40detl h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 800;
}
.serab-man {
	padding-top: 60px;
    padding-bottom: 60px;
}
.hdng-folw h4 {
    font-size: 60px;
    color: #dafd09;
    font-weight: 400;
    line-height: 75px;
    margin: 0 0 30px 0;
}
.abserv-mn {
    display: flex;
    flex-wrap: wrap;
}
.servab-inr {
    width: 33.3%;
    background-image: linear-gradient(to right, #000, #101110);
	padding: 60px 40px;
	position: relative;
	border-bottom:#000 solid 1px;
}
.servab-inr:hover {
    background: none;
    background-image: none;
}
.servsec-desc {
    opacity: 0;
    display: block;
    width: 100%;
	transition:.4s;
	transform: translateY(-50px);
}
.servab-inr:hover .servsec-desc {
    opacity: 1;
	transform: translateY(0px);
}
.serv-hdngtxt {
    transform: translateY(150px);
	transition:.5s;
}
.servab-inr:hover .serv-hdngtxt {
    transform: translateY(0px);
}
.serv-hdngtxt .srvhdn-txtab {
    font-size: 34px;
    margin: 0 0 20px 0;
    font-weight: bold;
    color: #fff;
    line-height: 45px;
}
.servsec-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.servsec-desc ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
    line-height: 24px;
}
.serv-secvid video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
	z-index:-1;
	opacity:0;
}
.servab-inr:hover .serv-secvid video {
    opacity: 1;
}
.padtop-botm {
    padding-top: 90px;
    padding-bottom: 90px;
}
.bg-white {
    background-color: #fff;
}
.ablogo-mn {
    display: flex;
    flex-wrap: wrap;
}
.logab-inr {
    width: 14%;
    height: 160px;
    justify-content: center;
    display: flex;
    align-items: center;
    /* border-bottom: #e5e5e5 solid 1px;
    border-right: #e5e5e5 solid 1px; */
}
/**about us**/

.logab-inr img{
    max-width: 60%;
}


.footer-main {
    padding-top: 70px;
    background-color: #121212;
    position: relative;
	padding-left: 30px;
    padding-right: 30px;
}
.left-footer h6,
.right-footer h6{
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}
.right-footer p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    line-height: 34px;
}
.left-footer p {
    font-size: 22px;
    margin: 0 0 0px 0;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
}
.left-footer a {
    color: #fff;
    text-decoration: underline;
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    padding-left: 0px;
}
.left-footer span {
    /* display: block;
    font-size: 22px;
    font-family: 'Futura PT Light';
    color: #fff; */
	display: block;
    font-size: 18px;
    color: #fff;
}
.middle-footer {
    padding: 0 15px;
}
.middle-footer p {
    /* font-size: 22px;
    font-family: 'Futura PT Light';
    color: #fff;
    margin: 0; */
	font-size: 18px;
    color: #fff;
    margin: 0;
}
.middle-footer p a {
    color: #fff;
    font-style: normal;
    font-weight: normal;
}
.middle-footer p:nth-child(1) {
    margin-bottom: 25px;
}
.right-footer {
    text-align: right;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul li {
    display: inline-block;
    padding-left: 15px;
    line-height: 21px;
}
.footer-nav ul li a {
    /* color: #fff;
    font-size: 22px;
	display: block;
    font-family: 'Futura PT Light'; */
	color: #fff;
    font-size: 18px;
    display: block;
    font-weight: 400;
}
.footer-nav ul li a:hover,
.social-footer ul li a:hover {
    color: #dafe09;
}
.social-footer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 35px 0;
}
.social-footer ul li {
    display: inline-block;
    padding-left: 15px;
}
.social-footer ul li a {
    color: #fff;
    font-size: 23px;
}
.copyright-fot p {
    /* font-size: 20px;
    color: #fff;
    font-family: 'Futura PT Light';
    margin: 0; */
	font-size: 16px;
    color: #fff;
    margin: 0;
}
.middle-footer, 
.right-footer {
    margin-top: 5px;
}


/* 
.cta-track {
    align-items: center;    
}
.cta-item {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.clash-cta {
    letter-spacing: .01em;
    text-transform: uppercase;
    flex: none;
    font-family: Clashgrotesk, sans-serif;
    font-size: 8.3vw;
    font-weight: 400;
    line-height: .9em;
}
.section.is-flip {
    background-color: #000;
    overflow: visible;
}
.container.is-vert {
    flex-direction: column;
    align-items: flex-start;
}
.container.is-flip {
    background-color: #000;
    align-items: flex-start;
}
.mbm-ex-div {
    z-index: 5;
    perspective: 40em;
    perspective-origin: 50% 0;
    position: relative;
    overflow: visible;
}
.ivy-xl {
    z-index: 5;
    transform-origin: 50% 0;
    color: #fff;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-left: -30px;
    margin-right: -30px;
    padding-bottom: 0.08em;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 12.54em;
    font-weight: 300;
    line-height: .9em;
    position: relative;
} */


.banner{
    padding: 0;
	height:100vh;
}
.banner .carousel-caption{
    text-align: left;
    left: 40px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}
.banner img {
    width: 100%;

}
.banner .item{
    width: 100%;
    height: 100%;
}
.banner .item .banner_video{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.carousel-indicators {
    position: absolute;
    right: 40px;
    bottom: 50%;
    left: auto;
    transform: translateY(50%);
    z-index: 2;
    display: grid;
    gap: 8px;
    margin: 0;
    width: auto;
}
.top_shadow{
    box-shadow: 0px -40px 60px 50px #000;
    position: relative;
}

.studio01 .about-hmtxt {
    font-size: 28px;
    line-height: 46px;
    color: #fff;
    margin-bottom: 30px;
}
.mission_sec{
    background-image: url('..//images/mission_bg01.jpg');
    background-position: center center;
    background-size: cover;
    padding: 120px 50px;
    box-shadow: 0px -40px 60px 50px #000;
	height: 100vh;
    display: flex;
    align-items: center;
}

.services_sec{
    padding-top: 80px;
}

.bottom_shadow{
    box-shadow: 0px 40px 60px 50px #000;
    padding-bottom: 50px;
    position: relative;
}
.main_heading{
    font-size: 100px;
    color: #fff;
    font-weight: 700;
}
.svr_catg_heading{
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}
.svr_list ul{
    padding: 0;
    margin: 0;
    display: flex;
}
.svr_list ul li{
    display: inline-block;
    width: 16%;
    text-align: center;
}
.svr_list ul li img{
    border: 6px solid #ffffff;
    border-radius: 50%;
}

.svr_list ul .srv_item p{
    color: #fff;
    font-size: 22px;
    width: 75%;
    margin: 20px auto 0;
	line-height: 31px;
}
.srv_item{
    display: inline-block;
}
.svr_list ul .srv_item:hover p{
    color: #3DB1F2;
}
.paddT60{
    padding-top: 60px;
}
.carousel-caption {
    padding-bottom: 0px;
}
.client_sec {
	background-color: #F1F1F2;
    padding: 80px 20px;
    height: 100vh;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.client_sec .main_heading{
    color: #000000;
}
.client_sec p{
    color: #000000;
}
.middle-footer{
    text-align: center;
}
.middle-footer h6 {
    color: #fff;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 25px;
}
.copyright{
    color: #fff;
    font-size: 15px;
    text-align: center;
    background-color: #202020;
    padding: 15px;
    width: 60%;
    margin: 60px auto 10px;
}




/* Fullscreen loader wrapper */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden; 
  }

  .image-container {
    position: relative;
    width: 57px; 
    height: 58px;
    padding: 5px;
  }
  
  .logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  
  .spinner-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent; 
    border-top: 3px solid #3A0082; 
    border-radius: 50%;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .content {
    display: none;
  }

  .loading-text {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    animation: fadeInOut 2s infinite;
    margin-left: -14px;
}
  
@keyframes fadeInOut {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}
  
.innerpage-banner .inr_hdr{
    color: #fff;
    font-size: 45px;
    font-weight: 800;
    
}
.map_sec iframe {
    height: 346px;
    border-radius: 3px;
}
.talk_hdr_sec h3{
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    padding: 10px;
}
.contact_sec{
    padding: 0 30px;
    margin-bottom: 80px;
}
.work_detail_bnr{
    padding: 0 !important;
}
.bnr_image{
    height: 600px;
}
.bnr_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work_detail_bnr .desc-wrktxt.space-bnrtxt{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 50px 0;
}
.work_detail_bnr  .desc-wrktxt.space-bnrtxt p {
    font-size: 30px;
}

.work_detail_bnr .desc-wrktxt h4, .work_detail_bnr .desc-wrktxt h1 {
    margin: 0 0 20px 0;
}
.bg_white{
    background-color: #fff;
}
.bg_white *{
    color: #000 !important;
}
.terhal{
    padding: 80px 50px;
}
.terhal p:last-child{
    margin-bottom: 0;
}
.terhal .desc-wrktxt h4, .terhal .desc-wrktxt h1 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    line-height: 65px;
    margin: 0 0 10px 0;
}
.bg-video-work{
    background-image: url('..//images/work_video_bg01.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 50px;
}
.align-items-center{
    display: flex;
    align-items: center;
}

.btn_video{
    background-color: transparent;
    padding: 0;
    border: 0;
}
.btn_video:focus{
    border: 0;
}
.btn_video i {
    color: #fff;
    font-size: 50px;
}
.bg-video-work .modal-content{
    height: 400px;
}
.bg-video-work .modal-content video{
    height: 100%;
}
.image_text {
    padding: 120px 40px 120px;
}
.image_text .row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.image_text img{
    width: 100%;
}
.image_text .desc-wrktxt.space-bnrtxt p{
    line-height: 36px;
}




@media (min-width: 767px) {
    .paddR40{
        padding-right: 40px;
    }



}



@media screen and (max-width: 767px) {

    p {
        font-size: 22px;
        line-height: 35px;
    }
    .banner-text-heading .banner-heading {
        font-size: 34px;
    }
    .ab-sec-hm .about-hmhdng {
        font-size: 40px;
    }
    .ab-sec-hm .about-hmtxt, .studio01 .about-hmtxt {
        font-size: 20px;
        line-height: 32px;
    }
    .about-home-section {
        padding-top: 30px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
	.about-home-section.studio01 {
		height: auto;
	}
    .mission_sec {
        padding: 80px 20px;
    }
    .svr_list ul li {
        display: inline-block;
        width: 49%;
    }
	.svr_list ul li img {
		border-width: 4px;
		width: 120px;
	}
	.svr_list ul .srv_item p {
		font-size: 17px;
		margin: 10px auto;
		line-height: 23px;
	}
    .svr_list ul {
        display: block;
    }
    .stick-text {
        width: 100%;
        position: inherit;
        transform: none;
        background-image: url(..//images/bg001.jpg);
        background-size:auto;
        padding: 20px;
    }
    .main_heading {
        font-size: 40px;
    }
    .svr_catg_heading {
        font-size: 22px;
    }
    .stick-img{
        display: none;
    }
    .work-box {
        height: 200px;
        width: 100%;
    }
    .work-box img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .client_sec {
        padding: 40px 10px;
		display: block;
		height: auto;
    }
    .ablogo-mn {
        justify-content: center;
    }
    .logab-inr {
        width: 40%;
        height: 100px;
    }
    .header-top {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .menu-btn {
        top: -29px;
        right: 25px;
    }
	
    .footer-main *{
        text-align: left !important;
    }
    .footer-main {
        padding: 40px 20px 0;
    }
    .left-footer a {
        font-size: 15px;
    }
    .left-footer i{
        font-size: 16px;
    }
    .middle-footer {
        padding: 0;
    }
    .middle-footer h6 {
        font-size: 32px;
        margin-top: 25px;
    }
    .social-footer ul li {
        padding-left: 0;
        padding-right: 10px;
    }
    .footer-main .copyright {
        font-size: 15px;
        text-align: center !important;
        line-height: 24px;
        padding: 15px 20px;
        width: 100%;
        margin: 20px auto 10px;
    }
    .innerpage-banner {
        padding-top: 130px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .textbnr-top p {
        font-size: 18px;
        line-height: 30px;
    }
    .work_detail_bnr .desc-wrktxt.space-bnrtxt {
        position: revert;
        transform: none;
        padding: 10px 20px 30px;
    }
    .work_detail_bnr .desc-wrktxt.space-bnrtxt p {
        font-size: 17px;
        line-height: 30px;
    }
    .bnr_image {
        height: auto;
    }
    .terhal {
        padding: 40px 30px;
    }
    .bg-video-work {
        padding: 50px 20px;
    }
    .bg-video-work .desc-wrktxt.space-bnrtxt p {
        font-size: 22px;
        line-height: 34px;
    }
    .align-items-center{
        display: block;
    }
    .btn_video{
        margin-top: 30px;
    }
    .image_text {
        padding: 30px 20px;
    }
    .image_text .row {
        display: block;
    }
    .image_text .desc-wrktxt.space-bnrtxt{
        padding: 20px 0;
    }

    
    



}
