/*
Theme Name: Digital Lifestyle
*/
:root {
  --font-family-neue-display-pro: "Neue Haas Grotesk Display Pro";
  --font-family-minakoe: "minakoe", sans-serif;
  --white: #fff;
  --black: #000;
  --primary-color: #111018;
  --secondary-color: #e2f864;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
}

*,
*:active,
*:focus,
option:focus {
  outline: none !important;
  box-sizing: border-box;
}

button::-moz-focus-inner {
  border: 0;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  height: auto;
}

html,
body {
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: normal;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-family-neue-display-pro);
  font-weight: 400;
  font-size: var(--fs-16);
  margin: 0 auto;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 0 10px;
}
h1 {
  font-family: var(--font-family-neue-display-pro);
  font-weight: 500;
  font-size: 75px;
}
h3 {
  font-family: var(--font-family-neue-display-pro);
  font-weight: 500;
  font-size: 45px;
}
h5 {
  font-family: var(--font-family-minakoe);
  font-weight: 400;
  font-size: var(--fs-18);
}
a {
  text-decoration: none;
  color: var(--white);
  display: inline-block;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.text-center {
  text-align: center;
}

html.has-scroll-smooth body,
html.has-scroll-smooth {
  overflow: hidden;
}

.has-scroll-init [data-scroll-container] {
  min-height: 100vh;
}
.slide-out-top {
  transform: translateY(-100px);
  transition: all 0.7s;
}
html.has-scroll-init .slide-in-top {
  transform: translateY(0px);
  transition: all 0.7s;
}
#cursor-ui {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  /* background-color: var(--secondary-color); */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

#cursor-border {
  --size: 100px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  /* box-shadow: 0 0 0 1px var(--primary-color); */
  background: url(images/cursor-glow.png) no-repeat center center;
  background-size: contain !important;
  pointer-events: none;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 9999;
}
/*====== Sections Style ======*/
.container {
  max-width: 1400px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.site-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  top: 15px;
  transform: translateY(-100px);
}
.darker-header.site-header .logo {
  filter: brightness(0);
}
.darker-header.site-header .site-navigations a {
  filter: brightness(0);
}
.darker-header.site-header .site-navigations .btn-text:hover {
  background: none !important;
}
/* =====menu slide=== */
.nav {
  display: flex;
  justify-content: space-between;
}
.nav ul {
  display: flex;
  gap: 25px;
  align-items: center;
}
.nav a:hover {
  color: var(--secondary-color);
  transition: 0.4s color;
}
.nav .btn-text {
  font-weight: 500;
  min-width: 126px;
  padding: 14px 24px;
}
.btn-text {
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-family-neue-display-pro);
  font-weight: 400;
  padding: 14px 20px;
  border: 1px solid #ffffff1a;
  border-radius: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  min-width: 100px;
}
.nav .btn-text:hover {
  background: var(--secondary-color);
  color: var(--black);
}
/* ====banner-section===== */
.banner-section {
  padding: 90px 0 20px;
  overflow: hidden;
}
.banner-top-content {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 0 40px;
}

.banner-top-content h1 {
  font-size: 5vw;
}

.video-wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transform: scale(0.8);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animate-text .line {
  display: inline-block;
  white-space: pre-wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.animate-text .line.show-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* =======Featured Work====== */
.featured-title {
  display: flex;
  justify-content: space-between;
  padding: 80px 15px;
  position: relative;
  z-index: 3;
}
.featured-work-section .btn-text {
  padding: 13px 30px;
  background: none;
}
.work-carousel {
  padding: 0 0 100px;
}
.work-item {
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.work-item-img {
  position: relative;
}
.work-item-img .retal-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  min-height: inherit;
  width: 129px;
  height: 141px;
  aspect-ratio: 0;
}
.work-item-img img {
  border-radius: 5px;
  min-height: 435px;
  aspect-ratio: 1.444 / 2;
  width: 100%;
  object-fit: cover;
}
.work-item-text {
  /* position: absolute;
  bottom: -90px;
  z-index: 2;
  left: 0;
  text-align: center; */
  padding-top: 15px;
  width: 100%;
}
.work-item-text h5 {
  margin: 0 0 5px;
  font-family: var(--font-family-neue-display-pro);
  font-weight: 500;
  font-size: 20px;
}
.work-item-text p {
  margin: 0;
  font-family: var(--font-family-minakoe);
  font-weight: 400;
  font-size: var(--fs-16);
  opacity: 50%;
}
/* =========retal-project======== */
.retal-project {
  width: 100%;
  height: 100vh;
  background-image: url(images/retal-project.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
}
.retal-project-text {
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding-right: 700px;
  padding-bottom: 80px;
}
.retal-project-text h2 {
  padding-bottom: 30px;
}
.retal-project-text .btn-text {
  font-weight: 500;
  font-size: var(--fs-18);
  min-width: 269px;
  border-radius: 30px;
  color: var(--white);
  backdrop-filter: blur(20px);
}
/* =======our-works========= */
.our-works {
  padding: 100px 0;
}
.dual-parts {
  display: flex;
  justify-content: space-between;
}
.title-content {
  width: 30%;
  color: var(--secondary-color);
  padding: 10px 0 0;
}
.our-works-content {
  width: 70%;
  margin-right: 100px;
}
.our-works-content li {
  position: relative;
}
.our-works-content li a {
  display: inline-block;
  font-family: var(--font-family-neue-display-pro);
  font-weight: 500;
  font-size: 4.5vw;
  opacity: 0.4;
  transition: 0.5s all;
  position: relative;
}
.our-works-content li:last-child a {
  color: var(--secondary-color);
}
.our-works-content li .work-link-img {
  position: absolute;
  z-index: 2;
  top: -40px;
  right: 0;
  opacity: 0.4;
  transform: rotate(5deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all;
}
.work-link-img.bordered-img img {
  border: 5px solid rgba(255, 255, 255, 0.5);
}
.our-works-content li .work-link-img.rotate-reverse {
  transform: rotate(-5deg);
}
.our-works-content li .work-link-img.rotate1 {
  transform: rotate(8deg);
}
.our-works-content li .work-link-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.our-works-content li .work-link-img img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 5px;
}
.our-works-content li a:hover {
  transform: translateX(70px);
  opacity: 1;
  z-index: 3;
}
.our-works-content li:hover .work-link-img {
  opacity: 1;
  visibility: visible;
}
.our-works h5 {
  color: var(--secondary-color);
}
.work-carousel-wrapper {
  position: relative;
  z-index: 4;
}
.f-work-img {
  overflow: hidden;
}
.f-work-img img {
  width: 100%;
  transition: all 1s cubic-bezier(0.67, 0, 0.285, 1), opacity 0s linear;
}
.f-work-img:hover img {
  transform: translateZ(0) scale(1.1) !important;
}
/* =========logos-section======== */
.logos-section {
  padding: 100px 0 50px;
}
.logos-section h3 {
  padding-bottom: 30px;
}
.logos-section span {
  color: var(--secondary-color);
}

/* ===========Lets-talk-section======= */
.text-justify {
  text-align: justify;
}
.lets-talk-item {
  width: 95%;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}
.lets-talk-img img {
  border-radius: 5px;
  max-width: 340px;
  width: 98%;
  height: 420px;
  filter: grayscale(1);
  object-fit: cover;
  object-position: center center;
}
.lets-talk-img {
  border: 1px solid transparent;
  transition: 0.5s all;
}
.lets-talk-img:hover {
  border-color: var(--secondary-color);
  transform: rotate(2deg);
}
.lets-talk-text h3 {
  padding-top: 50px;
}
.lets-talk-text p {
  font-size: 20px;
  font-weight: 300;
}
.lets-talk-text a {
  font-family: var(--font-family-neue-display-pro);
  font-weight: 500;
  font-size: 25px;
}

.lets-talk-section .slick-arrow {
  bottom: -90px;
  top: inherit;
}
.lets-talk-section .slick-prev {
  left: 10px;
}
.lets-talk-section .slick-next {
  left: 60px;
}
.slick-arrow.slick-disabled {
  opacity: 0.6;
}
.lets-talk-text {
  display: flex;
  justify-content: end;
  gap: 50px;
  padding-top: 50px;
}
.let-talk-link {
  margin-top: 70px;
}
.inner-text {
  width: 33%;
}
.lets-talk-text .arrow-btn {
  position: relative;
}
/* ===========links-section========= */
.footer-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px;
}
.links-text span {
  color: #a8a7af;
  text-decoration: underline;
}
#yellow-color {
  color: var(--secondary-color);
}
.links-button {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
}
.links-button .btn-text:hover {
  background: var(--secondary-color);
  color: var(--black);
}
.links-button li {
  margin-bottom: 5px;
}
.links-button .btn-text {
  border-width: 2px;
  background: none;
}
.submit-form {
  padding: 30px 0 0;
}
.submit-form .arrow-btn {
  position: relative;
}
.submit-form .arrow-btn:hover::before {
  filter: brightness(0) saturate(100%) invert(0%) sepia(90%) saturate(24%)
    hue-rotate(83deg) brightness(96%) contrast(100%);
}
.submit-form .arrow-btn:hover::after {
  background: var(--secondary-color);
}
.submit-form .arrow-btn::after {
  content: "";
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  position: absolute;
  display: inline-block;
  border-radius: 50px;
  background-size: 25px !important;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.submit-form .arrow-btn::before {
  background-color: transparent;
  right: 5px;
}
/* ===========Project============ */
.portfolio-top-section {
  padding-top: 200px;
}
.portfolio-top-section h1 {
  text-align: center;
}
.portfolio-top-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 35px 0;
  gap: 10px;
}
.portfolio-top-section a {
  cursor: pointer;
  font-weight: 400;
  padding: 14px 20px;
  border: 1px solid #ffffff1a;
  border-radius: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  min-width: 100px;
}
.portfolio-top-section a.active,
.portfolio-top-section a:hover {
  color: var(--black);
  background-color: var(--secondary-color);
}
.portfolio-top-section a.active {
  font-family: var(--font-family-minakoe);
}
.portfolio-section {
  overflow: hidden;
}
.dark-theme {
  background: var(--black);
  color: var(--white);
  transition: ease all 1s;
}
.light-theme {
  background: var(--white);
  color: var(--black);
  transition: ease all 1s;
}
.light-theme .sub-title::before {
  background: var(--black);
}
.h-section {
  padding: 40px 0;
}
.flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.h-100vh {
  min-height: 100vh !important;
}
.container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.portfolio-section .container {
  max-width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.portfolio-project {
  width: 100%;
  padding: 35px 0 15px;
  visibility: hidden;
}
.project-img,
.project-img img {
  width: 100%;
  overflow: hidden;
}
.portfolio-project a {
  display: block;
}
.portfolio-project .project-img {
  /* -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: all 0.5s cubic-bezier(0.67, 0, 0.285, 1); */
  display: block;
  /* height: 595px; */
  position: relative;
}
/* 
.portfolio-project:hover .project-img {
  -webkit-clip-path: polygon(5% 10%, 95% 0, 95% 90%, 5% 95%);
  clip-path: polygon(5% 10%, 95% 0, 95% 90%, 5% 95%);
} */
.portfolio-project:hover .project-img svg,
.portfolio-project:hover .project-img img {
  transform: translateZ(0) scale(1.1) !important;
}
.portfolio-project .project-img svg,
.portfolio-project .project-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.67, 0, 0.285, 1), opacity 0s linear;
}

/* .project-img img:hover {
  transform: scale(1.3) rotate(5deg);
  transition: all 0.3s;
} */

.project-text {
  padding: 30px 0 0;
}
.project-text h3 {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.project-text h5 {
  font-weight: 400;
  font-size: var(--fs-16);
  color: rgba(255, 255, 255, 0.5);
}
/* ==========about-section======== */
.top-heading {
  text-align: left;
  padding-top: 200px;
  padding-bottom: 20px;
}
.about-banner-section {
  background: var(--white);
  padding: 50px 0 !important;
}
.about-banner-section img {
  border-radius: 5px;
  filter: grayscale(1);
  width: 100%;
}
/* =============services-section------ */
.services-wrapper .color-secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0 0;
}
.light-theme .services-wrapper .color-secondary {
  border-top-color: rgba(0, 0, 0, 0.2);
}
.upper-heading {
  padding-top: 200px;
  text-align: right;
}
.services-section {
  padding: 125px 0 100px;
}
.services-item {
  width: 95%;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
.services-item-img {
  border: 1px solid transparent;
  transition: 0.5s all;
}
.services-item-img:hover {
  border-color: var(--secondary-color);
  transform: rotate(2deg);
}
.services-item-img img {
  filter: grayscale(1);
  width: 100%;
  max-width: 330px;
  height: 320px;
  object-fit: cover;
}
.services-item-img {
  position: relative;
}
.services-details {
  display: flex;
  gap: 50px;
  padding-top: 50px;
}
.service-img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  /* max-height: 430px; */
  aspect-ratio: 2/1.4;
  background: linear-gradient(
    135deg,
    rgba(177, 170, 154, 1) 1%,
    rgba(75, 72, 65, 1) 100%
  );
}
.service-img img {
  width: 100%;
  transform: scale(1.25);
  object-position: center center;
}
.service-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.light-theme .btn-arrow-icon {
  filter: brightness(1);
}
.btn-arrow-icon {
  background: url(images/arrow-icon.svg) no-repeat center center;
  width: 20px;
  height: 9px;
  width: 0;
  transition: 0.4s;
}
.h-arrow-btn a.btn-text:hover .btn-arrow-icon,
.service-text a.btn-text:hover .btn-arrow-icon {
  display: inline-block;
  width: 20px;
  margin-left: 10px;
  transition: 0.4s;
}
.h-arrow-btn a.btn-text,
.service-text a.btn-text {
  margin: 25px 0 0;
  transition: 0.4s;
  position: relative;
  padding: 14px 30px;
}

.light-theme .service-text a.btn-text {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.light-theme .color-secondary {
  color: #000 !important;
}
.light-theme .service-text .bottom-content {
  color: #a8a7af;
}
.service-text a.btn-text:hover {
  background: var(--primary-color);
  color: var(--white);
}
.service-text h3 {
  padding: 0 0 15px;
}
.service-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.service-text .bottom-content {
  font-weight: 400;
  font-size: 16px;
  color: var(--secondary-color);
  opacity: 50%;
}
.service-text h6 {
  font-family: var(--font-family-neue-display-pro);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 5px;
}

.bottom-img-section {
  border-radius: 5px;
  padding: 150px 0 100px;
  min-height: 100vh; /* full screen height */
  display: flex;
  align-items: center; /* vertical center */
}

.bottom-img-section .container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.bottom-img-section img {
  margin: auto;
}
/* ================artistic-section========= */
.artistic-section {
  padding: 150px 0 80px;
}
.mid-text h5 {
  text-align: center;
  color: var(--secondary-color);
}

.artistic-section h2 {
  text-align: center;
  font-weight: 500;
  font-size: 45px;
  line-height: 50px;
  max-width: 960px;
  margin: 0 auto;
}
/*====== FOOTER ======*/
.footer-bottom {
  padding: 90px 0 60px;
  text-align: right;
}
.footer-bottom p {
  margin: 10px 0 0;
}
.footer-top-section h3 {
  font-weight: 500;
}
.contact-form-section {
  max-width: 100%;
  width: 100%;
  padding: 50px 0 0;
  font-size: 20px;
}
.contact-form-section p {
  line-height: 30px;
  margin: 0;
}
.cont-para {
  padding: 0 0 30px;
  line-height: 30px;
}
.c-textbox {
  border: none;
  background: none;
  color: var(--secondary-color);
  border-bottom: 1px solid #acacac;
  font-family: var(--font-family-neue-display-pro);
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  max-width: 100%;
  padding: 0;
}
#company_name-error {
  display: none;
}
.c-textbox::placeholder {
  opacity: 1;
  color: #a8a7af;
}
.c-popup-options.error,
input.c-textbox.error {
  border-bottom: 1px solid rgba(255, 0, 0, 0.9);
  color: rgba(255, 0, 0, 0.9);
}
#form-submit-message {
  padding: 15px 0;
}
.c-options-wrap {
  display: inline-flex;
  position: relative;
}
.c-popup-options {
  position: relative;
  transition: none ease 0.5s;
  overflow: hidden;
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  display: inline-flex;
  line-height: normal;
  cursor: pointer;
}
.cont-popup-options-list {
  display: none;
}
.c-options-wrap select {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  appearance: none;
  position: absolute;
}
.cont-popup-bg {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 8vw;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.92);
  transition: top 500ms ease-in, opacity 300ms ease-in;
  top: 0;
  opacity: 0;
  z-index: -1;
}
.cont-popup-bg ul li {
  padding: 3px;
  list-style: none;
}
.cont-popup-bg ul li span {
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  transition: transform 0.5s;
}
.cont-popup-bg ul li:hover span {
  transform: translateX(40px);
}
.cont-popup-bg ul li span:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary-color);
}

.cont-popup-bg.opened {
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
}

.footer-dl-title img {
  width: 100%;
}

.primary-color-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(17, 16, 24, 1) 0%,
    rgba(152, 123, 250, 1) 80%,
    rgba(51, 83, 248, 1) 100%
  );
}
.primary-color-gradient {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(17, 16, 24, 1) 0%,
    rgba(17, 16, 24, 1) 80%,
    rgba(17, 16, 24, 0.8) 100%
  );
}
.primary-color-gradient-shade1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(17, 16, 24, 1) 0%,
    rgba(17, 16, 24, 1) 70%,
    rgba(210, 123, 250, 1) 95%
  );
}
.primary-color-gradient-shade1 {
  position: relative;
  background: rgba(0, 0, 0, 0.8);
}
.switch-dark,
.wrapper {
  transition: ease all 0.9s;
}
.bg-color-primary {
  background: var(--primary-color);
}
.bg-color-white {
  background: var(--white);
  color: var(--primary-color);
}
.bg-color-primary .bg-color-white {
  background: inherit;
  color: inherit;
}
.about-section {
  padding: 90px 0 0;
}
.about-sec-top {
  position: relative;
}
.world-map {
  position: relative;
  max-width: 767px;
  width: 100%;
}
.world-map img {
  width: 100%;
  object-fit: contain;
}
.map-hotspot {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map-hotspot span {
  position: absolute;
  top: 47%;
  opacity: 0;
  min-width: 10px;
  padding: 15px 0 0;
}
.map-hotspot span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  box-shadow: 0 0 14px rgba(226, 248, 100, 1);
  border-radius: 100%;
}
.map-hotspot span.show {
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 2s;
}
.map-hotspot span.m-hotspot1 {
  left: 10%;
}
.map-hotspot span.m-hotspot2 {
  right: 40%;
}
.map-hotspot span.m-hotspot3 {
  right: 45%;
  top: 63%;
}
.map-hotspot span.m-hotspot4 {
  right: 48%;
  top: 63%;
}
.map-hotspot span.m-hotspot5 {
  right: 55%;
  top: 58%;
}
.map-hotspot span.m-hotspot6 {
  right: 54%;
  top: 46%;
}
.map-hotspot span.m-hotspot7 {
  right: 53%;
  top: 50%;
}

.worldmap-section .map-hotspot span.m-hotspot6 {
  right: 50%;
  top: 34%;
}
.worldmap-section .map-hotspot span.m-hotspot7 {
  right: 50%;
  top: 50%;
}

.sub-title {
  font-size: var(--fs-20);
}
.about-text {
  max-width: 420px;
  font-size: var(--fs-20);
  line-height: 28px;
  margin: 70px 0 0;
}
.dl-video {
  width: 100%;
  margin: 50px 0 0;
  position: relative;
  overflow: hidden;
}
#dl-video {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#dl-video video,
.dl-video video,
.dl-video iframe {
  display: block;
  border-radius: 30px;
  width: 80%;
  height: 80%;
  object-fit: cover;
  object-position: center center;
  cursor: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.video-shadow video {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.video-bg-blur {
  overflow: visible;
}
.video-bg-blur::before {
  max-width: 900px;
  height: 250px;
  width: 50%;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  margin: auto;
  border-radius: 100%;
  background: var(--secondary-color);
  z-index: -1;
  filter: blur(200px);
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
  font-size: var(--fs-16);
  margin: 80px 0 0;
}
.stat-item .stat-number {
  font-family: var(--font-family-Argent-CF);
  font-size: 90px;
  display: block;
  margin-bottom: 10px;
}
.interactive-section {
  padding: 90px 0;
}
.interactive-content {
  background: rgba(210, 123, 250, 0.1);
  border-radius: 30px;
  padding: 30px;
  margin: 80px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.interactive-map-img {
  min-width: 52%;
  width: 52%;
}
.interactive-map-img img {
  border-radius: 30px;
  width: 100%;
  object-fit: cover;
}
.accordion-imgs img {
  display: none;
}
.accordion-imgs img.active-img {
  display: block;
}
.interative-text h3 {
  font-size: 40px;
  font-weight: 500;
  padding: 20px 0 0;
}
.interactive-features li {
  padding: 16px 20px 16px 75px;
  position: relative;
}
.interactive-features li::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 18px;
  width: 30px;
  height: 30px;
}
.accordion-detail {
  display: none;
}
.accordion-detail p {
  font-size: var(--fs-16);
  line-height: 24px;
}
.map-icon::before {
  background: url(images/interactive-2d-icon.svg) no-repeat center center;
}
.tools-icon::before {
  background: url(images/data-tools-icon.svg) no-repeat center center;
}
.data-icon::before {
  background: url(images/data-icon.svg) no-repeat center center;
}
.filters-icon::before {
  background: url(images/filters-icon.svg) no-repeat center center;
}
.dashboard-icon::before {
  background: url(images/dashboard-icon.svg) no-repeat center center;
}
.crm-icon::before {
  background: url(images/CRM-icon.svg) no-repeat center center;
}
.chart-icon::before {
  background: url(images/chart-icon.svg) no-repeat center center;
}
.accessible-devices-icon::before {
  background: url(images/accessible-devices-icon.svg) no-repeat center center;
}
.floor-plates-icon::before {
  background: url(images/floor-plates-icon.svg) no-repeat center center;
}
.wrapper.bg-color-primary .interactive-features li::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(137deg) brightness(103%) contrast(101%);
}
.interactive-features li h4 {
  color: var(--primary-color);
  font-size: var(--fs-20);
  line-height: 28px;
  font-weight: 500;
  margin: 6px 0;
  display: inline-block;
}
.interactive-features li.active-item {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  transition: 0.5s all;
}

.wrapper.bg-color-primary .interactive-features li.active-item {
  background: var(--primary-color);
  transition: 1s background-color;
}
.wrapper.bg-color-white .world-map img {
  filter: invert(1);
}
.logos-section {
  position: relative;
}
.logos-row ul {
  overflow: hidden;
  list-style: none;
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 100px;
  width: 100%;
  justify-content: space-between;
}
.logos-row ul li {
  text-align: center;
  opacity: 0.3;
}
.logos-row ul li:hover {
  opacity: 1;
}
.logos-row ul li img {
  display: inline-block;
  max-width: 120px;
  min-width: 50px;
  max-height: 58px;
}
.interactive-section-3d {
  padding: 90px 0;
}
.interactive-3d-content {
  position: relative;
  min-height: 650px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.interactive-3d-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 56%;
  height: 57%;
}
.interactive-3d-img img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: top;
}
.interactive-3d-content::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 150px;
  border-radius: 50%;
  background: var(--secondary-color);
  top: 25%;
  right: -5%;
  filter: blur(220px);
}
.interactive-3d-text {
  max-width: 435px;
}
.interactive-3d-text h3 {
  line-height: 30px;
  font-size: 24px;
  font-weight: 500;
}
.interactive-3d-text p {
  font-size: var(--fs-20);
  line-height: 28px;
  margin: 20px 0;
  opacity: 0.7;
}
.interactive-3d-text a {
  font-size: 20px;
  text-decoration: underline;
  background: linear-gradient(
    to right,
    rgba(210, 123, 250, 1) 0%,
    rgba(51, 83, 248, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}
.interactive-3d-text a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(210, 123, 250, 1) 0%,
    rgba(51, 83, 248, 1) 100%
  );
}
.off-viewport {
  transform: translate3d(0px, 40px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(10deg, 0deg);
  transform-style: preserve-3d;
  opacity: 0;
  transition-delay: 1.5s;
  transition: all 1.5s;
}

.in-viewport {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  opacity: 1;
  transition-delay: 1.5s;
  transition: all 1.5s;
}

.off-viewport2 {
  opacity: 0;
  transform: translate3d(0px, 20px, 0px) rotateZ(10deg);
  transform-style: preserve-3d;
  transition-delay: 1.5s;
  transition: transform 1.5s;
}
.in-viewport2 {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) rotateZ(0deg);
  transform-style: preserve-3d;
  transition-delay: 1.5s;
  transition: transform 1.5s;
}

.off-viewport3 {
  transform: translate3d(0px, 60px, 0px);
  transform-style: preserve-3d;
  opacity: 0;
  transition-delay: 1.5s;
  transition: all 1.5s;
}

.in-viewport3 {
  transform: translate3d(0px, 0px, 0px);
  transform-style: preserve-3d;
  opacity: 1;
  transition-delay: 1.5s;
  transition: all 1.5s;
}

.animate-text .line {
  display: inline-block;
  white-space: pre-wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.animate-text .line.show-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.dark-color {
  color: var(--primary-color);
}
.animate-white-bg {
  background: var(--white);
  width: 0%;
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  border-radius: 5px;
}
.fill-bg-white-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress-update {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  font-family: var(--font-family-minakoe);
  z-index: 2;
  mix-blend-mode: difference;
}
.fill-text {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  mix-blend-mode: difference;
  position: relative;
  z-index: 1;
}
.fill-text h3 {
  font-size: 27px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  padding: 0 15px;
}
.fill-text h3 span {
  position: relative;
  /* display: none; */
}
.fill-text h3 span:first-child {
  display: inline-block;
}
.border-radius-top {
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
}
.pb-100 {
  padding-bottom: 120px;
}
.section-padding {
  padding: 60px 0;
}
.dl-about-text {
  max-width: 950px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  padding: 50px 0 0;
}
.about-text-col {
  width: 100%;
}
.about-text-col p {
  margin-bottom: 30px;
}
.about-img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
.about-img-list img {
  filter: brightness(0);
}
.worldmap-section {
  position: relative;
  padding: 0 0 60px;
}
.worldmap-section img {
  width: 100%;
  filter: brightness(0);
  object-fit: contain;
}
.clients-section {
  text-align: center;
  padding: 30px 0 80px;
}
.clients-logos::before,
.clients-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  max-width: 280px;
  width: 15%;
  background: linear-gradient(
    to right,
    rgba(249, 243, 253, 0.2) 0%,
    rgba(247, 240, 253, 1) 100%
  );
  z-index: 2;
}
.clients-logos::before {
  left: 0;
  transform: scale(-1);
}
.clients-logos::after {
  right: 0;
}
.clients-logos {
  padding: 40px 0;
  position: relative;
}
.client-logos-row {
  padding: 20px 0;
}
.client-logos-row ul li {
  opacity: 1;
}
.client-logos-row ul li img {
  filter: brightness(0);
}
.slick-arrow {
  position: absolute;
  top: -60px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  text-indent: -99999px;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.arrow-btn::before,
.slick-arrow::before {
  content: "";
  background: url(images/arrow-icon.svg) no-repeat center center;
  background-size: contain !important;
  width: 20px;
  height: 20px;
  position: absolute;
  display: inline-block;
}
.slick-next {
  right: 60px;
}
.slick-prev {
  right: 120px;
}
.slick-prev.slick-arrow::before {
  transform: scale(-1);
}
.slick-disabled {
  background: rgba(255, 255, 255, 0.1);
}
.arrow-btn {
  padding-right: 65px;
}
.arrow-btn::before {
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  position: absolute;
  display: inline-block;
  border-radius: 50px;
  background-size: 25px !important;
  background-color: rgba(255, 255, 255, 0.1);
}
.progress-options {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  /* min-height: 100vh; */
}
.progress-options ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  flex-grow: 1;
}
.progress-options ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.progress-options ul li h3 {
  font-weight: 400;
  font-size: 30px;
}
.option-number {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  padding: 1px;
  background: var(--secondary-color);
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: var(--fs-14);
}
.option-number strong {
  font-weight: 500;
  background: var(--primary-color);
  display: flex;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.option-text {
  mix-blend-mode: difference;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.option-text h3 {
  margin: 0;
}
.option-img {
  pointer-events: none;
  margin: 30px auto;
  width: 100%;
}
.option-img img {
  width: 100%;
  max-width: 80%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto;
  filter: grayscale(1);
}

.color-secondary {
  color: var(--secondary-color) !important;
}
.extra-features-top {
  max-width: 655px;
  margin: 0 auto 70px;
}
.extra-features-section h3 {
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 35px;
}
.extra-features-section p {
  font-size: var(--fs-20);
  line-height: 28px;
}
.extra-features-section .container {
  max-width: 980px;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.feature-item {
  width: 100%;
  white-space: normal !important;
}
.feature-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
}
.feature-icon1 {
  background: url(images/feature-icon1.svg) no-repeat center center;
}
.feature-icon2 {
  background: url(images/feature-icon2.svg) no-repeat center center;
}
.feature-icon3 {
  background: url(images/feature-icon3.svg) no-repeat center center;
}
.feature-icon4 {
  background: url(images/feature-icon4.svg) no-repeat center center;
}
.feature-item h4 {
  font-size: 24px;
  font-weight: 500;
}
.feature-item p {
  line-height: 28px;
  font-size: 20px;
  opacity: 0.7;
}
.full-screen-video {
  min-height: 100vh;
}
.full-screen-video video,
.full-screen-video iframe {
  width: 100%;
  height: 100%;
}
.pricing-section {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 1%,
    rgba(235, 238, 254, 1) 100%
  );
  color: var(--primary-color);
}
.pricing-table-wrapper {
  margin: 70px auto 0;
  border-radius: 20px;
  background: linear-gradient(
    to right,
    rgba(210, 123, 250, 0.05) 1%,
    rgba(51, 83, 248, 0.05) 100%
  );
  padding: 1px;
}
.pricing-table {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
}
.pricing-table table {
  width: 100%;
}
.pricing-table .price-tag {
  font-size: 25px;
  line-height: 30px;
  margin: 0;
}
.pricing-table table td,
.pricing-table table th {
  padding: 16px;
  background: var(--white);
}
.pricing-table table td:first-child,
.pricing-table table th:first-child {
  text-align: left;
}
.pricing-table table th {
  vertical-align: top;
}
.pricing-table table td {
  font-size: var(--fs-14);
  font-weight: 500;
  text-align: center;
  position: relative;
}
.pricing-table table tr.bg-light-pink td {
  background: rgba(249, 243, 254, 1);
}
.pricing-table table th:first-child,
.pricing-table table td:first-child {
  border-radius: 10px 0 0 10px;
}
.pricing-table table th:last-child,
.pricing-table table td:last-child {
  border-radius: 0 10px 10px 0;
}
.pricing-table table td:first-child,
.pricing-table table th:first-child {
  width: 40%;
}
.pricing-table table th h4,
.pricing-table table td h4 {
  padding: 10px 0;
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}
.pricing-table table th h4 {
  padding: 0 0 15px;
}
.pricing-table table h5 {
  font-size: 20px;
  font-weight: 500;
}
.pkg-duration {
  display: block;
  color: rgba(116, 115, 126, 1);
  opacity: 0.5;
  font-size: var(--fs-15);
  font-weight: 400;
}
.pricing-table .book-btn {
  margin: 20px auto 0;
  background: none !important;
}
.pricing-table .book-btn .btn-text {
  background: var(--white);
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding: 17px 5px;
  min-width: 155px;
}
.pricing-table .book-btn .btn-border {
  position: absolute;
  background: linear-gradient(90deg, #d27bfa, #3353f8);
  border-radius: 15px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
}
.pricing-table .book-btn:hover .btn-border,
.pricing-table .book-btn.opacity1 .btn-border {
  opacity: 1;
}
.pricing-table table th p,
.pricing-table table td p {
  line-height: 20px;
  font-size: var(--fs-15);
  font-weight: 500;
}
.pricing-table table th a,
.pricing-table table td a {
  color: var(--primary-color);
  text-decoration: underline;
}
.cross-icon {
  position: relative;
  background: url(images/cross-icon.svg) no-repeat center center;
  display: block;
  margin: auto;
  width: 14px;
  height: 14px;
}
.check-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border-radius: 50px;
  display: block;
  margin: auto;
}
.check-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(images/check-icon.svg) no-repeat center center;
}

.interactive-deluxe-section {
  background: rgba(51, 83, 248, 0.1);
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.inter-3d-deluxe {
  background: rgba(210, 123, 250, 0.1);
}
.interactive-deluxe-img {
  width: 100%;
}
.interactive-deluxe-text {
  align-self: center;
  padding: 40px 30px;
  width: 100%;
}
.sub-title-secondary {
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--secondary-color);
  filter: drop-shadow(0 0 12px rgba(210, 123, 250, 0.7));
  margin-bottom: 15px;
}
.interactive-deluxe-text h3 {
  font-size: 40px;
  font-weight: 600;
}
.interactive-deluxe-text p {
  opacity: 0.7;
  padding: 20px 0;
}
.interactive-deluxe-text .btn-text {
  background: rgba(42, 36, 71, 1);
  min-width: 180px;
  text-align: center;
  padding: 16px 30px;
}

.section-title {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 25px;
}
.section-title span.block {
  display: block;
}

.mobile-menu-btn {
  min-height: 25px;
}
.mobile-menu-btn a {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
}
.menu-btn {
  position: relative;
  width: 20px;
  height: 1px;
  background: var(--white);
  border-radius: 5px;
  margin: 0 5px;
}
.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--white);
  border-radius: 5px;
  display: inline-block;
}
.menu-btn::before {
  top: -5px;
}
.menu-btn::after {
  bottom: -5px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  background: var(--primary-color);
  z-index: 99999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: 0.4s transform;
}
.show-mobile-menu {
  transform: translateX(0);
}
.video-full-screen {
  min-height: 100svh;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.video-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-full-screen::before {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.menu-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.menu-content {
  position: relative;
  z-index: 2;
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.mobile-menu nav {
  margin-top: auto;
  padding: 30px 0 0;
}
.mobile-menu ul {
  flex-direction: column;
  align-items: stretch;
}
.mobile-menu nav ul li {
  position: relative;
  padding: 5px 0;
}
.mobile-menu nav ul li a {
  font-size: 60px;
  line-height: 65px;
  font-weight: 500;
}
.mobile-menu a:hover {
  color: var(--secondary-color);
}
.mobile-menu-footer::before {
  content: "";
  background: var(--white);
  opacity: 0.2;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.mobile-menu-footer {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 50px 0 0;
  margin: 50px 0 0;
}
.mobile-menu-footer ul li {
  padding: 5px;
}
.mobile-menu-footer .social-links {
  text-align: right;
}
.menu-footer-left p {
  padding: 8px 0 0;
  line-height: 30px;
}
.close-menu-btn {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 25px;
  padding: 0;
  z-index: 9;
}
.close-menu {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  top: 10px;
}
.close-menu::before,
.close-menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--white);
  border-radius: 5px;
  display: inline-block;
  top: 0;
}
.close-menu::before {
  transform: rotate(45deg);
}
.close-menu::after {
  transform: rotate(135deg);
}

@keyframes floatLogo {
  0% {
    right: -10px;
    left: 0;
  }
  50% {
    right: 0;
    left: -10px;
  }
}
@keyframes floatBubble {
  0% {
    left: -40px;
  }
  25% {
    left: -20px;
    top: -15px;
  }
  50% {
    left: 0px;
    top: -10px;
  }
  100% {
    left: -40px;
  }
}
@keyframes floatBubble2 {
  0% {
    right: -40px;
  }
  25% {
    right: -20px;
    bottom: 5px;
  }
  50% {
    right: 0px;
  }
  100% {
    right: -40px;
  }
}
.featured-work-xl {
  display: none !important;
}
.featured-work-list {
  padding: 40px 0 0;
  display: flex;
  flex-direction: column;
}
.featured-work-list li {
  position: relative;
  width: 100%;
  flex-grow: 1;
}
.featured-work-list li .featured-work-img,
.featured-work-list li .featured-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-work-list li .featured-work-text {
  position: absolute;
  bottom: 50px;
  left: 15px;
  right: 15px;
}
.featured-work-text h3 {
  padding: 0 0 10px;
  font-size: 34px;
}
.work-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: var(--fs-16);
  letter-spacing: 0.5px;
  color: var(--white);
}
.work-link .arrow-icon {
  background: url(images/arrow-icon.svg) no-repeat center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 8px;
}
.section_home_serv {
  z-index: 2;
  /* height: 520vh; */
  position: relative;
}
.home_serv_container {
  justify-content: center;
  align-items: center;
  width: 100%;
  /* height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden; */
}
.form-submit-btn .btn-text {
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  font-size: 16px;
}

@media screen and (min-width: 1440px) {
  .home_serv_header {
    margin-top: 0;
    padding-top: 70px;
    padding-left: 13%;
    padding-right: 13%;
  }
}

.home_serv_header {
  z-index: 5;
  text-align: center;
  cursor: default;
  height: auto;
  margin-top: 20px;
  padding-top: 30px;
  padding-left: 120px;
  padding-right: 120px;
  position: relative;
  top: 0;
}
.home_serv_text_wrapper {
  z-index: 4;
  color: var(--white);
  text-transform: uppercase;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 12%;
  padding-left: 13%;
  padding-right: 13%;
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.first_home_serv_image_wrapper,
.second_home_serv_image_wrapper,
.third_home_serv_image_wrapper,
.four_home_serv_image_wrapper,
.five_home_serv_image_wrapper {
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 104vw;
  height: 102vh;
  margin-top: -1vh;
  margin-left: -2vw;
  display: flex;
  position: absolute;
  top: 0;
  overflow: visible;
}
.home_serv_container .slick-arrow {
  top: inherit;
  bottom: 0;
}
.home_serv_image {
  width: 94%;
  margin: 0 auto;
  transition: 0.4s;
}
.home_serv_image.slide-up-item {
  transform: translateY(70px);
  opacity: 0;
}
.videowrapper img,
.videowrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.home_serv_item {
  --x-offset: 0vw;
  --y-offset: 27vh;
  transform: translate(var(--x-offset), var(--y-offset));
  width: 20%;
  height: 50%;
}
.hove_serv_content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.zoomed-in-text {
  position: absolute;
  z-index: 3;
  left: 15%;
  right: 15%;
  width: 70%;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  /* display: none; */
}
.zoomed-in-text h3 {
  font-size: 40px;
  opacity: 0;
}
.zoomed-in-text h3 span {
  display: block;
}
.zoomed-in-text p {
  font-size: 22px;
  opacity: 0;
}
.intro-video {
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.intro-video video,
.intro-video img {
  width: 100%;
  height: 100vh;
}
.hide {
  display: none;
}
#mainSection {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease;
  overflow: hidden;
}
#mainSection.visible {
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease;
  transition-delay: 0.9s;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: var(--black);
  color: var(--white);
}
.f-link {
  padding: 10px 0;
}
.f-link a[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.prev-link a img {
  transform: rotate(-90deg);
}
.f-link a img {
  width: 17px;
  display: inline-block;
  vertical-align: middle;
  margin: -6px 10px 0;
}
.slide-in-always {
  transform: translate(0);
}
.project-full-img,
.project-full-img img {
  width: 100%;
}
.project-img-desktop {
  display: none;
}
.bg-none {
  background: none;
}
.dark-theme .worldmap-section img {
  filter: brightness(1);
}
.pt-100 {
  padding-top: 100px;
}
/*====== RESPONSIVE ======*/

@media (min-width: 660px) {
  .portfolio-project {
    width: 48.5%;
  }
  .project-img,
  .project-img img {
    height: 535px;
  }
  .featured-work-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .featured-work-list li {
    width: calc(50% - 10px);
  }
  .project-img-desktop {
    display: block;
  }
  .project-img-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .banner-text-inner {
    width: 65%;
  }
  .site-header {
    top: 30px;
  }
  .fill-text h3 {
    font-size: 40px;
  }
  .portfolio-section .container {
    /* width: 920px; */
  }
  .service-text,
  .service-img {
    width: 50%;
  }
  .section-padding {
    padding: 100px 0;
  }
  .our-works-content li .work-link-img {
    top: -100px;
  }
  .our-works-content li .work-link-img img {
    max-width: 300px;
    max-height: 200px;
  }
  .progress-options ul li {
    width: 50%;
    min-height: 60vh;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 30px 5px;
    cursor: pointer;
  }

  .option-img {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: -10px;
    left: -10px;
    z-index: 1;
    pointer-events: none;
    margin: 0;
  }
  .progress-options ul li:hover .option-img {
    opacity: 1;
    visibility: visible;
  }
  .option-img img {
    min-width: 300px;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
  }
  .progress-options ul li:nth-child(1) {
    min-height: 50vh;
  }
  .progress-options ul li:nth-child(2) {
    min-height: 60vh;
  }
  .progress-options ul li:nth-child(3) {
    min-height: 50vh;
  }
  .progress-options ul li:nth-child(4) {
    min-height: 70vh;
  }
  .progress-options ul li:nth-child(1) .option-img {
    /* transform: translate(-70%, -50%) rotate(-20deg); */
    transform: translate(-70%, -50%);
  }
  .progress-options ul li:nth-child(2) .option-img {
    /* transform: translate(-70%, -50%) rotate(-5deg); */
    transform: translate(-70%, -50%);
  }
  .progress-options ul li:nth-child(3) .option-img {
    /* transform: translate(-70%, -50%) rotate(5deg); */
    transform: translate(-70%, -50%);
  }
  .progress-options ul li:nth-child(4) .option-img {
    /* transform: translate(-70%, -50%) rotate(20deg); */
    transform: translate(-70%, -50%);
  }
  .lets-talk-section .container-fluid {
    padding-right: 0 !important;
  }
  .about-text-col {
    width: calc(50% - 35px);
  }
  .artistic-section h2 {
    font-size: 75px;
    line-height: 80px;
  }
  .lets-talk-text p {
    font-size: 24px;
  }
  .section-title {
    font-size: 50px;
    line-height: 65px;
  }
  .d-md-none {
    display: none;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .portfolio-project {
    width: calc(25% - 12px);
  }
  .project-img,
  .project-img img {
    height: 370px;
  }
  .container-fluid {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
  }
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .services-tabs-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .inner-page-banner {
    padding: 8% 0;
  }
  .contact-form-section {
    max-width: 600px;
  }
  .progress-options ul li {
    width: 25%;
  }
  .section-title {
    font-size: 75px;
    line-height: 85px;
  }
  .d-lg-none {
    display: none;
  }
}
@media (min-width: 1024px) {
  .featured-work-xl {
    display: block !important;
  }
  .featured-work-list {
    display: none !important;
  }
  .services-details {
    padding-top: 100px;
  }
  .our-works-content li .work-link-img img {
    max-width: 450px;
    max-height: 300px;
  }
}
@media (min-width: 1440px) {
  .banner-top-content h1 {
    font-size: 75px;
  }
  .logos-row ul {
    gap: 20px;
  }
  .our-works-content li a {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .links-button {
    gap: 10px;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 8vw;
  }
  h3 {
    font-size: 6vw;
  }
  .featured-work-text h3 {
    font-size: 24px;
  }

  .banner-top-content h1 {
    font-size: 7vw;
  }
  .services-details {
    flex-wrap: wrap;
  }
  .lets-talk-text {
    flex-wrap: wrap;
    padding-top: 120px;
  }
  .inner-text {
    width: 100%;
  }
  .let-talk-link {
    margin-top: 20px;
  }
  .site-navigations {
    display: none !important;
  }
  .services-section {
    padding: 80px 0 50px;
  }
  .artistic-section,
  .bottom-img-section,
  .logos-section,
  .our-works {
    padding: 50px 0;
  }
  .logos-row ul {
    padding: 15px 0;
    gap: 80px;
  }
  .logos-row ul li img {
    max-width: 80px;
  }
  .hide-sm {
    display: none !important;
  }
  .footer-bottom {
    padding: 20px 0 50px;
  }
}

@media (max-width: 575px) {
  .pt-100 {
    padding-top: 50px;
  }
  .footer-top-section h3 {
    font-size: 7vw;
  }
  .dual-parts {
    flex-wrap: wrap;
  }
  .title-content {
    width: 100%;
  }
  .our-works-content {
    margin: 15px 0 0;
    width: 80%;
  }
}
