body {
  font-family: "Montserrat", sans-serif;
}

.theme-btn {
  display: inline-flex;
  color: white;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 500;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #FFFFFF;
  border-radius: 47px;
  text-decoration: none;
  position: relative;
  transition: all ease-in-out 0.4s;
}
.theme-btn button {
  background: transparent;
  border: transparent;
  color: white;
  font-size: clamp(16px, 1.0416vw, 20px);
}
.theme-btn:hover {
  background-color: #000000;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 12px 100px;
  z-index: 9999;
}
@media (max-width: 991.98px) {
  header {
    padding: 12px 50px 0px;
    background-color: rgba(2, 2, 2, 0.3019607843);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
  }
}
header .navbar-brand {
  font-size: 24px;
  font-weight: 700;
}
header .navbar-brand img {
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .toggle-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 54px;
}
header .toggle-menu .lines {
  display: block;
  width: 54px;
  height: 11px;
  position: relative;
}
header .toggle-menu .lines .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: top 0.15s ease, width 0.15s ease, transform 0.3s ease;
}
header .toggle-menu .lines .line:first-child {
  top: 0;
}
header .toggle-menu .lines .line:last-child {
  bottom: 0;
}
header .toggle-menu:hover .lines .line {
  animation: qode-draw 0.8s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
}
header .toggle-menu:hover .lines .line:last-child {
  animation-delay: 0.2s;
}
header .toggle-menu.opened .lines .line:first-child {
  transform: rotate(45deg);
}
header .toggle-menu.opened .lines .line:last-child {
  top: 0;
  transform: rotate(-45deg);
}

.dialog-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-110%);
  transition: all 1s ease-in-out;
}
.dialog-menu.opened {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}
.dialog-menu.opened .dialog-menu-inner .vstack .nav-item a {
  transform: translateY(0px);
  animation: movedown 0.5s ease-in-out;
  animation-delay: 0.5s;
}
.dialog-menu .dialog-menu-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 200px 100px 50px 100px;
  background-color: #000;
}
@media (max-width: 1199.98px) {
  .dialog-menu .dialog-menu-inner {
    padding: 120px 50px 50px 50px;
  }
}
.dialog-menu .dialog-menu-inner .vstack .nav-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #7A7A7A;
  transition: all 0.2s ease-in-out;
}
.dialog-menu .dialog-menu-inner .vstack .nav-item a:hover {
  color: #fff;
}
.dialog-menu .dialog-menu-inner .vstack .nav-item a:hover svg path {
  stroke: #fff;
  transition: all 0.2s ease-in-out;
}
.dialog-menu .dialog-menu-inner .vstack .nav-item a.active {
  color: #fff;
}
.dialog-menu .dialog-menu-inner .vstack .nav-item a.active svg path {
  stroke: #fff;
}

@keyframes qode-draw {
  0%, 100% {
    -webkit-clip-path: inset(-2px -2px);
    clip-path: inset(-2px -2px);
  }
  42% {
    -webkit-clip-path: inset(-2px -2px -2px 100%);
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -3px -2px);
    clip-path: inset(-2px 100% -3px -2px);
  }
}
@keyframes movedown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
footer {
  background-color: #000 !important;
  color: #fff;
}
footer img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer hr {
  opacity: 1;
}
footer small {
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  footer .footer-bottom .border-end {
    border-right: 0 !important;
  }
}
footer .social-links a svg path, footer .social-links a svg rect {
  transition: all 0.2s ease-in-out;
}
footer .social-links a:hover svg rect {
  fill: #3F72AF;
}

.home-page {
  position: relative;
}
.home-page section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .home-page::before {
    background-size: 100% 100%;
    background-repeat: repeat;
  }
}
.home-page .hero-banner {
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
}
.home-page .hero-banner #heroVideo {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.home-page .hero-banner h1 {
  font-size: clamp(38px, 5.2083vw, 100px);
  font-weight: 700;
  color: #fff;
  margin-top: 50px;
}
.home-page .hero-banner .para {
  padding: 0 10%;
}
@media (max-width: 767.98px) {
  .home-page .hero-banner .para {
    padding: 0 5%;
  }
}
.home-page .we-accept {
  background-image: url("../img/about-us/about-us-1.jpg");
  background-size: 150%;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
}
.home-page .we-accept::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 991.98px) {
  .home-page .we-accept {
    height: auto;
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .home-page .we-accept {
    background-size: cover;
    background-image: url("../img/about-us/about-us-2.jpg");
  }
}
@media (max-width: 575.98px) {
  .home-page .we-accept {
    background-image: url("../img/about-us/about-us-3.jpg");
    padding: 100px 0 50px;
  }
}
.home-page .we-accept.secActive, .home-page .we-accept.prevActive {
  background-size: 100%;
}
.home-page .we-accept .our-partners h3 {
  text-align: center;
  color: #D7E1EB;
  font-size: clamp(24px, 2.1875vw, 40px);
}
.home-page .we-accept .our-partners marquee {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .we-accept .our-partners marquee span {
  margin: 0 10px;
}
.home-page .we-accept .our-partners marquee span img {
  padding: 10px;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 120px;
  width: 160px;
}
.home-page h2 {
  color: #D7E1EB;
  font-size: clamp(32px, 3.645vw, 70px);
  font-weight: 400;
}
.home-page p {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #FFFFFF;
  line-height: clamp(20px, 1.5625vw, 30px);
}
@media (max-width: 767.98px) {
  .home-page p {
    line-height: inherit;
  }
}
.home-page .theme-btn {
  border-radius: 47px;
  padding: 20px 50px 20px 50px;
  border: 1px solid #ffffff;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.home-page .theme-btn:hover {
  background-color: #000000;
}
@media (max-width: 991.98px) {
  .home-page .theme-btn {
    padding: 15px 25px 15px 25px;
  }
}
@media (max-width: 575.98px) {
  .home-page .theme-btn {
    display: inline-block;
    margin: 10px 0;
  }
}

.circlestamp {
  position: fixed;
  bottom: 30px;
  left: 15px;
  z-index: 2;
  transform: scale(0.7) rotate(0deg);
  animation: rotate 3s 1.5s linear infinite alternate-reverse;
}
@keyframes rotate {
  0% {
    transform: scale(0.7) rotate(0deg);
  }
  100% {
    transform: scale(0.7) rotate(275deg);
  }
}
@media (max-width: 767.98px) {
  .circlestamp {
    left: 0;
    bottom: 0;
    transform: scale(0.6);
  }
}
.circlestamp .float {
  display: none;
  position: fixed;
  width: 60px;
  bottom: 70px;
  left: 50px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
@media (max-width: 767.98px) {
  .circlestamp .float {
    bottom: 45px;
    left: 35px;
  }
}
.circlestamp .my-float {
  margin-top: 16px;
}

.scrolldown {
  position: fixed;
  right: 0px;
  bottom: 80px;
  color: #ffffff;
  font-size: clamp(12px, 0.72916vw, 14px);
  font-weight: 400;
  transform: rotate(-90deg);
  z-index: 2;
}
.scrolldown span svg {
  transform: rotate(90deg);
  margin-left: 15px;
  transform: rotate(90deg) translateY(0);
  animation: scrolldown 1s linear infinite;
}
@keyframes scrolldown {
  0% {
    transform: rotate(90deg) translateY(0);
  }
  100% {
    transform: rotate(90deg) translateY(120px);
  }
}

.about-page section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .transforming {
  background-image: url("../img/about-us/about-us-1.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}
@media (max-width: 991.98px) {
  .about-page .transforming {
    height: 100vh;
  }
}
@media (max-width: 767.98px) {
  .about-page .transforming {
    background-image: url("../img/about-us/about-us-2.jpg");
  }
}
@media (max-width: 575.98px) {
  .about-page .transforming {
    background-image: url("../img/about-us/about-us-3.jpg");
    padding: 100px 0 50px;
  }
}
.about-page .transforming::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}
.about-page .features {
  background-image: url("../img/about-us/creativity.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  height: 100vh;
  width: 100%;
  padding-top: 0;
  background-color: rgba(0, 0, 0, 0.9098039216);
}
@media (max-width: 991.98px) {
  .about-page .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
  }
}
.about-page .features .featureBox {
  height: 100vh;
  width: 25%;
  border-right: 0.5px solid #000000;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 13%;
  position: relative;
}
@media (max-width: 991.98px) {
  .about-page .features .featureBox {
    width: 100%;
    height: 50vh;
  }
}
@media (max-width: 575.98px) {
  .about-page .features .featureBox {
    padding-bottom: 0;
  }
}
.about-page .features .featureBox::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  transition: all 0.5s ease-in-out;
}
.about-page .features .featureBox h3 {
  color: #7A7A7A;
  font-size: clamp(20px, 1.666vw, 32px);
  line-height: clamp(24px, 2.1875vw, 40px);
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}
.about-page .features .featureBox p {
  color: #7A7A7A;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.about-page .features .featureBox.active::before {
  background-color: transparent;
}
.about-page .features .featureBox.active h3, .about-page .features .featureBox.active p {
  color: #fff;
}
.about-page .features .buttonContainer {
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .about-page .features .buttonContainer {
    display: none;
  }
}
.about-page h2 {
  color: #D7E1EB;
  font-size: clamp(32px, 3.645vw, 70px);
  font-weight: 400;
}
.about-page p {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #FFFFFF;
  line-height: clamp(20px, 1.5625vw, 30px);
}
@media (max-width: 767.98px) {
  .about-page p {
    line-height: inherit;
  }
}
.about-page .theme-btn {
  border-radius: 47px;
  padding: 20px 50px 20px 50px;
  border: 1px solid #ffffff;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.about-page .theme-btn:hover {
  background-color: #000000;
}
@media (max-width: 991.98px) {
  .about-page .theme-btn {
    padding: 15px 25px 15px 25px;
  }
}
@media (max-width: 575.98px) {
  .about-page .theme-btn {
    display: inline-block;
    margin: 10px 0;
  }
}

section.services {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 99;
  background-size: contain;
  background-position: center;
}
section.services video {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.services .container-fluid {
  position: relative;
  z-index: 2;
}
section.services h1 {
  color: #DBE2EF;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
}
section.services-slide-sec {
  overflow: hidden;
}
section.services-slide-sec .services-slides .services-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 100px 100px 50px 100px;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991.98px) {
  section.services-slide-sec .services-slides .services-slide {
    padding: 15px 15px 50px 15px;
  }
}
section.services-slide-sec .services-slides .services-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
section.services-slide-sec .services-slides .services-slide .slide-content {
  position: relative;
  z-index: 3;
}
section.services-slide-sec .services-slides .services-slide .slide-content p {
  text-align: justify;
}

.services-left-menu {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 112px;
  z-index: 9;
}
@media (max-width: 1199.98px) {
  .services-left-menu {
    display: none;
  }
}
.services-left-menu .vstack a {
  color: #AAAAAA;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.services-left-menu .vstack a:hover {
  color: #fff;
  cursor: pointer;
}
.services-left-menu .vstack a.active {
  color: #fff;
}

@media (max-width: 360px) {
  #digital-marketing {
    background-image: url("../img/services/new/digital-marketing-mobile.jpg");
  }
  #webapp {
    background-image: url("../img/services/new/webapp-mobile.jpg");
  }
  #brand-development {
    background-image: url("../img/services/new/brand-development-mobile.jpg");
  }
  #advertising {
    background-image: url("../img/services/new/ooh-mobile.jpg");
  }
  #cgi-vfx-services {
    background-image: url("../img/services/new/cgi-mobile.jpg");
  }
}
@media (max-width: 767.98px) {
  #digital-marketing {
    background-image: url("../img/services/new/digital-marketing-tab.jpg");
  }
  #webapp {
    background-image: url("../img/services/new/webapp-tab.jpg");
  }
  #brand-development {
    background-image: url("../img/services/new/brand-development-tab.jpg");
  }
  #advertising {
    background-image: url("../img/services/new/ooh-tab.jpg");
  }
  #cgi-vfx-services {
    background-image: url("../img/services/new/cgi-tab.jpg");
  }
  #marketing-consultation {
    background-image: url("../img/services/new/marketing-tab.jpg");
  }
}
@media (min-width: 768px) {
  #digital-marketing {
    background-image: url("../img/services/new/digital-marketing.jpg");
  }
  #webapp {
    background-image: url("../img/services/new/webapp.jpg");
  }
  #brand-development {
    background-image: url("../img/services/new/brand-development.jpg");
  }
  #advertising {
    background-image: url("../img/services/new/ooh.jpg");
  }
  #cgi-vfx-services {
    background-image: url("../img/services/new/cgi.jpg");
  }
  #marketing-consultation {
    background-image: url("../img/services/new/marketing.jpg");
  }
}
section.ourwork-slide-sec {
  overflow: hidden;
}
section.ourwork-slide-sec .ourwork-slides .services-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px;
  position: relative;
  background-image: url("../img/ourwork/banner.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}
@media (max-width: 767.98px) {
  section.ourwork-slide-sec .ourwork-slides .services-slide {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  section.ourwork-slide-sec .ourwork-slides .services-slide {
    padding: 15px;
  }
}
section.ourwork-slide-sec .ourwork-slides .services-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
section.ourwork-slide-sec .ourwork-slides .services-slide video, section.ourwork-slide-sec .ourwork-slides .services-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
section.ourwork-slide-sec .ourwork-slides .services-slide .ourwork-content {
  position: relative;
  z-index: 3;
}
section.ourwork-slide-sec .ourwork-slides .services-slide .ourwork-content video {
  -o-object-fit: cover;
     object-fit: cover;
}
section.ourwork-slide-sec .ourwork-slides .services-slide .ourwork-content p {
  text-align: justify;
}
section.ourwork-slide-sec .ourwork-slides .services-slide .ourwork-content p.fw-semibold {
  text-align: left;
}
@media (min-width: 1200px) {
  section.ourwork-slide-sec .ourwork-slides .services-slide .ourwork-content .img-translate {
    transform: translateY(-50px);
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

.services-left-menu {
  height: 100vh;
  position: fixed;
  top: 15px;
  left: 112px;
  z-index: 9;
}
.services-left-menu .vstack a {
  color: #AAAAAA;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.services-left-menu .vstack a:hover {
  color: #fff;
  cursor: pointer;
}
.services-left-menu .vstack a.active {
  color: #fff;
}

.innerBAnner {
  height: auto;
  background-image: url("../img/about-us/about-us-1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
}
@media (min-width: 992px) {
  .innerBAnner {
    height: 100vh;
  }
}
@media (max-width: 767.98px) {
  .innerBAnner {
    background-image: url("../img/about-us/about-us-2.jpg");
  }
}
@media (max-width: 575.98px) {
  .innerBAnner {
    background-image: url("../img/about-us/about-us-3.jpg");
    padding: 100px 0 50px;
  }
}
.innerBAnner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}
.innerBAnner .mainContent h1 {
  font-size: clamp(35px, 4.1666vw, 80px);
  font-weight: 400;
  color: #D7E1EB;
}
.innerBAnner .mainContent p {
  color: white;
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 300;
  padding: 10px;
}
@media (min-width: 992px) {
  .innerBAnner .mainContent p {
    padding: 10px 100px;
  }
}
.innerBAnner .contactForm .form-control {
  background-color: rgba(0, 0, 0, 0.5019607843);
  border: 1px solid transparent;
  color: white;
}
.innerBAnner .contactForm .form-control:focus {
  color: white;
  background-color: rgba(0, 0, 0, 0.5019607843);
  border: 1px solid rgba(255, 255, 255, 0.4901960784);
  outline: 0;
  box-shadow: none;
}
.innerBAnner .contactForm .form-control::-moz-placeholder {
  color: #A9A9A9;
  opacity: 1;
}
.innerBAnner .contactForm .form-control::placeholder {
  color: #A9A9A9;
  opacity: 1;
}