/*
Theme Name: Digital LifeStyle
*/

:root {
  --font-family-primary: 'Gilroy', sans-serif;
  --white: #fff;
  --black: #000;
  --theme-dark: #111018;
  --primary-color: #D27BFA;
  --secondary-color: #3353F8;
  --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(--theme-dark);
  color: var(--white);
  font-family: var(--font-family-primary);
	font-weight: 500;
	font-size: var(--fs-15);
	margin: 0 auto;
	position: relative;
}

h1, h2, h3, h4, h5, h6, p { margin:0 0 10px; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
a {
  text-decoration: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*====== Sections Style ======*/
.container {
  /* max-width: 970px; */
  width: 100%;
  padding: 0 4vw;
}
.container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.h-100vh {
  min-height: 100vh !important;
}
.h-auto {
  min-height: auto !important;
}
.w-100 {
  width: 100% !important;
}
.theme-btn {
  font-family: var(--font-family-primary);
  font-size: var(--fs-15);
  color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  transition: all 0.4s;
  position: relative;
}
.theme-btn-sm-icon img {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 -5px 0 8px;
}
.theme-btn:hover {
  /* background: rgba(0, 0, 0, 0.3);
  color: var(--primary-color); */
  transition: all 0.4s;
}
.flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.flex-column-center {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}

#cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}


#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: 999;
  display: none !important;
}

#cursor-border {
  --size: 50px;
  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: 999;
}

.hero-section::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-section {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}
.hero-section-img,
.hero-section {
  height: 100vh;
  width: 100%;
}
.hero-section iframe,
.hero-section video,
.hero-section-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.site-header {
  position: fixed;
  top: 20px;
  z-index: 999;
  left: 0;
  right: 0;
}
.slide-in-top {
  transform: translateY(-100px);
}
.slide-out-top {
  transform: translateY(-100px);
  transition: all 0.7s;
}
.logo {
  position: relative;
  width: 166px;
}
.logo svg {
  width: 100%;
}
html.has-scroll-init .slide-in-top {
  transform: translateX(0px);
  transition: all 0.7s;
}
.site-header.header-light-theme .theme-btn-sm-icon img,
.site-header.header-light-theme .logo img {
  filter: invert(100%);
}
.site-header.header-light-theme .theme-btn {
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: var(--black);
}
.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 1px;
  background: var(--white);
}
.sub-title {
  transition: transform;
  transform: translateX(-100px);
  opacity: 0;
  transform-style: preserve-3d;
  position: relative;
  padding: 2px 0 2px 30px;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.mw-500px {
  max-width: 475px;
}
.mw-550px {
  max-width: 547px;
}
.mw-600px {
  max-width: 600px;
}
.mw-650px {
  max-width: 650px;
}
.mw-700px {
  max-width: 710px;
}

.text-block h1 {
  line-height: 1.2;
  font-size: 32px;
  font-weight: 600;
}
.c-title-line {
  display: block;
  opacity: 0;
  transform: translateY(100%) rotateX(-100deg);
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: opacity 0s cubic-bezier(.215,.61,.355,1),transform 0s cubic-bezier(.215,.61,.355,1);
}
html.has-scroll-init .sub-title,
html.has-scroll-init .c-title-line {
  opacity: 1;
  transform: none;
  transition-duration: .8s;
}
html.has-scroll-init .c-title-line:first-child {
  transition-delay: .1s;
}
.text-block h2 {
  font-size: 24px;
  font-weight: 500;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.pb-4 {
  padding-bottom: 2rem;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pt-1 {
  padding-top: 5px;
}
.primary-color {
  color: var(--primary-color) !important;
}
.hover-fill {
  --size: 225px;
  /* bottom: calc(var(--size) / -2); */
  /* right: calc(var(--size) / -2); */
  /* top: calc(var(--size) / -2);
  left: calc(var(--size) / -2); */
  margin: auto;
  width: var(--size);
  height: var(--size);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 100%;
  z-index: -1;
  background: var(--white);
  mix-blend-mode: difference;
  transition: 0.4s transform;
  transform: none;
}
.circular-btn a:hover img {

}
.circular-btn a:hover img,
.circular-btn a:hover span {
  mix-blend-mode: difference;
}
.circular-btn a:hover .hover-fill {
  /* opacity: 1;
  visibility: visible; */
  /* transition: 0.4s all; */
}
.circular-btn a {
  overflow: hidden;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 215px;
  height: 215px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  padding: 35px;
  text-align: center;
  color: var(--white);
}
.circular-btn a img {
  width: 27px;
  margin-bottom: 10px;
}
.theme-bg-gradient {
  background: rgb(51,83,248);
  background: -moz-linear-gradient(135deg, rgba(51,83,248,1) 0%, rgba(210,123,250,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(51,83,248,1) 0%, rgba(210,123,250,1) 100%);
  background: linear-gradient(135deg, rgba(51,83,248,1) 0%, rgba(210,123,250,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3353f8",endColorstr="#d27bfa",GradientType=1);
}
.dark-theme {
  background: rgb(17,16,24);
  background: -moz-linear-gradient(180deg, rgba(17,16,24,1) 0%, rgba(17,16,24,0.5) 100%);
  background: -webkit-linear-gradient(180deg, rgba(17,16,24,1) 0%, rgba(17,16,24,0.5) 100%);
  background: linear-gradient(180deg, rgba(17,16,24,1) 0%, rgba(17,16,24,0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111018",endColorstr="#111018",GradientType=1);
  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: 80px 0;
}
.video-area {
  width: 100%;
}
.video-area video,
.video-area iframe,
.video-area img {
  width: 100%;
}
.h-section li {
  padding: 10px 0;
  font-size: var(--fs-18);
}
#services-section {
  opacity: 1;
}
.portfolio-section {
  overflow: hidden;
}
.portfolio-section .container {
  max-width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}
.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%);
  display: block;
  /* height: 595px; */
  position: relative;
  transition: all .5s cubic-bezier(.67,0,.285,1);
}

.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(.67,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 h4 {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: var(--fs-20);
  color: var(--white);
}
.project-text h5 {
  font-weight: 400;
  font-size: var(--fs-20);
  color: rgba(255, 255, 255, 0.5);
}
.fs-50 {
  font-size: 22px !important;
  font-weight: 400;
}
.contact-link a:hover img {
  filter: invert(20%) sepia(53%) saturate(459%) hue-rotate(25deg) brightness(120%) contrast(97%);
}
.contact-link {
  order: 3;
}
.copyright-text {
  order: 2;
  font-size: var(--fs-12);
  color: rgba(255, 255, 255, 0.5);
}
.f-logo a:hover img {
  filter: none;
}
.f-logo a img {
  filter: invert(20%) sepia(53%) saturate(459%) hue-rotate(25deg) brightness(120%) contrast(97%);
  width: 65px;
}
.site-footer {
  padding: 0 0 30px;
  justify-content: space-around;
}

.c-scrollbar {
  opacity: 1 !important;
  position: fixed !important;
  top: inherit !important;
  right: 24px !important;
  bottom: 40px !important;
  width: 2px;
  background-color: #6e6e6e;
  height: 20vh !important;
  transform-origin: center center;
  transition: transform 0.3s, opacity 0.3s;
  opacity: .1;
  z-index: 10000;
}
.c-scrollbar_thumb {
  position: absolute;
  top: auto;
  min-height: 30%;
  background-color: #f8f8f8;
  opacity: 1;
  width: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.c-scrollbar:hover, 
.has-scroll-scrolling .c-scrollbar, 
.has-scroll-dragging .c-scrollbar {
  opacity: .8;
}
html.has-scroll-smooth body,
html.has-scroll-smooth {
  overflow: hidden;
}
html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}

.has-scroll-init [data-scroll-container] {
  min-height: 100vh;
}
.brands-logo-section.container-fluid {
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100vw;
  
}
[data-scroll-section] {
  perspective: 1px;
}

.brands-rows-wrap > div,
.brands-rows-wrap > div ul,
.brands-rows-wrap {
  overflow: hidden;
}
.brands-logo-section .flex-center {
  flex-wrap: nowrap;
}
.brands-logo-section ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 15px 1vw;
  margin: 15px;
  min-width: 130px;
  width: 130px;
  height: 130px;
}
.brands-logo-section ul li img {
  transition: 0.4s all;
  will-change: opacity;
  height: 56px;
  display: block;
}
.light-theme .brands-logo-section img {
  filter: invert(100%);
}
.mw-140 {
  min-width: 140px;
  display: inline-block;
}
.mw-240 {
  min-width: 210px;
  display: inline-block;
}

.off-viewport {
  transform: translate3d(0px, 20px, 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) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(10deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition-delay: 1.5s;
    transition: all 1.5s;
}
.in-viewport2{
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition-delay: 1.5s;
  transition: all 1.5s;
}
.off-viewport3 {
  opacity: 0;
  transform: translate3d(0px, 20px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition-delay: 2.5s;
  transition: all 1.5s;
}
.in-viewport3 {
opacity: 1;
transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
transform-style: preserve-3d;
transition-delay: 2.5s;
transition: all 1.5s;
}

.d-block {
  display: block;
}
.fw-400 {
  font-weight: 400 !important;
}
.mw-450px {
  max-width: 450px;
}
.contact-form {
  width: 100%;
  margin-top: 50px;
}
.error {
  color: #EE4B2B;
}
#form-submit-message {
  text-align: center;
  margin: 10px 0 0;
}
.ajax-loader {
  display: inline-block;
}
.form-control {
  position: relative;
  margin-bottom: 40px;
}
.form-control label.error{
  position: absolute;
  bottom: -20px;
  font-size: 12px;
}
.form-control:hover .line:before {
  transform: translateX(-80%);
  transition: all 1s cubic-bezier(0,.03,0,1);
}
.form-control.style-focus .line:before {
  transition: all .8s cubic-bezier(.405,0,.025,1);
  transform: translateX(0);
}

.form-control .line:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  transform: translateX(-100%);
  transition: all .5s cubic-bezier(.405,0,.025,1);
}
.form-control .line {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.15);
}

.form-control .placeholder {
  height: 36px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  transition: all .25s ease;
}
.form-control .placeholder label {
  color: rgba(255, 255, 255, 0.60);
  display: block;
}

.form-control.style-focus .placeholder {
  transform: translateY(-32px) translateX(-10%) scale(.8);
  opacity: 1;;
}
.placeholder-auto .placeholder {
  height: 40px;
}
.th-textbox {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
  font-family: var(--font-family-primary);
  font-size: var(--fs-15);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 7px;
}
.th-textarea {
  height: 150px;
  resize: none;
}
.submit-btn {
  border: none;
  cursor: pointer;
  background: none;
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-size: 14x;
  font-weight: 600;
  display: inline-block;
  text-decoration: underline;
}
.fs-100 {
  font-size: 60px;
}
.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 {
  color: var(--white);
  display: inline-block;
}
.f-link a img {
  width: 17px;
  display: inline-block;
  vertical-align: middle;
  margin: -6px 10px 0;
}
.prev-link a img {
  transform: rotate(-90deg);
}
.f-link a[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.project-full-img,
.project-full-img img {
  width: 100%;
}
.project-images-wrapper {
  padding-bottom: 50px;
}
.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;
}
/* #bannerVideoMobile {
  display: none;
} */

/*====== Landing ======*/
.arrow-dir-down {
  transform: rotate(135deg);
  margin-top: 15px;
  margin-bottom: 0 !important;
}
.services-wrapper {
  flex-grow: 1;
  width: 100%;
  /* max-width: 980px; */
  margin: 0 auto;
  padding: 0 !important;
}
.service-row {
  width: 100%;
  padding: 15px 0;
  text-align: center;
}
.service-text {
  margin: 25px 0;
  text-align: left;
}
.service-image {
  margin: 10px 0;
  max-width: 475px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.image-shadow {
  /* box-shadow: 0 0 80px rgba(226, 248, 100, 0.25); */
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.25));
}
.service-image img {
  width: auto;
  max-width: 100%;
  border-radius: 10px;
}
.service-text h3 {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 10px;
}
.service-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 24px;
}
.service-text h6 {
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--primary-color);
  filter: drop-shadow(0 0 12px rgba(210, 123, 250, 0.7));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-text h6 .ser-icon {
  width: 18px;
  height: 18px;
}
.service-text h6 .ser-icon i {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.service-row h6.off-viewport, .service-row h6.in-viewport {
  transition-delay: 0.5s;
}
.service-cta a:not(:last-child) {
  margin-right: 15px;
}
.service-cta {
  margin-top: 35px;
}
.service-cta .theme-btn {
  padding: 9px 20px;
}
.see-more-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  height: 1px;
  left: 0;
  right: 0;
  background: var(--white);
  opacity: 0.5;
}
.see-more-link {
  opacity: 0.5;
  position: relative;
  font-size: var(--fs-15);
  color: var(--white);
}
.see-more-link:hover,
.see-more-link:hover::after {
  opacity: 1;
}
.services-col h4 {
  font-size: var(--fs-18);
  font-weight: 400;
}
.services-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-col ul li {
  padding: 5px 0;
  font-size: var(--fs-15);
  color: rgba(255, 255, 255, 0.7);
}
.services-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  flex-grow: 1;
}
.services-col {
  margin-bottom: 20px;
}
.flex-grow-1 {
  flex-grow: 1;
}
.fs-27 {
  font-size: 27px;
}
.inner-page-banner {
  padding: 80px 0;
  position: relative;
}
.inner-page-banner::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: url(images/star-img.svg) no-repeat center center;
  background-size: contain !important;
  top: 8%;
  bottom: 8%;
  left: 16%;
  margin: auto;
  filter: blur(4px);
}
.inner-page-banner h1 {
  padding-bottom: 25px;
}
.inner-page-banner p {
  font-size: var(--fs-20);
}
.flex-column {
  flex-direction: column;
}
.services-tabs-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.service-tab {
  background: var(--white);
  color: var(--black);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  max-width: 315px;
}
.service-tab-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--primary-color);
}
.service-tab h6 {
  font-size: var(--fs-16);
  font-weight: 500;
  padding: 15px 0;
  margin: 0;
}
.service-tab p {
  opacity: 0.7;
  font-size: 13px;
}
.pt-0 {
  padding-top: 0 !important;
}
.mt-minus-45 {
  margin-top: -45px;
}
.sub-title.primary-color::before {
  background: var(--primary-color);
}
.services-wrapper-inner .service-text h3 {
  font-size: 28px;
  padding-right: 10px;
}
.services-wrapper-inner .service-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 24px;
}
.service-tab-icon i {
  font-style: normal;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.crm-title {
  padding: 5vw 0 15px;
  text-align: center;
  flex-direction: column;
}
.crm-title h3 {
  font-size: 30px;
  font-weight: 400;
}
.crm-title h3 span {
  color: rgba(0, 0, 0, 0.35);
}
.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: all 0.9s;
}
html.has-scroll-init .fade-in {
  opacity: 1;
  visibility: visible;
  transition-delay: 1.5s;
  transition: all 3s;
}

html:not(.has-scroll-init) {
  cursor:wait;
  overflow:hidden
}
html.scroll-auto {
  cursor: auto;
  overflow: auto;
}
.service-row span.off-viewport,
.service-row span.in-viewport {
  transition-delay: 0.5s;
}
#topSection {
  position: relative;
}
.scroll-more {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}
.scroll-more a {
  display: inline-block;
  width: 30px;
  height: 20px;
}
#topSection .text-block {
  max-width: 680px;
  margin: 0 auto;
}
.text-block h4 {
  font-weight: 600;
  font-size: var(--fs-16);
}
#topSection .text-block p {
  font-weight: 500;
  font-size: var(--fs-16);
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
}
.light-white {
  color: rgba(255, 255, 255, 0.5);
}
.sm-text {
  font-size: var(--fs-12);
}
.justify-content-center {
  justify-content: center !important;
}

.tabs-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
}
.tabs-links ul {
  display: flex;
  flex-wrap: wrap;
}
.tabs-links ul li {
  padding: 0;
  font-size: var(--fs-15);
  flex-grow: 1;
}
.tabs-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 20px;
  border-radius: 20px;
  display: block;
}
.tabs-links ul li.active-tab a {
  color: var(--white);
  filter: drop-shadow(0 0 10px rgba(210, 123, 250, 0.2));
  background: rgb(210,123,250);
  background: -moz-linear-gradient(90deg, rgba(210,123,250,1) 0%, rgba(51,83,248,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(210,123,250,1) 0%, rgba(51,83,248,1) 100%);
  background: linear-gradient(90deg, rgba(210,123,250,1) 0%, rgba(51,83,248,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d27bfa",endColorstr="#3353f8",GradientType=1);
}
.tab-panel {
  display: none;
  min-height: 100vh;
}
.tab-panel.show{
  display: block;
}
.services-cards-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
.service-card {
  transform-style: preserve-3d;
}
.card-img {
  margin-bottom: 20px;
}
.card-img img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}
.card-text p {
  /* font-size: 13px; */
  font-weight: 500;
  line-height: 22px;
  color: rgba(229, 207, 248, 0.8);
}
.card-text h5 {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: var(--fs-16);
  font-weight: 700;
  padding-bottom: 5px;
}
.card-h-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--white);
}
.card-h-icon i {
  width: 100%;
  height: 100%;
  filter: invert(1);
  display: inline-block;
}
/*====== Icons ======*/
.basics-3d-icon {
  background: url(images/icons/3d-rotation-icon.svg) no-repeat center center;
}
.platform-2d-icon {
  background: url(images/icons/2d-platform-icon.svg) no-repeat center center;
}
.platform-3d-icon {
  background: url(images/icons/3d-premium-platform-icon.svg) no-repeat center center;
}
.renders-3d-icon {
  background: url(images/icons/renders-icon.svg) no-repeat center center;
}
.platform-2d-icon1 {
  background: url(images/icons/2d-platfrom/platform2d-icon1.svg) no-repeat center center;
}
.platform-2d-icon2 {
  background: url(images/icons/2d-platfrom/platform2d-icon2.svg) no-repeat center center;
}
.platform-2d-icon3 {
  background: url(images/icons/2d-platfrom/platform2d-icon3.svg) no-repeat center center;
}
.platform-2d-icon4 {
  background: url(images/icons/2d-platfrom/platform2d-icon4.svg) no-repeat center center;
}
.platform-2d-icon5 {
  background: url(images/icons/2d-platfrom/platform2d-icon5.svg) no-repeat center center;
}
.platform-2d-icon6 {
  background: url(images/icons/2d-platfrom/platform2d-icon6.svg) no-repeat center center;
}
.platform-3d-icon1 {
  background: url(images/icons/3d-platform/platform3d-icon1.svg) no-repeat center center;
}
.platform-3d-icon2 {
  background: url(images/icons/3d-platform/platform3d-icon2.svg) no-repeat center center;
}
.platform-3d-icon3 {
  background: url(images/icons/3d-platform/platform3d-icon3.svg) no-repeat center center;
}
.platform-3d-icon4 {
  background: url(images/icons/3d-platform/platform3d-icon4.svg) no-repeat center center;
}
.platform-3d-icon5 {
  background: url(images/icons/3d-platform/platform3d-icon5.svg) no-repeat center center;
}
.platform-3d-icon6 {
  background: url(images/icons/3d-platform/platform3d-icon6.svg) no-repeat center center;
}
.platform-3d-icon7 {
  background: url(images/icons/3d-platform/platform3d-icon7.svg) no-repeat center center;
}
.platform-3d-icon8 {
  background: url(images/icons/3d-platform/platform3d-icon8.svg) no-repeat center center;
}
.platform-3d-icon9 {
  background: url(images/icons/3d-platform/platform3d-icon9.svg) no-repeat center center;
}
.platform-3d-icon10 {
  background: url(images/icons/3d-platform/platform3d-icon10.svg) no-repeat center center;
}
.platform-3d-icon11 {
  background: url(images/icons/3d-platform/platform3d-icon11.svg) no-repeat center center;
}
.renders-3d-icon1 {
  background: url(images/icons/3d-renders/renders-icon1.svg) no-repeat center center;
}
.renders-3d-icon2 {
  background: url(images/icons/3d-renders/renders-icon2.svg) no-repeat center center;
}
.renders-3d-icon3 {
  background: url(images/icons/3d-renders/renders-icon3.svg) no-repeat center center;
}
.renders-3d-icon4 {
  background: url(images/icons/3d-renders/renders-icon4.svg) no-repeat center center;
}
.renders-3d-icon5 {
  background: url(images/icons/3d-renders/renders-icon5.svg) no-repeat center center;
}
.renders-3d-icon6 {
  background: url(images/icons/3d-renders/renders-icon6.svg) no-repeat center center;
}
.renders-3d-icon7 {
  background: url(images/icons/3d-renders/renders-icon7.svg) no-repeat center center;
}
.renders-3d-icon8 {
  background: url(images/icons/3d-renders/renders-icon8.svg) no-repeat center center;
}
.renders-3d-icon9 {
  background: url(images/icons/3d-renders/renders-icon9.svg) no-repeat center center;
}
.basics-3d-icon1 {
  background: url(images/icons/3d-basics/basic-3d-icon1.svg) no-repeat center center;
}
.basics-3d-icon2 {
  background: url(images/icons/3d-basics/basic-3d-icon2.svg) no-repeat center center;
}
.basics-3d-icon3 {
  background: url(images/icons/3d-basics/basic-3d-icon3.svg) no-repeat center center;
}
.basics-3d-icon4 {
  background: url(images/icons/3d-basics/basic-3d-icon4.svg) no-repeat center center;
}
.basics-3d-icon5 {
  background: url(images/icons/3d-basics/basic-3d-icon5.svg) no-repeat center center;
}
.basics-3d-icon6 {
  background: url(images/icons/3d-basics/basic-3d-icon6.svg) no-repeat center center;
}
.basics-3d-icon7 {
  background: url(images/icons/3d-basics/basic-3d-icon7.svg) no-repeat center center;
}
.basics-3d-icon8 {
  background: url(images/icons/3d-basics/basic-3d-icon8.svg) no-repeat center center;
}
.basics-3d-icon9 {
  background: url(images/icons/3d-basics/basic-3d-icon9.svg) no-repeat center center;
}
.down-arrow-animated {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -7px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: arrowAnimation 1.5s infinite;
  animation: arrowAnimation 1.5s infinite;
}
@keyframes arrowAnimation {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }
}

.p-0 {
  padding: 0 !important;
}
/*====== RESPONSIVE ======*/

@media (max-width: 419px) {
  .logo {
    width: 110px;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .project-img-desktop {
    display: block;
  }
  .project-img-mobile {
    display: none;
  }
  /* #introVideo {
    display: block;
  }
  #introVideoMobile {
    display: none;
  } */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-cards-wrapper, 
  .services-tabs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  #introVideo {
    display: none;
  }
  #bannerVideoMobile,
  #introVideoMobile {
    display: block;
  }
  .project-img-desktop {
    display: none;
  }
  .project-img-mobile {
    display: block;
  }
  .f-link a {
    font-size: 12px;
  }
  .f-link a img {
    width: 12px;
    margin: 0;
  }
  .m-mt-1 {
    margin-top: 190px !important;
  }
  .contact-link {
    order: 2;
  }
  .copyright-text {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .h-section {
    padding: 40px 0;
  }
  .service-text h3 {
    font-size: 24px;
  }
  .brands-logo-section ul li {
    height: 65px;
    min-width: 65px;
    width: 65px;
    margin: 15px 5px;
  }
  .brands-logo-section ul li img {
    height: 30px;
  }
}

@media (min-width: 660px) {
  .portfolio-project {
    width: 46%;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    padding: 0 10vw;
    margin: 0 auto;
  }
  .fs-100 {
    font-size: 100px;
  }
  .fs-50 {
    font-size: 50px !important;
  }
  .text-block h1 {
    font-size: 60px;
  }
  .text-block h4 {
    font-size: var(--fs-20);
  }
  .text-block h2 {
    font-size: 30px;
  }
  #topSection .text-block p {
    font-size: 22px;
  }
  .mw-240 {
    min-width: 250px;
    display: inline-block;
  }

  .portfolio-section .container {
    width: 80%;
  }

  .service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
  }
  .service-image {
    margin: 25px 0;
  }
  .service-text {
    max-width: 395px;
  }
  .img-left-align {
    padding-right: 35px;
  }
  .img-right-align {
    order: 2;
    padding-left: 35px;
  }
  .inner-page-banner h1 {
    font-size: 32px;
  }
  .services-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-cards-wrapper.ser-cards-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer {
    padding: 60px 0 30px;
  }
}
@media (max-width: 767px) {
  #cursor-border,
  #cursor-ui {
    display: none;
  }
  .brands-logo-section ul li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    min-width: 20%;
    margin: 10px 0;
  }

  #introVideoSection {
    display: none;
  }
  #mainSection {
    display: block;
  }

  .m-mt-1 {
    margin-top: 90px;
  }
  .mw-550px {
    width: 100%;
  }
  .circular-btn {
    margin-left: auto;
  }
  .contact-form {
    max-width: 100%;
  }
  .scroll-more {
    display: none !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container-fluid {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-tabs-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .inner-page-banner {
    padding: 8% 0;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  body {
    font-size: var(--fs-18);
  }

  .card-text p {
    font-size: var(--fs-16);
  }

  .inner-page-banner h1 {
    font-size: 46px;
  }

  .service-image {
    max-width: 55%;
    width: 55%;
  }

  .service-image img {
    width: 100%;
  }

  .service-text {
    max-width: 36%;
  }
  .service-text h3 {
    font-size: 2vw;
  }
  .card-text h5 {
    font-size: 1.2vw;
    line-height: 1.5vw;
  }
  .services-col ul li,
  .service-text p {
    font-size: 1.1vw;
    line-height: 1.5vw;
  }
  .card-text p {
    font-size: 15px;
    line-height: 22px;
    padding-top: 5px;
  }
  .fs-27 {
    font-size: 32px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .card-text p,
  .service-text h6 {
    font-size: 16px;
  }
  .services-col ul li {
    font-size: 18px;
  }
}
