/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #5A15F9;
    border-radius: 50rem;
}

html::-webkit-scrollbar-thumb {
    background-color: #ff5491;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 14px;
    line-height: 18px;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans Regular";
}

a,
a:hover,
a:focus {
    color: #ff5491;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: "Open Sans Bold";
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
/* Hide controls for Safari/Chrome/Edge WebKit */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Hide controls for Firefox */
video::-moz-media-controls {
  display: none !important;
}
.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 40px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #f1f1f1;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #ff5491;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #3100f9;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #ffffff;
    background-image: url(../img/form-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.right {
    padding: 40px;
    text-align: left;
    background: linear-gradient(180deg, #ff5491, #3200fa);
}
.title{
    font-size: 40px;
    font-family: "Open Sans Bold";
    line-height: normal;
    margin-bottom: 15px;
    text-align: center;
    color: #FFF;
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-50 {
    margin-bottom: 50px;
}
p{
    font-size: 14px;
    line-height: 18px;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans Regular";
    transition: 0.5s;
}
.dec{
    font-size: 25px;
    line-height: 40px;
    color: #0e0226;
}
.section-title {
    font-size: 61px;
    line-height: 73px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: normal;
    font-family: "Open Sans bold";
    margin-bottom: 10px;
    span{
        background: linear-gradient(180deg, #ff5491, #3200fa);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
}
.section-title-blue{
    color: #5816e0;
}
.sub-title{
    font-size: 36px;
    line-height: 53px;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans Bold";
}
.card-title{
    font-size: 19px;
    line-height: 23px;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans SemiBold";
    margin-bottom: 20px;
    transition: 0.5s;
}

.primary-btn {
    border-radius: 60px;
    background: linear-gradient(180deg, #ff5491, #3200fa);
    padding: 15px 25px;
    color: #fcfdff;
    font-family: "Open Sans Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: all .7s;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -ms-transition: all .7s;
    -o-transition: all .7s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        width: 150%;
        height: 100px;
        background: linear-gradient(180deg, #3200fa, #ff5491);
        transform: translateY(-45%) skew(0deg) scale(0);
        left: -25%;
        transition: 500ms ease-in-out;     
    }
    &:hover:after{
        transform: translateY(-45%) skew(45deg) scale(1);
        z-index: -1;
    }
    span{
        position: relative;
        z-index: 1;
    }
    &:hover{
        color: #FFF;
        span{
            color: #ffffff;
        }
        box-shadow: inset 2px 3px 10px rgba(255, 255, 255, 0.3), 4px 6px 20px rgba(233, 40, 72, 0.45), 6px 10px 35px rgba(200, 0, 50, 0.35);
    }
}
.secondary-btn {
    background: transparent;
    border: 2px solid #FFF;
}

.form-control {
    font-family: "Open Sans Regular";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
    padding: 17px 12px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: 1px solid #C1C1C1;
    width: 100%;
    outline: none;
    border: none;
}


form .btn-group {
    justify-content: center;
}

form .primary-btn {
    background: #f1f1f1;
    border: none;
    color: #844EFF;
    cursor: pointer;
    display: inline-block;
    padding: 15px 40px;
}

form .primary-btn:hover {
    background: #ff5491;
    color: #FFF;
}

.form-group {
    margin-bottom: 15px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

.fixed-btn{
    position: fixed;
    right: -108px;
    bottom: 40%;
    z-index: 99;
    rotate: -90deg;
    transition: 0.4s;
    &:hover{
        scale: 1.1;
    }
}
.get-in-touch-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-image: linear-gradient(0deg, #3100f9 0%, #ff5391 100%);
    font-size: 28px;
    line-height: 25px;
    color: #ffffff;
    font-weight: normal;
    font-family: "Open Sans SemiBold";
    padding: 10px 25px;
    border-radius: 40px 40px 0 0;
    span{
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FFF;
        border-radius: 50%;
    }
    &:hover{
        color: #FFF;
    }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
header {
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
}
.topbar{
    background: #FFF;
    padding-block: 4px;
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    p, .support{
        font-size: 14px;
        line-height: 30px;
        text-transform: uppercase;
        color: #051835;
        font-weight: normal;
        font-family: "Poppins Regular";
        margin-bottom: 0;
    }
    .support{
        text-transform: none;
    }
    .top-right, a{
        display: flex;
        align-items: center;
    }
    .top-right{
        gap: 20px;
    }
    a{
        gap: 7px;
    }
    .flag{
        position: relative;
        &::after{
            position: absolute;
            content: '';
            width: 10px;
            height: 10px;
            border-right: 1px solid #051835;
            border-bottom: 1px solid #051835;
            right: -20px;
            top: 0;
            rotate: 45deg;
        }
    }
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}

header.sticky {
    background: linear-gradient(180deg, #000 0%, #1A0C3C 100%);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 0 17px 0 #0000003a;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 999;
    transition: ease-in-out .4s;
    padding-block: 10px;
}
.logo{
    transition: all 0.5s;
}

.btn{
    height: 100%;
    display: flex;
    align-items: center;
}

/************************************* Home Page **************************************/
/* Banner */
.banner {
    position: relative;
    background: url(../img/banner-bg.webp) no-repeat;
    background-size: cover;
    padding-block: 180px;
    padding-bottom: 300px;
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
}
.banner-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-mobile{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-inn{
    position: absolute;
    left: 40%;
    bottom: 25%;
    z-index: -1;
}
.bottom-part{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.mouse-cart{
    width: 50px;
    height: 90px;
    border: 3px solid #FFF;
    border-radius: 60px;
    margin-bottom:  10px;
    position: relative;
    &::after{
        position: absolute;
        content: '';
        width: 3px;
        height: 10px;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: #FFF;
        animation: scrolls 2s ease-out infinite;
    }
}
@keyframes scrolls {
    0% {
        top: 10px;
        opacity: 0;
        -webkit-transform: scaleY(1) scaleX(1);
    }

    5% {
        top: 20px;
        opacity: 0.8;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    10% {
        top: 30px;
        opacity: 1;
        -webkit-transform: scaleY(1.6) scaleX(1.6);
    }

    15% {
        top: 40px;
        opacity: 1;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    20% {
        top: 50px;
        opacity: 1;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    30% {
        top: 60px;
        opacity: 1;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    100% {
        top: 70px;
        opacity: 0;
        -webkit-transform: scaleY(1.2) scaleX(0.8);
    }
}
.btn-group {
    display: flex;
    gap: 25px;
}
/* Counter Section */
.counter-section {
    position: relative;
    background: #ffffff;
    .container{
        padding-inline: 90px;
    }
}
.png1{
    position: absolute;
    left: 0;
    top: -83px;
}
.png2{
    position: absolute;
    right: 0;
    top: -174px;
}
.png3{
    position: absolute;
    right: 0;
    bottom: -68px;
    z-index: 1;
}
.counter-item {
    border-radius: 12px;
    filter: drop-shadow(0px 5px 9px rgba(0,0,0,0.13));
    background-color: #ffffff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.5s;
    padding-block: 38px;
}
.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.counter-item h4 {
    font-size: 53px;
    line-height: 50px;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans Bold";
    margin-bottom: 15px;
    span{
        margin-right: 10px;
    }
}
.counter-item p {
    font-size: 21px;
    line-height: 40px;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans Bold";
    margin-bottom: 0;
    text-transform: uppercase;
}
.counter-icon{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 5px;
}
.brand-box{
    border-radius: 9px;
    background-color: #fffef9;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgba(0,0,0,0.13);
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &:hover{
        filter: drop-shadow(0px 5px 9px rgba(0,0,0,0.13));
    }
}
.slick-slide{
    margin: 15px 20px;
}
.slick-list{
    margin: 0 -20px;
}
.slick-arrow{
    width: 41px;
    height: 41px;
    border-radius: 50%;
    z-index: 2;
    &::before{
        position: absolute;
        content: '';
        width: 60%;
        height: 60%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/arrow1.webp) no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        background: linear-gradient(180deg, #ff5491, #3200fa);
        &::before{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(329deg) brightness(102%) contrast(101%);
        }
    }
}
.slick-next{
    right: -50px;
}
.slick-prev{
    left: -50px;
    &::before{
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}
/*Meets  */
.meets{
    background: #0a0418;
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
    padding-bottom: 160px;
    .dec{
        color: #FFF;
    }
    .btn-group{
        justify-content: center;
    }
}
.meet-box{
    display: block;
    border-radius: 12px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.meets-slider{
    .slick-slide{
        margin: 15px 35px;
    }
    .slick-list{
        margin: 0 -35px;
    }
    .slick-arrow{
        width: 62px;
        height: 62px;
        z-index: 3;
        &::before{
            width: 100%;
            height: 100%;
            background: url(../img/arrow2.webp) no-repeat;
            background-position: center;
        }
    }
    .slick-next{
        right: -70px;
    }
    .slick-prev{
        left: -70px;
    }
}
/* Step By */
.step-by{
    background: #FFF;
    position: relative;
    .png2{
        top: -164px;
    }
    .png3 {
        bottom: -75px;
    }
}
.step-by-box{
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    background-color: rgba(250,250,250,0.03137254901960784);
    overflow: hidden;
    padding: 50px 10px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    &::before{
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        background-image: linear-gradient(0deg, #3100f9 0%, #ff5391 100%);
        opacity: 0;
        transition: 0.5s;
        z-index: -1;
    }
    &:hover{
        background-color: rgba(250, 250, 250, 0);
        &::before{
            opacity: 1;
        }
        .card-title,
        p, .read-more{
            color: #fff;
        }
    }
}
.icon-box{
    width: 67px;
    height: 67px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.read-more{
    display: block;
    font-size: 14px;
    line-height: 23px;
    text-decoration: underline;
    color: #14082e;
    font-weight: normal;
    font-family: "Open Sans Regular";
    margin-top: 30px;
    transition: 0.5s;
}
/* Ads */
.ads{
    background: #14082e;
    clip-path: polygon(0 7%, 100% 0%, 100% 100%, 0% 100%);
    padding-block: 100px;
    .dec{
        color: #FFF;
        font-size: 34px;
    }
}
.ads-box{
    border-radius: 10px;
    overflow: hidden;
}
.ads-box video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
}
.ad-slider{
	.slick-slide{
        margin: 0 10px;
    }
    .slick-list{
        margin: 0 -10px;
    }
	.slick-arrow{
        width: 62px;
        height: 62px;
        z-index: 3;
        &::before{
            width: 100%;
            height: 100%;
            background: url(../img/arrow2.webp) no-repeat;
            background-position: center;
        }
    }
    .slick-next{
        right: -70px;
    }
    .slick-prev{
        left: -70px;
    }
}
/* .before-after-box{
    border-radius: 8px;
    overflow: hidden;
    transition: 0.5s;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &:hover{
        box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.3), 0px 0px 20px rgba(233, 40, 72, 0.45), 0px 0px 35px rgba(200, 0, 50, 0.35);
        scale: 1.05;
    }
}
.b-a-tag{
    position: relative;
    &::before{
        content: '';
        
    }
    span{
        position: absolute;
        width: 250px;
        border-radius: 10px;
        background-image: linear-gradient(0deg, #3100f9 0%, #ff5391 100%);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 0;
        p{
            margin-bottom: 0;
            font-size: 16px;
            line-height: 41px;
            color: #ffffff;
        }
        &::before{
            position: absolute;
            content: '';
            width: 80px;
            height: 80px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            filter: drop-shadow(0px 2px 10.5px rgba(0,0,0,0.75));
            background-image: linear-gradient(0deg, #3100f9 0%, #ff5391 100%);
        }
        &::after{
            position: absolute;
            content: '';
            width: 50px;
            height: 50px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: url(../img/before-after-icon.webp) no-repeat;
            background-size: 100%;
            background-position: center;
            border-radius: 50%;
        }
    }
} */
/* Work */
.work{
    position: relative;
    .section-title{
        font-size: 45px;
    }
    .png1 {
        top: -62px;
    }
    .png2 {
        top: -63px;
    }
    .png3 {
        right: unset;
        left: 0;
        bottom: -123px;
    }
}
.work-card{
    border-radius: 12px;
    background: #FFF;
    border: 1px solid #dcd9d9;
    height: 100%;
    transition: 0.5s;
    &:hover{
        box-shadow: 0 4px 12px rgb(0 0 0 / 19%);
        .play-btn{
            scale: 1.4;
        }
    }
}
.work-content{
    padding: 20px;
}
.work-img{
    position: relative;
    .work-bg{
        width: 100%;
        object-fit: cover;
        object-fit: cover;
    }
}
.play-btn{
    position: absolute;
    left: 10px;
    bottom: 5px;
    transition: 0.5s;
}
.profile{
    text-align: right;
    .card-title{
        color: #000;
        margin-bottom: 5px;
    }
    p{
        margin-bottom: 0;
    }
}
/* Right Now */
.right-now{
    background: #14082e;
    clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 100%);
    padding-block: 100px;
}
.right-now-card{
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* Story */
.story{
    position: relative;
    .png2 {
        top: -61px;
    }
    .png3 {
        bottom: -74px;
    }
    .btn-group{
        justify-content: center;
        margin-top: 30px;
    }
}
.story-card{
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #3200fa;
    transition: 0.5s;
    img{
        width: 100%;
        height: auto;
        aspect-ratio: 1/0.7;
    }
    &:hover{
        transform: translateY(-5px);
        box-shadow: 0px 0px 20px 7px #ff54914d;
    }
}
.story-txt{
    padding: 25px 10px;
    background: linear-gradient(180deg, #ff5491, #3200fa);
    p{
        font-family: "Open Sans SemiBold";
        font-size: 24px;
        text-align: center;
        margin-bottom: 0;
        color: #FFF;
    }
}
.story-slider{
    .slick-slide{
        margin-block: 30px;
    }
}
/* .story-box{
    margin-inline: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-image: linear-gradient(0deg, #3100f9 0%, #ff5392 100%);
    padding: 50px;
    width: 184px;
    height: 184px;
    rotate: 45deg;
    z-index: 1;
    transition: 0.5s;
    img {
        rotate: 314deg;
    }
    &::before,
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        background-color: rgba(38, 107, 163, 0.098);
        rotate: 13deg;
        z-index: -1;
        transition: 0.5s;
    }
    &::after{
        rotate: -13deg;
    }
}
.story-content:hover{
    .story-box{
        transform: scale(1.1);
        &::before{
            rotate: 28deg;
        }
        &::after{
            rotate: -28deg;
        }
    }
    h4{
        color: #4e0cec;
    }
}
.story-text{
    text-align: center;
    margin-top: 55px;
    h4{
        font-size: 28px;
        line-height: 50px;
        text-transform: uppercase;
        color: #0f0329;
        font-weight: normal;
        font-family: "Open Sans Semibold";
        transition: 0.5s;
    }
} */
/* Numbers */
.numbers{
    background-color: #14082e;
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    padding-block: 180px;
    .dec{
        color: #FFF;
        font-size: 34px;
    }
    .btn-group{
        justify-content: center;
        margin-top: 60px;
    }
}
/************************
        Footer
************************/
footer{
    background-color: #4e0cec;
    p, a{
        font-size: 17px;
        line-height: 57px;
        text-transform: uppercase;
        color: #ffffff;
        font-weight: normal;
        font-family: "Open Sans Regular";
        margin-bottom: 0;
    }
    ul{
        display: flex;
        align-items: center;
        gap: 15px;
        a:hover {
            color: #ff5491;
        }
    }
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .banner {
        padding-block: 140px;
        padding-bottom: 300px;
    }
    .png1 {
        top: -116px;
    }
    .png2 {
        top: -196px;
    }
    .step-by {
        .png1 {
            top: -85px;
        }
        .png2 {
            top: -159px;
        }
    }
    .right-now {
        clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
        padding-block: 125px;
    }
    .work {
        .png3 {
            bottom: -116px;
        }
    }
    .story {
        padding-top: 90px;
        .png2 {
            top: -62px;
        }
        .png3 {
            bottom: -73px;
        }
    }
    .numbers {
        clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
        padding-block: 150px;
    }
}

@media (max-width: 1440px),
(max-width: 1366px) {
    .title {
        font-size: 30px;
    }
    .form-control{
        padding: 12px 8px;
        font-size: 14px;
    }
    form .primary-btn{
        padding: 10px 30px;
    }
    .right{
        padding: 24px;
    }
    .sec-gap {
        padding: 50px 0;
    }
    .section-title {
        font-size: 42px;
        line-height: 48px;
    }
    .dec {
        font-size: 18px;
        line-height: 30px;
    }
    .fixed-btn{
        right: -84px;
    }
    .get-in-touch-btn{
        font-size: 20px;
        gap: 10px;
        padding: 8px 20px;
        span{
            width: 34px;
            height: 34px;
            padding: 11px;
        }
    }
    .primary-btn{
        font-size: 15px;
        padding: 11px 20px;
    }
    .topbar {
        p, .support {
            font-size: 12px;
            line-height: 21px;
        }
        .flag{
            img{
                width: 25px;
                height: auto;
            }
            &::after {
                width: 8px;
                height: 8px;
                right: -16px;
            }
        }
    }
    .logo{
        width: 45px;
    }
    .mouse-cart {
        scale: 0.7;
        margin-bottom: 0px;
    }
    .bottom-part{
        bottom: 66px;
        img{
            width: 3px;
            height: 64px;
        }
    }
    .banner {
        padding-block: 120px;
        padding-bottom: 257px;
    }
    .png1 {
        top: -97px;
        width: 23%;
    }
    .png2 {
        top: -158px;
        width: 23%;
    }
    .png3 {
        width: 23%;
        bottom: -46px;
    }
    .counter-item h4 {
        font-size: 43px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .counter-item p {
        font-size: 17px;
        line-height: 25px;
    }
    .mb-50 {
        margin-bottom: 40px;
    }
    .counter-icon {
        width: 60px;
        height: 50px;
        margin-bottom: 5px;
    }
    .sub-title {
        font-size: 26px;
        line-height: 40px;
    }
    .meets{
        padding-bottom: 125px;
    }
    .step-by {
        .png1 {
            top: -68px;
        }
        .png2 {
            top: -124px;
        }
        .png3 {
            bottom: -51px;
        }
    }
    .card-title {
        font-size: 17px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .step-by-box{
        padding: 30px 10px;
    }
    .work {
        padding-top: 70px;
        .png1 {
            top: -50px;
        }
        .png2 {
            top: -48px;
        }
        .png3 {
            bottom: -96px;
        }
        .section-title {
            font-size: 36px;
        }
    }
    .right-now{
        padding-block: 115px;
    }
    .story {
        .png2 {
            top: -41px;
        }
        .png3 {
            bottom: -49px;
        }
        .section-title{
            margin-bottom: 60px;
        }
    }
    .story-box{
        width: 154px;
        height: 154px;
    }
    .story-text {
        h4 {
            font-size: 21px;
            line-height: 35px;
        }
    }
    .numbers {
        padding-block: 120px;
        .dec{
            font-size: 26px;
        }
        .btn-group {
            margin-top: 40px;
        }
    }
    footer {
        p, a {
            font-size: 15px;
            line-height: 38px;
        }
    }
    .ads {
        .dec {
            font-size: 26px;
        }
    }
    .story-txt {
            padding: 17px 10px;
        p {
            font-size: 19px;
        }
    }
}

@media (max-width: 1199.98px){
    .popup .popup__content {
        width: 70%;
    }
    .mb-50 {
        margin-bottom: 25px;
    }
    .banner {
        padding-block: 110px;
        padding-bottom: 150px;
    }
    .png1 {
        top: -45px;
        width: 20%;
    }
    .png2 {
        top: -93px;
        width: 20%;
    }
    .bottom-part {
        bottom: -5px;
    }
    .counter-item p {
        font-size: 15px;
    }
    .png3 {
        width: 20%;
        bottom: -30px;
    }
    .meets-slider {
        padding-inline: 50px;
        .slick-next {
            right: -40px;
        }
        .slick-prev {
            left: -40px;
        }
    }
    .step-by {
        .png3 {
            bottom: -33px;
        }
    }
    .ads {
        clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
        padding-block: 70px;
    }
    .work {
        .section-title {
            font-size: 30px;
        }
        .png1 {
            top: -33px;
        }
        .png2 {
            top: -32px;
        }
    }
    .ads {
        .dec {
            font-size: 21px;
        }
    }
    .work-content{
        padding: 10px;
    }
    .right-now {
        padding-block: 80px;
    }
    .work {
        .png3 {
            bottom: -69px;
        }
    }
    .story {
        .png2 {
            top: -28px;
        }
        .png3 {
            bottom: -33px;
        }
    }
    .step-by {
        .png1 {
            top: -47px;
        }
        .png2 {
            top: -100px;
        }
    }
}

@media (max-width: 991.98px){
	.ad-slider {
		.slick-prev {
			left: -50px;
		}
		.slick-next{
        right: -50px;
    }
	}
    nav{
        padding-block: 6px;
    }
    .topbar {
        p, .support {
            font-size: 10px;
            line-height: 15px;
        }
    }
    .primary-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    .banner-img{
        display: none;
    }
    .banner-mobile{
        display: block;
    }
    .banner{
        padding-top: 0;
        padding-bottom: 0;
        clip-path: polygon(0 0, 100% 0%, 100% 96%, 0% 100%);
    }
    .bottom-part {
        display: none;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .png1 {
        top: -33px;
    }
    .png2 {
        top: -61px;
    }
    .section-title {
        font-size: 34px;
        line-height: 36px;
    }
    .dec {
        font-size: 16px;
        line-height: 26px;
    }
    .counter-section {
        .container {
            padding-inline: 10px;
        }
    }
    .counter-item h4 {
        font-size: 34px;
        line-height: 35px;
    }
    .counter-icon {
        width: 55px;
        height: 42px;
    }
    .sub-title {
        font-size: 19px;
        line-height: 30px;
    }
    .slick-slide{
        margin: 0 10px;
    }
    .slick-list{
        margin: 0 -10px;
    }
    .brand-slider{
        padding-inline: 20px;
    }
    .slick-next {
        right: -30px;
    }
    .slick-prev {
        left: -30px;
    }
    .logo-big{
        width: 7%;
    }
    .png3 {
        bottom: -23px;
    }
    .meets-slider {
        .slick-list {
            margin: 0 -20px;
        }
        .slick-slide {
            margin: 0 20px;
        }
        .slick-prev {
            left: -25px;
        }
        .slick-next {
            right: -25px;
        }
    }
    .meets {
        padding-bottom: 95px;
    }
    .step-by {
        .png1 {
            top: -34px;
        }
        .png2 {
            top: -71px;
        }
        .png3 {
            bottom: -25px;
        }
    }
    .ads {
        clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 100%);
        padding-block: 50px;
    }
    .work {
        .png1 {
            top: -25px;
        }
        .png2 {
            top: -24px;
        }
        .section-title {
            font-size: 24px;
        }
        .png3 {
            bottom: -53px;
        }
    }
    .right-now {
        padding-block: 70px;
        clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 100%);
    }
    .story {
        .png2 {
            top: -21px;
        }
        .png3 {
            bottom: -25px;
        }
    }
    .story-text {
        margin-top: 35px;
    }
    .story-box {
        width: 134px;
        height: 134px;
    }
    .numbers {
        padding-block: 80px;
        .dec {
            font-size: 21px;
        }
    }
    footer {
        p, a {
            font-size: 12px;
            line-height: 32px;
        }
        ul {
            gap: 9px;
        }
    }
    .get-in-touch-btn {
        padding: 10px 20px;
        span {
            width: 28px;
            height: 28px;
            padding: 8px;
        }
    }
}

@media (max-width: 575.98px){
    .popup .popup__content {
        width: 90%;
    }
    .logo {
        width: 40px;
    }
    .topbar{
        .container{
            justify-content: center;
        }
        p{
            display: none;
        }
    }
    .fixed-btn{
        right: -59px;
    }
    .get-in-touch-btn {
        font-size: 14px;
        gap: 5px;
        padding: 5px 15px;
        border-radius: 20px 20px 0 0;
        span {
            width: 22px;
            height: 22px;
            padding: 7px;
        }
    }
    header{
        position: relative;
        background: linear-gradient(180deg, #000 0%, #1A0C3C 100%);
    }
    .banner{
        clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
        padding-bottom: 8px;
    }
    .png1 {
        top: -20px;
        width: 25%;
    }
    .png2 {
        top: -35px;
        width: 25%;
    }
    .png3 {
        bottom: -11px;
        width: 25%;
    }
    .section-title {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 3px;
    }
    .dec {
        font-size: 15px;
        line-height: 20px;
    }
    .sub-title {
        font-size: 17px;
        line-height: 19px;
    }
    .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .slick-next {
        right: -10px;
    }
    .slick-prev {
        left: -10px;
    }
    .meets-slider {
        .slick-arrow {
            width: 32px;
            height: 32px;
            &::before{
                width: 60%;
                height: 60%;
                background-size: contain;
            }
        }
        .slick-next {
            right: 0;
        }
        .slick-prev {
            left: 0;
        }
    }
    .meets {
        padding-bottom: 50px;
        clip-path: polygon(0 0, 100% 0%, 100% 94%, 0% 100%);
    }
    .step-by {
        .png1 {
            top: -20px;
        }
        .png2 {
            top: -38px;
        }
    }
    .icon-box {
        width: 60px;
        height: 60px;
    }
    .ads {
        .dec {
            font-size: 16px;
        }
    }
    .b-a-tag {
        & span {
            width: 200px;
            &::before {
                width: 60px;
                height: 60px;
            }
            &::after{
                width: 40px;
                height: 40px;
            }
            p{
                font-size: 14px;
                line-height: 34px;
            }
        }
    }
    .work {
        .png1 {
            top: -14px;
        }
        .png2 {
            top: -14px;
        }
        .png3 {
            bottom: -30px;
        }
    }
    .right-now{
        clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 100%);
        padding-block: 50px;
    }
    .story {
        .png2 {
            top: -13px;
        }
    }
    .story-text{
        padding-inline: 30px;
        margin-top: 25px;
        h4 {
            font-size: 18px;
            line-height: 29px;
        }
    }
    .story-box{
        width: 104px;
        height: 104px;
        padding: 35px;
    }
    .story {
        .png3 {
            bottom: -15px;
        }
    }
    .numbers {
        padding-block: 50px;
        clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
        .dec {
            font-size: 16px;
        }
        .btn-group {
            margin-top: 30px;
        }
    }
    .step-by {
        .png3 {
            bottom: -16px;
        }
    }
    footer{
        padding-bottom: 10px;
        p{
            line-height: 24px;
            margin-bottom: 5px;
        }
        a{
            line-height: 15px;
        }
        ul{
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    .copyright{
        flex-direction: column;
        justify-content: center;
    }
    .story{
        .section-title {
            margin-bottom: 10px;
        }
        .btn-group {
            margin-top: 10px;
        }
    }
    .story-slider{
        padding-inline: 20px;
        .slick-slide {
            margin-block: 10px;
        }
    }
    .story-txt {
                padding: 11px 10px;
        p {
            font-size: 17px;
        }
    }
}