:root {
  --width: 33%;
  --gap: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  /* for touch screen */
  touch-action: none; 
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');

*, *:before, *:after {
	box-sizing: border-box;
	position: relative;
	letter-spacing: 0.04em;
}
body { 
  font-family: 'Montserrat', sans-serif;
  background-color: #FEFEFE;
  overflow-x: hidden;
}
.spacer {
  height:90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 {
  font-size: 3rem;
  color: #000;
}
.section {
  height: auto;
  width: 100%;
  position: relative;
  padding: 0;
  overflow-x: hidden;
}
section.fullheight {
  width: 100vw;
  height: 96vh;
  scroll-snap-align: start;
  overflow: hidden;
}
.desktop1 {
  display: flex;
}
.bgg {
  background: url(../image/banner1.jpg);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.intro__img {
  position: relative;
  width: 100%;
  max-width: 80%;
  height: auto;
}
.intro__img--1 {
  z-index: 2;
  right: -11%;
  bottom: 1%;
}
.intro__img--2 {
  z-index: 1;
  left: 2%;
  bottom: -118px;
  max-width: 167px;
}


/* ---------------------- */
.portfolio {
  width: 100%;
  height: 93vh;
  display: flex;
  flex-wrap: nowrap;
  background-color: #1F242D;
  overflow: hidden;
}
.portfolio_title {
	position: absolute;
	top: 12%;
	left: 10%;
	font-size: 24rem;
	letter-spacing: 0;
	-webkit-text-stroke-color: #343A42;
	display: inline-block;
}
.text-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff3b;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  aling-content: center;
  justify-content: center;
  overflow: hidden;
}



/* ---------------- */
.card-digital {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #111;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#drag-container, #spin-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateX(-10deg);
          transform: rotateX(-10deg);
}
/* #drag-container img, */
#spin-container div, #drag-container video {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  line-height: 200px;
  font-size: 50px;
  text-align: center;
  -webkit-box-shadow: 0 0 8px #fff;
  box-shadow: 0 0 8px #fff;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0005);
}
#spin-container img{
  position: absolute;
  top: 0;
  left: 0;
}
#spin-container h2{
  position: absolute;
  bottom: 0;
  color: #0f0f0f;
  margin: 0;
  font-size: 15px;
  padding: 10px;
  text-align: center;
  width: 100%;
  background: white;
}
#drag-container img:hover, #drag-container video:hover {
  -webkit-box-shadow: 0 0 15px #fffd;
          box-shadow: 0 0 15px #fffd;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0007);
}

#drag-container p {
  font-family: Serif;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotateX(90deg);
          transform: translate(-50%,-50%) rotateX(90deg);
  color: #fff;
}

#ground {
  width: 900px;
  height: 900px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotateX(90deg);
          transform: translate(-50%,-50%) rotateX(90deg);
  background: -webkit-radial-gradient(center center, farthest-side , #9993, transparent);
}

#music-container {
  position: absolute;
  top: 0;
  left: 0;
}
.mail a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}
.js-title1.abc {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  color: black;
  text-transform: capitalize;
  margin: 16px 0;
}
/* .mail a:hover{
  color: #fbca01;
} */
.social-icon svg:hover {
    background: #ffffff;
    scale: 1.1;
    transition: scale .5s ease;
    transform: rotate(-6deg);
    color: #fbca01;
}

.social-icon svg {
    cursor: pointer;
    border-radius: 10px;
    background: #fbca01;
    padding: 5px;
    margin: 0 12px;
    margin-bottom: 13px;
    border: 2px dotted #5c3907;
    color: white;
}
@-webkit-keyframes spin {
  from{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  } to{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spin {
  from{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  } to{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@-webkit-keyframes spinRevert {
  from{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  } to{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes spinRevert {
  from{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  } to{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* ----------------------------------------------------------------- */
.show1{
  z-index: 999;
  display: none;
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
}
.show1 .overlay{
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 84%);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
}
.show1 .img-show {
  /*width: 600px;
  height: auto;*/
  background: white;
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%,0);
  padding: 10px;
  border-radius: 27px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 8px #fff;
  box-shadow: 0 0 8px #fff;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #00000024);
}
.show1 .img-show a{text-decoration: none;
}
.show1 .img-show h2{
  font-size: 18px;
  color:#0f0f0f; text-decoration: none;
}
.show1 .img-show h2:hover{
  color: #fbca01;
  cursor: pointer;
}
.img-show span{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
  background: red;
  color: white;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: -1px 1px 5px white;
}
.img-show img{
  /*width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;*/
  height: 430px;
}
.flex{display: flex;align-items:center;justify-content:center;height: 100%;}
/*End style*/

section.fullheight2 {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
}
.desktop1 {
  display: flex;
}
.bgg2 {
  background: url(../image/banner2.jpg);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}  
.about-count-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-count-wrapper .count-block {
  margin: 20px;
  text-align: center;
}
.about-count-wrapper .count-block .count-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  border: 5px solid #fff;
  background-color: #FFEB3B;
  font-weight: 800;
}
.about-count-wrapper .count-block h4 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 11px;
}
.about-count-wrapper .count-block .count-circle h2 {
  font-weight: 800;
} 
/* -------------------------------------------------------------------- */
@media only screen and (max-device-width: 1200px){
  .intro__img--1 {
      z-index: 2;
      right: -11%;
      bottom: 1%;
      transform: translate(10px, 10px) !important;
  }
  }
  @media only screen and (max-device-width: 768px){
      .intro__img--2 {
      display: none;
  }
  .col-rev{
    flex-direction: column-reverse;
  }
  .portfolio_title {
    position: absolute;
    top: 5%;
    left: 10%;
    font-size: 6rem;
    letter-spacing: 0;
    -webkit-text-stroke-color: #343A42;
    display: inline-block;
}
  /* .desktop, .desktop1{display: none;} */
  .mobile{display:block}
  section.fullheight, section.fullheight.first, section.fullheight2 {
      height: 87vh;
      display: flex;
      align-items: center;
  }
  #change {
      position: absolute;
  }
  .slide-sec {
      position: absolute;
  }
  .h-96 {
      height: 38px;
  }
  .js-title1 {
      font-size: 30px;
  }
  .about-count-wrapper .count-block .count-circle {
     
      width: 86px;
      height: 86px;
    
  }
  .about-count-wrapper .count-block h4 {
      font-weight: 600;
      font-size: 13px;
      margin-top: 9px;
  }
  .homepage.log{
      position: absolute;
  }
  
  }
  .desktop{display: flex;}
  .mobile{display:none}
    @media (max-width: 600px) {
      .carousel {
        transform: rotateX(-10deg) scale(.6) translateY(-60px);
      }
      .desktop{display: none;}
  .mobile{display:block}
    }

    

  /* --------------------------------------------------mobile------responsive------------------------------------------------ */

  .slider {
    margin-bottom: 30px;
    position: relative;
  }
  .slider .owl-item.active.center .slider-card {
    transform: scale(1.15);
    opacity: 1;
    background: #010101; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #FFEB3B, #f9e427); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #000000, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
  }
  .slider-card {
    background: #fff;
    padding: 0px 0px;
    margin: 38px 15px 33px 3px;
    border-radius: 11px;
    box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
    transform: scale(0.9);
    opacity: 0.5;
    transition: all 0.3s;
  }
  .slider-card img {
    border-radius: 5px 5px 0px 0px;
  }
  .owl-nav .owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    opacity: 1;
    font-size: 30px !important;
    z-index: 1;
  }
  .owl-nav .owl-next {
    position: absolute;
    top: calc(50% - 25px);
    right: 0;
    opacity: 1;
    font-size: 30px !important;
    z-index: 1;
  }
  .owl-dots {
    text-align: center;
  }
  .owl-dots .owl-dot {
    /* height: 10px;
    width: 10px;
    border-radius: 10px;
    background: #ccc !important;
    margin-left: 3px;
    margin-right: 3px;
    outline: none; */
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5em;
    margin-right: 0.8em;
    margin-bottom: 0.5em;
    border-right: 0.4em solid transparent !important;
    border-bottom: 0.7em solid rgb(0, 0, 0) !important;
    border-left: .6em solid transparent !important;
    font-size: 24px;
    box-shadow: 3px 8px 9px #00000066;
  }
  .owl-dots .owl-dot::before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.3em;
    left: -0.9em;
    border-right: 0.9em solid transparent;
    border-bottom: 0.6em solid rgb(0, 0, 0);
    border-left: 0.7em solid transparent;
    transform: rotate(-35deg);
  }
  .owl-dots .owl-dot:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.3em;
    left: -0.8em;
    border-right: 0.8em solid transparent;
    border-bottom: 0.6em solid rgb(0, 0, 0);
    border-left: 0.8em solid transparent;
    transform: rotate(35deg);
  }
  

  
  /* .owl-dots .owl-dot.active {
    background: #FFEB3B !important;
  } */
  .owl-dots .owl-dot.active::before, .owl-dots .owl-dot.active{
    border-bottom: 0.6em solid #FFEB3B !important;
  }
  .owl-dots .owl-dot.active::after{
    border-bottom: 0.6em solid #FFEB3B;
  }
.slider-card h2{
  padding: 10px;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 767px) {

.show .img-show {
  background: white;
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%,0);
  padding: 10px;
  border-radius: 27px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 8px #fff;
  box-shadow: 0 0 8px #fff;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #00000024);
}
.img-show img {
  height: 230px;
}
}
.fullheight {
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
}
.footer {
  background-color: #0d6efd;
  color: #fff;
  padding: 10px;
}

  /* --------------------------------------------- */