:root {
  --bg-color: #1a1b1e;
  --theme-color: #0e0f11;
  --main-color: #d0ff71;
}

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999;
}
.navbar.nav-scroll {
  padding: 0;
  position: fixed;
  top: -80px;
  padding: 15px 0;
  transition: transform 0.8s;
  transform: translateY(80px);
  backdrop-filter: blur(10px);
}
.navbar .logo {
  padding: 7px 15px;
}
.navbar .navbar-nav {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  margin-left: 15px;
}
.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
}
.navbar .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}
.navbar .topnav .butn {
  padding: 7px 20px;
  background: #fff;
  color: #1d1d1d;
  margin-right: 15px;
}

/* --------------- header --------------- */
.header-cst .container-fluid {
  width: 100%;
  padding: 15px;
  margin: 0;
  position: relative;
}
.header-cst .container-fluid:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, var(--theme-color) 50%, transparent);
  opacity: 0.98;
}
.header-cst .img {
  height: 500px;
  border-radius: 10px;
}
.header-cst .caption {
  position: relative;
  margin-top: -250px;
  z-index: 4;
}
.header-cst .caption h1 {
  font-size: 300px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transform: scaleX(1.5);
  transition: all 1s ease;
  transition-delay: 2s;
}
.header-cst .caption h1.normal {
  transform: scaleX(1);
}
.header-cst .caption h1.hero-brand {
  transform: scaleX(1.5);
  transform-origin: center center;
  text-transform: none;
  font-size: 0;
  line-height: 0;
  margin: 0 auto;
}
.header-cst .caption h1.hero-brand.normal {
  transform: scaleX(1);
}
.header-cst .caption h1.hero-brand img {
  display: block;
  width: min(64vw, 680px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* --------------- Intro --------------- */
.intro-cst .states .item {
  position: relative;
  padding-left: 60px;
}
.intro-cst .states .item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-cst .states .item:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-cst .states .item span {
  font-size: 16px;
  color: #aaa;
}
.intro-cst .states .item h2 {
  font-size: 140px;
  line-height: 1;
  margin-top: 40px;
}
.intro-cst .states .item .spn-botm {
  margin-left: 10px;
}

/* --------------- Works --------------- */
.work-card .card-item {
  margin-bottom: 30px;
  position: relative;
}
.work-card .card-item .img {
  position: relative;
  height: 650px;
  border-radius: 15px;
  overflow: hidden;
}
.work-card .card-item .img img,
.work-card .card-item .img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card .card-item .img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.42);
  transform-origin: center center;
  pointer-events: none;
}
.work-card .card-item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, var(--theme-color), transparent);
  opacity: 0.6;
}
.work-card .card-item .card-meta {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: calc(100% - 60px);
}
.work-card .card-item .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
.work-card .card-item .tags a {
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}
.work-card .card-item .card-back {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.work-card .card-item .card-back .card-back-content {
  display: none;
}
.work-card .card-item .card-sound-toggle {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.work-card .card-item .card-sound-toggle:hover, .work-card .card-item .card-sound-toggle:focus-visible {
  background: rgba(208, 255, 113, 0.16);
  border-color: rgba(208, 255, 113, 0.44);
  color: #fff;
}
.work-card .card-item .card-sound-toggle:hover {
  transform: translateY(-1px);
}
.work-card .card-item .card-sound-toggle:focus-visible {
  outline: 0;
}
.work-card .card-item .card-sound-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.work-card .card-item .card-sound-toggle .icon-live {
  display: none;
}
.work-card .card-item .card-sound-toggle[aria-pressed=true] {
  background: rgba(208, 255, 113, 0.18);
  border-color: rgba(208, 255, 113, 0.44);
  color: #fff;
}
.work-card .card-item .card-sound-toggle[aria-pressed=true] .icon-muted {
  display: none;
}
.work-card .card-item .card-sound-toggle[aria-pressed=true] .icon-live {
  display: block;
}
.work-card .card-item .video-hint {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 124px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}
.work-card .card-item h5 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 140px;
  font-family: var(--site-font-family, "Gilroy", Helvetica, Arial, sans-serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 3;
}
.work-card .card-item h5.bottom {
  top: auto;
  bottom: 30px;
}
.work-card .card-item h5.left {
  text-align: left;
  padding-left: 30px;
}
.work-card .card-item h5.right {
  text-align: right;
  padding-right: 30px;
}

/* --------------- Services pg --------------- */
.serv-hed .caption {
  position: relative;
}
.serv-hed .caption h1 span {
  letter-spacing: normal;
}
.serv-hed .main-marq {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.serv-hed .main-marq .item {
  padding: 0 50px !important;
}
.serv-hed .main-marq h2 span {
  font-size: 10vw;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.serv-hed .fit-img {
  height: 540px;
}

.serv-hed2 .caption {
  position: relative;
}
.serv-hed2 .caption h1 span {
  letter-spacing: normal;
}
.serv-hed2 .list li {
  position: relative;
  padding-left: 30px;
  margin-top: 15px;
}
.serv-hed2 .list li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 30%;
}
.serv-hed2 .fit-img {
  height: 540px;
}

.intro-cst .states .item {
  position: relative;
  padding-left: 60px;
}
.intro-cst .states .item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-cst .states .item:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-cst .states .item span {
  font-size: 16px;
  color: #aaa;
}
.intro-cst .states .item h2 {
  font-size: 100px;
  line-height: 1;
  margin-top: 40px;
}
.intro-cst .states .item .spn-botm {
  margin-left: 10px;
}

.services-cst {
  position: relative;
  z-index: 3;
}
.services-cst .sub-head:after {
  background: #aaa !important;
}
.services-cst .img-patern {
  position: absolute;
  bottom: 10%;
  left: -15%;
  width: 30%;
  filter: invert(1);
  opacity: 0.07;
  z-index: -1;
}
.services-cst .item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.services-cst .item > div {
  width: 100%;
}
.services-cst .item h6 {
  font-size: 18px;
}
.services-cst .item .title {
  text-align: center;
  position: relative;
}
.services-cst .item .title h2 {
  font-size: 90px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -4px;
}
.services-cst .item .title .list {
  opacity: 0;
  transition: all 0.2s;
}
.services-cst .item .title .list span {
  padding: 7px 12px;
  background: var(--main-color);
  border-radius: 30px;
  position: absolute;
  font-size: 14px;
  color: var(--theme-color);
  opacity: 0;
  transition: all 0.4s;
}
.services-cst .item .title .list span:nth-of-type(1) {
  top: 0;
  left: 15%;
  transform: translateY(-50%);
}
.services-cst .item .title .list span:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-50%);
  transition-delay: 0.2s;
}
.services-cst .item .title .list span:nth-of-type(3) {
  bottom: 0;
  right: 15%;
  transform: translateY(50%);
  transition-delay: 0.4s;
}
.services-cst .item .title .list span:nth-of-type(4) {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%);
  transition-delay: 0.5s;
}
.services-cst .item p {
  opacity: 0;
  transition: all 0.4s;
}
.services-cst .item .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.services-cst .item .icon .arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--main-color);
  overflow: hidden;
  opacity: 0;
}
.services-cst .item .icon .arrow img {
  width: 25px;
  transform: translateX(-30px) translateY(30px);
  transition: all 0.4s;
}
.services-cst .item .icon img {
  width: 30px;
}
.services-cst .item:hover .title .list {
  opacity: 1;
}
.services-cst .item:hover .title .list span {
  opacity: 1;
}
.services-cst .item:hover .icon .arrow {
  opacity: 1;
}
.services-cst .item:hover .icon .arrow img {
  transform: translateX(0) translateY(0);
}

.serv-details .accordion-item {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.serv-details .accordion-item.active {
  border-color: var(--main-color);
}
.serv-details .accordion-item.active button {
  color: var(--main-color) !important;
}
.serv-details .accordion-item .accordion-header {
  background: transparent;
}
.serv-details .accordion-item .accordion-header button {
  background: transparent;
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  padding: 15px 0;
  box-shadow: none;
}
.serv-details .accordion-item .accordion-header button span {
  font-size: 14px;
  margin-right: 80px;
}
.serv-details .accordion-item .accordion-header button:after {
  display: none;
}
.serv-details .accordion-item .accordion-body {
  padding: 0 0 15px 90px;
}
.serv-details .accordion-item .accordion-body p {
  font-size: 14px;
}

.footer-sa .call-action h2 {
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.footer-sa .call-action h2 .buton {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: -80px;
  right: 8%;
  font-size: 32px;
  color: #212121;
}
.footer-sa .call-action h2 .buton img {
  width: 30px;
}
.footer-sa .logo {
  width: 160px;
}
.footer-sa .contact-info .item {
  margin-bottom: 50px;
}
.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s;
}
.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}
.footer-sa .sub-footer .copy p {
  font-size: 14px;
}
.footer-sa .sub-footer .copy p a {
  color: #fff;
}
.footer-sa .sub-footer .links {
  width: 100%;
}
.footer-sa .sub-footer .links a {
  font-size: 14px;
}
.footer-sa .sub-footer .links .active {
  color: #fff;
}

/* --------------- Clients --------------- */
.brand-ds .item {
  position: relative;
  display: flex;
  align-items: center;
}
.brand-ds .item:after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s;
}
.brand-ds .item .text-center {
  width: 100%;
}
.brand-ds .item .img {
  width: 50px;
  margin: auto;
  opacity: 0.25;
  transition: all 0.4s;
}
.brand-ds .item p {
  margin-top: 30px;
}
.brand-ds .item:nth-of-type(3) .img, .brand-ds .item:nth-of-type(4) .img {
  width: 70px;
}
.brand-ds .item:hover {
  z-index: 4;
}
.brand-ds .item:hover:after {
  border-color: var(--main-color);
}
.brand-ds .item:hover .img {
  opacity: 1;
}

.clients-ds .item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 80px;
  height: 100%;
  padding: 50px 30px;
}
.clients-ds .item .text-center {
  width: 100%;
}
.clients-ds .item .img {
  max-width: 100px;
  margin: auto;
}
.clients-ds .item p {
  margin-top: 30px;
}

/* --------------- Testimonials --------------- */
.testimonials-ds .qoute-icon {
  position: relative;
  width: max-content;
}
.testimonials-ds .qoute-icon .text {
  width: 240px;
}
.testimonials-ds .qoute-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100px;
}
.testimonials-ds .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-ds .item .info .info-text {
  padding-left: 20px;
}
.testimonials-ds .item .info .info-text p {
  font-size: 14px;
  color: #BBBBBB;
  margin-top: 5px;
}
.testimonials-ds .swiper {
  position: relative;
}
.testimonials-ds .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto !important;
  width: max-content !important;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials-ds .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 7px;
  background: #BBBBBB;
}
.testimonials-ds .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
}

/* --------------- Awards --------------- */
.awards-sa .item-title {
  padding: 0 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.awards-sa .item-title > div {
  padding: 0;
}
.awards-sa .item-title h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.awards-sa .item-line {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.4s;
  z-index: 3;
}
.awards-sa .item-line > div {
  padding: 0;
}
.awards-sa .item-line > div:last-of-type {
  text-align: right;
}
.awards-sa .item-line:hover:after {
  height: 100%;
}
.awards-sa .item-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s;
  z-index: -1;
}
.awards-sa .item-line .honors h6 {
  font-size: 14px;
}
.awards-sa .item-line .project-date span {
  font-size: 14px;
  opacity: 0.7;
}

/* --------------- Portfolio pg --------------- */
.blog-hed .caption h1 {
  font-size: 55px;
}

.blog-mp .bord {
  position: relative;
}
.blog-mp .bord:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-mp .item {
  margin-bottom: 50px;
}
.blog-mp .item .info .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.blog-mp .item .info .author-info,
.blog-mp .item .info .date {
  font-size: 13px;
  text-transform: uppercase;
}
.blog-mp .item .info .author-info span,
.blog-mp .item .info .date span {
  display: block;
  line-height: 22px;
}
.blog-mp .item .info .author-info .sub-color {
  text-transform: capitalize !important;
}
.blog-mp .item .img {
  border-radius: 15px;
  height: 255px;
  overflow: hidden;
}
.blog-mp .main-blog .item {
  margin-bottom: 0;
}
.blog-mp .main-blog .item .img {
  height: 350px;
}

.post-header .caption .tags a {
  padding: 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}
.post-header .caption .tags a:hover {
  background: #fff;
  color: #1d1d1d !important;
}
.post-header .bg-img {
  height: 75vh;
  min-height: 480px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.post-header .bg-img .row {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 4;
}

.main-post .spec-letter {
  font-size: 60px;
  line-height: 50px;
  padding-right: 10px;
  float: left;
}
.main-post .post-qoute {
  position: relative;
  padding: 40px;
  padding-left: 120px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.main-post .post-qoute h6 {
  position: relative;
}
.main-post .post-qoute h6:before {
  content: "“";
  position: absolute;
  top: 80px;
  left: -100px;
  font-size: 180px;
  line-height: 0;
}
.main-post .post-qoute .author {
  font-size: 14px;
  color: var(--main-color);
}
.main-post .iner-img {
  height: 400px;
}
.main-post .iner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-post .unorder-list li,
.main-post .order-list li {
  margin-top: 10px;
  opacity: 0.7;
  padding-left: 15px;
  position: relative;
}
.main-post .unorder-list li:before,
.main-post .order-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 10px;
}
.main-post .order-list li {
  padding-left: 0;
}
.main-post .order-list li:before {
  display: none;
}
.main-post .order-list li span {
  font-size: 13px;
}
.main-post .info-area .tags span,
.main-post .info-area .share-icon span {
  font-size: 14px;
  margin-right: 5px;
  opacity: 0.7;
}
.main-post .info-area .tags a,
.main-post .info-area .share-icon a {
  padding: 7px 20px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  margin-right: 5px;
  transition: all 0.4s;
}
.main-post .info-area .tags a:hover,
.main-post .info-area .share-icon a:hover {
  background: var(--main-color);
  color: #1d1d1d;
}
.main-post .info-area .share-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 11px;
  text-align: center;
  padding: 0;
}
.main-post .author-area {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
}
.main-post .author-area .author-img .img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.main-post .next-prv-post .thumb-post {
  width: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.main-post .next-prv-post .thumb-post:after {
  content: "";
  background: var(--theme-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
  opacity: 0.7;
  transition: all 0.4s;
}
.main-post .next-prv-post .thumb-post:first-of-type {
  margin-right: 15px;
}
.main-post .next-prv-post .thumb-post:last-of-type {
  margin-left: 15px;
}

.comments-post .item-box {
  position: relative;
}
.comments-post .item-box p {
  font-size: 14px;
  width: 80%;
}
.comments-post .item-box.replayed {
  margin-left: 30px;
}
.comments-post .item-box .replay-butn {
  position: absolute;
  top: 15px;
  right: 15px;
}
.comments-post .item-box .replay-butn a {
  font-size: 13px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: all 0.4s;
}
.comments-post .item-box .replay-butn a:hover {
  background: var(--main-color);
  color: #1d1d1d;
}

.comments-from input,
.comments-from textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 15px 0;
  transition: all 0.4s;
}
.comments-from input:focus,
.comments-from textarea:focus {
  border-color: #fff;
}
.comments-from textarea {
  min-height: 180px;
}
.comments-from button {
  padding: 15px 35px;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(2px);
  color: #1d1d1d;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s;
}
.comments-from button .text {
  position: relative;
  z-index: 4;
}
.comments-from button:hover {
  color: #1d1d1d;
  background: var(--main-color);
}

.sidebar .search-box {
  position: relative;
}
.sidebar .search-box input {
  color: #fff;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  width: 100%;
  background: transparent;
}
.sidebar .search-box input:focus {
  border-color: #fff;
}
.sidebar .search-box .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.sidebar .widget {
  margin-top: 50px;
}
.sidebar .widget .title-widget {
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar .widget.catogry li {
  display: flex;
  font-size: 15px;
  margin-bottom: 7px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
}
.sidebar .widget.catogry li:last-of-type {
  margin-bottom: 0;
}
.sidebar .widget.last-post-thum .item {
  display: flex;
  margin-bottom: 30px;
}
.sidebar .widget.last-post-thum .item:last-of-type {
  margin-bottom: 0;
}
.sidebar .widget.last-post-thum .item:hover .img a .date {
  opacity: 1;
}
.sidebar .widget.last-post-thum .item .img {
  width: 90px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}
.sidebar .widget.last-post-thum .item .img a {
  width: 100%;
  height: 100%;
  position: relative;
}
.sidebar .widget.last-post-thum .item .img a .date {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 14px;
  width: 50px;
  height: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  opacity: 0;
  transition: all 0.4s;
}
.sidebar .widget.last-post-thum .item .img a .date span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
}
.sidebar .widget.last-post-thum .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar .widget.last-post-thum .item .cont {
  padding-left: 25px;
}
.sidebar .widget.last-post-thum .item .cont h6 {
  font-size: 17px;
}
.sidebar .widget.last-post-thum .item .cont .tag {
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
}
.sidebar .widget.tags a {
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.02);
  margin: 2px 0;
  transition: all 0.4s;
}
.sidebar .widget.tags a:hover {
  background: var(--main-color);
}

.footer-sa .call-action h2 {
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.footer-sa .call-action h2 .buton {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: -80px;
  right: 8%;
  font-size: 32px;
  color: #212121;
}
.footer-sa .call-action h2 .buton img {
  width: 30px;
}
.footer-sa .logo {
  width: 160px;
}
.footer-sa .contact-info .item {
  margin-bottom: 50px;
}
.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s;
}
.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}
.footer-sa .sub-footer .copy p {
  font-size: 14px;
}
.footer-sa .sub-footer .copy p a {
  color: #fff;
}
.footer-sa .sub-footer .links {
  width: 100%;
}
.footer-sa .sub-footer .links a {
  font-size: 14px;
}
.footer-sa .sub-footer .links .active {
  color: #fff;
}

/* --------------- Team pg --------------- */
.team-hed .caption h1 {
  font-size: 140px;
  font-weight: 600;
  text-transform: uppercase;
}
.team-hed .fit-img {
  height: 540px;
  position: relative;
  margin-top: -60px;
  z-index: -1;
}

.team-pg .item .img {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}
.team-pg .item .img .social-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) brightness(107%);
  opacity: 0;
  transition: all 0.4s;
}
.team-pg .item .img .social-icon a {
  padding: 0 15px;
}
.team-pg .item .img:hover .social-icon {
  opacity: 1;
  bottom: 30px;
}
.team-pg .item .cont h6 {
  margin-bottom: 5px;
}

.footer-sa .call-action h2 {
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.footer-sa .call-action h2 .buton {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: -80px;
  right: 8%;
  font-size: 32px;
  color: #212121;
}
.footer-sa .call-action h2 .buton img {
  width: 30px;
}
.footer-sa .logo {
  width: 160px;
}
.footer-sa .contact-info .item {
  margin-bottom: 50px;
}
.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s;
}
.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}
.footer-sa .sub-footer .copy p {
  font-size: 14px;
}
.footer-sa .sub-footer .copy p a {
  color: #fff;
}
.footer-sa .sub-footer .links {
  width: 100%;
}
.footer-sa .sub-footer .links a {
  font-size: 14px;
}
.footer-sa .sub-footer .links .active {
  color: #fff;
}

/* --------------- footer --------------- */
.footer-sa .call-action h2 {
  font-size: 22vw;
  line-height: 1;
}
.footer-sa .logo {
  width: 160px;
}
.footer-sa .contact-info .item {
  margin-bottom: 50px;
}
.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s;
}
.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}
.footer-sa .sub-footer .copy p {
  font-size: 14px;
}
.footer-sa .sub-footer .copy p a {
  color: #fff;
}
.footer-sa .sub-footer .links {
  width: 100%;
}
.footer-sa .sub-footer .links a {
  font-size: 14px;
}
.footer-sa .sub-footer .links .active {
  color: #fff;
}

body {
  font-family: var(--site-font-family, "Gilroy", Helvetica, Arial, sans-serif);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  background-color: var(--theme-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 64px;
  letter-spacing: -3px;
}

h2 {
  font-size: 48px;
  letter-spacing: -3px;
}

h3 {
  font-size: 40px;
  letter-spacing: -2px;
}

h4 {
  font-size: 36px;
  letter-spacing: -2px;
}

h5 {
  font-size: 28px;
  letter-spacing: -1px;
}

h6 {
  font-size: 22px;
}

strong,
b {
  font-weight: 700;
}

.sub-bg {
  background: var(--bg-color);
}

.light-bg {
  background: #fff;
  color: #0e0f11;
}
.light-bg .butn.butn-bord {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.light-bg .butn.butn-bord img {
  filter: invert(0);
}
.light-bg .butn.butn-bord:hover {
  background: var(--main-color);
  color: #212121;
}

.sub-color {
  color: #a4a4a4;
}

.sub-head {
  font-size: 20px;
}

.title-font {
  font-family: var(--site-font-family, "Gilroy", Helvetica, Arial, sans-serif);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.header-cst .caption h4 {
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.5;
  font-weight: 500 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.footer-sa .call-action h2.title-font {
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #a4a4a4;
  margin: 0;
}

.sec-head .sub-head {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  font-weight: 300;
}
.sec-head .sub-head:after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.text-indent {
  text-indent: 20%;
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.crv-butn span {
  background: var(--main-color);
  color: #0e0f11;
}
.crv-butn .text {
  line-height: 40px;
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
  border-radius: 30px;
  position: relative;
}
.crv-butn .text:after {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--main-color);
  position: absolute;
  top: 5px;
  right: -15px;
  z-index: -1;
  transition: all 0.4s;
}
.crv-butn .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-left: -10px;
  transition: all 0.5s;
}
.crv-butn .icon img {
  width: 15px;
  transition: all 0.5s;
}
.crv-butn:hover .text:after {
  border-radius: 50%;
  top: calc(50% - 5px);
  right: 0;
  height: 10px;
}
.crv-butn:hover .icon {
  margin-left: 5px;
}
.crv-butn:hover .icon img {
  transform: rotate(45deg);
}

.butn.butn-bord {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.butn.butn-bord:hover {
  background: #fff;
  color: #212121;
}

.icon.invert img {
  filter: invert(1);
}

.butn .icon {
  width: 18px;
}
.butn:hover .icon.invert img {
  filter: invert(0);
}

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .header-cst .container-fluid {
    padding: 12px;
  }
  .header-cst .img {
    height: min(62vh, 460px);
  }
  .header-cst .caption {
    margin-top: clamp(-200px, -28vw, -140px);
    padding: 0 18px;
  }
  .header-cst .caption h1.hero-brand img {
    width: min(74vw, 520px);
  }
  .header-cst .caption h4 {
    max-width: 460px;
    padding: 0 12px;
    letter-spacing: 0.16em;
  }
  .work-card.section-padding {
    padding-top: 100px;
    padding-bottom: 110px;
  }
  .work-card .cards {
    position: relative;
  }
  .work-card .card-item {
    margin-bottom: 24px;
    will-change: transform;
  }
  .work-card .card-item .img {
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 18px 18px 0 0;
  }
  .work-card .card-item .img iframe {
    transform: translate(-50%, -50%) scale(1.04);
  }
  .work-card .card-item .card-meta {
    display: none;
  }
  .work-card .card-item .card-back {
    position: relative;
    inset: auto;
    margin-top: -1px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(180deg, rgba(16, 17, 20, 0.96), rgba(10, 11, 13, 0.98));
    pointer-events: auto;
  }
  .work-card .card-item .card-back .card-back-content {
    display: block;
  }
  .work-card .card-item .card-back .card-back-head {
    margin-bottom: 18px;
  }
  .work-card .card-item .card-back .card-back-head h3 {
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .work-card .card-item .card-back .card-back-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
  .work-card .card-item .card-back .card-back-head .label,
  .work-card .card-item .card-back .card-back-detail .label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
  }
  .work-card .card-item .card-back .card-back-detail p {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
  }
  .work-card .card-item .card-back .card-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
  }
  .work-card .card-item .card-sound-toggle {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 38px;
    height: 38px;
    touch-action: manipulation;
  }
  .work-card .card-item .video-hint {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 56px);
  }
  .work-card .mt-80 {
    margin-top: 60px !important;
  }
  .team-cst .thecontainer {
    width: 100%;
    min-height: auto;
    display: block;
    padding-top: 80px;
  }
  .team-cst .panel {
    display: block;
    padding: 0 15px !important;
  }
  .team-cst .panel .item {
    width: 100%;
    margin-top: 50px;
    transform: none !important;
  }
}
@media screen and (max-width: 768px) {
  .header-cst .img {
    height: clamp(300px, 56vh, 400px);
  }
  .header-cst .caption {
    margin-top: clamp(-160px, -32vw, -120px);
    padding: 0 14px;
  }
  .header-cst .caption h1.hero-brand img {
    width: min(82vw, 360px);
  }
  .header-cst .caption h4 {
    max-width: 300px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .work-card.section-padding {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .work-card .card-item {
    margin-bottom: 20px;
  }
  .work-card .card-item .img {
    border-radius: 14px 14px 0 0;
  }
  .work-card .card-item .img iframe {
    transform: translate(-50%, -50%) scale(1.02);
  }
  .work-card .card-item .img:after {
    opacity: 0.12;
  }
  .work-card .card-item .card-back {
    padding: 18px 16px;
    border-radius: 0 0 14px 14px;
  }
  .work-card .card-item .card-back .card-back-head h3 {
    font-size: 20px;
  }
  .work-card .card-item .card-back .card-back-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .work-card .card-item .video-hint {
    font-size: 9px;
    letter-spacing: 0.1em;
    left: 16px;
    bottom: 16px;
  }
  .work-card .card-item .card-sound-toggle {
    width: 36px;
    height: 36px;
    right: 16px;
    bottom: 16px;
  }
  .work-card .card-item h5 {
    font-size: 80px;
  }
  .services-cst .item .title h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .services-cst .item .title .list {
    display: none;
  }
  .services-cst .item .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .services-cst .item .icon img {
    width: 25px;
  }
  .testimonials-ds .qoute-icon .text {
    width: 180px;
  }
  .testimonials-ds .qoute-icon .icon {
    width: 80px;
  }
  .testimonials-ds .item h4 {
    font-size: 25px;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 480px) {
  .header-cst .container-fluid {
    padding: 10px;
  }
  .header-cst .img {
    height: clamp(280px, 52vh, 340px);
    border-radius: 8px;
  }
  .header-cst .caption {
    margin-top: -132px;
    padding: 0 10px;
  }
  .header-cst .caption h1.hero-brand img {
    width: min(84vw, 300px);
  }
  .header-cst .caption h4 {
    max-width: 250px;
    font-size: 10px;
  }
  .work-card.section-padding {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .work-card .card-item .img {
    border-radius: 12px 12px 0 0;
  }
  .work-card .card-item .card-back {
    padding: 16px 14px;
    border-radius: 0 0 12px 12px;
  }
  .work-card .card-item .card-back .card-back-head h3 {
    font-size: 18px;
  }
  .work-card .card-item .card-sound-toggle {
    width: 34px;
    height: 34px;
    right: 14px;
    bottom: 14px;
  }
  .work-card .card-item .video-hint {
    max-width: calc(100% - 52px);
    padding: 7px 10px;
    left: 14px;
    bottom: 14px;
  }
  .work-card .card-item .card-back .card-back-link {
    width: 100%;
  }
}
