* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

body {
  color: #fff;
  background-color: #1d1d1d;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-family: 'Sora', sans-serif;
  overflow-x: hidden !important;
  background: linear-gradient(135deg, #1d1d1d, #212121, #1e1e1e);
  background-size: 200% 200%;
  animation: bodyPulse 12s ease-in-out infinite;
}
@keyframes bodyPulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* *** */
.fs-10{
  font-size: 10px;
}
.fs-12{
  font-size: 12px;
}
.fs-14{
  font-size: 14px;
}
.fs-15{
  font-size: 15px;
}
.fs-16{
  font-size: 16px;
}
.fs-18{
  font-size: 18px;
}
.fs-20{
  font-size: 20px;
}
.h-218{
  height: 218px;
}
.ob-ct{
  object-fit: contain;
}
.ob-cvr{
  object-fit: cover;
}
/**/
.header-logo, .footer-logo{
  width: 100px;
}
header .navbar{
  background-color: #1d1d1d;
  border-bottom: 1px solid #313131;
  padding: 10px 0;
}
.header-btn{
  padding: 10px 20px;
}
/**/
.section{
  position: relative;
  padding: 50px 50px;
  overflow: hidden;
}
.section.hero-section{
  position: relative;
  padding: 120px 50px;
}
.sub-title h6{
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.title h1{
  font-weight: 200;
  font-size: 70px;
  line-height: 1.3;
}
.animated-text{
  background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #ff6ec4);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bbytextAnimation 8s ease infinite;
  display: inline-block;
  font-weight: 500;
}
@keyframes bbytextAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/**/
.portfolio-section .nav{
  gap: 5px;
}
.portfolio-section .nav a{
  color: #a2a2a2;
  font-size: 16px;
}
.portfolio-section .nav .nav-item{
  border: 1px solid #474747;
  border-radius: 5px;
}
.portfolio-section .nav-link.active{
  color: #fff;
}
.portfolio-section .item {
  transition: opacity 0.5s ease;
  opacity: 1;
}
.portfolio-section .item.d-none {
  display: none;
}
.portfolio-section .item.fade-in {
  opacity: 1;
}
.port-card.card{
  background: transparent;
  border-color: #434343;
  margin-bottom: 20px;
}
.port-card .card-footer{
  border-color: #434343;
}
.port-card .card-body{
  position: relative;
  padding: 0;
}
.port-card .card-footer{
  text-align: center;
}
.port-card .card-footer a{
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
.port-card.card img{
  border-radius: 5px;
}
.port-card .cat-tag{
  position: absolute;
  top: 10px;
  right: 0;
  background: firebrick;
  width: auto;
  color: #fff;
  padding: 5px 5px;
  text-transform: uppercase;
  line-height: 1;
  border-top-left-radius: 5px;
  box-shadow: 0px 0px 3px #000;
}
/**/
.footer-section{
  position: relative;
  padding: 10px 0 0px 0;
  border-top: 1px solid #262626;
}
/**/
.marquee {
  position: relative;
  top: 0;
  transform: rotate(-3deg);
  left: 0;
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 20px;
  overflow: hidden;
  color: transparent !important;
  -webkit-text-stroke: 1px #5f5f5f;
}
.marquee_group {
  display: flex;
  flex-shrink: 0;
  gap: 0px;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  animation: scroll 25s linear infinite;
}
.marquee span {
  font-family: "Sora", sans-serif;
  font-size: 10vw;
  font-weight: 500;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 60px));
  }
}
/**/
@media (min-width: 10px) and (max-width: 991px) {
  .section.hero-section {
    padding: 60px 15px;
  }
  .section{
    padding: 20px 10px;
  }
  .title h1{
    font-size: 35px;
  }
  .portfolio-section .nav a{
    font-size: 14px;
    padding: 5px 8px;
  }
}
