html,body{
  scroll-behavior: smooth !important;
  background-color: #eee;

  
}


body{
  
  background: rgb(19,12,0);
  background: linear-gradient(167deg, rgba(19,12,0,0.14058123249299714) 0%, rgba(255,246,216,0.4431022408963585) 48%, rgba(241,241,240,1) 100%);

  background: rgb(21,16,3);
  background: linear-gradient(0deg, rgb(7, 5, 0) 0%, rgba(79,71,51,1) 50%, rgba(21,16,3,1) 100%);
  

  background: rgb(24,24,36);
background: linear-gradient(0deg, rgb(36, 29, 24) 0%, rgb(37, 32, 44) 50%, rgb(36, 29, 24) 100%);

min-height: 100vh;


}

.container{
  color: rgb(235, 235, 235) !important;
  
}

.modal{
  color: black !important;

}

.btn-outline-success {
  --bs-btn-color: #4feca3;
  --bs-btn-border-color: #4fd295;
}


.text-success{
  color: #4feca3 !important;
}

.text-danger{
  color: rgb(255, 146, 146) !important;
}

.btn-outline-danger{
  color: rgb(255, 146, 146) !important;
}



.table tr:hover{
  background-color: rgba(0,0,0,0.3);
  color: white !important;
}


.card{
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: rgb(238, 251, 255);
}

.card.hover{

  background-color: rgba(255, 230, 185, 0.6);
  
}

.card.hover:hover{

  background-color: rgba(242, 255, 146, 0.1);
  /* color:black ; */
  
}


.ck.ck-editor__editable_inline {
  min-height: 500px !important;
}



.container{
  overflow: hidden !important;
}
.start_section{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.5);

}


div.nice-select{
  width:100% !important;
  z-index: 99;
}

div.nice-select.open{
  z-index: 999;
}

/* start view_movie */

iframe{
  width: 100% !important;
  height: 550px !important;
  border-radius: 3px;
}


/* end view_movie */


/* start movies section */

.image-box{
  overflow: hidden;
  transition: all 0.4s ease !important;
  position: relative;
}

.image-box:hover img{ 
  animation: scale_image 40s infinite;
  /* filter: brightness(0.7); */
  cursor: pointer;
}

image-box:active img{
  animation: scale_image 30s infinite;
  /* filter: brightness(0.5); */
}

@keyframes scale_image {
  0%{transform: scale(1)}
  50%{transform: scale(2)}
  100%{transform: scale(1)}
  
}



.movie_link{
  position:absolute;
  z-index:999;
  bottom:50px;
  left:50%;
  border-radius: 20px;
  padding:10px 40px !important;
  background-color: transparent;
  border: 2px solid white;
  transform:translate(-50%,20px);
  opacity: 0;
  transition: all 0.4s ease !important;
  text-decoration: none !important;
  color: white;
}

.movie_link:hover{
  background-color: #333;
  color:white;
}

.image-box:hover a.movie_link{
  transform: translate(-50%,0) !important;
  opacity: 1;
}



/* end movies section */


/* start underline */


.wrapper {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 width: 100%;
}
 .btn-text {
	 display: block;
	 font-size: 64px;
	 letter-spacing: -0.03em;
	 /* font-family: 'Hanken Grotesk', sans-serif; */
	 text-decoration: none;
	 position: relative;
	 padding-bottom: 4px;
	 color: #212121;
}
 .btn-text::after {
	 content: "";
	 position: absolute;
	 bottom: -0.01em;
	 left: 0;
	 width: 100%;
	 height: 4px;
	 background-repeat: no-repeat;
	 background-image: linear-gradient(to right, #212121 50%, rgba(33, 33, 33, 0.3) 50%);
	 background-size: 200% 100%;
	 background-position: 100% 50%;
	 transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}






/* glass */
/* From https://css.glass */

.card-blur{
background: rgba(255, 255, 255, 0.15);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
border: 1px solid rgba(255, 255, 255, 0.55);
}

iframe{
  border:1px solid #eee; 
  border-radius:5px;
  width: 100%;
}



.dropdown-menu.view{
  background: rgba(0,0,0,0.7 );
}

.dropdown-menu.view a{

  color: white;
}


.dropdown-menu.view a:hover{

  color: black;
}

.dropdown-menu.view a:active{

  background-color: rgb(193, 165, 6);
}



/* contact us */

.contact-form {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

.contact-form label {
  color: black;
}

.contact-form .heading {
  font-size: 24px;
  color: black;
  ;
  margin-bottom: 12px;
  font-weight: bold;
  display: block;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 10px;
}

textarea {
  resize: none;
  height: 80px;
  width: 200px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #524c03;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.contact-form button[type="submit"] {
  background-color: #d0bf07;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}



/* start cards hover */
.card.hover{
  transition: all 0.3s ease;
}







/* end cards hover */