@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
body {
  background-color: rgb(0, 0, 0);
}
img {
  max-width: 100%;
  height: auto;
}
nav .toggle {
  position: absolute;
  top: 9px;
  right: 10%;
  width: 40px;
  height: 33px;
  background: transparent;
  z-index: 2;
  cursor: pointer;
  text-align: center;
}
nav .toggle span {
  display: block;
  width: 90%;
  height: 1px;
  background: rgb(255, 255, 255);
  position: absolute;
  transform: translateY(-50%);
  transition: all 1s ease 0s;
}
nav .toggle span:nth-of-type(1) {
  top: 25%;
}
nav .toggle span:nth-of-type(2) {
  top: 50%;
}
nav .toggle span:nth-of-type(3) {
  top: 75%;
}
nav .toggle.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
nav .toggle.active span:nth-of-type(2) {
  right: 0px;
  opacity: 0;
}
nav .toggle.active span:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}
nav .menu {
  position: absolute;
  right: -100%;
  width: 100%;
  top: 5px;
  height: 40px;
  z-index: 1;
  transition: all 1s ease 0s;
  display: none;
  animation: 1s linear 0s 1 normal none running mymove;
}
nav .toggle.active + .menu {
  right: 10%;
  display: block;
}
@keyframes mymove {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
nav .menu ul {
  position: relative;
  float: right;
  display: flex;
  right: 3%;
  margin: 0px;
  padding: 0px;
}
nav .menu ul li {
  list-style: none;
  height: 50px;
}
nav .menu ul li a {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  padding: 0px 20px;
  color: rgb(191, 191, 191);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.5s ease 0s;
}
nav .menu ul li:hover a {
  color: rgb(255, 255, 255);
}
.header_logo {
  width: 4%;
  margin-top: 0;
  position: relative;
  left: 5%;
  z-index: 99999;
}
#slider {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100vh;
}
.scroll_show {
  display: none;
}
.scroll_show.scrolled {
  display: block;
  transition: display 200ms linear 0s;
  background: linear-gradient(357deg, #0a0a0a, black);
  height: 60px;
}
.logo_gif.logo_gif_removed {
  opacity: 0;
}
#home {
  padding-top: 50px;
  height: 100vh;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
#about_us {
  padding: 60px 0px;
  height: auto;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
#about_us p {
  color: rgb(219, 219, 219);
}
#services {
  padding-top: 50px;
  height: auto;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
#studio {
  margin: 60px 0;
  height: auto;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  padding: 0;
}
#work {
  padding-top: 50px;
  height: auto;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
#extra {
  padding-top: 50px;
  height: 35vh;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
.height_100vw {
  height: 100vw;
}
.height_50vw {
  height: 50vw;
}
.logo_gif {
  height: 65%;
  object-fit: cover;
  margin: 0px auto;
  position: relative;
  top: 70%;
  width: 20%;
  left: 40%;
  transition: all 0.5s ease 0s;
  z-index: 99;
}


.Main_bg::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.photo {
  position: relative;
  top: -430px;
  width: 100%;
  height: 100%;
}
.bg-black {
  background-color: rgb(0, 0, 0);
}
.sidenav-bar .navigation li:hover > a {
  color: rgb(0, 0, 0) !important;
}
.lower-content h4 {
  font-weight: bolder;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
}
.PBM_social-media {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  width: 99%;
  text-align: center;
  z-index: 99;
}
.PBM_social-media_btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #333;
  margin: 10px;
  border-radius: 50%;
  box-shadow: rgb(63 1 255 / 35%) 0px 5px 15px -5px;
  color: rgb(52, 152, 219);
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
}
.PBM_social-media_btn i {
  line-height: 60px;
  font-size: 26px;
  transition: all 0.2s linear 0s;
  color: #fff;
}
.PBM_social-media_btn:hover i {
  transform: scale(1.3);
  color: rgb(241, 241, 241);
}
.PBM_social-media_btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgb(0 0 0);
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
.PBM_social-media_btn:hover::before {
  animation: 0.7s ease 0s 1 normal none running aaa;
  top: -10%;
  left: -10%;
}
@keyframes aaa {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: 10%;
    top: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}
.tidel {
  filter: invert(1);
  width: 65%;
  height: auto;
  padding: 13px 0;
  transition: all 0.2s linear 0s;
}
.PBM_social-media_btn:hover .tidel {
  transform: scale(1.2);
}
.PBM_social-media_btn i {
  width: 50px;
  height: 50px;
}
.PBM_social-media_btn i.fa-spotify:hover {
  -webkit-box-shadow: #009534 0 0 10px 0;
  box-shadow: #009534 0 0 10px 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00b540),
    to(#191414)
  );
  background: -o-linear-gradient(#00b540, #191414);
  background: linear-gradient(#00b540, #191414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.PBM_social-media_btn i.fa-apple:hover {
  -webkit-box-shadow: #999090 0 0 10px 0;
  box-shadow: #999090 0 0 10px 0;
  color: #c8d4dd;
}
.PBM_social-media_btn i.fa-soundcloud:hover {
  -webkit-box-shadow: #9b3200 0 0 10px 0;
  box-shadow: #9b3200 0 0 10px 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f80),
    to(#f30)
  );
  background: -o-linear-gradient(#f80, #f30);
  background: linear-gradient(#f80, #f30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.PBM_social-media_btn i.fa-facebook-f:hover {
  -webkit-box-shadow: #1a556c 0 0 10px 0;
  box-shadow: #1a556c 0 0 10px 0;
  color: #33a3f3;
}
.PBM_social-media_btn i.fa-youtube:hover {
  -webkit-box-shadow: #d10303 0 0 10px 0;
  box-shadow: #d10303 0 0 10px 0;
  color: red;
}
.PBM_social-media_btn i.fa-instagram:hover {
  -webkit-box-shadow: #7e7e7e 0 0 10px 0;
  box-shadow: #7e7e7e 0 0 10px 0;
  background: -o-radial-gradient(
    30% 107%,
    circle,
    #fdf497 0,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.PBM_social-media_btn i.fa-twitter:hover {
  -webkit-box-shadow: #438aa7 0 0 10px 0;
  box-shadow: #438aa7 0 0 10px 0;
  color: #1da1f2;
}
.rowflex {
  display: flex;
  flex-wrap: wrap;
}
.h-20_vw {
  height: 20vw;
}
.services-carousel .owl-stage {
  display: flex;
  flex-wrap: wrap;
}
.services-carousel .owl-stage .owl-item {
  display: flex;
}
.service-block h3 {
  padding: 0px;
}
.service-block .inner-box {
  width: 100%;
}
.service-block .text.pbm_serv {
  min-height: 170px;
  text-align: left;
}
.service-block .text.pbm_serv ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.service-block .text.pbm_serv ul li {
  list-style-type: disc;
  margin-left: 30px;
}
.service-block .text.pbm_serv ul li::marker {
  color: rgb(255, 255, 255);
}
.pbm_btn:hover {
  box-shadow: rgb(0, 0, 0) 0px 0px 10px -3px inset;
  background-color: rgb(38, 38, 38) !important;
  color: rgb(255, 255, 255) !important;
}
.sec-title .float-text.r_0 {
  right: 0px !important;
}
.pbm_fade {
  max-width: 100%;
  height: auto;
  margin: 0px auto;
  width: 100%;
}
.pbm_fade img.pbm_fade_img {
  width: 100%;
}
.pbm_fade_bg::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) -100px,
    rgb(0, 0, 0) 800px
  );
}
.about-me .info-column ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.about-me .info-column ul li {
  list-style: square;
  margin-left: 10px;
}
.about-me .info-column ul li p {
  font-size: 16px;
  line-height: 1em;
  color: rgb(170, 170, 170);
  margin-bottom: 10px;
}
.content-box-a {
  position: relative;
  height: 80vh;
  width: 100%;
  display: table;
  vertical-align: middle;
  margin-bottom: 30px;
}
.sec-title-a {
  position: relative;
  padding-top: 0px;
  margin-bottom: 20px;
}
.search-box {
  width: 100%;
  float: left;
  text-align: center;
  padding: 28px;
  margin-top: 40px;
}
.box {
  width: 60%;
  padding: 10px 19px;
  border-radius: 36px;
  box-shadow: rgb(51, 51, 51) 0px 2px 8px 4px;
  font-size: 15px;
  font-weight: 500;
}
.event-text {
  width: 100%;
  float: left;
  padding-top: 20px;
  padding-bottom: 20px;
}
.event-text h4 {
  font-size: 38px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  padding: 10px 0px;
}
.event-text p {
  font-size: 17px;
  color: rgb(255, 255, 255);
  padding: 10px 0px;
}
.read-more-btn {
  width: 100%;
  float: left;
  margin-top: 10px;
  margin-bottom: 20px;
}
.read-more-btn a {
  background: rgb(255, 255, 255);
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
}
.about-me .info-column ul li p:nth-child(10),
.about-me .info-column ul li p:nth-child(2),
.about-me .info-column ul li p:nth-child(3),
.about-me .info-column ul li p:nth-child(4),
.about-me .info-column ul li p:nth-child(5),
.about-me .info-column ul li p:nth-child(6),
.about-me .info-column ul li p:nth-child(7),
.about-me .info-column ul li p:nth-child(8),
.about-me .info-column ul li p:nth-child(9) {
  font-size: 14px;
  padding-left: 15px;
}
.p0 {
  padding: 0px !important;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0px;
  overflow-wrap: break-word;
  background-color: rgb(18, 18, 18);
  background-clip: border-box;
  border: none;
}
.card .face {
  width: 100%;
  height: auto;
  transition: all 0.5s ease 0s;
}
.card .face .btn {
  border: none !important;
  background: rgb(255, 255, 255) !important;
  color: rgb(18, 18, 18) !important;
  box-shadow: rgb(0, 0, 0) 0px 0px 20px -6px inset !important;
}
.card .face .btn:hover,
.card .face .btn:active {
  background: rgb(18, 18, 18) !important;
  box-shadow: rgb(0, 0, 0) 0px 0px 10px -6px inset !important;
  color: rgb(94, 94, 94) !important;
}
.card .face.face1 {
  position: relative;
  background: rgb(18, 18, 18);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(0px);
  box-shadow: rgb(0, 0, 0) 0px 0px 20px -4px inset;
}
.card:hover .face.face1 {
  background: rgb(18, 18, 18);
  transform: translateY(0px);
}
.card .face.face1 .content {
  opacity: 0.2;
  transition: all 0.5s ease 0s;
}
.card:hover .face.face1 .content {
  opacity: 1;
}
.card .face.face1 .content img {
  max-width: 100px;
}
.card .face.face1 .content h3 {
  margin: 10px 0px;
  padding: 0px;
  text-align: center;
  font-size: 1.5em;
}
.card:hover .face.face1 .content h3 {
  color: rgb(255, 255, 255);
}
.card .face.face2 {
  position: relative;
  background: rgb(18, 18, 18);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
  transform: translateY(-260px);
  height: 140px;
  top: 30px;
}
.card .face.face3 {
  position: relative;
  background: rgb(18, 18, 18);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transform: translateY(60px);
}
.card:hover .face.face2 {
  transform: translateY(-68px);
  background: rgb(18, 18, 18);
}
.card:hover .face.face3 {
  transform: translateY(-70px);
}
.card .face.face2 .content p {
  margin: 0px;
  padding: 0px;
}
.card .face.face2 .content a {
  margin: 15px 0px 0px;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: rgb(51, 51, 51);
  padding: 5px;
  border: 1px solid rgb(51, 51, 51);
}
.card .face.face2 .content a:hover {
  background: rgb(51, 51, 51);
}
.short-text {
  display: none;
}
.caption-box .read-more {
  color: rgb(255, 255, 255) !important;
}
.caption-box .read-more:hover {
  color: rgb(51, 51, 51) !important;
}
.top_200 {
  position: relative;
  top: 200px;
}
.url_hvr {
  transition: all 0.5s ease 0s;
  padding: 0px 20px;
}
.url_hvr:hover {
  color: rgb(255, 255, 255);
}
.pbm_about_h_620 {
  overflow: hidden;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  box-shadow: rgb(0, 0, 0) 0px 0px 20px -5px inset;
  background: rgba(1, 5, 10, 0.44);
  border-radius: 10px;
  border-bottom: 5px solid rgb(24, 24, 24);
  height: 50vh;
  min-height: -webkit-fill-available;
}
.pbm_about_h_620::-webkit-scrollbar {
  width: 5px;
  cursor: pointer;
}
.pbm_about_h_620::-webkit-scrollbar-track {
  box-shadow: rgb(90, 90, 90) 0px 0px 1px inset;
  border-radius: 10px;
  cursor: pointer;
}
.pbm_about_h_620::-webkit-scrollbar-thumb {
  background: rgb(24, 24, 24);
  border-radius: 10px;
  cursor: pointer;
}
.pbm_about_h_620::-webkit-scrollbar-thumb:hover {
  background: rgb(25, 25, 25);
  cursor: pointer;
}
.event_list {
  padding: 10px 0px;
  text-align: left;
}
.event_list ul {
  margin: 0px;
  padding: 0px;
}
.event_list ul li {
  margin: 0px 0px 0px 20px;
  padding: 0px;
  list-style: circle;
}
.event_list ul li h5 {
  font-size: 1.2rem;
  color: rgb(175, 175, 175);
}
.event_list ul li h5 a {
  color: rgb(175, 175, 175);
  transition: all 0.5s ease 0s;
  font-size: 1.2rem;
}
.event_list ul li h5 a:hover {
  color: rgb(255, 255, 255);
  padding-left: 10px;
}
.btn-close {
  width: 10px;
  height: 10px;
  color: rgb(255, 255, 255);
  background: rgb(0 0 0);
  border-radius: 5px;
  border: 1px solid rgb(205 244 4);
  line-height: 10px;
  transition: 0.5s;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
  background: #cdf404;
}
.modal-title {
  margin-bottom: 0px;
  line-height: 1.5;
  color: rgb(51, 51, 51);
  font-family: sans-serif;
  letter-spacing: 1px;
}
@-webkit-keyframes slideIn {
  0% {
    bottom: -300px;
    opacity: 0;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    bottom: -300px;
    opacity: 0;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-body {
  padding: 0px 0px 0.5rem;
}
.event_detail .event_detail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.event_detail .event_content {
  padding: 10px;
}
.about_img {
  width: 100%;
  height: 500px;
  position: relative;
  color: white;
  text-align: center;
}
.about_img img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  border-radius: 5px;
  width: 100%;
  height: auto;
  box-shadow: rgb(255, 255, 255) 0px 0px 10px -6px;
}
.about_img .overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 20px;
  left: -20px;
  z-index: 98;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 5px;
}
#about_us h4,
#services h4,
#studio h4,
#work h4,
#extra h4 {
  font-family: sans-serif;
  font-size: 3rem;
}
.work_600 {
  overflow: hidden;
  padding: 10px 20px;
  box-shadow: rgb(0, 0, 0) 0px 0px 20px -5px inset;
  background: rgba(1, 5, 10, 0.44);
  border-radius: 10px;
  border-bottom: 5px solid rgb(24, 24, 24);
  height: 70vh;
  min-height: -webkit-fill-available;
  width: 100%;
}
.work_600 h3 {
  position: relative;
  top: calc(50% - 15px);
}
#services h4 {
  padding-bottom: 40px;
}
#studio h4 {
  padding-top: 30px;
}

/* Studio Start */
#studio {
  position: relative;
}
#studio .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  max-width: 45%;
  transition: 0.5s ease;
  background-color: #000000;
  background: linear-gradient(90deg, rgb(13 0 106 / 72%) 30%, black 90%);
}
.studio {
  position: relative;
  padding: 0 10px;
}
.studio h5 {
  color: #fff;
  margin-top: 10px;
}
.studio ul {
  margin: 10px 0;
  padding: 0;
}
.studio ul li {
  list-style: disc;
  margin-bottom: 5px;
  font-size: 0.8rem;
  margin-left: 30px;
}
.studio ul li p {
  color: #adadad;
  margin: 0;
}
.studio ul li p strong {
  color: #fff;
}
/* Studio End */

.padding {
  padding: 20px;
}

/* Form Start */
.modal {
  margin: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);


  position: fixed;
  z-index: 1055;
  display: none;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
#serviceModal .form-group {
  margin-bottom: 20px;
}
#serviceModal .modal-title {
  color: #CDF404;
}
#serviceModal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #000;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

#serviceModal .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ddd;
  background-color: #000;
  background-clip: padding-box;
  border: 1px solid #2a2a2a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#serviceModal .form-control::placeholder {
  color: #ddd;
}
#serviceModal .form-control:focus {
  box-shadow: #cdf404 0px 0px 0px 0.05rem;
}
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #ddd;
  -webkit-text-fill-color: #ddd;
  transition: #333 5000s ease-in-out 0s !important;
}
/* Form End */

.ml-15 {
  margin-left: 15px !important;
}

@media screen and (max-width: 1000px) {
  #gallery {
      width:100%;
  }
}

@media screen and (max-width: 600px) {
  #gallery {
      height:300px;
  }
}

#gallery {
  width:100%;
  height:100%;
}