@import url('https://fonts.googleapis.com/css2?family=Castoro+Titling&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body{
	font-family: 'Lato', sans-serif;
	line-height: 1.5;
	padding: 0;
	margin:0;
  }
  
body{
            animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

a {

text-decoration:none ;
color:#c30756;

}

a:hover{
color:#70C901;

}


.green {
  font-size: 35px;
  background: -webkit-linear-gradient(#FDFC47, #24FE41);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white {
 color:#fff;	
 font-size: 35px;
}


@media screen and (max-width: 650px) {
	.green {
		font-size : 20px ; 
	}
	.white {
		font-size : 20px; 
	}
}


/*Index page*/




@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap'); 

.intro {
	padding:10px 30px;
	font-size:18px;
	line-height:1.8;
    max-width:90%;	
	margin:0 auto;
	
}
.intro h1{
	text-align:center;
	font-size:30px;
}
.intro span{
	text-align:center;
	font-size:35px;
}
.intro h2{
	
font-size: 30px;
  font-weight: 500;
  font-family: "Courier Prime", monospace;
  color: #ED213A;
  border-right: 4px solid #000;
  animation: cursor 1s infinite step-end, typing 15s infinite steps(16);
  white-space: nowrap;
  overflow: hidden;
}
@keyframes cursor{
  0%, 100%{border-color: transparent;}
  50%{border-color: #000;}
}

@keyframes typing{
  0%{ width: 0ch} /*Text is hidden*/
  30%{ width: 21ch;} /*The enitre header will be typed out*/
  80%{ width: 21ch;} /*Text stays visible*/
  90%{ width: 0ch;} /*Text is deleted*/
  100%{ width: 0ch;} /*Text stays hidden*/
}

.index-boxes{
	    display:flex;
		justify-content:center;
		align-items:center;
		text-align:center;
		flex-wrap:wrap;
		flex:1;	
		padding:0 10px;
        margin:10px auto;
}

.index-box-item{
	   font-size:16px;
	   max-width:300px;
	   min-height:420px;
	   margin:5px 10px;
	   padding:10px;
	   box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.index-box-item img {
	width:280px;
	height:200px;
	display:block ;
	margin:0 auto;
}

.index-box-item span {
	padding:5px;
	display:block;
	text-align:center;
	font-size:20px;
	font-weight:bold;
}

.why-us{
	    display:flex;
		justify-content:center;
		align-items:center;
		text-align:center;
		flex-wrap:wrap;
		flex:1;	
		padding:0 10px;
        margin:10px auto;
	   border-top:25px dashed #111;
	    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.why-us-item{
	  text-align:left;
	   min-height:200px;
	   max-width:50%;
	   margin:5px;
	   padding:15px;
	  
}

 .why-us-item span {
	  text-align:left;
	font-size:20px;
	font-weight:bold;
}

.why-us-item img {
	width:100%;
    max-width:250px;
	max-height:250px; 
}


.sign-ups{
	    display:flex;
		justify-content:center;
		align-items:center;
		text-align:center;
		flex-wrap:wrap;
		flex:1;	
		padding:0 10px;
       margin:10px auto;
}

.sign-ups button {
	min-width:200px;
	padding:10px;
	margin:15px;
}
.sign-ups a {
	text-align:center;
	text-decoration:none;
	color:white;
	padding:10px;
}




/* CSS */
.button-86 {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 19px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-86::after,
.button-86::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}



.post-production-container {
	display:flex; 
	flex:1 ; 
	flex-wrap: wrap;
	justify-content:space-around ; 
	align-items:center ;
	padding:15px; 
	margin:10px auto;
}

.post-production-container img{
	margin :10px;
	max-width:450px;
	max-height:450px;
}

.post-production-container h1 {
	text-align:center;
}


/*MAKING ALL RESPONSIVE */
@media screen and (max-width: 600px) {
	
	.intro {
		font-size:16px;
		padding:5px;
		max-width:100%;
	}
	
	.intro h1{ 
	   font-size:20px;
	}
	.intro span {
		font-size:22px;
	}
	.intro h2{
     font-size:22px;
	}
	.index-box-item{
	   font-size:16px;
	   max-width:280px;
	   min-height:300px;
	   margin:5px;
	   padding:10px;
}

	.index-box-item{
	   font-size:14px;
	}
	.index-box-item img {
	width:230px;
	height:170px;
}

.index-box-item span {
	font-size:18px;
}


.why-us-item{
	margin:10px;
	max-width:100%;
	padding:5px;
}
.why-us-item span {
	display:block;
	font-size:18px;
}


.post-production-container {
	padding:10px; 
	margin:5px auto;
}

.post-production-container img{
	margin :10px;
	max-width:250px;
	max-height:250px;
}



}




/*Index Page end*/


/*FOR FORMS*/

	* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  resize: vertical;
  margin: 8px 0;
  box-sizing: border-box;
  border:none;
  border-bottom: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  color:#000;
}


input[type=email] {
  width: 100%;
  padding: 12px;
  resize: vertical;
  margin: 8px 0;
  box-sizing: border-box;
  border:none;
  border-bottom: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  color:#000;
}

input[type=password] {
    width: 100%;
  padding: 12px;
  resize: vertical;
  margin: 8px 0;
  box-sizing: border-box;
  border:none;
  border-bottom: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  color:#000;
}


input[type=text]:focus {
  border:none;
  border-bottom: 3px solid #70C901;
}

input[type=email]:focus {
  border:none;
  border-bottom: 3px solid #70C901;
}

input[type=radio] {
            accent-color:#70C901;
        }
		
		
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  color:#000;
}


input[type=password]:focus {
  border:none;
  border-bottom: 3px solid #70C901;
  color:#000;
}

input[type=submit] {
  background-color: #101010;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #70C901;
  color: #fff;
}

.container {
  border-radius: 5px;
  background-color: #fff;
  color:#111;
  padding: 30px;
  max-width:800px;
  margin:10px auto;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/*FORM ENDED*/


.homeintro h2 {
	text-align:center ;
}


h2 {text-align:center;}

/*view jobs page*/
.jobsbg {
	background:#111;
	margin:50px auto;
	padding : 20px;
	max-width:1100px;
	border-radius : 20px;
}


  .job-post-container{
    
	display:flex;
    justify-content:center;
	align-items:center;
	flex-wrap:wrap;
    flex:1;
	padding:10px;
	margin:15px auto;
	max-width:1100px;
        color:#111;

	  
  }
  .job-post-item{
	background:#fff;
	border-radius:8px;
	padding:10px;
	display:flex;
	flex-direction:column;
        justify-content:flex-start;
	align-items:center;
	flex-wrap:wrap;
        flex:1;
	margin:10px;
        width:50%;
	min-height: 600px ; 
        color:#111;	
  }
  
 
  
  .job-post-item p {
	  font-size:18px;
text-align:left;	
color:#111;  
  }
  
  .job-post-item span {
	  font-size:22px;
      text-align:center;
      padding-top:10px;	
      font-weight:bold;	  
  }
  
  .job-post-item img {
	width:250px;
	height:300px;  
  }
  
  .job-post-item a {
	text-decoration:none;  
	color:#111;
  }
  

  
@media screen and (max-width: 650px) {
	.jobsbg {
		margin:0 auto;
		border-radius:0px;
	}
    
}


/* button CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}


.job-post-item-content {
	 
	min-height:180px;
	display:block ;
	margin:10px auto;
 }
 
 
  
  .job-post-item-content p {
	  font-size:18px;
text-align:left;	  
  }
  
  .job-post-item-content span {
	  font-size:22px;
      text-align:center;
      padding-top:10px;	
      font-weight:bold;	  
  }

 @media screen and (max-width: 650px) {
	.job-post-item-content {
		margin:10px auto;
		min-height:auto;
	}
	.job-post-item {
		min-height:500px;
	}

}

 .job-display-container{
		 background:#fff;
		 margin:15px auto;
		 padding:15px;
		 max-width:60%;
		 
	 }
	 
	 .job-display-container span {
		font-size:30px;
        font-weight:bold;
        text-align:center;		
	 }
	 .job-display-container img {
		display:block;
        margin:auto;
        width:50%;
        max-height:400px;		
	 }
	 
	 .job-display-container button{
		display:block;
		margin: auto;
		font-size:15px;
	 }


 @media screen and (max-width: 650px) {
         
        .job-display-container span {
         font-size:20px;  
        }

}

/*view jobs page ends*/


/*view artist images*/
.artist-gallery-box{
		 margin:15px auto;
		 max-width:95%;
		 display:flex;
		 justify-content:space-around;
		 align-items:center;
		 flex-wrap:wrap;
		 flex:1;	
		 
	 }
	 

	 .artist-gallery-box img {
		padding:15px		
	 }
	 

	 
	 @media screen and (max-width: 600px) {
        
        
       .artist-gallery-box  {
		flex-direction:column;
		justify-content:center;
	 }
	 .artist-gallery-box img{
		 width:100%;
	 }
      

}

/*view artist img ends*/




/*artist profile box page starts*/

	 .artist-profile-box{
		 background:#fff;
		 margin:0 auto;
		 max-width:70%;
		 display:flex;
		 justify-content:space-around;
		 align-items:center;
		 min-height:400px;
		 border-radius:15px;
		 
	 }
	 
	 .artist-box-contents span {
		font-size:50px;
        font-weight:bold;
        text-align:center;
		padding:10px;	
	 }
	 
	 .artist-box-contents {
		font-size:120%;
        text-align:left;
		padding:10px;	
		line-height:1.8;
	 }
	 
	 .artist-profile-img img {
		margin:15px auto;
		max-width:400px;
        max-height:400px;		
	 }
	 
	 .artist-box-contents button{
		display:block;
		margin: auto;
		font-size:15px;
	 }
	 
	 
	 @media screen and (max-width: 600px) {
        
        .artist-profile-box	{
			flex-direction:column;
			justify-content:center;
		}
       .artist-profile-img img {
		margin:0 auto;
		width:100%;
        max-height:400px;		
	 }
     .artist-box-contents span {
		font-size:30px;	
	 }	 
    .artist-box-contents {
		font-size:120%;
        text-align:left;
		line-height:1.5;
	 }	  

}

/*artist profile box page ends*/


/*FOR ALL PAGES CONTENT STYLES*/
.hero-image {
  background-image: url("images/bg.png");
  height: 300px;
  background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index:-1;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1{
	 font-size: 50px;
	 color:#fff;
  
}


.page-content{
	padding:10px 30px;
	font-size:18px;
	line-height:1.8;
    max-width:90%;	
	margin:0 auto;
}

.page-content a{ 
   text-decoration:none;
   color:#ee0979;
}
.page-content a:hover{ 
  color:#c3073f;
}

.page-content img {
	width:100%;
	max-width:400px;
	max-height:400px;
	float:right;
	padding:10px
}

.page-content span {
	display:block;
	font-size:20px;
	color:#008000;
	font-weight:bold;
}

@media screen and (max-width: 600px) {

.hero-text h1{
	font-size:30px;
}

.page-content {
	font-size:16px;
	padding:10px 15px;
	line-height:1.5;
}

.page-content span {
	font-size:18px;
}

.page-content img {
	clear:both;
	display:block;
	margin:0 auto;
}

.hero-image {
	height: 200px;
}
	
}

/*FOR ALL PAGES CONTENT STYLES END*/


/*Artist Registration page category check boxes*/


  .checkbox-wrapper-33 {
    --s-xsmall: 0.625em;
    --s-small: 1.2em;
    --border-width: 1px;
    --c-primary: #008000;
    --c-primary-20-percent-opacity: rgb(112 201 1 / 20%);
    --c-primary-10-percent-opacity: rgb(112 201 1 / 10%);
    --t-base: 0.4s;
    --t-fast: 0.2s;
    --e-in: ease-in;
    --e-out: cubic-bezier(.11,.29,.18,.98);
  }

  .checkbox-wrapper-33 .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .checkbox-wrapper-33 .checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .checkbox-wrapper-33 .checkbox + .checkbox {
    margin-top: var(--s-small);
  }
  .checkbox-wrapper-33 .checkbox__symbol {
    display: inline-block;
    display: flex;
    margin-right: calc(var(--s-small) * 0.7);
    border: var(--border-width) solid var(--c-primary);
    position: relative;
    border-radius: 0.1em;
    width: 1.5em;
    height: 1.5em;
    transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
    box-shadow: 0 0 0 0 var(--c-primary-10-percent-opacity);
  }
  .checkbox-wrapper-33 .checkbox__symbol:after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 0.25em;
    height: 0.25em;
    background-color: var(--c-primary-20-percent-opacity);
    opacity: 0;
    border-radius: 3em;
    transform: scale(1);
    transform-origin: 50% 50%;
  }
  .checkbox-wrapper-33 .checkbox .icon-checkbox {
    width: 1em;
    height: 1em;
    margin: auto;
    fill: none;
    stroke-width: 3;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    color: var(--c-primary);
    display: inline-block;
  }
  .checkbox-wrapper-33 .checkbox .icon-checkbox path {
    transition: stroke-dashoffset var(--t-fast) var(--e-in);
    stroke-dasharray: 30px, 31px;
    stroke-dashoffset: 31px;
  }
  .checkbox-wrapper-33 .checkbox__textwrapper {
    margin: 0;
  }
  .checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol:after {
    -webkit-animation: ripple-33 1.5s var(--e-out);
            animation: ripple-33 1.5s var(--e-out);
  }
  .checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol .icon-checkbox path {
    transition: stroke-dashoffset var(--t-base) var(--e-out);
    stroke-dashoffset: 0px;
  }
  .checkbox-wrapper-33 .checkbox__trigger:focus + .checkbox__symbol {
    box-shadow: 0 0 0 0.25em var(--c-primary-20-percent-opacity);
  }

  @-webkit-keyframes ripple-33 {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale(20);
    }
  }

  @keyframes ripple-33 {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale(20);
    }
  }
  
  .category-checkbox{
	display: flex;
	flex:1;
	flex-wrap:wrap;
    align-items: center;
    justify-content:flex-start;  
  }
  
  .category-checkbox .checkbox-wrapper-33 {
	 width:50%;
  }
  
  @media screen and (max-width: 600px) {
	.category-checkbox .checkbox-wrapper-33 {
	 width:100%;
  }
  }
  
  /*Artist Registration page category check boxes ends*/
  
  /*show password checkbox*/
  
  /*checkbox*/
    

  .checkbox-wrapper-24 .checkbox {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
  }

  .checkbox-wrapper-24 label {
    display: inline-block;
    color: #666;
    cursor: pointer;
    position: relative;
  }
  .checkbox-wrapper-24 label span {
    display: inline-block;
    position: relative;
    background-color: transparent;
    width: 25px;
    height: 25px;
    transform-origin: center;
    border: 2px solid #222;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
    transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
  }
  .checkbox-wrapper-24 label span:before {
    content: "";
    width: 0px;
    height: 2px;
    border-radius: 2px;
    background: #222;
    position: absolute;
    transform: rotate(45deg);
    top: 13px;
    left: 9px;
    transition: width 50ms ease 50ms;
    transform-origin: 0% 0%;
  }
  .checkbox-wrapper-24 label span:after {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: #222;
    position: absolute;
    transform: rotate(305deg);
    top: 16px;
    left: 10px;
    transition: width 50ms ease;
    transform-origin: 0% 0%;
  }
  .checkbox-wrapper-24 label:hover span:before {
    width: 5px;
    transition: width 100ms ease;
  }
  .checkbox-wrapper-24 label:hover span:after {
    width: 10px;
    transition: width 150ms ease 100ms;
  }

  .checkbox-wrapper-24 input[type=checkbox] {
    display: none;
  }
  .checkbox-wrapper-24 input[type=checkbox]:checked + label span {
    background-color: #222;
    transform: scale(1.25);
  }
  .checkbox-wrapper-24 input[type=checkbox]:checked + label span:after {
    width: 10px;
    background: #fff;
    transition: width 150ms ease 100ms;
  }
  .checkbox-wrapper-24 input[type=checkbox]:checked + label span:before {
    width: 5px;
    background: #fff;
    transition: width 150ms ease 100ms;
  }
  .checkbox-wrapper-24 input[type=checkbox]:checked + label:hover span {
    background-color: #222;
    transform: scale(1.25);
  }
  .checkbox-wrapper-24 input[type=checkbox]:checked + label:hover span:after {
    width: 10px;
    background: #fff;
    transition: width 150ms ease 100ms;
  }
  .checkbox-wrapper-24 input[type=checkbox]:checked + label:hover span:before {
    width: 5px;
    background: #fff;
    transition: width 150ms ease 100ms;
  }


  /*show password checkbox ends */