@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;700;800;900&display=swap");
.btn {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid white;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  margin-left: 10px;
}

.btn:hover {
  color: white;
}

.btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #f91942;
  z-index: -1;
  transition: all 1s;
}

.btn:hover::before {
  width: 160%;
}

.cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #f91942;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: white;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #f91942;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* === removing default button style ===*/
.button {
  margin: 20px 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
}

/* button styling */
.button {
  --border-right: 6px;
  --text-stroke-color: rgba(255, 255, 255, 0.6);
  --animation-color: #37FF8B;
  --fs-size: 2em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}

/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}

/* hover */
.button:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  overscroll-behavior: none;
}

#scrollToTop {
  position: fixed;
  bottom: 54px;
  right: 56px;
  cursor: pointer;
  z-index: 1;
}
#scrollToTop svg {
  width: 40px;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.25;
}

main {
  position: relative;
  /* Make sure the parent is relatively positioned */
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/hero-dummy-1.jpg");
  filter: brightness(50%);
  z-index: -2;
}

.typing-text {
  color: white;
  font-size: 30px;
  font-family: sans-serif;
  font-weight: 700;
}

.text {
  color: white;
  border-right: 2px solid red;
  font-size: 30px;
  font-family: sans-serif;
  color: #ff1e00;
  font-weight: 700;
}

@media screen and (width >= 768px) {
  .cursor {
    visibility: visible;
  }
  .typing-text,
  .text {
    font-size: 55px;
  }
}
.spacing {
  margin-top: 2.75rem;
  padding-bottom: 3.5rem;
  padding-top: 8rem;
}

.hero {
  height: 100vh;
}

.hero-img {
  width: 100%;
  height: 70%;
}
.hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.heross {
  width: 100%;
  height: 100%;
}

.hero-video {
  display: none;
  position: relative;
  z-index: -1;
  top: -70px;
}
.hero-video video {
  width: 30%;
  margin: auto;
}

@media screen and (width >= 1024px) {
  .hero-video {
    display: block;
  }
}
.logo {
  position: absolute;
  z-index: -1;
  visibility: hidden;
  transition: transform 0.7s linear;
}
.logo video {
  width: 243px;
}

@keyframes transform {
  from {
    visibility: visible;
    transform: translateX(10vw);
    width: 436px;
  }
  to {
    visibility: visible;
    transform: translateX(0px);
    width: 234px;
  }
}
.fixed-nav {
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  animation: nav 0.3s linear;
  background: #000;
  padding: 20px;
}

nav {
  display: none;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
nav .nav-list {
  flex: 1;
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
nav li {
  cursor: pointer;
  padding: 3px 6px;
  width: auto;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}
nav img {
  width: 60px;
}
nav .active {
  border-bottom: 2px solid red;
}

nav li:hover {
  border-bottom: 2px solid red;
}

@keyframes nav {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (width >= 768px) {
  nav {
    display: flex;
  }
}
#logo-section {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: column;
}

.title h1 {
  text-align: right;
  font-family: Barlow Condensed;
  font-size: 70px;
  letter-spacing: -3px;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  font-weight: 800;
}
.title p {
  text-align: right;
}

@keyframes animate {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@media screen and (width >= 1024px) {
  .title h1 {
    font-size: 200px;
    letter-spacing: -7px;
  }
}
#knowUS {
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-circle {
  width: 170px;
  position: absolute;
  z-index: 999;
  bottom: -80px;
  right: 0;
  margin-bottom: 0;
  margin-right: 0;
  left: 0;
}
.play-circle .play-text {
  width: 200px;
  animation: rotation 15s infinite linear;
}

.icon {
  top: 50%;
  right: 0;
  left: 0;
  margin-left: auto;
  width: 24px;
  position: absolute;
  margin-right: auto;
  margin-top: -12px;
}

.icon::before {
  position: absolute;
  content: "";
  right: -9px;
  top: -12px;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  transform: translate(-30%, -30%);
  border: 1px solid white;
  animation: pulse 2s linear infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 254, 254, 0.875);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.about-text {
  padding-top: 140px;
}
.about-text span {
  color: #ff1e00;
  font-size: 16px;
}
.about-text h3 {
  font-size: 40px;
  line-height: 100px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-weight: 800;
}
.about-text h6 {
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
  color: #676767;
  padding-bottom: 20px;
}

@media screen and (width >= 1300px) {
  .play-circle {
    width: 200px;
    position: absolute;
    z-index: 999;
    bottom: 0;
    right: 0;
    margin-bottom: -130px;
    margin-right: -130px;
  }
  .about-text h3 {
    font-size: 70px;
  }
  .about-text h6 {
    font-size: 20px;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
#project {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.project-main {
  text-align: center;
}
.project-main h6 {
  color: #ff1e00;
  font-size: 18px;
}
.project-main h1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  font-weight: 200;
  font-size: 46px;
  line-height: 80px;
}
.project-main p {
  color: #676767;
  padding: 20px 0;
}

#project-header {
  max-width: 1000px;
}

.words {
  margin: 10px 0;
  display: inline-block;
  height: 55px;
  overflow: hidden;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-weight: 800;
}
.words span {
  display: block;
  animation: spin 8s infinite;
}

.project-main .swiper {
  margin-top: 74px;
}
.project-main .swiper-slide {
  position: relative;
  width: 16.75rem;
  height: 28.125rem;
  transition: all 200ms linear;
  transform: scale(0.8);
  overflow: hidden;
  border-radius: 20px;
}
.project-main .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.project-main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s linear;
  -o-object-position: top center;
     object-position: top center;
}
.project-main .swiper-slide :hover {
  transform: scale(1.1);
}
.project-main.swiper-slide-active {
  transform: scale(1);
}

@media screen and (width >= 786px) {
  .project-main h1 {
    font-size: 81px;
  }
  .words {
    height: 76px;
  }
}
@keyframes spin {
  10% {
    transform: translateY(-112%);
    animation-timing-function: ease-in-out;
  }
  25% {
    transform: translateY(-100%);
    animation-timing-function: ease-in-out;
  }
  35% {
    transform: translateY(-212%);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translateY(-200%);
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: translateY(-312%);
    animation-timing-function: ease-in-out;
  }
  75% {
    transform: translateY(-300%);
    animation-timing-function: ease-in-out;
  }
  85% {
    transform: translateY(-412%);
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(-400%);
    animation-timing-function: ease-in-out;
  }
}
@keyframes Jumpin {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
#reel {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.reel-title {
  padding: 0 20px;
}
.reel-title h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-weight: 900;
}

@media screen and (width >= 768px) {
  .reel-title h1 {
    font-size: 90px;
  }
}
#services {
  display: grid;
  place-items: center;
  margin: auto;
  padding: 20px;
}

#service-header {
  text-align: center;
}
#service-header h6 {
  color: #d32027;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#service-header h3 {
  font-size: 35px;
  font-weight: 200;
  line-height: 90px;
  text-transform: capitalize;
}
#service-header h5 {
  font-size: 17px;
  font-weight: 300;
  line-height: 34px;
  color: #676767;
}
#service-header span {
  font-weight: 500;
}

.services {
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}
.services img {
  margin: auto;
  width: 50px;
  margin-bottom: 20px;
}
.services h3 {
  letter-spacing: 2.5px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.services p {
  color: #7d7d7d;
  line-height: 1.6;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-item {
  padding: 30px 20px;
}

.service-item {
  border: 0 solid;
  outline-offset: 0px;
  text-shadow: none;
  transition: all 150ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
}

.service-item:hover {
  background: #090909;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.art-work-1,
.art-work-2 {
  visibility: hidden;
  position: absolute;
  top: 56px;
  right: 0;
  width: 105px;
  z-index: -1;
  filter: brightness(50%);
  animation: Jumpin 3s infinite linear;
}

.art-work-2 {
  left: 0;
}

@media screen and (width >= 768px) {
  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (width >= 1024px) {
  #service-header h3 {
    font-size: 70px;
  }
  #service-header h5 {
    font-size: 20px;
  }
  .services {
    flex-direction: row;
  }
  .services img {
    width: 75px;
  }
  .services h3 {
    font-size: 22px;
  }
  .service-item {
    padding: 50px 45px;
  }
  .art-work-1,
  .art-work-2 {
    visibility: visible;
  }
}
#team {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.team-title {
  font-size: 50px;
  text-align: center;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.team-title h1 {
  display: inline;
  border-bottom: 6px solid red;
}

.team {
  margin-top: 50px;
  cursor: grab;
}
.team .swiper-slide {
  position: relative;
  width: 16.75rem;
  height: 28.125rem;
  transition: all 200ms linear;
  transform: scale(0.8);
  overflow: hidden;
  border-radius: 20px;
}
.team .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.team .swiper-slide::after {
  content: "";
  display: none;
  position: absolute;
  left: -50%;
  top: -50%;
  height: 200%;
  width: 200%;
  background-color: #fff;
  background-image: url("../assets/images/noise.png");
  filter: brightness(150%);
  animation: noise-animation 1s steps(4) infinite;
  pointer-events: none;
  transition: 1s ease-in-out;
}
.team :hover::after {
  display: block;
}

.team-detail {
  font-family: "Barlow Condensed", sans-serif;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
}
.team-detail p {
  font-weight: 200;
  font-size: 20px;
}
.team-detail h3 {
  font-size: 50px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}
.social-icons a {
  font-size: 31px;
  color: transparent;
  -webkit-text-stroke: 1px #000;
}

.team-2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0)), url("../assets/images/BholaShankarShaw(Founder).jpeg");
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
}

.team-3 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0)), url("../assets/images/MeghaShawHRManager.jpg");
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
}

.team-4 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0)), url("../assets/images/SumitShah.jpg");
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
}

.team-5 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0)), url("../assets/images/unknown.jpeg");
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
}

@keyframes noise-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}
@media screen and (width >= 1024px) {
  #team {
    margin-top: 0;
  }
}
.contact {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cont-list h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 70px;
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  font-weight: 900;
}

.contact-info {
  margin: auto;
  width: 100%;
  text-align: center;
}
.contact-info svg {
  width: 25px;
  display: inline-block;
}
.contact-info > div {
  width: 100%;
  display: flex;
}

.cont-list {
  margin: auto;
  display: table;
}

.cont-list .fa-phone-square-alt {
  font-size: 20px;
}

.cont-list i {
  position: absolute;
  font-size: 18px;
  margin-top: 5px;
}

.cont-list ul li a {
  padding-left: 28px;
}

.cont-list ul li {
  line-height: 40px;
}

.cont-list p {
  padding-left: 35px;
}

#social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px auto;
}
#social-icons svg {
  width: 35px;
  cursor: pointer;
}

footer {
  position: relative;
  width: 100%;
  z-index: -1;
  visibility: hidden;
}

p.copyright {
  position: absolute;
  width: 100%;
  color: #fff;
  line-height: 40px;
  font-size: 0.7em;
  text-align: center;
  bottom: 0;
}

@media screen and (width >= 768px) {
  footer {
    visibility: visible;
  }
}
#preLoader {
  position: fixed;
  background-color: #000;
  height: 100vh;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preLoader video {
  width: 100%;
  max-width: 800px;
}

@keyframes cursorAnim {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.7);
  }
}
@keyframes cursorAnim2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.4);
  }
}
@keyframes cursorAnim3 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(3);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */