@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

@font-face {
  font-family: 'Switzer-Regular';
  src: url('../fonts/Switzer-Regular.woff2') format('woff2'),
       url('../fonts/Switzer-Regular.woff') format('woff'),
       url('../fonts/Switzer-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}


@font-face {
  font-family: 'Khand-Bold';
  src: url('../fonts/Khand-Bold.woff2') format('woff2'),
       url('../fonts/Khand-Bold.woff') format('woff'),
       url('../fonts/Khand-Bold.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}


*,
:after,
:before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--color-bg: #111;
--color-text: #fff;
--color-button: #caf291;
--color-circlegreen: #70e6ed;
--color-roundpink: #ffb3db;
--color-testcard: #1a1a1a;
--color-para: #bbb;
--darkBlack:#000;
--grayDarkText:#444;
--bordrdiv:#bbbbbb59;
--redbg:#dc3545;
}
html,
body {
background-color: var(--color-bg);
line-height: 1.6;
margin: 0;
padding: 0;
 font-family: 'Switzer-Regular';
}
a {
text-decoration: none;
color: var(--color-text);
}
p {
color: var(--color-para);  
font-weight: 400;
font-family: 'Switzer-Regular';
font-size: 1.2rem;
line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--color-text);
font-weight: 400;
line-height: 1.2;
text-transform: uppercase;
font-family: 'Khand-Bold';
font-weight: 700  !important;
}
input,
select,
textarea {
appearance: none;
background-color: var(--color-testcard) !important;
border: 2px solid var(--grayDarkText) !important;
border-radius: 3px !important;
color: var(--color-text) !important;
font-size: 20px;
font-weight: 400 !important;
min-height: 54px;
padding: 14px 20px !important;
vertical-align: top;
margin-bottom: 15px;
width: 100% !important;
}
input:focus,
select:focus,
textarea:focus {
border-color: var(--grayDarkText) !important;
outline: none;
box-shadow: unset !important;
}
input,
select,
textarea,
::placeholder {
color: var(--grayDarkText) !important;
}
#cursor {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
z-index: 9999;
}
#circle1 {
background: var(--color-text);
border-radius: 50%;
height: 1em;
width: 1em;
}
.formHero_inner-subheading {
border: 2px solid var(--color-button);
border-radius: 5px;
display: inline-block;
padding: 5px 5px 5px 5px;
transform: rotate(-8deg);
font-size: 14px;
}
.main-title {
    font-size: 4.5rem;
    font-family: 'Khand-Bold';
    font-weight: 700 !important;
    line-height: 4.2rem;
}
.Simi-title {
color: var(--color-roundpink);
}


/*  */

.hero-wapper {
    background-color: #000000b9;
}
svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}


section, footer{
  background-color: var(--darkBlack) !important;
  position: relative;
  z-index: 9;
}

.sectionAnmation {
    position: relative;
    z-index: 99;
}

.digital-part img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}
/*  */
/* header */
.sticky {
    position: sticky;
    z-index: 1000;
    max-width: 100%;
    margin: 0 auto;
    top: 0;
    border-radius: 0;
    padding: 10px 20px;
    transition: all 0.9s ease;
    background-color: #000;;
}

.sticky.expanded {
    /* top: 10px; */
    background: transparent;
    max-width: 100%;
}
.btn {
border-radius: 0.375rem;
transition: all 0.2s ease;
}
input[type="checkbox"] {
display: none;
}
/* Menu Toggle Button */
.menu-btn {
position: absolute;
top: 17px;
right: 0;
height: 45px;
width: 45px;
color: var(--color-text);;
font-size: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease-in-out;
}
.nav-wrapper {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
clip-path: circle(25px at calc(100% - 45px) 45px);
transition: all 0.3s ease-in-out;
z-index: 5;
}
#active:checked~.nav-wrapper {
clip-path: circle(75%);
}
#active:checked~.menu-btn i:before {
content: "\f00d";
}
/* Menu items */
.nav-wrapper ul {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
list-style: none;
}
.digital-part-right h2{
  font-family: 'Khand-Bold';
font-weight: 600;
}
.nav-wrapper ul li a {
font-size: 26px;
color: var(--color-text);;
text-decoration: none;
padding: 10px 30px;
border-radius: 50px;
position: relative;
transition: 0.3s;
line-height: 48px;
font-family: 'Khand-Bold';
font-weight: 500;
text-transform: uppercase;;
}
.nav-wrapper ul li a:after {
content: "";
position: absolute;
width: 104%;
height: 110%;
left: -2%;
top: -5%;
border-radius: 50px;
z-index: -1;
transform: scaleY(0);
animation: rotate 1.5s linear infinite;
transition: transform 0.3s ease;
}
.nav-wrapper ul li a:hover:after {
transform: scaleY(1);
}
/*lest's talk poopup */
.btn-theme {
background-color: var(--color-button);
border: 2px solid var(--color-button) !important;
 transition: 0.9s;
 font-family: 'Khand-Bold';
  font-size: 20px !important;
}
.btn-theme:hover {
  background-color: transparent !important;
  color: var(--color-text) !important;
}
.popup-setup {
background-color: var(--color-bg);
padding: 40px;
border: 2px solid var(--grayDarkText);;
border-radius: 6px;
overflow: hidden;
}
.social-item span {
color: var(--color-para);
font-size: 14px;
}
.social-item a {
width: 45px;
height: 45px;
  font-family: 'Switzer-Regular';
font-weight: 400;
line-height: 10px;
font-size: 16px;;
}
.h4.fw-bold.text-white.service-text{
  font-family: 'Khand-Bold';
font-weight: 700;
}
.social-item a:hover {
background: var(--color-button) !important;
color: var(--darkBlack) !important;
}
.emoji-item img {
filter: brightness(0) invert(1);
transition: transform 0.4s ease;
transform: rotate(50deg);
}
.emoji-item {
width: 50px;
height: 50px;
background: var(--redbg);
padding: 10px;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right: 60px;
bottom: 11px;
}
.emoji-item:hover img {
transform: rotate(0deg);
}
/*lest's Talk Popup*/



/* hero-wapper */
/* .hero-wapper{
  background-image: url("../img/banner.jpg");
  width: 100%;
  height: 100%;
  background-repeat: none;
  background-size: cover;
} */
.hero-wapper{
  padding: 130px 0px;
}
.hero-wapper h2 {
    font-size: 5rem;
    line-height: 5.1rem;
}
.btn-theme.btn-hero {
    background: transparent;
    color: #fff !important;
    border: 2px solid var(--color-button);
    transition: 0.9s;
}
.btn-theme.btn-hero:hover {
    background:  var(--color-button) !important;
    color: var(--darkBlack) !important;
    border: 2px solid var(--color-button) !important;
}
/* hero-wapper */
/* services */
.services-wapper {
max-width: 840px;
margin: 0 auto;
position: relative;
}
/* .services-wapper h2 {
font-size: 5rem;
font-family: 'Khand-Bold';
font-weight: 700 !important;
} */
.emoji-item2,
.right-emoji2 {
width: 50px;
height: 50px;
padding: 10px;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
}
.emoji-item2 {
background: var(--redbg);
left: 71px;
bottom: 4px;
}
.emoji-item2 img {
filter: brightness(0) invert(1);
transform: rotate(50deg);
transition: transform 0.4s ease;
}
.emoji-item2:hover img {
transform: rotate(0deg);
}
.right-emoji2 {
background: var(--color-circlegreen);
right: 70px;
top: 0px;
}
.right-emoji2 img {
animation: moveTopDown 2s linear infinite;
transition: transform 0.4s ease;
}

.textTitle{
  font-family: 'Khand-Bold';
font-weight: 600;
font-size: 24px;
}

/* video */
.video-wappper img {
height: 100%;
object-fit: cover;
min-height: 100%;
}
.video-wappper video {
position: absolute;
z-index: 99;
left: 0;
width: 100%;
height: 450px;
padding: 50px;
}
.video-card {
right: 0;
bottom: 0;
z-index: 99;
margin: 30px;
background-color: var(--darkBlack);;
}
.video-wapper-info p {
line-height: 28px;
}
.video-wapper-info .h1 {
border-bottom: 4px solid var(--color-text);;
width: max-content;
font-family: 'Khand-Bold';
}
.video-wapper-section {
width: 95%;
margin: 0 auto;
}
.video-wapper-section.down-section {
position: relative;
top: 200px;
}
.video-wapper-section.down-section.box-card .popup-setup {
padding-top: 100px;
padding-bottom: 100px;
border: 0;
background: var(--color-testcard);
}
.lets-talk-btn img {
width: 32px;
height: 32px;
object-fit: cover;
border-radius: 50%;
border: 2px solid var(--color-text);;
margin-left: -19px;
}
.btn-theme.lets-talk-btn {
padding-left: 30px !important;
}

/* video */
@keyframes moveTopDown {
0% {
transform: translateY(0);
opacity: 1;
}

50% {
transform: translateY(10px);
opacity: 0.6;
}

100% {
transform: translateY(0);
opacity: 1;
}
}

/* video */

/* testimonial */
.heart-icon span {
width: 50px;
height: 50px;
border-radius: 50px;
background: var(--color-roundpink);
display: inline-block;
align-items: center;
display: inline-grid;
position: relative;
top: -11px;
}
.heart-icon i {
color: var(--darkBlack);;
font-size: 28px;
animation: heartbeat 5s infinite;
}
.testimonial-wapper {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
overflow: auto;
-ms-overflow-style: none;
scrollbar-width: none;
}
.testimonial-card {
flex: 1 1 350px;
max-width: 100%;
background: var(--color-testcard);
padding: 40px;
}
.testimonial-wapper::-webkit-scrollbar {
display: none;
}
.services-wappper{
max-width: 100%;
background: var(--color-testcard); 
padding: 32px !important;
}

/* testimonial */

/* services */
.subpiknk{
background-color: var(--color-roundpink) !important;
}
.subgreen{
background-color: var(--color-button);
}
.subsky{
background-color:var(--color-circlegreen);
}
.top-dwon-title {
transform: rotate(-5deg);
position: absolute !important;
top: -18px;
font-family: 'Khand-Bold';
font-weight: 600;
}

.services-wappper ul li  {
list-style: none;
border-top: 1px dashed var(--bordrdiv);
padding: 12px 0;
}
.services-wappper ul li a {
    color: var(--color-text);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
  font-family: 'Khand-Bold';
font-weight: 700;
  }
.team-icon {
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50px;
font-size: 30px;
}
.team-icon img{
width: 40px;
transition: transform 0.4s ease;
}
.eyes-icon:hover img,
.eyes-gem:hover img {
transform: rotate(-25deg) scale(1.2);
transition: transform 0.4s ease;
}
.eyes-icon {
right: 30px;
bottom: 40px;
z-index: 9;
}
.eyes-gem {
top: 0;
left: 50px;
z-index: 9;
}
.icon-services {
width: max-content;
padding: 5px;
border-radius: 5px;
margin: 0 auto;
margin-bottom: 20px;
}
.gallery-wrapper {
overflow: hidden;
}
.gallery-row {
overflow: hidden;
white-space: nowrap;
position: relative;
margin-bottom: 20px;
}
.gallery-track {
display: flex;
animation: scroll-left 45s linear infinite;
gap: 20px;
}
.gallery-row.reverse .gallery-track {
animation: scroll-right 45s linear infinite;
}
.gallery-row:hover .gallery-track {
animation-play-state: paused;
}
.gallery-track img {
width: 400px;
height: 280px;
object-fit: cover;
flex-shrink: 0;
border-radius: 10px;
}
.digital-part-right a{
color: var(--color-button);
}
.men-stand {
    border: 2px solid var(--color-button);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.men-stand img {
    width: 22px;
    height: 22px;
}
/* services */

/* footer */
footer{
padding: 80px 0px;
background-color: var(--color-testcard);
}
.footer-item li {
list-style: none;
}
.footer-item a {
line-height: 36px;
color: #fff;
border-bottom: 1px solid;
 font-family: 'Switzer-Regular';
font-weight: 400;
font-size: 18px;
}
.copy-right.text-center {
border-top: 1px dashed var(--bordrdiv);
margin-top: 40px;

}

.copy-right.text-center p{
font-family: 'Khand-Bold';
font-weight: 700;
}



animate progress
.progress {
  height: 3px;
  width: 0%;
  background-color: #1A73E8;
  position: fixed;
  left: 0;
  top: 0;
  animation: progress 1s linear;
  
  @keyframes progress {
    to {
      width: 100%;
    }
  }
}
/* footer */


/* works */
.tab-content .video-wappper img {
    height: 100%;
    object-fit: cover;
    min-height: 450px !important;
}

/* works */

/* Animation */
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}

@keyframes scroll-right {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0%);
}
}
@keyframes heartbeat {
0% {
transform: scale(1) rotate(45deg);
}
25% {
transform: scale(1.1) rotate(45deg);
}
50% {
transform: scale(1) rotate(45deg);
}
75% {
transform: scale(1.1) rotate(45deg);
}
100% {
transform: scale(1) rotate(45deg);
}
}
@keyframes rotate {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
@media (min-width: 992px) {
.menu-btn {
display: none;
}
.nav-wrapper {
position: relative;
clip-path: none !important;
height: auto;
display: flex;
justify-content: center;
}
.nav-wrapper ul {
position: static;
transform: none;
display: flex;
}
.nav-wrapper ul li a {
font-size: 18px;
background: transparent;
padding: 5px 0px;
font-weight: 500;
}
.nav-wrapper ul li a:after {
top: 100%;
height: 3px;
border-radius: 0;
width: 0%;
left: 0;
transform: none;
}
.nav-wrapper ul li a:hover:after {
width: 100%;
}
}
@media (max-width: 1200px) {
.video-wapper-section.down-section .emoji-item {
width: 40px;
height: 40px;
}
.video-wapper-section.down-section .emoji-item {
right: 20px;
}
.video-wapper-section.down-section .emoji-item img {
width: 30px;
}
.modal-wapper {
max-width: 100%;
margin: 20px;
}
.main-title {
font-size: 55px;
}
.video-wapper-section.down-section {
top: 0;
}
.services-wappper {
padding: 25px !important;
}
.services-wappper ul li {
padding: 12px 0;
}
.services-wappper ul li a {
font-size: 18px;
}
}
@media (max-width: 991px) {
  p {
    font-size: 1rem;
    line-height: 1.7;
}
.sticky {
    top: 0;
    border-radius: 0;
    padding: 0px;
    background: #000;
    padding: 20px 0px;
}
.nav-wrapper ul {
    margin-top: 60px;
}
.menu-btn {
    top: 0;
}

  .main-title {
    font-size: 4.5rem;
}
.video-wappper img {
min-height: 420px;
}
.video-wappper video {
height: auto;
padding: 30px;
}
.video-card {
margin: 15px;
}
.button-talk {
margin-right: 70px;
}
.button-talk button {
font-size: 16px !important;
padding: 10px !important;
}
/* .nav-wrapper {
background: var(--darkBlack);
} */
 #active:checked ~ .nav-wrapper {
  background-color: #333; /* Change to your desired color */
  transition: background-color 0.3s ease;
}

.nav-wrapper ul li a {
padding: 0px;
border-radius: 50px;
}
.popup-setup {
padding: 20px;
}

.lets-right {
margin-top: 20px;
}
.btn-theme.lets-talk-btn {
padding-left: 22px !important;
margin-bottom: 20px;
}
.video-wapper-section.down-section.box-card .popup-setup {
padding-top: 30px;
padding-bottom: 30px;
}
.video-wapper-section.down-section .emoji-item {
width: 30px;
height: 30px;
}
.video-wapper-section.down-section .emoji-item img {
width: 20px;
}
.hero-wapper h2 {
    font-size: 3.5rem;
    line-height: 3.6rem;
}
}
@media (max-width: 767px) {

.video-wapper-section.down-section .emoji-item {
left: 170px;
}
.video-wappper img {
min-height: 290px;
}
.video-wapper-section {
width: 100%;
}
.emoji-item {
left: 230px;
}
.services-wapper h2 {
    font-size: 50px;
            line-height: 53px;

}
.emoji-item2,
.right-emoji2 {
width: 40px;
height: 40px;
}
}
@media (max-width: 550px) {
  .sticky.expanded {

    max-width: 100%;
    padding: 10px 0px;
}
.emoji-item {
    display: none !important; 
}
  .video-wapper-section {
    text-align: center;
}
.video-wapper-info .h1 {
    border-bottom:0;
    width: 100%;
}
  footer .btn-theme.lets-talk-btn {
    margin-bottom: 0;
}
  .emoji-item {
    left: 190px;
}
  
  footer {
    padding: 15px;
}
  .digital-part-right {
    padding-top: 25px;
}
  .heart-icon span {
    width: 40px;
    height: 40px;
    top: -4px;
}
.testimonial-card {
    padding: 25px;
}
.heart-icon i {
    font-size: 22px;
}
.button-talk {
	margin-right: 0px;
	display: none !important;
}

.menu-btn {
	height: 45px;
	width: 45px;
	background: #000;
}
.logo {
	position: relative;
	z-index: 9;
}

.testimonial-card {
flex: 1 1 100%;
}
/* .services-wapper h2 {
font-size: xx-large;
line-height: 36px;
max-width: 400px;
} */
.icon-com {
display: none;
}
.inner-video-wappper {
padding: 20px 15px !important;
}
} 



 @keyframes rotate {
					 0% {
                    transform: rotate(0deg);
                }
                100% {
                    transform: rotate(360deg);
                }
            }
            .out-top {
                animation: rotate 20s linear infinite;
                transform-origin: 13px 25px;
            }
            .in-top {
                animation: rotate 10s linear infinite;
                transform-origin: 13px 25px;
            }
            .out-bottom {
                animation: rotate 25s linear infinite;
                transform-origin: 84px 93px;
            }
            .in-bottom {
                animation: rotate 15s linear infinite;
                transform-origin: 84px 93px;
            }