/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); */
@import url('../fonts/cro/styles.css');
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  /* font-family: "Zen Dots", sans-serif; */
  font-family: 'Cropar' !important;
}

body{
  font-family: 'Cropar' !important;
}

#about-paras {
  font-family: 'Cropar';
}



.head {
  width: 100%;
  max-height: 100px;
  background: #000;
  position: relative;
}

.head-sub-container {
  width: 100%;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #111;
  color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #444;
}

.sidebar-header h3 {
  margin: 0;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.sidebar-menu li {
  padding: 10px 20px;
}

.sidebar-menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.sidebar-menu li a:hover {
  background-color: #575757;
}

.sidebar.open {
  right: 0;
}

.home {
  width: 100%;
  height: 100vh;
  max-height: 87vh;
  background: url(../assets/hero-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  
}

#home {
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.home-container {
  position: relative;
  width: 100%;
  z-index: 10;
}

.font-size-128px {
  font-size: 50px;
}

.about {
  width: auto;
  height: auto;
  position: relative;
}

.parent-1 {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.w-c1-grid-1 {
  grid-area: 1/1/2/2;
}

.w-c1-grid-2 {
  grid-area: 2/1/3/2;
}

.w-c1-grid-3 {
  grid-area: 1/2/3/3;
}

.parent-2 {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 2fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }

.w-c2-grid-1 {
  grid-area: 1/1/3/2;
}
.w-c2-grid-2 {
  grid-area: 1/2/2/3;
}
.w-c2-grid-3 {
    grid-area: 1/3/2/4; 
}
.w-c2-grid-4 {
    grid-area: 2/2/3/4; 
}

.rotate-div{
    transform: rotate(25deg);
}

.rotate-img{
    transform: rotate(-25deg);
}

.work{
   border-bottom: 1px solid #000; 
}

.about-para{
  width: 50%;
}

.carousel {
  max-width: 50%;
  margin: 0 auto;
  overflow: hidden;
}
.carousell {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  width:100%;
  margin: auto;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  color: black;
  border: 2px solid black;
  cursor: pointer;
  font-size: 18px;
  border-radius: 25px;
  z-index: 2;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: lightgray;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: gray;
}


.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

.hover{
    transition: all 0.5s;
}

.hover:hover{
    background-color: #000;
    color: white;
}

.arrow{
  width: 30px;
  height: 30px;
  color: black;
  border: 2px solid black;
  border-radius: 20px;
}

.footer{
    width: 100%s;
    height: 70vh;
    background-image: url(../assets/footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.input{
    border: 1px solid white;
    background: transparent;
    font-size: 12px;
    color: white;
    width: 350px;
    height: 30px;
    outline: none;
}

.button{
    padding: 0px 15px;
    border: 1px solid white;
    font-size: 12px;
    color: white;
    background: transparent;
    border-radius: 30px;
}

.font-size-14px{
    font-size:12px;
}

.aboutUsPage h1{
  font-size: 60px;
}

.aboutUsPage h2{
  width: max-content;
}
.aboutUsContainer{
  width: 100%;
  height: 100vh;
  position: relative;
  text-align: center;
}
.aboutLandImg{
  width: 25%;
}
.txt{
  width: 400px;
  height: 200px;
  position: absolute;
  left: 40%;
}
.img1{
  width: 400px;
  height: 400px;
  position: absolute;
  top: 0;
}
.img2{
  width: 400px;
  height: 100%;
  position: absolute;
  right: 0;
 
}
.img3{
  width: 280px;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: 50px;
  z-index: 6;
}
.img4{
  width: 300px;
  height: 350px;
  position: absolute;
  top: 30%;
  right: 65%;
  z-index: 5;
}
.img5{
  width: 320px;
  height: 370px;
  position: absolute;
  left: 30%;
  bottom: 0;
  z-index: 6;
}
.aboutUsContainer-2{
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.aboutUsContainer-2 h1{
  line-height: 50px;
}
.aboutUSImg{
  width: 350px;
  height: 350px;
}
.aboutUSImg1{
  width: 300px;
  height: 200px;
}

.projectSubContainer{
  width: 50%;
}
.menu-icon{
  display:none ;
  cursor: pointer;
}
.menu{
  display:flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.workpage-subContainer{
  width: 100%;
  height: 80vh;
}

.workPage-h1{
  font-size: 60px;
  padding-left: 50%;
}

.workpage-h3{
  width: 80%;
  font-size: 50px;
}

.workpage-p{
  font-size: 35px;
}

.project-icon{
  margin-left: 900px;
}

.workpage-subContainer-2{
  height: 70vh;
  margin-bottom: 70px;
}

.work-photoConainer{
  width: 64%; 
}

.work-photoConainer h6{
  font-size: 8px;
}

.move-right{
  padding-left: 130px;
}

.myproject-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, fit-content);
  grid-column-gap: 50px;
  grid-row-gap: 70px;
  }
  
  .grid-1 { grid-area: 1 / 1 / 2 / 2;}
  .grid-2 { grid-area: 1 / 2 / 2 / 3;}
  .grid-3 { grid-area: 2 / 1 / 3 / 2;}
  .grid-4 { grid-area: 2 / 2 / 3 / 3;}
  .grid-5 { grid-area: 3 / 1 / 4 / 2;}
  .grid-6 { grid-area: 3 / 2 / 4 / 3;}

.grid-1 h1{
  display: flex;
  align-items: center;
  gap: 10px;
}

.grid-1 p{
  width: 60%;
  margin-left: 50px;
  font-size: 14px;
}


.grid-2-img{
  position: absolute;
  bottom: -60px;
  left: 0;
}


.grid-4.pe-5{
  padding-right: 100px !important;
}

.myproject-sec-container .fs-1{
  font-size: 70px !important;
}

.myproject-input-1 input{
  width: 50%;
  border: none;
  border-bottom: 2px solid black;
  font-size: 16px;
  outline: none;
}

.myproject-input-2{
  width: 100%;
  border: none;
  border-bottom: 2px solid black;
  font-size: 16px;
  outline: none;
}

.myproject-btn{
  font-size: 12px;
}

.myproject-ul ul li{
  font-size: 16px;
}

.myproject-ul p{
  font-size: 16px;
  padding-left: 20px;
}
.productionContainer{
  width: 100%;
  height: 500px;
  background-image:url(../assets/Frame\ 73.png);
  background-repeat: no-repeat;
    background-size: cover;
  display: flex;
}
.imageSide{
  width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgSide-img{
  width: 400px;
  height: 400px;
}
.textSide{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 40px;
}
.starSide{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.starContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.star{
  width: 30px;
  height: 30px;
}
.btnn{
  background-color: #000;
  color: #fff;
  padding: 5px;
}
.list{
  display: flex;
  gap: 10px;
}
.ull{
  display:flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.dot{
  width: 5px;
  height: 5px;
  background-color: #fff;
}
.productionContainer1{
  width: 90%;
  display: grid;
  margin: auto;
  margin-top: 40px;
  gap: 20px;
}
.castContainer{
  width: 90%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.castt{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.cast{
  display:flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items:center;
}
.castImg{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #000;
}
.crewContainer{
  width: 90%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.creww{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.crew{
  display:flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items:center;
}
.crewImg{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #000;
}
.round{
  border-radius: 50%
}

.productparent {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.5fr 1fr 0.5fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  }
  
  .productdiv1 { grid-area: 1 / 1 / 3 / 3; }
  .productdiv2 { grid-area: 3 / 1 / 5 / 3; }
  .productdiv3 { grid-area: 1 / 3 / 5 / 5; }
  .productdiv4 { grid-area: 1 / 5 / 5 / 7; }

  .productionContainer2{
    width: 90%;
    margin: auto;
  }

.movie-carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.movie-carousel-track {
  display: flex;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.movie-carousel-item {
  min-width: 100%;
  height: auto;
  position: relative;
}

.movie-carousel-item img {
  width: 100%;
  height: auto;
}

.movie-carousel-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.movie-carousel-dots .movie-dot {
  width: 12px;
  height: 12px;
  margin-bottom: 10px;
  background-color: gray;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.movie-carousel-dots .movie-dot.active {
  opacity: 1;
}




.movie-carousel-container-2 {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.movie-carousel-track-2 {
  display: flex;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.movie-carousel-item-2 {
  min-width: 100%;
  height: auto;
  position: relative;
}


.movie-carousel-dots-2 {
  position: absolute;
  bottom: 0px;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.movie-carousel-dots-2 .movie-dot-2 {
  width: 12px;
  height: 12px;
  margin-bottom: 10px;
  background-color: gray;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.movie-carousel-dots-2 .movie-dot-2.active {
  opacity: 1;
}


@media only screen and (max-width: 990px) {
  .head-sub-container img {
    width: 100px;
    height: 50px;
  }
  .home-container {
    height: 30vh;
  }
  .home-container h5 {
    font-size: 18px !important;
  }
  .home-container p {
    font-size: 16px !important;
  }
  .font-size-128px {
    font-size: 30px;
  }
  .aboutSubContainer{
    width: 100%;
  }
  .aboutLandImg{
    width: 100%;
  }
  .aboutSubContainer p{
    width: 100% !important;
  }
  .aboutUsPage h1{
    font-size: 30px;
  }
  .aboutUsPage h2{
    font-size: 20px;
  }
  .aboutUsContainer {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
  }
  .about-para{
    width: 100%;
  }
  .img1, .img2, .img3, .img4, .img5 {
    width: 100%; 
    height: 300px;
    position: relative;
    margin: 20px 0; 
    right: 0;
    left: 0;
  }

  .img4{
    right: 0;
  }

  .txt {
    width: 80%;
    left: 10%;
    position: relative; 
    margin-top: 20px;
    height: auto;
  }
  .aboutUsContainer-flex{
    flex-wrap: wrap;
    gap: 20px;
  }
  .aboutUsContainer-2 h1{
    line-height: 30px;
  }
  .aboutUSImg,.aboutUSImg1{
    width: 100%;
  }
  .professional{
    flex-direction: column;
  }
  .footer{
    height: auto;
  }
  .projectSubContainer{
    width: 100%;
  }
  .menu{
    display: flex;
    cursor: pointer;
  }
  .menu-icon{
    display: none;
    cursor: pointer;
  }
  .menu-icon {
    font-size: 1.5rem;
  }
  .workPage-h1{
    font-size: 35px;
    padding-left: 5%;
  }
  .workPage-container{
    flex-direction: column-reverse;
  }
  .project-icon{
    margin-left: 0px;
  }
  .workpage-h3 {
    width: 100%;
    font-size: 30px;
  }
  .workpage-p {
    font-size: 25px;
  } 
  .workpage-subContainer-2{
    height: auto;
    flex-direction: column;
    justify-content: center;
  }
  .work-photoConainer{
    width: 100%; 
    padding: 0px 10px;
  }
  .workpage-subContainer-2 div,h3{
    width: 100% !important;
  }
  .move-right{
    padding-left: 30px;
    flex-direction: column-reverse !important;
  }
  .grid-4.pe-5 {
    padding-right: 0px !important;
  }
  .myproject-img{
    display: none;
  }
  .myproject-contact.w-50{
    width: 100% !important;
  }
  .myproject-contact{
    padding: 20px 0px;
  }
  .myproject-sec-container.m-5{
    margin: 10px !important;
  }
  .myproject-sec-container .fs-1 {
    font-size: 40px !important;
  }
  .myproject-address{
    flex-direction: column;
  }
  .myproject-ul ul li {
    font-size: 9px;
}
.myproject-ul p {
  font-size: 6px;
  padding-left: 20px;
}
.productionContainer{
  height: auto;
  flex-direction: column;
}
.textSide{
  padding: 0px 20px;
  gap: 20px;
}
.imageSide{
  width: 100%;
}
.list{
  flex-wrap: wrap;
}
.movie-carousel-dots {
  bottom: 20px;
}

@media only screen and (max-width: 500px) {
  .home-container h5 {
    font-size: 16px !important;
  }
  .home-container p {
    font-size: 14px !important;
  }
  .font-size-128px {
    font-size: 20px;
  }
  .aboutUsContainer {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
  }
  .aboutUsContainer .txt{
    height: auto;
  }
  .aboutSubContainer{
    flex-direction: column;
  }
  .aboutSubContainer div{
    width: 100% !important;
  }
  .img1, .img2, .img3, .img4, .img5 {
    width: 100%; 
    height: 300px;
    position: relative;
    margin: 20px 0; 
    right: 0;
    left: 0;
  }

  .img4{
    right: 0;
  }

  .txt {
    width: 80%;
    left: 10%;
    position: relative; 
    margin-top: 20px;
  }
  .carousel {
    max-width: 100%;
  }
  .aboutUsPage h1{
    font-size: 20px;
  }
  .aboutUsPage h2{
    font-size: 15px;
  }
  .aboutUsPage h1{
    font-size: 30px;
  }
  .aboutUsPage p{
    font-size: 15px;
  }
  .aboutUsContainer-flex{
    flex-wrap: wrap;
  }
  .professional{
    flex-direction: column;
  }
  .footer{
    height: auto;
  }
  .foot-content{
    flex-direction: column;
    align-items: start;
    padding: 10px;
  }
  .input{
    margin: 0px 10px;
  }
  .workSubContainer{
    flex-direction: column;
  }
  .workSubContainer div{
    justify-content: end;
  }
  .projectContainer{
    flex-direction: column-reverse;
  }
  .projectSubContainer{
    width: 100% !important;
  }
  .left{
    justify-content: flex-start;
  }
  .menu{
    display: none;
  }
  .head-sub-container{
    display: none;
  }
  .menu-icon{
    display: flex;
  }
  .workPage-h1{
    font-size: 30px;
    padding-left: 5%;
  }
  .workpage-h3 {
    font-size: 20px;
  }
  .workpage-h3 span{
    font-size: 20px !important;
  }
  .workpage-p {
    font-size: 15px;
}
.grid-1 p {
  width: 100%;
}
.grid-4.align-items-end{
  align-items: start !important;
}
.myproject-grid {
  padding: 1%;
  grid-template-columns: 1fr;
  grid-template-rows: none;
}

.grid-1 { grid-area: auto; }
.grid-2 { grid-area: auto; }
.grid-3 { grid-area: auto; }
.grid-4 { grid-area: auto; }
.grid-5 { grid-area: auto; }
.grid-6 { grid-area: auto; }

.grid-1-img,.grid-2-img,.grid-3-img,.grid-4-img{
  width: 100%;
}
.grid-4 .h-75{
  height: 100% !important;
}

.grid-4.pe-5{
  padding-right: 0px !important;
}
.grid-1 p{
  margin-left: 0px;
}
.castt{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.creww{
  justify-content: center;
}
.cast h3{
  text-align: center !important;
}
.productionContainer{
  height: 750px;
  padding-bottom: 20px;
}
.starSide{
  flex-wrap: wrap;
}
.movie-carousel-dots {
  bottom: 20px;
}
}}


.curpointer{
  cursor: pointer;
 
}

.curpointer:hover{
  transform: scale(1.2);
}