/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family:Arial, verdana, sans-serif; */
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #1a1a1a;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #181818;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #303030;
}

body{
  min-height: 100vh;
  background-color: #000000;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  height: 70px;
  width: 100%;
  z-index: 99;
  color: white;
}


nav .nav-bar{
  height: 100%;
  width: 100%;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  /* background: red; */
  padding: 0 35px;
  transition: background-color 0.2s;
  background-image: linear-gradient(#00000049,#0000000b);
}

nav .nav-bar:hover {
  background-color:rgba(18, 18, 18, 0.695);
}
.nav-bar .logo a{
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  letter-spacing: 0.4cm;
  /* z-index: 1; */
}
nav .nav-bar .nav-links{
  line-height: 70px;
  height: 100%;
  /* mix-blend-mode: difference; */
  /* z-index: 100; */
}
nav .nav-bar .links{
  display: flex;
}
ul{
  display: block;
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}
nav .nav-bar .links li{
  position: relative;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
  display: inline-block;
  /* mix-blend-mode: difference;
  color: #000000;
  color: #ffffff; */
}

nav .nav-bar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02cm;
}
/* nav .nav-bar .links li a:hover{
  transition: all 0.2s;
  color: rgb(0, 110, 255);
} */

.links li:hover .Artwork-arrow,
.links li:hover .VFX-arrow{
  transform: rotate(180deg);
  cursor: pointer;
  }

nav .nav-bar .links li .arrow{
  /* background: red; */
  width: 22px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .nav-bar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #000000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: none;
  opacity: 0.8;
  z-index: 2;
}
nav .nav-bar .links li:hover .Artwork-sub-menu,
nav .nav-bar .links li:hover .VFX-sub-menu{
  display: block;
}
.nav-bar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-bar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.nav-bar .links li .sub-menu .more-arrow{
  line-height: 40px;
}

.nav-bar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.nav-bar .home-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.nav-bar .home-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-bar .nav-links .sidebar-logo{
  display: none;
  cursor: pointer;
}
.nav-bar .bx-menu{
  display: none;
}
#navbar{
  -webkit-transition: opacity 0.3 ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.scroll {
  animation: scrollnav 5s ease;
  background-color:rgb(18, 18, 18);
}
.space-vfx{
  display: block;
}
nav .nav-bar .links li a:hover{
  transition: all 0.2s;
  color: rgb(255, 45, 87);
}
nav .nav-bar .logo a:hover{
  transition: all 0.2s;
  color: rgb(255, 45, 87);
}
.nav-bar .home-box i:hover{
transition: all 0.2s;
color: rgb(255, 45, 87);
}
@media (max-width:800px){
nav .nav-bar .logo a:hover{
    transition: all 0.2s;
    color: rgb(255, 45, 87);
  }
nav .nav-bar .links li a:hover{
    transition: all 0.2s;
    color: rgb(255, 45, 87);
  }
.nav-bar .home-box i:hover{
  transition: all 0.2s;
  color: rgb(255, 45, 87);
}
}
@keyframes scrollnav {
  0% {
  background-color: transparent;
  }
  5%{
    background-color:rgb(18, 18, 18);
  }
}
@media (max-width:920px) {

  nav .nav-bar{
    max-width: 100%;
    padding: 0 25px;
  }
  /* .Artwork_Arrow::after{
    content: "\a";
    white-space: pre;
  } */
  nav .nav-bar .logo a{
    font-size: 17px;
  }
  nav .nav-bar .links li{
    padding: 0 10px;
    padding-bottom: 5px;

  }
}
@media (max-width:980px) {
  nav .nav-bar .logo a{
    font-size: 12px;
  }
}
@media (max-width:800px){
  .disable-scrolling{
    overflow: hidden;
  }
  .space-vfx{
    display: none;
  }
  .sub-menu{
    float: right;
    transition: 2s;
  }
  .nav-bar .bx-menu{
    display: block;
  }
  nav .nav-bar .links li a{
    font-size: 15px;
    font-weight: 100;
    letter-spacing: 0.15cm;
    text-transform: uppercase;
  }
  nav .nav-bar .links .sub-menu li a{
    font-size: 15px;
  }
  nav .nav-bar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    margin: auto;
    /* text-align: center; */
    width: 100%;
    background:  #000000;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;

  }
  .nav-bar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
    letter-spacing: 0.1cm;
  }
    .sidebar-logo  i,
    .nav-bar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .nav-bar .links{
    display: block;
    margin-top: 20px;
  }
  nav .nav-bar .links li .arrow{
    line-height: 40px;
  }
  nav .nav-bar .links li{
    display: block;
  }
  nav .nav-bar .links li .sub-menu{
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .nav-bar .links li .sub-menu li{
    border-bottom: none;

  }
  .nav-bar .links li .sub-menu .more-sub-menu{
    display: none;
    position: relative;
    left: 0;
  }
  .nav-bar .links li .sub-menu .more-sub-menu li{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .Artowrk-arrow,
  .links li:hover .VFX-arrow{
    transform: rotate(0deg);
  }
  .nav-bar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .nav-bar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .nav-bar .links li:hover .Artwork-sub-menu,
  nav .nav-bar .links li:hover .VFX-sub-menu{
    display: none;
    transition-property: display;
    transition-delay: 2s;
    opacity: 0;
  }
  .nav-bar .nav-links.show1 .links .Artwork-sub-menu,
  .nav-bar .nav-links.show3 .links .VFX-sub-menu,
  .nav-bar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
      opacity: 1;
    }
    .nav-bar .nav-links.show1 .links .Artwork-arrow,
    .nav-bar .nav-links.show3 .links .VFX-arrow{
        transform: rotate(180deg);
}
    .nav-bar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .nav-bar .nav-links{
    max-width: 100%;
  }
  nav .nav-bar .logo a{
    letter-spacing: 0.05cm;
  }
}
@media (max-width: 868px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .nav-bar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }
  .nav-bar.show .menu-list{
    left: 0%;
  }
  .nav-bar .menu-list li{
    margin-top: 45px;
  }
  .nav-bar .menu-list li a{
    font-size: 23px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .nav-bar.show .menu-list li a{
    margin-left: 0px;
  }
}
@media (max-width: 380px) {
  .nav-bar .logo a{
    font-size: 12px;
    margin:auto;
    letter-spacing: 0.1cm;
  }
}
@media (max-width: 460px) {
  .nav-bar .logo a{
    font-size: 12px;
    letter-spacing: 0.2cm;
    margin:auto;
    margin: 20px;
  }
  nav .nav-bar .links li a{
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 0.10cm;
    text-transform: uppercase;
  }
  nav .nav-bar .links .sub-menu li a{
    font-size: 10px;
  }
}
@media (max-width:370px){
  nav .nav-bar .nav-links{
  max-width: 100%;
} 
.nav-bar .logo .a{
  font-size: 10px;
  letter-spacing: 0cm;
}
}

.nav-bar{
  width: 100%;
  z-index: 2;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.nav-bar.sticky{
  background: #1b1b1b;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.nav-bar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar .menu-list{
  display: inline-flex;
}
.menu-list li{
  list-style: none;
}
.menu-list li a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-list li a:hover{
  color: crimson;
}
.banner{
  background: url("banner.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about{
  padding: 30px 0;
}
.about .title{
  font-size: 38px;
  font-weight: 700;
}
.about p{
  padding-top: 20px;
  text-align: justify;
}
.icon{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (min-width: 1024px) {
    .slider-wrap{
      height:650px;
    }
}
@media (max-width: 5000px) {
    .slider-wrap{
      height:650px;
    }
}
@media (max-width: 8000px) {
    .slider-wrap{
      height:2550px;
    }
}
@media (max-width: 1230px) {
  .content{
    padding: 0 60px;
  }
}
@media (max-width: 1100px) {
  .content{
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .content{
    padding: 0 30px;
  }
}
@media (max-width: 868px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .nav-bar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }

  .nav-bar.show .menu-list{
    left: 0%;
  }
  .nav-bar .menu-list li{
    margin-top: 45px;
  }
  .nav-bar .menu-list li a{
    font-size: 23px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .nav-bar.show .menu-list li a{
    margin-left: 0px;
  }
}
@media (max-width: 380px) {
  .nav-bar .logo a{
    font-size: 10px;
  }
}