@font-face {
    font-family: 'Mortend Bold';
    /* The name you'll use in your CSS */
    src: url('assets/font/PPMonumentregular.otf') format('opentype');
    /* Fallback format */
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

:root {
    --primary-color: #fff;
    --gradient-color: linear-gradient(90deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%);
}

@font-face {
    font-family: 'Monument Bold';
    /* The name you'll use in your CSS */
    src: url('assets/font/PPMonumentbold.otf') format('opentype');
    /* Fallback format */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Monument';
    /* The name you'll use in your CSS */
    src: url('assets/font/MonumentExtended-Regular.otf') format('opentype');
    /* Fallback format */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Monument';
    /* The name you'll use in your CSS */
    src: url('assets/font/PPMonument.otf') format('opentype');
    /* Fallback format */
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* General */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: 'Mortend Bold', sans-serif;
    letter-spacing: 1px;
    font-size: 3rem;
}

h3 {
    /* font-family: 'Monument', sans-serif; */
}

/* p{
    font-family: 'Monument', sans-serif;
} */

.section-padding {
    padding: 40px 0;
}

.main-btn {
    border-radius: 6px;
    opacity: 0;
    position: relative;
    color: #fff;
    background: linear-gradient(90deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%);
    padding: 12px 22px;
    border: none;
    transition: 0.3s;
}

.main-btn:hover {
    transform: translateY(-3px)
}

.main-btn::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(assets/patch.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    left: -14px;
    top: -12px;
    opacity: 0.7;
}

.secondary-btn {
    opacity: 0;

    color: #fff;
    border: 1px solid #D12B6E;
    padding: 12px 22px;
    transition: 0.3s;
}

.secondary-btn:hover {
    transform: translateY(-3px)
}

.btn-icon img {
    width: 16px !important;
    margin-left: 26px;
    display: inline !important;
}

.dual-txt {
    font-family: 'Monument Bold', sans-serif;
    /* font-size: 72px; */
    background: -webkit-linear-gradient(20deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.only-gradient {
    font-family: 'Monument Bold', sans-serif;
    background: linear-gradient(28deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.dual-txt:before {
    content: '';
    position: absolute;
    height: 90%;
    width: 90%;
    background: url('assets/patch.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    left: -22px;
    top: -6px;
    opacity: 0.7;
}

/* Navbar */
.logo-wrap img {
    width: 150px;
}

.quote-btn::before {
    display: none;
}

nav {
    border-bottom: 1px solid #3a3a3a;
    padding: 18px 0;

}

.navbar-nav li {

    padding: 14px 18px;
}

.navbar-nav li a {
    /* border-right: 1px solid #fff; */
    color: #fff;
}

nav .nav-link:before {
    content: "";
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* opacity:0; */
    transition: 0.3s;
}

.navbar-nav li a:after {
    content: "";
    width: 1px;
    height: 30%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);


}

.navbar-nav li a:hover {
    color: #fff
}

.navbar-nav li a:hover:before {
    /* opacity:1; */
    width: 90%;
}

nav .nav-item {
    position: relative;
}

.navbar-nav li:nth-child(5) {
    border: none;
}

.navbar-nav li:nth-child(5) a:after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #333, #000);
}

.hero h1 span {
    color: #007bff;
}

/* Branding Section */
#branding {
    background: #222;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

.sl-heading {
    color: #fff;
    font-size: 50px;
}

.highlight-text {}

/* Portfolio Section */
#portfolio img {
    transition: transform 0.3s ease-in-out;
}

#portfolio img:hover {
    transform: scale(1.05);
}

/* Contact Form */
form .form-control {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
}

form .form-control:focus {
    border-color: #007bff;
    outline: none;
}

.banner-section {
    color: #fff;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.banner-section:before {
    content: '';
    position: absolute;
    top: 0;
    background: url('assets/banner-laptop.png');
    width: 100%;
    height: 80%;
    right: -26%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    top: 6%;
}

.stroke-txt {
    font-family: 'Monument', sans-serif;
    -webkit-text-stroke: 1px #EA8B41;
    /* text-stroke: 2px black; */
    color: transparent;
    font-size: 84px;
    margin-top: 60px;
    opacity: 0.3;
}

.sl-heading {

    font-family: 'Mortend Bold', sans-serif;
}

.counter {
    font-family: 'Mortend Bold', sans-serif;
}

.banner-section h1 {
    font-size: 3.4rem;
    font-weight: 100;
    line-height: 1.2;
    line-height: 5rem;
}

.banner-section h1 span {
    color: #FF4693;
}

.customer-info {
    margin-top: 20px;
}

.customer-info img {
    width: 50px;
    border-radius: 50%;
}

.customer-info img {
    margin-left: -20px;
}

.customer-info img:nth-child(1) {
    margin: 0;
}

/* .laptop-image {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 100%;
} */



/* Branding Section */
.branding-section {
    /* background-color: #000; */
}


.phone-image {
    width: 70%;
    opacity: 1;
}

.industry-item {
    font-family: 'Mortend Bold', sans-serif;
}

.btn-pink {
    background-color: #FF4693;
    color: #fff;
    border: none;
}

.btn-blue {
    background-color: #00C0FF;
    color: #fff;
    border: none;
}

/* Highlight Text */
.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FF4693;
    margin-bottom: 15px;
    font-family: 'Mortend Bold', sans-serif;
}


.slider-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
}

.slider-progress span {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0px;
    height: 100%;
    background: linear-gradient(90deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
    transition: all 0s linear;
}

.slider-progress span.active {
    width: 100%;
}

section.portfolio-sec h2 {
    font-size: 60px;
}

.industry-section {
    background: linear-gradient(90deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%);
    /* Gradient background */
    color: #ffffff;
    /* White text */
    font-family: 'Poppins', sans-serif;
    /* Add your desired font */
}

.industry-item {
    font-size: 14px;
    font-weight: 500;
    padding: 0 8px;
    /* Spacing around each item */
}

.divider {
    color: rgba(255, 255, 255, 0.6);
    /* Slightly muted divider color */
    font-size: 14px;
    margin: 0 5px;
    /* Space around the divider */
}

/* Laptop Slider */

#screen {
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8408613445378151) 0%, rgba(209, 43, 110, 0) 47%, rgba(0, 0, 0, 0.8548669467787114) 100%);
}

.mockups {
    margin: 0;
    width: 100%;
    position: relative;
}

/* .mockups:before {
    position: absolute;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    content: '';
    background: url('assets/Apple\ Macbook\ Pro\ 16\ Space\ Grey.png');
    left: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 9;
} */

#mockup-slider img {
    margin: 0 10px;
    border-radius: 20px;
    transform: scale(0.9);
    height: 90vh;
}

/* .css-mb .mb-body {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 2.3%;
    background: #e6e7e8;
}

.css-mb .mb-body::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 14.07440%;
    height: 0;
    padding-bottom: 1.4814%;
    margin-left: -7.037%;
    background: #a9abae;
    border-bottom-left-radius: 7.0370% 50%;
    border-bottom-right-radius: 7.0370% 50%;
}

.css-mb .mb-bottom-cover {
    width: 100%;
    height: 0;
    padding-bottom: 0.7407%;
    background: #a9abae;
    border-bottom-left-radius: 12% 600%;
    border-bottom-right-radius: 12% 600%;
}
.lap-btm{
    width: 50%s;
    margin: 0 auto;
} */

#mockup-slider .owl-item.active img {
    width: 100%;
    border: 8px solid;
    border-style: inset;
    border-radius: 30px;
}

#mockup-slider .owl-stage {
    display: flex;
    align-items: center;
}

/* .laptop-slider, 
.laptop-slider .owl-stage, 
.laptop-slider .owl-item {
    height: 500px; 
}

.laptop-slider .owl-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
} */

.laptop-frame img {
    position: absolute;
    top: 84vh;
    left: 5em;
    width: 90vw;
    z-index: 2;
}

section#screen .owl-nav .owl-prev {
    position: absolute;
    font-size: 60px;
    top: 0;
    color: #fff;
    display: block;
    width: 10%;
    overflow: hidden;
    height: 20%;
    left: -5%;
    top: 35%;
    text-align: right;
    border-radius: 50%;
    background: rgb(255 255 255 / 34%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

}

section#screen .owl-nav .owl-prev span {
    padding-right: 30px;
    display: block;
    background: none;
    box-shadow: none;
}

section#screen .owl-nav .owl-next {
    position: absolute;
    font-size: 60px;
    top: 0;
    color: #fff;
    display: block;
    width: 10%;
    overflow: hidden;
    height: 20%;
    right: -5%;
    top: 35%;
    text-align: left;
    border-radius: 50%;
    background: rgb(255 255 255 / 34%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

}

section#screen .owl-nav .owl-next span {
    padding-left: 30px;
    display: block;
    background: none;
    box-shadow: none;
}


section.process-sec {
    padding: 80px 0 0;
    position: relative;
    z-index: -1;
}

.spacer {
    width: 100%;
    height: 100vh;
}



.process-sec p {
    font-family: 'Monument', sans-serif;
    /* font-weight: ; */
    font-size: 15px;
    line-height: 1.6rem;
}

.process-sec .box-wrap {
    padding: 50px;
    border-radius: 6px;
    text-align: center;
    background: linear-gradient(28deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
}

.process-sec .box-wrap span {
    font-family: 'Mortend Bold', sans-serif;
    font-size: 70px;
}

.process-sec .txt-wrap h4 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Mortend Bold', sans-serif;
}

.process-sec .card-wrap {
    background: rgba(68, 68, 68, 0.732);
    border-radius: 6px;
    /* border: 1px solid #fff; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: sticky;
    top: 40%;

}

.process-sec .sticky-top {
    font-family: 'Mortend Bold', sans-serif;
    top: 25% !important;
    z-index: -1 !important;

}

/* Contact Form */
.contact-form .form-wrap {
    background: linear-gradient(28deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 80px;
}

.form-wrap h4 {
    font-family: 'Mortend Bold', sans-serif;
}

.contact-form .top-heading {
    background: #000;
    padding: 30px;
    border-radius: 6px;
}

.contact-form .top-heading h4 {
    font-size: 32px;
}

.contact-form form {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

input,
textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 20px 10px;
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: 'Mortend Bold', sans-serif;
}

input::placeholder,
textarea::placeholder {
    color: #fff;
}

input:focus,
textarea:focus {
    border: 1px solid;
    outline: none;
    box-shadow: 0px 0px 20px #ffffff42;
}

.client-img {
    width: 100%;
    height: 60vh;
    object-fit: contain;
}

.review-slider {
    padding: 40px 0 80px;
}

.contact-form .card-wrap .sub-heading {
    background: linear-gradient(28deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
    padding: 10px 16px;
    border-radius: 6px;
    width: fit-content;
    font-weight: bolder;
    font-size: 14px;
    /* letter-spacing: 1px; */
    font-family: 'Monument', sans-serif;
}

.contact-form .card-wrap hr {
    width: 30%;
    border: 1px solid;
}

.contact-form .card-wrap h4 {
    font-size: 16px;
    font-family: 'Mortend Bold', sans-serif;

}

.contact-form .card-wrap p {
    line-height: 40px;
    font-family: 'Monument', sans-serif;
}

.contact-form .card-wrap .job-title {
    font-family: 'Mortend Bold', sans-serif;
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(0, 0, 0, 0.8548669467787114) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

section.contact-form {
    background: url('assets/contact-bg-old.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
}

section.contact-form {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.review-slider .card-wrap {
    background: #111;
    border-radius: 6px;
}

/* section.contact-form:before {
    content: '';
    position: absolute;
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(160deg, #111111 0%, rgb(0 0 0 / 75%) 100%);
    z-index: -1;
} */


.app-footer__marquee {
    color: #f4ecd74d;
    /* backdrop-filter: blur(4px); */
    font-size: calc(0.8925rem + 3.43571vw);
    /* font-weight: 400; */
    /* padding: 0.25em 0; */
    white-space: nowrap;
    --marquee-animation-duration: 40s;
}

.u-marquee {
    --marquee-gap: 1ch;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.u-marquee .divider {
    color: #f4ecd74d;
    font-size: calc(0.8925rem + 3.43571vw);
}

.u-marquee,
.u-marquee__content {
    display: flex;
    gap: var(--marquee-gap);
}

.u-marquee__content {
    font-family: 'Mortend Bold', sans-serif;
    animation: marquee var(--marquee-animation-duration) linear infinite;
    flex-shrink: 0;
    justify-content: space-around;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.u-marquee__content>* {
    white-space: nowrap;
}

.u-marquee-reverse {
    color: #fff;
    animation: marquee-reverse var(--marquee-animation-duration) linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0);
    }

    to {
        transform: translate(calc(-100% - var(--marquee-gap)));
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translate(calc(-100% - var(--marquee-gap)));
    }

    to {
        transform: translate(0);
    }
}

footer {
    background: rgb(255, 255, 255);
    background: linear-gradient(80deg, rgb(255 255 255 / 17%) 0%, rgba(0, 0, 0, 0) 40%);
}

footer .links-wrap {
    display: flex;
    flex-direction: column;
}

footer .links-wrap a {
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    color: #fff;
}

footer {
    padding: 260px 20px 40px;
}

section.copyright {
    background: linear-gradient(90deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%);
    border-radius: 6px;
    padding: 10px;
}

section.copyright p {
    margin: 0;
}

.u-marquee span.divider:before {
    content: '';
    height: 2px;
    font-size: 00;
    width: 100px;
    background: #f4ecd74d;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 80%;

}

.u-marquee span.divider {
    position: relative;
    padding-left: 150px;
}

.u-marquee-reverse .divider:before {
    height: 6px !important;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%) !important;
}

.float-hand {
    position: relative;
}

.float-hand img {
    width: 25%;
    position: absolute;
    top: -280px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.float-news {
    position: relative;
}

.float-news a {
    position: absolute;
    top: -340px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 50%;
}

.float-news a img {
    width: 30px;
    margin: 0 auto;
    display: block;
    height: 30px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Responsive */
@media(max-width:1400px) {
    .navbar-nav li {
        padding: 12px 10px;
    }

    .logo-wrap img {
        width: 110px;
    }

    .main-btn {
        font-size: 14px;
    }

    .secondary-btn {
        font-size: 14px;
    }

    .btn-icon img {
        margin-left: 4px;
    }

    .navbar-nav li a {
        font-size: 14px;
    }

    .banner-section h1 {
        font-size: 3rem;
    }

    .banner-section:before {
        height: 60%;
    }

    .banner-section {
        padding: 70px 0;
    }

    .sl-heading {
        font-size: 32px;
    }

    .highlight-text {
        font-size: 1rem;
    }

    h2 {
        font-size: 46px;

    }

    section.portfolio-sec h2 {
        font-size: 46px;
    }

    .industry-section {
        margin-top: 30px;
    }

    .laptop-frame img {
        left: 4em;
    }

}

@media(max-width:991px) {
    .banner-section {
        background: #00000099;
    }

    .navbar-collapse {
        position: absolute;
        background: #000;
        left: 0px;
        z-index: 2;
        width: 100%;
    }

    .navbar-nav li a:after {
        display: none;
    }

    .navbar-nav li a {
        text-align: center;
    }

    .quote-btn {
        display: none;
    }

    .banner-section h1 {
        font-size: 2rem;
        line-height: 50px;
    }

    .laptop-frame img {
        width: 86vw;
    }

    .process-sec h2 {
        font-size: 38px;
    }

    h2 {
        font-size: 38px;
    }

    .process-sec .txt-wrap h4 {
        font-size: 32px;
    }

    .process-sec p {
        font-size: 14px;

    }

    .process-sec .box-wrap span {
        font-size: 40px;
    }

    .client-img {
        height: 100vh;
        object-fit: contain;
        object-position: top;
    }

    .contact-form .card-wrap p {
        line-height: 30px;
        font-size: 12px;
    }

    .contact-form .card-wrap .sub-heading {
        font-size: 12px;
    }

    .contact-form .card-wrap h4 {
        font-size: 15px;
    }
}



/*===== Page Loader =====*/
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#pageLoader span {
    display: inline-block;
    background: #000;
    animation: scale 2s ease-in-out forwards;
    -webkit-animation: scale 2s ease-in-out forwards;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    color: var(--secondary);
}

#pageLoader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    width: 100%;
}

#pageLoader span:nth-child(1) {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

#pageLoader span:nth-child(2) {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

#pageLoader span:nth-child(3) {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

#pageLoader span:nth-child(4) {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

#pageLoader span:nth-child(5) {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

#pageLoader span:nth-child(6) {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    margin-right: 20px;
}

#pageLoader span:nth-child(7) {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

#pageLoader span:nth-child(8) {
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
}

#pageLoader span:nth-child(9) {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}

#pageLoader span:nth-child(10) {
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s;
}

#pageLoader span:nth-child(11) {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

#pageLoader span:nth-child(12) {
    animation-delay: 2.1s;
    -webkit-animation-delay: 2.1s;
}

/* keyframe */
@keyframes scale {
    0% {
        transform: scaleX(-1);
        opacity: 0.5;
        color: var(--secondary);
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
        color: var(--primary);
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
        color: var(--primary);
    }
}

@-webkit-keyframes scale {
    0% {
        transform: scaleX(-1);
        opacity: 0.5;
        color: var(--secondary);
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
        color: var(--primary);
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
        color: var(--primary);
    }
}





/* -----------------------------------
      Gallery Section
--------------------------------------*/

.portfolio-section {
    padding: 50px 0;
    background-color: #000;
}

/* .portfolio-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
} */

.portfolio-menu {
    text-align: center;
}

.control {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #343a40;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.control:hover {
    background: #343a40;
}

.mixitup-control-active {
    color: #fff;
    background: #343a40;
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.portfolio-item {
    padding-top: 30px;
}

.pd {
    padding: 0;
    padding: 10px;
}

.pd img {
    height: 180px;
    transition: all 0.5s;
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
}

.portfolio-overlay p,
.portfolio-overlay a {
    position: relative;
    z-index: 4;
    font-size: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 9;
    position: absolute;
    left: 0;
}

/* .portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
}

.portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
} */

.portfolio-overlay .overlay-content {
    margin: 22% 0
}

.portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
}

.portfolio-overlay .category {
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #50977f;
    background: linear-gradient(28deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
    background: #000;
}

.portfolio-overlay .magnify-icon p span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
}

/* width */
::-webkit-scrollbar {
    width: 10px;

}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(68, 0, 89, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(209, 43, 110, 1) 100%);

    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Social Box */
.social-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 1.25rem;
}

.social-box .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    aspect-ratio: 1;
    font-size: 1.5rem;
    color: #c5c5c5;
    background-color: #242529;
    border-radius: 50px;
    transition: color 0.15s ease-in,
        box-shadow 0.75s cubic-bezier(0.74, 0.01, 0.02);
}

.social-box .item svg {
    transition: transform 0.75s ease-in-out;
}

@property --fill-color {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 0%;
}

.social-box .item:hover {
    color: var(--primary-color);
    --fill-color: 100%;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 1);
}

.social-box .item:hover svg {
    transform: scale(1.25);
}

.social-box .item::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: -3px;
    border-radius: inherit;

    background: conic-gradient(var(--primary-color) var(--fill-color),
            transparent var(--fill-color));
    transition: --fill-color 0.75s ease-in-out;
}


.card-inner {
    will-change: transform;
    display: flex;
    overflow: hidden;
    transform-origin: center top;
}


.secondary-btn {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    border: 1px solid #fff;
}

.secondary-btn:before {
    content: '';
    background: linear-gradient(90deg, rgba(29, 191, 232, 1) 0%, rgba(216, 44, 117, 1) 100%, rgba(216, 44, 117, 1) 100%);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.secondary-btn:active {
    color: #000
}

.secondary-btn:active:after {
    background: transparent;
}

.secondary-btn:hover:before {
    opacity: 1;
}

.secondary-btn:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

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

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

.main-btn:hover {
    box-shadow: 1px 1px 20px #bfbfbfe3;
}

.phone-mockup video {
    width: 90%;
    border-radius: 6px;
}



.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: 0.3s;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
}

.cursor2 {
    position: fixed;
    width: 4px;
    height: 4px;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: 0.1s;
    pointer-events: none;
    z-index: 1000;
}

.grow,
.grow-small {
    transform: scale(4);
    background: white;
    mix-blend-mode: difference;
    border: none;
}

.grow-small {
    transform: scale(3);
}

.cursor.project:before {
    content: "View project";
    position: absolute;
    font-size: 5px;
    color: #000;
    top: 40%;
    left: 20%;
}

/*===== Responsive =====*/
@media (max-width: 767px) {
    .branding-section .main-btn {
        margin: 0 !important;
        padding: 8px 28px;
    }

    .branding-section .secondary-btn {
        margin: 0 !important;
        padding: 8px 28px;
        width: auto;
        height: auto;
    }

    footer .links-wrap {
        justify-content: center !important;
        flex-direction: row;
    }

    .process-sec .box-wrap {
        margin-bottom: 20px;
        width: fit-content;
    }

    .process-sec .card-wrap {
        padding: 10px !important;
    }

    .card-inner {
        display: flex;
        flex-direction: column;
    }

    .process-sec .sticky-top {
        top: 5% !important;
    }

    .process-sec .box-wrap {
        padding: 10px;

    }

    .process-sec .box-wrap span {
        font-size: 18px;
    }

    .process-sec .txt-wrap h4 {
        font-size: 26px;
    }

    .process-sec p {
        font-size: 14px;
    }

    .card-inner .col-md-4 {
        margin: 0 !important;
    }

    .process-sec .card-wrap {
        top: 15%;
    }

    .phone-mockup video {
        width: 100%;
        margin-bottom: 30px;
    }

    .pd img {
        width: 100%;
    }

    /* Banner */
    .main-banner .banner-img img:nth-child(1) {
        left: -14%;
    }

    .main-banner .banner-img img:nth-child(2) {
        left: 8%;
    }

    .main-banner .banner-img img:nth-child(3) {
        left: 19%;
    }

    .main-banner .banner-img img:nth-child(4) {
        right: 15%;
    }

    .main-banner .banner-img img:nth-child(5) {
        right: -4%;
    }

    /* Characters */
    .swiper-slide .card .front-img {
        scale: 0.85;
    }

    /* Page Loader */
    #pageLoader span {
        font-size: 24px;
    }

    h2 {
        font-size: 26px;
    }

    section.portfolio-sec h2 {
        font-size: 26px;
    }

    .industry-item {
        font-size: 12px;
    }

    .contact-form .top-heading h4 {
        font-size: 26px;
    }

    .u-marquee span.divider {
        padding-left: 100px;
    }

    footer {
        padding: 110px 20px 40px;
    }

    .float-hand img {
        top: -90px;
        width: 40%;
    }

    .float-news a img {
        width: 25px;
        height: 25px;
    }

    .float-news a {
        top: -50px;
        padding: 12px;
    }

    section.copyright {
        text-align: center;
    }

    section.copyright .row.colored-bg .justify-content-end {
        justify-content: center !important;
    }

    .client-img {
        height: auto;
        object-position: left;
        margin-bottom: 20px;
    }

    .dual-txt:before {
        height: 70%;
        width: 70%;
        left: -5px;
        top: 4px;
    }

    .main-btn {
        margin-bottom: 12px;
    }

    .stroke-txt {
        font-size: 2rem;
    }

    .banner-section {
        padding: 40px 0;
    }

    .customer-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .customer-count {
        margin-top: 18px !important;
    }
}