@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;
}




/*Index page*/

.homeintro {
	background:#111;
	margin:0 auto;
        /*color : white ;*/
}


  


/*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;
}


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;
}


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;
}

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:0 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*/