@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -moz-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--primary-dark);
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background-color: var(--secondary-color);
}

::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Global Styles */
:root {
    --primary-dark: #030311;
    --blue-color: #090932;
    --secondary-color: #E82B50;
    --white-color: #FFFFFF;

    --Darker-Grotesque-font: "Darker Grotesque", serif;
}

.secondary-text-color {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    margin: 0;
    text-decoration: none;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul {
    margin-bottom: 0;
}

ul li {
    list-style-type: none;
}

figure {
    margin: 0;
}

img {
    margin: 0;
    vertical-align: middle;
}

a,
input,
button,
select,
textarea {
    margin: 0;
    outline: none;
    box-shadow: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

.input-group>.form-control:focus,
.input-group>.form-floating:focus-within,
.input-group>.form-select:focus {
    box-shadow: none;
}

textarea,
input {
    caret-color: var(--secondary-color);
}

.container {
    max-width: 1300px;
    width: 95%;
    margin: 0 auto;
}


/* .mainBtn {
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}

.mainBtn:hover {
    background-color: var(--white-color);
    color: var(--primary-dark);
} */

.mainBtn {
    display: inline-block;
    position: relative;
    background: var(--secondary-color);
    border: none;
    padding: 15px 30px;
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 8px;
}

.mainBtn span {
    position: relative;
    pointer-events: none;
}

.mainBtn:focus,
.mainBtn:focus-within,
.mainBtn:hover {
    scale: 0.97;
}

.mainBtn::before {
    content: '';
    position: absolute;
    --size: 0;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #ffffff6f, transparent);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease;
}

.mainBtn:hover::before {
    --size: 300px;
}

/* .mainBtn:focus,
.mainBtn:focus-within,
.mainBtn:hover {
    color: var(--secondary-color) !important;
} */

.subHeading {
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 30px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
}

.globalHeading {
    color: var(--secondary-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -0.03em;
    text-transform: capitalize;
}

p {
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 30px;
    font-weight: 300;
    line-height: 42px;
}


#behindmouse {
    background-color: var(--secondary-color);
}


/*======================
    Header 
======================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1000;
}

header.bgColor {
    background-color: #03031142;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    box-shadow: 0px 0px 5px #38373742;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

header .navbarBrand img {
    height: 70px;
}

header .navbar-toggler {
    border: 0;
}

header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

header .navbar {
    padding: 10px 0;
}

header .navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

header .navbar .navbar-nav .nav-item .nav-link {
    font-family: var(--Darker-Grotesque-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 20.34px;
    color: var(--white-color);
    padding: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
}

header .navbar .navbar-nav .nav-item .nav-link.active {
    font-weight: 700;
}

header .navbar .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    left: 0;
    bottom: -8px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

header .navbar .navbar-nav .nav-item .nav-link:hover::after,
header .navbar .navbar-nav .nav-item .nav-link.active::after {
    width: 15px;
}

header .navbar .navbar-toggler i {
    color: var(--white-color);
}

header .mainBtn:focus,
header .mainBtn:focus-within,
header .mainBtn:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
}


/*======================
    FOOTER 
======================*/
footer {
    padding: 100px 0 50px 0;
    background: url('../image/footer_BG.png');
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
}

footer .contactBox {
    background-color: var(--blue-color);
    padding: 30px;
    border-radius: 30px;
    max-width: 500px;
}

footer .contactBox hr {
    margin: 30px 0 25px;
    border-color: rgb(255, 255, 255, 0.5);
}

.bottom_footer .title,
footer .contactBox .contactTitle {
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.03em;
}

footer .contactBox a {
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

footer .contactBox a:hover,
footer .contactBox a:focus-within {
    color: var(--secondary-color);
}

footer .contactBox .contactIcon {
    height: 40px;
    margin-right: 30px;
}

.contactForm textarea,
.contactForm .input-group {
    border-bottom: 1px solid rgb(255, 255, 255, 0.5) !important;
}

.contactForm .input-group-text {
    padding: .375rem .75rem;
    background-color: transparent;
    border: 0;
    padding-left: 5px;
}

.contactForm textarea,
.contactForm .form-control {
    background-color: transparent;
    border: 0;
}

.contactForm textarea,
.contactForm .form-control,
.contactForm input {
    font-family: var(--Darker-Grotesque-font);
    font-size: 30px;
    font-weight: 400;
    line-height: 42px;
    color: var(--white-color);
}

.contactForm textarea::placeholder,
.contactForm .form-control::placeholder,
.contactForm input::placeholder {
    color: var(--white-color);
    opacity: 0.7;
}


/* Bottom Footer */
.bottom_footer {
    background-color: var(--blue-color);
    border-radius: 30px;
    padding: 50px;
    margin-top: 50px;
}

.bottom_footer .socialBox {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 30px 0px 0;
}

.bottom_footer .socialBox img {
    height: 40px;
}

.bottom_footer .socialBox span {
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: clamp(1.375rem, 1.778vw + 0.275rem, 1.875rem);
    font-weight: 700;
    line-height: normal;
}


.bottom_footer .socialBox:focus-within span,
.bottom_footer .socialBox:hover span {
    color: var(--secondary-color);
}

.bottom_footer .ftrLogo {
    margin-bottom: 20px;
}

.bottom_footer .copyright {
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: clamp(1.375rem, 1.778vw + 0.275rem, 1.875rem);
    font-weight: 700;
    line-height: normal;

}



.flotingChat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: rgb(231, 231, 231);
    /* background-color: var(--secondary-color); */
    background-color: #0cb029;
    /*background-color: #5FFC7B;*/
    align-items: center;
    justify-content: center;
    display: none;
    transition: all 0.3s linear;
    scale: 0;
    z-index: 99;
}

.flotingChat.visible {
    display: flex;
    scale: 1;
    transition: all 0.3s linear;
}

/*==================
    Hero Section 
==================*/
.hero_sec {
    padding-top: 200px;
    padding-bottom: 50px;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero_sec .innerTextContent a,
.hero_sec .innerTextContent .mainBtn {
    transition: none;
}

.hero_sec .innerTextContent {
    max-width: 983px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.hero_sec .innerTextContent h1 {
    font-family: var(--Darker-Grotesque-font);
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -0.03em;
    color: var(--white-color);
}

.hero_sec .innerTextContent h1 span {
    color: var(--secondary-color);
}

.hero_sec .innerTextContent p {
    font-size: 30px;
    font-weight: 400;
    line-height: 42px;
    color: var(--white-color);
    opacity: 80%;
    max-width: 560px;
    margin: 30px auto 0px;
}


.hero_sec .star1,
.hero_sec .star2,
.hero_sec .star3,
.hero_sec .star4,
.hero_sec .star5,
.hero_sec .star6 {
    position: absolute;
    z-index: -1;
}

.hero_sec .star1 {
    top: 30%;
    left: 75%;
}

.hero_sec .star2 {
    width: 24px;
    height: 24px;
    top: 70%;
    left: 67%;
}

.hero_sec .star3 {
    width: 16px;
    height: 16px;
    top: 63%;
    left: 25%;
}

.hero_sec .star3 {
    width: 16px;
    height: 16px;
    top: 63%;
    left: 25%;
}

.hero_sec .star4 {
    width: 25px;
    height: 25px;
    top: 28%;
    left: 5%;
}

.hero_sec .star5 {
    width: 50px;
    height: 50px;
    top: 75%;
    left: 10%;
}

.hero_sec .star6 {
    width: 50px;
    height: 50px;
    top: 75%;
    right: 15%;
}

.hero_sec .star4,
.hero_sec .star1 {
    -webkit-animation: heroStars 3s infinite linear;
    animation: heroStars 3s infinite linear;
}

.hero_sec .star6,
.hero_sec .star2 {
    -webkit-animation: heroStars 2s infinite linear 2s;
    animation: heroStars 2s infinite linear;
}

.hero_sec .star5,
.hero_sec .star3 {
    -webkit-animation: heroStars 3s infinite linear 5s;
    animation: heroStars 3s infinite linear 5s;
}

@-webkit-keyframes heroStars {

    0%,
    100% {
        opacity: 0.5;
        scale: 0.7
    }

    50% {
        opacity: 1;
        scale: 1;
    }
}

@keyframes heroStars {

    0%,
    100% {
        opacity: 0.5;
        scale: 0.7
    }

    50% {
        opacity: 1;
        scale: 1;
    }
}


.hero_sec .blob1 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    height: 300px;
    width: 400px;
    background-color: #E82B5066;
    border-radius: 100%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    /* -webkit-animation: heroBlob infinite 10s linear;
    -moz-animation: heroBlob infinite 10s linear;
    -o-animation: heroBlob infinite 10s linear;
    animation: heroBlob infinite 10s linear; */
}

.hero_sec .blob2 {
    position: absolute;
    top: 30%;
    right: 0%;
    z-index: -3;
    height: 486px;
    width: 386px;
    background-color: #26C5C8;
    border-radius: 100%;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    opacity: 0.6;
    -webkit-animation: heroBlob infinite 10s linear;
    -moz-animation: heroBlob infinite 10s linear;
    -o-animation: heroBlob infinite 10s linear;
    animation: heroBlob infinite 10s linear;
}

.hero_sec .blob3 {
    position: absolute;
    top: -30%;
    left: 0%;
    z-index: -2;
    height: 500px;
    width: 500px;
    background-color: #5665CD;
    border-radius: 100%;
    -webkit-filter: blur(300px);
    filter: blur(300px);
    -webkit-animation: heroBlob infinite 10s linear;
    -moz-animation: heroBlob infinite 10s linear;
    -o-animation: heroBlob infinite 10s linear;
    animation: heroBlob infinite 10s linear;
}

@-webkit-keyframes heroBlob {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }
}

@keyframes heroBlob {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }
}



/*=========================
    Company Logo slider 
=========================*/
.companyLogoSlide_sec {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.companyLogoSlide_sec .backSide {
    width: 100%;
    height: 160px;
    background-color: var(--white-color);
    opacity: 0.03;
    transform: skewY(3deg);
    isolation: isolate;
    position: absolute;
}


.companyLogoSlide_sec .logos_slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 160px;
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
    transform: rotate(-3deg);
}

.companyLogoSlide_sec .logos_slider:before,
.companyLogoSlide_sec .logos_slider:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.companyLogoSlide_sec .logos_slider:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(0 0 0 / 90%));
}

.companyLogoSlide_sec .logos_slider:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(0 0 0 / 90%));
}

.companyLogoSlide_sec .logo_items {
    display: inline-block;
    -webkit-animation: 10s slides infinite linear;
    -moz-animation: 10s slides infinite linear;
    -o-animation: 10s slides infinite linear;
    animation: 10s slides infinite linear;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


.companyLogoSlide_sec .logos_slider:hover .logo_items {
    animation-play-state: paused;
}

.companyLogoSlide_sec .logo_items img {
    height: 75px;
    width: 75px;
    margin-right: 150px;
    transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.companyLogoSlide_sec .logo_items img:hover {
    transform: scale(1.1);
}


/*========================
    Our Service sec 
========================*/
.ourService_sec {
    padding: 80px 0;
    overflow: hidden;
}


.ourService_sec .serviceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 50px;
    row-gap: 50px;
    -webkit-column-gap: 50px;
    gap: 50px;
}

.ourService_sec .serviceBox_item {
    padding: 30px;
    background-color: var(--blue-color);
    border-radius: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.ourService_sec .serviceBox_item:hover,
.ourService_sec .serviceBox_item:focus-within {
    background-color: var(--secondary-color);
}

.ourService_sec .serviceBox_item .icon {
    height: 70px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.ourService_sec .serviceBox_item:hover .icon {
    transform: translateY(-10px) scale(1.05);
}

.ourService_sec .serviceBox_item .serviceTitle {
    font-family: var(--Darker-Grotesque-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 40.68px;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
}

.ourService_sec .serviceBox_item .serviceTitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -30px;
    background-color: var(--white-color);
    width: 0px;
    height: 3px;
    border-radius: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.ourService_sec .serviceBox_item:hover .serviceTitle {
    color: var(--white-color);
}

.ourService_sec .serviceBox_item:hover .serviceTitle::after {
    width: 100px;
}

.ourService_sec .serviceBox_item ul {
    padding-left: 20px;
}

.ourService_sec .serviceBox_item ul li {
    list-style-type: disc;
    padding-left: 5px;
    font-family: var(--Darker-Grotesque-font);
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    color: var(--white-color);
}

.ourService_sec .serviceBox_item ul li::marker {
    font-size: 10px;
}


/*========================
    Technologies sec 
========================*/
.technologies_sec {
    padding: 80px 0;
    overflow-x: hidden;
}

.technologies_sec .technologySliderMiddle,
.technologies_sec .technologySlider {
    margin-top: 50px;
}


.technologies_sec .technologySliderMiddle .swiper-wrapper,
.technologies_sec .technologySlider .swiper-wrapper {
    display: flex;
    transition-timing-function: linear;
}

.technologies_sec .technologySliderMiddle .swiper-slide,
.technologies_sec .technologySlider .swiper-slide {
    flex-shrink: 0;
    width: auto;
}

.technologies_sec .technologyItem {
    padding: 20px;
    border-radius: 100px;
    background-color: #090932;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    min-width: 350px;
}

.technologies_sec .technologyItem .iconBox {
    max-width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #FFFFFF33;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.technologies_sec .technologyItem span {
    display: block;
    color: var(--secondary-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 40.68px;
}


/*========================
    Dribble sec 
========================*/
.dribbleShorts_sec {
    padding: 80px 0;
    background-image: url('../image/icon/logos_dribbble-icon.png');
    background-repeat: no-repeat;
    background-position: top right;
    overflow-x: hidden;
}

.dribbleShorts_sec .globalHeading {
    display: flex;
    align-items: flex-end;
    width: fit-content;
}

.dribbleShorts_sec .globalHeading .whiteArrow {
    max-width: clamp(3.125rem, 1.878vw + 2.685rem, 4.375rem);
    min-width: clamp(3.125rem, 1.878vw + 2.685rem, 4.375rem);
    height: clamp(3.125rem, 1.878vw + 2.685rem, 4.375rem);
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    margin-left: 50px;
    opacity: 0;
    rotate: 90deg;
    transition: all 0.3s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.dribbleShorts_sec .globalHeading .whiteArrow img {
    width: 35%;
}

.dribbleShorts_sec .globalHeading:focus-within .whiteArrow,
.dribbleShorts_sec .globalHeading:hover .whiteArrow {
    rotate: 0deg;
    opacity: 1;
}

.dribbleShorts_sec .dribbleGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dribbleShorts_sec .dribbleGrid .gridItem img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -moz-transition: all 0.3s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-transition: all 0.3s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: all 0.3s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.dribbleShorts_sec .dribbleGrid .gridItem img:hover {
    filter: grayscale(0%);
}

.dribbleShorts_sec .dribbleGrid:hover .gridItem img:not(:hover) {
    filter: grayscale(100%);
}

.dribbleShorts_sec .dribbleGrid .item1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.dribbleShorts_sec .dribbleGrid .item2 {
    grid-column-start: 3;
}

.dribbleShorts_sec .dribbleGrid .item3 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.dribbleShorts_sec .dribbleGrid .item4 {
    grid-row-start: 3;
}

.dribbleShorts_sec .dribbleGrid .item5 {
    grid-row-start: 3;
}

.dribbleShorts_sec .dribbleGrid .item6 {
    grid-row-start: 3;
}

.dribbleShorts_sec .dribbleGrid .item7 {
    grid-column: span 3 / span 3;
    grid-row-start: 4;
}


/*========================
    Featured Projects sec 
========================*/
.featureProject_sec {
    padding: 80px 0;
    overflow-x: hidden;
}


.featureProject_sec figure {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
    height: 450px;
}

.featureProject_sec figure .featureProjectImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featureProject_sec .featureProjectDetailBox {
    background-color: var(--blue-color);
    padding: 40px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-left: -15%;
}

.featureProject_sec .featureProjectDetailBox h2 {
    color: var(--white-color);
    font-family: var(--Darker-Grotesque-font);
    font-size: clamp(1.875rem, 6.573vw + 0.335rem, 6.25rem);
    font-weight: 700;
    line-height: clamp(2.5rem, 4.225vw + 1.51rem, 5.313rem);
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.featureProject_sec .featureProjectDetailBox p {
    font-size: 26px;
    line-height: 30px;
}


/*======================
    Work Page 
======================*/
.workPortfolio_sec {
    padding: 50px 0;
}

.workPortfolio_sec .workImageCard figure {
    overflow: hidden;
    margin: 0;
    border-radius: 5px;
    height: 100%;
}

.workPortfolio_sec .workImageCard figure img {
    transition: all linear .3s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.workPortfolio_sec .workImageCard figure img:hover {
    transform: scale(1.05);
}

.workPortfolio_sec,
.stickyCards_main {
    overflow-x: visible !important;
    position: relative !important;
}

.workPortfolio_sec .stickyCards_main {
    padding-top: 100px;
}

.workPortfolio_sec .cardSticky {
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 20px;
    margin-bottom: 30px;
    aspect-ratio: 16/6;

    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px;
}

.workPortfolio_sec  .cardSticky {
    --offset: 20px;
    top: calc(100px + (var(--order, 0) * var(--offset)));
}

.workPortfolio_sec  .cardSticky:last-child {
    margin-bottom: 0;
}

.workPortfolio_sec  .cardSticky img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* .workPortfolio_sec .workItems_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.workPortfolio_sec .workItems_wrapper .workItem {
    width: calc(100% / 3);
    height: 500px;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    isolation: isolate;
}

.workPortfolio_sec .workItems_wrapper .workItem:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background-color: var(--blue-color);
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.workPortfolio_sec .workItems_wrapper .workItem:focus-within,
.workPortfolio_sec .workItems_wrapper .workItem:hover {
    width: 120%;
}

.workPortfolio_sec .workItems_wrapper .workItem:focus-within:after,
.workPortfolio_sec .workItems_wrapper .workItem:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 0%;
}


.workPortfolio_sec .workItems_wrapper .workItem .bgImg {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    z-index: -1;
}

.workPortfolio_sec .workItems_wrapper .workItem .workCaption h4 {
    color: var(--secondary-color);
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -0.03em;
    scale: 0;
    opacity: 0;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.workPortfolio_sec .workItems_wrapper .workItem:focus-within h4,
.workPortfolio_sec .workItems_wrapper .workItem:hover h4 {
    scale: 1;
    opacity: 1;
    transition-delay: 300ms;
}

.workPortfolio_sec .workItems_wrapper .workItem .workCaption p {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 400;
    line-height: 42px;
    scale: 0;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.workPortfolio_sec .workItems_wrapper .workItem:focus-within p,
.workPortfolio_sec .workItems_wrapper .workItem:hover p {
    scale: 1;
    opacity: 1;
    transition-delay: 300ms;
}

.workPortfolio_sec .workItems_wrapper .workItem .workCaption a {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.workPortfolio_sec .workItems_wrapper .workItem .workCaption a:hover {
    rotate: 45deg;
}

.workPortfolio_sec .workItems_wrapper .workItem:focus-within a,
.workPortfolio_sec .workItems_wrapper .workItem:hover a {
    scale: 1;
    opacity: 1;
    transition-delay: 200ms;
} */


.card_wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.card_wrapper .expand_card2,
.card_wrapper .expand_card {
    width: 200px;
    height: 500px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    isolation: isolate;
}

.card_wrapper .expand_card2::after,
.card_wrapper .expand_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue-color);
    opacity: 0;
    transition: all 0.3s linear;
}

.card_wrapper .expand_card2 .bgImage,
.card_wrapper .expand_card .bgImage {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-filter: brightness(0.9);
    -ms-filter: brightness(0.9);
    filter: brightness(0.9);
    user-select: none;
    pointer-events: none;
    isolation: isolate;
}

.card_wrapper .cardContent {
    padding: 0 10px;
    text-align: center;
    opacity: 0;
    z-index: 1;
}

.card_wrapper .cardContent .globalHeading,
.card_wrapper .cardContent p,
.card_wrapper .cardContent .cta_arrow {
    transition: all 0.3s linear;
    opacity: 0;
    scale: 0;
}

.card_wrapper .cardContent .globalHeading {
    line-height: normal;
}

.card_wrapper .cardContent .cta_arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
}

.card_wrapper .cardContent .cta_arrow svg {
    color: red;
    width: 60%;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    user-select: none;
    pointer-events: none;
}

.card_wrapper .cardContent .cta_arrow:hover svg {
    rotate: 45deg;
}

.card_wrapper .expand_card2.active,
.card_wrapper .expand_card.active {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.card_wrapper .expand_card2.active::after,
.card_wrapper .expand_card.active::after {
    opacity: 0.7;
}

.card_wrapper .expand_card2.active .cardContent,
.card_wrapper .expand_card.active .cardContent {
    opacity: 1;
}

.card_wrapper .expand_card2.active .cardContent .globalHeading,
.card_wrapper .expand_card2.active .cardContent p,
.card_wrapper .expand_card2.active .cardContent .cta_arrow,
.card_wrapper .expand_card.active .cardContent .globalHeading,
.card_wrapper .expand_card.active .cardContent p,
.card_wrapper .expand_card.active .cardContent .cta_arrow {
    opacity: 1;
    scale: 1;
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}


/*======================
    Wrork Portfolio Detail Page 
======================*/
.portfolioDetail_sec {
    padding: 50px 0;
}

.portfolioDetail_sec .yellowLine {
    background-color: var(--secondary-color);
    width: 70px;
    height: 5px;
    border-radius: 10px;
    margin-bottom: clamp(1.25rem,.647vw + 1.098rem,1.875rem);
}


.checkPro_sec {
    padding: 70px 0;
}

.checkPro_sec .title {
    font-size: clamp(1.25rem, 2.424vw + .682rem, 2.5rem);
    font-weight: 700;
    font-family: var(--Darker-Grotesque-font);
}

.checkPro_sec p {
    font-size: 20px;
    line-height: normal;
}

.checkPro_sec .storeBox {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

.checkPro_sec .storeBox .soonBox {
    border: 1px solid var(--white-color);
    border-radius: 5px;
    color: var(--white-color);
    width: 150px;
    height: 57px;
    transition: all ease-in-out .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
}

.checkPro_sec .storeBox .soonBox:hover {
    background-color: var(--secondary-color);
}

.checkPro_sec .storeBox .soonBox img {
    filter: invert(1);
}

.checkPro_sec .storeBox .soonBox .comingsoon {
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
}

.checkPro_sec .storeBox .soonBox h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.checkPro_sec .link a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

/*====================  
    Services Page
====================*/
.servicesDetails_sec {
    padding: 50px 0;
    overflow-x: hidden;
}

.servicesDetails_sec .serviceDetail_wrapper {
    padding: clamp(1.25rem, 3.125vw + 0.313rem, 3.125rem);
    border-radius: clamp(1.25rem, 3.125vw + 0.313rem, 3.125rem);
    background-color: var(--blue-color);
    margin-bottom: clamp(1.25rem, 3.125vw + 0.313rem, 3.125rem);
}

.servicesDetails_sec .serviceDetail_wrapper:last-child {
    margin-bottom: 0;
}

.servicesDetails_sec .serviceDetail_wrapper figure {
    position: relative;
    padding: clamp(0.938rem, 1.563vw + 0.469rem, 1.875rem);
}

.servicesDetails_sec .serviceDetail_wrapper .badge {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: var(--white-color);
    padding: 5px 15px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    position: absolute;
    -webkit-animation: serviceBage 5s linear infinite;
    -moz-animation: serviceBage 5s linear infinite;
    -o-animation: serviceBage 5s linear infinite;
    animation: serviceBage 5s linear infinite;
}

.servicesDetails_sec .serviceDetail_wrapper .pink1 {
    top: 0%;
    left: 35%;
}

.servicesDetails_sec .serviceDetail_wrapper .pink2 {
    top: 20%;
    left: 55%;
    animation-delay: 0.3s;
    animation-direction: reverse;
}

.servicesDetails_sec .serviceDetail_wrapper .pink3 {
    top: 40%;
    left: 60%;
}

.servicesDetails_sec .serviceDetail_wrapper .pink4 {
    top: 60%;
    left: 70%;
    animation-delay: 0.3s;
    animation-direction: reverse;
}

.servicesDetails_sec .serviceDetail_wrapper .pink5 {
    top: 90%;
    left: 40%;
}

@keyframes serviceBage {

    0%,
    100% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(5px, 5px);
    }
}



/*===========================
    About Page About Us 
===========================*/
.aboutStudioContent_sec {
    padding: 80px 0;
    overflow: hidden;
}

.aboutStudioContent_sec .counter_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.aboutStudioContent_sec .counter_box {
    max-width: 380px;
    width: 100%;
}

.aboutStudioContent_sec .counter_box .countNumBox {
    padding: 30px 50px;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    background-color: var(--blue-color);
    width: fit-content;
}

.aboutStudioContent_sec .counter_box .countBoxDetail {
    padding: 30px 50px;
    background-color: var(--blue-color);
    border-radius: 50px;
    border-top-left-radius: 0px;
    width: 100%;
}

.aboutStudioContent_sec .counter_box .countBoxDetail p {
    font-weight: 700;
    margin-bottom: 15px;
}

.aboutStudioContent_sec .counter_box .countBoxDetail h4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}


/*===========================
    Process We Follow 
===========================*/
.processWeFollow_sec {
    padding: 80px 0;
    overflow: hidden;
}

.processWeFollow_sec .steps_process {
    margin-top: 100px;
}

.processWeFollow_sec .steps_process .step {
    position: relative;
    z-index: 1;
}

.processWeFollow_sec .steps_process .step:not(:nth-child(1)) {
    margin-top: -70px;
}

.processWeFollow_sec .steps_process .step:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.processWeFollow_sec .steps_process .step .number {
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
}

.processWeFollow_sec .steps_process .step .stepDetail {
    padding: 50px;
    border-radius: 50px;
    background-color: var(--blue-color);
    max-width: 700px;
}

.processWeFollow_sec .steps_process .step .stepDetail p {
    font-size: 18px;
    line-height: normal;
}


/* ==================
    Contact Page 
==================*/
.contactMap_sec {
    padding: 50px 0;
}

.contactMap_sec iframe {
    width: 100%;
    height: auto;
    border-radius: 30px;
    aspect-ratio: 16/9;
}

.text-danger.small {
    font-size: 20px;
}
