.black-screen {
    mix-blend-mode: overlay;
    transition: filter 5s ease;
}

.face,
.cube,
.service-card,
.word,
.char {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
}

.smooth-wrapper {
    transform: translate3d(0, 0, 0);
}

/* FANCY BOX */

/* remove slideshow button on fancybox */
.f-carousel__toolbar__column button:nth-child(2) {
    display: none !important;
}

.fancybox__carousel>.f-button.is-arrow::before {
    inset: -100px;
}

.fancybox__slide.is-selected img {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* fancy box wrapper */
.custom-fancy-overlay {
    position: fixed;
    inset: 0;
    background-color: #000000;
    transform: translateY(100%);
    z-index: 99;
    border-top: 2px solid transparent;
    border-color: #353535;
}



.custom-fancy-box-wrapper {
    min-height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 100;
    transform: scale(0);
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, opacity 0.2s ease;
}

.custom-fancy-box .swiper-btn::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: -20px;
}

/* .custom-fancy-box-wrapper * { opacity: 0; } */
.custom-fancy-box-wrapper .grid-container {
    grid-template-columns: 65% 35%;
    grid-template-rows: 1fr auto;
}

.custom-fancy-box-wrapper .grid-container .slider-thumbnail {
    grid-column: span 2;
}

.custom-fancy-box-wrapper.show .text-swiper-wrapper {
    overflow-y: auto;
}

.custom-fancy-text {
    height: 100%;
    width: 100%;
}

.custom-fancy-box-wrapper {
    display: flex;
    justify-content: center;
}

.custom-fancy-box-wrapper.show {
    opacity: 1;
    transform: scale(1);
}

.custom-fancy-box-wrapper .custom-fancy-text .swiper-slide {
    padding: 60px;
}

.swiper-btn-wrapper {
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.7;
    z-index: 2;
}

.swiper-btn-wrapper:hover {
    opacity: 1;
}

.swiper-btn-wrapper .swiper-btn::after {
    content: "";
}

.custom-fancy-box-wrapper .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 99;
    transition: background 0.2s ease;
}

.custom-fancy-box-wrapper .close-btn:hover {
    background-color: #252525;
}

.swiper-btn,
.modal-close-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 50%;
    z-index: 2;
    transform: scale(1) rotate(0deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover effect */
.modal-close-btn:hover {
    transform: scale(1) rotate(90deg);
    background-color: #252525;
}

.modal-close-btn:active {
    transform: scale(0) rotate(0deg);
    transition-delay: 1s;
}

.swiper-btn:hover {
    background-color: #252525;
}

.swiper-btn svg,
.modal-close-btn svg {
    width: 30px;
    height: 30px;
}

.swiper-btn:active,
.modal-close-btn:active {
    transform: scale(0.95);
}

.slider-thumbnail {
    border-top: 1px solid #353535;
}

.custom-fancy-box {
    border-right: 1px solid #353535;
}

.slider-thumbnail .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0.5;
    background-color: #1d1d1d;
    transition: opacity 0.2s ease;
    aspect-ratio: 16/9;
}

.slider-thumbnail .swiper-slide:hover {
    opacity: 0.8;
}

.slider-thumbnail .swiper-slide.swiper-slide-active {
    opacity: 1;
}

/* Track */
.progress-container {
    width: 80%;
    height: 4px;
    background: #191919;
    border-radius: 10px;
    overflow: visible;
    position: relative;
}

/* Bar with neon glow */
.progress-bar {
    position: relative;
    height: 100%;
    width: 0%;
    background: linear-gradient(270deg, #FF4D4D 0%, #E63939 33.33%, #D41919 66.67%, #500b0baf 100%);
    border-radius: 2px;
    overflow: visible;
    transition: width 0.1s ease;
}

.progress-bar .clipper {
    width: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 10px;
    background-color: transparent;
    border-radius: 2px;
    filter: blur(4px);
    background: linear-gradient(270deg, rgba(212, 25, 25, 0.8) 0%, rgba(107, 1, 1, 0.377) 100%);
    z-index: -1;
}

.progress-bar .clipper-light {
    position: absolute;
    background-color: #ff4f4f;
    filter: blur(20px);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 10px;
    border-radius: 1000px;
}

.preloader {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.hide-cursor * {
    cursor: none !important;
}

.rotate-slow {
    animation: rotate 10s linear infinite;
}

/* slide button */
.slide-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.text-slide {
    position: relative;
    display: grid;
    overflow: hidden;
}

.text-slide .option {
    grid-column: 1;
    grid-row: 1;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.option-1 {
    transform: translateY(0%);
    opacity: 1;
}

.option-2 {
    transform: translateY(100%);
    opacity: 0;
}

.slide-button:hover .option-1 {
    transform: translateY(-100%);
    opacity: 0;
}

.slide-button:hover .option-2 {
    transform: translateY(0%);
    opacity: 1;
}

/* fancybox  */
/* Hide Fancybox's left counter */
.f-carousel__counter {
    display: none !important;
}

.fancybox__dialog {
    position: fixed;
    inset: 0;
    z-index: 999;
}

/* navbar section start */
.navbar-section {
    position: fixed;
    width: 100%;
    z-index: 99;
    padding: 16px 16px;
    transform: translateY(-50%);
    opacity: 0;
    transition: transform .4s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity .4s linear;
}

.loaded .navbar-section {
    opacity: 1;
    transform: translateY(0);
}

.navbar-section .container {
    border: 1px solid #242424;
    padding: 7px 46px;
    padding-right: 20px;
    border-radius: 100px;
    background-color: var(--background-color);
}

.navbar-section .navbar-nav .nav-link {
    color: var(--white);
    padding: 16px 10px;
    font-weight: 500;
    position: relative;
}

.navbar-section .navbar-toggler {
    border: 0;
    box-shadow: none;
    filter: invert(1);
}

.navbar-section .navbar-toggler:focus {
    outline: none;
}

/* navbar section end */
.premium-start {
    top: 0;
    left: 100%;
    transform: translateX(-50px) translateY(-8px);
    z-index: 2;
}

/* review wrapper */
.review-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    padding: 8px 24px;
    background-color: var(--background-color);
}

/* companies carousel */
.companies-logo-carousel .logo-wrapper {
    user-select: none;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.companies-logo-carousel .logo-wrapper:hover {
    opacity: 1;
}

.companies-logo-carousel .logo-wrapper img {
    width: auto;
    pointer-events: none;
}

/* portfolio-swiper  */
.project-section .carousel-wrapper {
    padding: 0px 30px;
}

.project-section .left-gradient,
.project-section .right-gradient {
    height: 100%;
    width: 180px;
    border-radius: 100px;
    z-index: 2;
}

.blur__container>.blur-filter {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.blur__container>.blur-filter:nth-child(1) {
    z-index: 70;
    backdrop-filter: blur(1px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 40%);
}

.blur__container>.blur-filter:nth-child(2) {
    z-index: 60;
    backdrop-filter: blur(2px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 50%);
}

.blur__container>.blur-filter:nth-child(3) {
    z-index: 50;
    backdrop-filter: blur(4px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 60%);
}

.blur__container>.blur-filter:nth-child(4) {
    z-index: 40;
    backdrop-filter: blur(8px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 70%);
}

.blur__container>.blur-filter:nth-child(5) {
    z-index: 30;
    backdrop-filter: blur(16px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 90%);
}

.blur__container>.blur-filter:nth-child(6) {
    z-index: 20;
    backdrop-filter: blur(32px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 80%);
}

.blur__container>.blur-filter:nth-child(7) {
    z-index: 10;
    backdrop-filter: blur(64px);
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%);
}

/* project carousel  */
.project-section .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.project-section .owl-item .img-wrapper {
    border: 1px solid #242424;
    box-shadow: 0px 24px 100px -32px #ffffff4d;
}

/* text content section start */
/* testimonial card */
.testimonials-card {
    width: 100%;
    height: auto;
    justify-content: space-between;
    padding: 36px;
    border-radius: 0;
    border: none;
    border-left: 1px solid #0000003D;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.144) 100%);
}

/* testimonials-swiper */
.testimonial-section .swiper-wrapper {
    align-items: stretch;
}

.testimonial-section .swiper-wrapper {
    height: 100%;
}

.testimonial-section .swiper-slide {
    height: 100%;
    display: flex;
    align-items: stretch;
}

/* badges */
.badge {
    width: fit-content;
    display: inline-flex;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    border: 2px solid #777777;
    backdrop-filter: blur(12px);
    user-select: none;
    overflow: hidden;
    background-color: #000000;
}

.carousel-fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 6rem;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade.fade-right {
    right: 0;
    background: linear-gradient(to left, #000000, transparent);
}

.carousel-fade.fade-left {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
}

/* stacks section */
.stacks-section .stacks-wrapper {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background-color: #3333;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}

.stacks-section .stacks-wrapper .colored-logo {
    /* display: none; */
    position: relative;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.stacks-section .stacks-wrapper .outline-logo {
    position: absolute;
    transition: opacity 0.2s ease-out;
}

.stacks-section .stacks-wrapper:hover .colored-logo {
    opacity: 1;
}

.stacks-section .stacks-wrapper:hover .outline-logo {
    opacity: 0;
}

.stacks-section .stacks-wrapper.empty {
    border: 2px solid #272727;
    background-color: transparent;
}

.stacks-section .stacks-wrapper-lg {
    width: 300px;
    height: 300px;
    min-width: 300px;
    background-color: #3333;
    /* border- */
    position: relative;
    z-index: 1;
}

.stacks-section .stacks-wrapper.lg:hover .face {
    border: 2px solid #272727;
}

.stacks-section .stacks-wrapper:hover .face,
.stacks-section .stacks-wrapper.empty:hover {
    border-image-source: linear-gradient(180deg, #FF0000 0%, #FFB200 100%);
    border-image-slice: 1;
}

/* stacks test*/
.stacks-section .cube,
.stacks-section .face {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
}

.stacks-section .face {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0e0e0e;
    border: 2px solid #272727;
    padding: 10px;
}

/* cursor */
.cursor {
    --circle-size: 1rem;
    height: var(--circle-size);
    width: var(--circle-size);
    position: fixed;
    z-index: 999999;
    border-radius: 50%;
    pointer-events: none;
    background: #fff;
    /* background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%); */
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition:
        /* opacity 5s ease, */
        width 0.3s ease, height 0.3s ease, background 0.3s ease, filter 0.3s ease, scale 0.2s ease;
}

.cursor.cursor-view {
    font-size: 18px;
    border: 1px solid;
    border-radius: 100px;
    background: #D4191999;
    display: inline-flex;
    border: none;
    backdrop-filter: blur(12px);
    box-shadow: 0px 0px 24px 0px #FF00006B, 0px 4px 42px 0px #FFFFFF3D;
    transition: width 0.2s cubic-bezier(.99, .34, .0.5, .36), height 0.2s cubic-bezier(.99, .34, .0.5, .36), background ease;
    backdrop-filter: blur(30px);
}

.cursor.cursor-view::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid red;
    border-radius: 100px;
    border: 1px solid transparent;
    border-color: #EE3737;
}

.cursor.cursor-default p {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease-out, transform 0.5s ease;
}

.cursor.cursor-default.cursor-view.animate-cursor p {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1;
}

.cursor.cursor-sun {
    filter: blur(40px);
    background: linear-gradient(180deg, #FF0000 0%, #FFB200 100%);
    mix-blend-mode: plus-lighter;
    transition: width 0.8s cubic-bezier(.36, .05, .34, .99), height 0.8s cubic-bezier(.36, .05, .34, .99), opacity 0.8s cubic-bezier(.36, .05, .34, .99);
}

.cursor-mobile.cursor-sun-mobile {
    --circle-size: 35rem;
    border-radius: 50%;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    filter: blur(40px);
    background: linear-gradient(180deg, #FF0000 0%, #FFB200 100%);
    mix-blend-mode: plus-lighter;
    transition: all 0.2s ease;
}

/* animate cursors */
.cursor.animate-cursor {
    transition: width 0.5s ease, height 0.5s ease, opacity 0.3s ease;
}

.cursor-default.cursor-view.animate-cursor p {
    opacity: 1;
}

.cursor.cursor-view.animate-cursor {
    --circle-size: 6rem;
    transition-delay: 0s;
}

.cursor.cursor-view.lg.animate-cursor {
    --circle-size: 7rem;
    transition-delay: 0s;
}

.cursor.cursor-sun.animate-cursor {
    --circle-size: 35rem;
    transition-delay: 0s;
}

/* cal modal */
.custom-cal-modal {
    backdrop-filter: blur(10px);
    background-color: #2222228e;
}

.custom-cal-modal.show {
    cursor: auto;
}

.custom-cal-modal .cal-wrapper {
    padding-bottom: 66%;
}

.custom-cal-modal .main {
    background-color: red !important;
    margin-top: 0;
    margin-bottom: 0;
}

/* meeting schedule wrapper */
.schedule-call-cta {
    align-items: start;
    gap: 24px;
    background-color: #292828;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.schedule-call-cta:hover {
    background-color: #434040;
}

.schedule-call-cta .avatar {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: white;
}

.clipboard-wrapper {
    background-color: #292828;
    border-radius: 8px;
}

.clipboard-wrapper .clipboard-btn,
.clipboard-wrapper .clipboard-text {
    padding: 10px;
}

.copied-message {
    transition: opacity .2s ease-in-out;
}

.testimonial-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #000000 95%, #00000000 100%);
    backdrop-filter: blur(10px);
    transition: transform 0.8s cubic-bezier(.36, .05, .34, .99);
}

.testimonial-overlay.animate-overlay {
    transform: translateX(100%);
}

/* blur panel wrapper */
.blur-panel-wrapper {
    width: 100%;
    height: 100%
}

.blur-panel {
    flex: 1;
    height: 100%;
    background: linear-gradient(268.66deg, rgba(22, 22, 24, 0.4) 1.07%, rgba(0, 0, 0, 0.4) 17.36%, rgba(26, 26, 29, 0.004) 98.79%);
    box-shadow: 0px 2px 4px 0px #FFFFFF29 inset;
    backdrop-filter: blur(100px);
    transition: transform 0.2s ease;
    transform-origin: center;
    transform-style: preserve-3d;
    z-index: 1;
}

/* Center hovered panel pops out slightly */
.blur-panel.translate-left-1,
.blur-panel.translate-right-1 {
    transform: translateY(50%);
}

.blur-panel.translate-left-2,
.blur-panel.translate-right-2 {
    transform: translateY(30%);
}

.blur-panel.translate-left-3,
.blur-panel.translate-right-3 {
    transform: translateY(20%);
}

.blur-panel.translate-left-4,
.blur-panel.translate-right-4 {
    transform: translateY(10%);
}

.blur-panel-wrapper:hover .blur-panel.hovered {
    transform: translateY(70%);
}

/* .blur-panel-container:hover .mesmerizing-key {} */
.blur-panel-wrapper.mesmerizing-key {
    transition-delay: 5s;
}

.blur-panel-wrapper:hover .blur-panel.mesmerizing-key {
    transform: translateY(0) !important;
    background-image: linear-gradient(-45deg, #dadada, #d41919, #320000C4, #d41919);
    background-size: 400% 400%;
    background-position: 0% 50%;
    animation: gradient 5s ease infinite;
}

/* .blur-panel-container:hover */
.blur-panel-container:hover .blur-panel.mesmerizing-key * {
    opacity: 1;
}

.blur-panel-wrapper .mesmerizing-msg {
    min-width: 120px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    padding: 8px 16px;
    background-color: rgba(19, 18, 18, 0.425);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    transform: translateX(-50%) translateY(100%) scale(0);
    transform-origin: bottom center;
    transition: transform 0.3s cubic-bezier(.48, -0.01, .34, .99), opacity 0.2s ease-in-out;
    opacity: 0;
}

.blur-panel-wrapper .blur-panel.mesmerizing-key * {
    opacity: 0;
    transition: all 0.5s ease;
}

.blur-panel-wrapper:hover .blur-panel.mesmerizing-key * {
    opacity: 1;
}

.tv-shutdown-container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.tv-shutdown {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50%;
    background: black;
    z-index: 9999;
    transition: transform 0.6s ease-in-out;
}

.tv-shutdown.top {
    top: 0;
    transform: translateY(-100%);
}

.tv-shutdown.bottom {
    bottom: 0;
    transform: translateY(100%);
}

.tv-shutdown-container.active .tv-shutdown.top {
    transform: translateY(0%);
}

.tv-shutdown-container.active .tv-shutdown.bottom {
    transform: translateY(0%);
}

/* White line effect */
.white-line {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.white-line.active {
    opacity: 1;
}

/* screen */
.main-screen {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    width: 100vw;
    height: 100vh;
    z-index: 5000;
    transform-origin: center center;
    transition: background 0.3s ease;
    pointer-events: none;
}

.screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}

.screen.active {
    display: flex;
}

.screen-inner {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

.video-container.active {
    display: block;
}

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

.lottie {
    width: 6vw;
}

/* designed-scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.designed-scrollbar {
    overflow-y: auto;
    overflow-x: unset;
}

.designed-scrollbar::-webkit-scrollbar {
    border-radius: 10px;
    width: 6px;
    height: 6px;
    background-color: rgb(36, 36, 36);
}

.designed-scrollbar::-webkit-scrollbar-thumb {
    background: rgb(54, 54, 54);
    border-radius: 10px;
}

.designed-scrollbar.sm::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* designed-scrollbar */
/* animations */
@keyframes moveTop {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes moveRight {
    0% {
        top: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes moveBottom {
    0% {
        right: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        right: 100%;
        opacity: 0;
    }
}

@keyframes moveLeft {
    0% {
        bottom: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dot1 {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(5);
    }
}

@keyframes dot2 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes dot3 {
    0% {
        transform: translate(-50%, -50%);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* piano keys effect */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* animations */
@media screen and (max-width: 1600px) {
    .custom-fancy-box-wrapper .font-h4 {
        font-size: 28px;
    }
}

@media screen and (max-width: 1400px) {
    .custom-fancy-box-wrapper .font-h4 {
        font-size: 26px;
    }
}

@media screen and (max-width: 1199.97px) {
    .cursor {
        transform: scale(0);
    }

    .custom-fancy-box-wrapper {
        padding: 16px;
        padding-top: 34px;
    }

    .custom-fancy-box {
        border-color: transparent;
    }

    .custom-fancy-box-wrapper .grid-container {
        grid-template-columns: 100%;
        grid-template-rows: 1fr auto 1fr;
    }

    .custom-fancy-box-wrapper .custom-fancy-box .swiper-slide {
        aspect-ratio: 16 /9;
    }

    .custom-fancy-box-wrapper .grid-container .slider-thumbnail {
        grid-column: span 1;
    }

    .custom-fancy-box-wrapper .custom-fancy-text .swiper-slide {
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 0;
    }

    .swiper-btn,
    .modal-close-btn {
        background-color: #383838;
        width: 40px;
        height: 40px;
    }

    .swiper-btn-wrapper .swiper-btn:active {
        transform: scale(1);
    }

    .swiper-btn-wrapper .swiper-btn svg {
        width: 40px;
        height: 40px;
    }
}

/* media query or large screen */
@media screen and (max-width: 991.97px) {
    .navbar-section .container {
        padding: 12px 24px;
        border-radius: 30px;
    }

    .navbar-section.open {
        height: 100vh;
        background-color: #00000033;
        backdrop-filter: blur(20px);
        top: 0;
        bottom: 0;
    }

    .stacks-container {
        transform: scale(0.9);
    }

    .project-section .left-gradient,
    .project-section .right-gradient {
        width: 120px;
    }

    .custom-cal-modal .cal-wrapper {
        padding-bottom: 100%;
    }

    .custom-cal-modal .modal-dialog {
        max-width: 84%;
    }
}

@media screen and (max-width: 767.97px) {
    .btn.btn-lg {
        font-size: 15px;
        padding: 9px 34px;
    }

    .cursor.cursor-sun {
        --circle-size: 20rem;
    }

    .project-section .carousel-wrapper {
        padding: 0px 24px;
    }

    .project-section .left-gradient,
    .project-section .right-gradient {
        width: 100px;
    }

    .schedule-call-cta {
        align-items: start;
        gap: 20px;
    }

    .schedule-call-cta .avatar {
        min-width: 54px;
        width: 54px;
        height: 54px;
    }

    .lottie {
        width: 10vw;
    }

    .custom-fancy-box-wrapper .grid-container {
        grid-template-rows: auto auto 1fr;
    }

    .custom-fancy-box-wrapper .close-btn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .custom-fancy-box-wrapper .close-btn svg,
    .swiper-btn-wrapper .swiper-btn svg,
    .modal-close-btn svg {
        width: 24px;
        height: 24px;
    }

    .custom-cal-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    /* .custom-cal-modal  */
    .custom-cal-modal .cal-wrapper {
        height: calc(100vh - 10px);
    }
}

@media screen and (max-width: 575.97px) {

    /* FANCYBOX */
    .fancybox__container {
        --f-arrow-pos: 20px;
    }

    .fancybox__carousel>.f-button.is-arrow::before {
        inset: -10px;
    }

    .premium-start {
        top: 0;
        left: 100%;
        transform: translateX(-50px) translateY(-26px) scale(0.7);
    }

    .cursor-mobile.cursor-sun-mobile {
        --circle-size: 20rem;
    }

    .stacks-container {
        transform: scale(0.8);
    }

    .project-section .left-gradient,
    .project-section .right-gradient {
        width: 80px;
    }

    .blur-panel-wrapper .mesmerizing-msg {
        min-width: 140px;
        font-size: 10px;
    }

    .blur-panel-wrapper:hover .mesmerizing-msg {
        transform: translateX(-50%) translateY(-5px) scale(1);
    }

    .lottie {
        width: 14vw;
    }
}

@media screen and (max-width: 500.97px) {
    .stacks-container {
        transform: scale(0.7);
    }
}

@media screen and (max-width: 400.97px) {
    .stacks-container {
        transform: scale(0.6);
    }

    .project-section .left-gradient,
    .project-section .right-gradient {
        width: 50px;
    }
}

@media screen and (max-width: 360.97px) {
    .fs-80 {
        font-size: 40px;
    }
}