* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Onest Regular (400) */
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Regular.woff2') format('woff2'),
       url('../fonts/Onest-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* Onest Bold (700) */
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Bold.woff2') format('woff2'),
       url('../fonts/Onest-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
/* Onest Medium (600) */

/* Onest Light (300) */
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Light.woff2') format('woff2'),
       url('../fonts/Onest-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/*==
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Regular.woff2') format('woff2'),
       url('../fonts/Onest-Regular.woff') format('woff'),
       url('../fonts/Onest-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Bold.woff2') format('woff2'),
       url('../fonts/Onest-Bold.woff') format('woff'),
       url('../fonts/Onest-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}



@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Light.woff2') format('woff2'),
       url('../fonts/Onest-Light.woff') format('woff'),
       url('../fonts/Onest-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
} 
*/
p {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: normal;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
}

h1 {
    font-size: 50px;
}

*,
:after,
:before {
    box-sizing: border-box;
}

article h1,
section h1,
nav h1,
aside h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5em 0;
}
a {
    text-decoration: none;
    color: #000;
}

img {
    background-color: #fff0;
}

ul li {
    list-style-type: none;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #B3F52B -6%, #A2FEA5 5%, #A4FFA2 -1%, #7EDEF4 27%, #6CD3EC 74%, #8FEFBD 88%, #B3F52B 117%, #B3F52B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 999;
}

.bg {
    width: 100%;
    height: 100vh;
    background-image: url(../images/Banner_Bg.webp);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
}

.mobile-nav-list li {
    margin: 1rem 0;
}

.mobile-nav-list a {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    position: relative;
}

.mobile-nav-list a.active::after {
    content: '';
    display: block;
    height: 4px;
    width: 60%;
    background: #fff;
    margin: .5rem auto 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.social-icons a {
    color: #000;
    text-decoration: none;
}

.nav-open img {
    position: absolute;
    top: 1.5rem;
    left: 50px;
}

.mobile-nav-list a::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    width: 0;
    height: 6px;
    background-color: rgba(176, 135, 255);
    background-size: 300% 100%;
    background-position: 0% 50%;
    transition: width 0.8s cubic-bezier(.25, .46, .45, .94), background-position 0.8s ease-in-out, background 0.8s ease-in-out;
    z-index: 1;
}

.mobile-nav-list a span {
    position: relative;
    z-index: 2;
}

.mobile-nav-list a span:nth-child(odd) {
    z-index: 0;
}

.mobile-nav-list a span:nth-child(even) {
    z-index: 2;
}

.mobile-nav-list a:hover::before {
    width: 100%;
}

.mobile-nav-list a:hover {
    text-shadow: 0 0 20px rgb(255 255 255 / .5), 2px 2px 4px rgb(0 0 0 / .3)
}

.mobile-nav-list a.active::after {
    content: '';
    display: block;
    height: 4px;
    width: 60%;
    background: #fff;
    margin: .5rem auto 0;
    position: relative;
    z-index: 3;
}

.close-nav {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
}

header .container {
    display: flex;
    justify-content: space-between;
    width: 95%;
}

header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.logo a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    font-family: 'Onest', sans-serif;
    color: #000;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 95px;
}

.mobile-nav-list li {
    margin: 1rem 0;
}

.mobile-nav-list a {
    color: #000;
    text-decoration: none;
    position: relative;
    font-family: Onest;
    font-weight: 800;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: lowercase;
}

.mobile-nav-list a.active::after {
    content: '';
    display: none;
    height: 4px;
    width: 60%;
    background: #fff;
    margin: .5rem auto 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.social-icons a {
    color: #000;
    text-decoration: none;
}

.close-nav {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
}

.hero-banner {
    background-image: url(../images/Banner_Bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    contain: layout style paint;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linear-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Gradient01.webp) no-repeat center center;
    background-size: contain;
    z-index: 0;
}

.title-container {
    z-index: 2;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.number-6 {
    background: url(../images/logo.webp) no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 465px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgb(255 255 255 / .5));
    position: absolute;
    left: 0%;
    top: 103px;
}

.title_main .subtitle span {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff0;
    -webkit-text-stroke: 1px #000;
    display: block;
}

.company-description {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 30px;
    z-index: 2;
    position: relative;
}

.main_tittle {
    font-family: 'Onest', sans-serif;
    font-size: 123px;
    font-weight: 800;
    line-height: .9;
    margin-bottom: 10;
    position: absolute;
    left: 75px;
    top: 32%;
}

.subtitle {
    font-size: 123px;
    line-height: 1;
    margin-bottom: 40px;
    color: #fff0;
    -webkit-text-stroke: 2px #000;
    font-weight: 800;
    top: 48%;
    left: 20%;
    position: absolute;
    font-family: 'Onest', sans-serif;
}

.highlight {
    font-weight: 700;
}

.about-content {
    width: 60%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 65px;
    padding-top: 40px;
}

.about-content p {
    font-family: 'Onest', sans-serif;
    font-size: 19px;
    line-height: 28px;
    text-align: justify;
}

img.hashtag {
    left: -50px;
    position: absolute;
    top: 2px;
    width: 60px;
}

img.code {
    width: 90px;
    position: absolute;
    right: 200px;
}

img.brackets {
    position: absolute;
    right: -80px;
    top: -2px;
    width: 70px;
}

.container {
    max-width: 90%;
    margin: 0 auto;
}

.section_title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    font-family: 'Onest', sans-serif;
    display: block;
}

.our_service_card {
    background-color: #F4F4F4;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.7s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.our_service_card:hover {
    background: #B3F52B;
}

.our_service_card_icon {
    width: 140px !important;
    height: 240px;
    margin: 0 auto;
}

.our_service_card_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.our_service_card_link {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Onest', sans-serif;
    justify-content: space-between;
    margin-top: 10px;
    transition: all 0.3s ease;
}

span.service-txt {
    width: 60%;
    min-height: 64px;
}

.our_service_card_link .arrow {
    width: 28px;
    height: 28px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

span.arrow img {
    width: 11px !important;
}

.our_service_card_link .arrow svg {
    fill: #fff;
    width: 14px;
    height: 14px;
}

.owl-carousel.our_service_slider.owl-loaded.owl-drag {
    padding-top: 20px;
}

.our_service_card_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our_service_card:hover .our_service_card_icon img {
    animation: floatLoop 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 10px rgb(0 0 0 / .1));
}

@keyframes floatLoop {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.owl-carousel .owl-item {
    transition: opacity 0.5s ease;
}

.section_title::before {
    content: "•";
color: #8ef536;
    font-size: 60px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
            line-height: 55px;
}

section.service_section {
    padding: 50px 0;
    min-height: 100vh;
    contain: layout style paint;
    padding-bottom: 0;
}

@media (max-width:768px) {

    h1,
    .subtitle {
        font-size: 42px;
    }

    .number-6 {
        width: 80%;
        height: 200px;
    }

    .linear-gradient {
        z-index: 0;
        background-size: cover;
    }

    .company-description {
        max-width: 100%;
    }
}

.work_card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 20px 0 80px;
}

.work_card-header {
    flex: unset;
    height: 60vh;
    padding-bottom: 25px;
}

.work_card-title {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: inline;
}

.work_card-gallery {
    display: flex;
    flex: 2 1 600px;
    overflow-x: auto;
    gap: 1.5rem;
}

.work_card-item {
    position: relative;
    border-radius: 20px;
    padding: 1.5rem;
    color: #fff;
    min-width: 50%;
    flex: 0 0 auto;
    overflow: hidden;
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: end;
}

.work_card-badge {
    position: absolute;
    top: 2rem;
    right: 1rem;
    background: #fff;
    color: #000;
    font-size: 16px;
    padding: 5px 14px;
    border-radius: 999px;
    font-weight: 400;
    font-family: 'Onest', sans-serif;
}

.work_card-image {
    max-width: 100%;
    height: 157px;
    display: block;
    margin-top: 3rem;
    border-radius: 10px;
}

.work_card-info {
    margin-bottom: 1rem;
}

.work_card-project {
    margin: 0;
    font-size: 37px;
    line-height: 46px;
    font-weight: 400;
    font-family: 'Onest', sans-serif;
    color: #fff;
    width: 70%;
    display: block;
    text-transform: capitalize;
}

.work_card-tag {
    display: block;
    margin-top: 19px;
    background: #fff0;
    padding: 4px 30px;
    border-radius: 999px;
    font-family: 'Onest', sans-serif;
    width: max-content;
    text-align: center;
    border: 1px solid #FFF;
    color: #fff;
    font-size: 18px;
}


.work_card-badge:hover {
    background: #ebe8e8;
}

.approach_card-section {
    max-width: 90%;
    margin: auto;
    padding: 30px 0 50px 0;
}

.approach_card-intro {
    margin-bottom: 40px;
}

.approach_card-intro p:first-child {
    font-weight: 700;
}

.approach_card-intro h2 {
    margin: 10px 0;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin-top: 0;
}

span.approch-text {
    margin: 10px 0;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin-top: 0;
    display: block;
}

.approach_card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.approach_card-item {
    padding-top: 20px;
}

.approach_card-icon {
    width: 50%;
    margin: 0 auto;
}

.approach_card-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.approach_card-title {
    margin: 10px 0 5px;
    font-size: 1.1em;
    font-weight: 700;
}

.approach_card-text {
    text-align: justify;
}

.approach_card-title span {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    display: block;
    padding-bottom: 7px;
    padding-top: 8px;
}

span.card-title_sub {
    font-weight: 600;
    border-bottom: 1.6px solid #000;
    margin-bottom: 10px;
    padding-bottom: 10px;
    width: 100%;
}

.action-bar {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    transform: translateX(-50%);
    background: linear-gradient(81deg, #000000 0%, #000000 52.77%, #000000 100%);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity, visibility;
    gap: 8px;
    padding: 10px 48px;
    box-shadow: 0 0 0 2px hsl(0 0% 100% / .3);
}

.action-bar.visible {
    opacity: 1;
    visibility: visible;
}

.badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
}

.action-icon a {
    width: 50px;
    height: 50px;
    border-radius: calc(16px + 16 * (100vw - 576px) / 1024);
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action-icon:hover {
    transform: scale(1.1);
}

.action-icon svg {
    width: 18px;
    height: 18px;
}

.marquee_card {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.marquee_card-title {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 1;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.product_slider .item img {
    width: 95%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.product_marquee .product_slider .owl-stage {
    display: flex;
    width: max-content !important;
    animation: marquee-scrolls 100s linear infinite;
}

.product_marquee .product_slider .owl-stage-outer {
    overflow: hidden;
}

.product_marquee .product_slider:hover .owl-stage {
    animation-play-state: paused;
}

@keyframes marquee-scrolls {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0%)
    }
}

.marquee_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    background: rgb(0 0 0 / 15%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.partners_logo_container {
    position: relative;
    overflow: hidden;
    padding: 5px 0 20px 0;
    background-color: #fff;
    border-radius: 10px;
}

.partners_logo_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
}

.partners_logo_wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

.partners_logo_item {
    opacity: 0;
    transform: translateX(-30px);
}

.partners_logo_item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

span.trust-part {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
}

.container-logo {
    width: 90%;
    margin: 0 auto;
}

section.partners_logo-section {
    padding: 50px 0;
}

.faq_container {
    max-width: 90%;
    margin: 0 auto;
}

.faq_header {
    display: flex;
    align-items: baseline;
}

.faq_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq_subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-left: 8px;
}

.faq_dot {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 10px;
}

.faq_ask_btn {
    margin-left: auto;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
}

.faq_list {
    padding-top: 15px;
}

.faq_ask_btn:hover {
    opacity: .9;
    background: #B3F52B;
    color: #000;
    border-color: #B3F52B;
}

.faq_item {
    border-bottom: .3px solid #c5c5c5;
}

.faq_question {
    position: relative;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    font-family: 'Onest', sans-serif;
}

.faq-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    width: 25%;
}

.faq_icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq_icon::before,
.faq_icon::after {
    content: '';
    position: absolute;
    background-color: #8ef536;
    transition: transform 0.3s ease;
}

.faq_icon::before {
    width: 16px;
    height: 2px;
}

.faq_icon::after {
    width: 2px;
    height: 16px;
    transform: rotate(0);
}

.faq_item.active .faq_icon::after {
    transform: rotate(90deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 0;
}

.faq_item.active .faq_answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq_answer_content {
    font-family: 'Onest', sans-serif;
    text-align: justify;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

@media (prefers-reduced-motion:reduce) {

    .faq_answer,
    .faq_item.active .faq_answer,
    .faq_icon::before,
    .faq_icon::after {
        transition-duration: 0.1s;
    }
}

.ftr_google_badge p img {
    padding: 0 5px;
}

.ftr_container {
    background-color: #111;
    color: #fff;
    padding: 40px 50px 15px;
    border-radius: 30px;
    max-width: 95%;
    margin: 0 auto;
}

.ftr_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

ul.ftr_contact_info li a {
    color: #fff;
}

.ftr_col h3 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    font-family: 'Onest', sans-serif;
    background: linear-gradient(180deg, #B3F52B 0%, #D2FF76 48%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    color: #fff0;
    padding-bottom: 20px;
    width: 48%;
    border-bottom: .2px solid #a09c9c;
}

.ftr_contact_info {
    list-style: none;
}

ul.ftr_links.top {
    width: 100% !important;
    padding-top: 30px;
    margin-top: 30px
}

.ftr_contact_info li {
    margin-bottom: 10px;
    font-family: 'Onest', sans-serif;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;
    cursor: pointer
}

.ftr_address {
    margin-top: 10px;
    line-height: 24px !important;
    width: 70%
}

.ftr_links {
    list-style: none
}

.ftr_links li {
    margin-bottom: 10px
}

.ftr_links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.2s;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%
}

.ftr_links a:hover {
    color: #8ce329
}

.ftr_social {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.ftr_social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    transition: background-color 0.2s
}

.ftr_social_icon:hover {
    background: linear-gradient(180deg, #B3F52B 0%, #D2FF76 48%, #FFFFFF 100%)
}

.ftr_social_icon svg {
    width: 18px;
    height: 18px;
    fill: #111
}

.gap {
    gap: 30px;
    display: flex
}

.ftr_cta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 0;
    flex-wrap: wrap;
    align-items: center
}

.ftr_btn {
    background-color: #fff;
    color: #111;
    padding: 13px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
    font-family: 'Onest', sans-serif;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    z-index: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);

}


.ftr_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
    border: .1px solid #a6a4a4;
    padding: 20px;
    border-radius: 50px
}

.ftr_copyright {
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 15px
}

.ftr_bottom_links {
    display: flex;
    gap: 40px;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 15px
}

.c6-link a {
    text-decoration: none;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 15px;
    transition: color 0.2s;
    color: #fff
}

.ftr_copyright a {
    color: #fff
}

.ftr_google_badge a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #FFFFFFAD;
    font-family: 'Onest', sans-serif;
    gap: 10px
}

.c6-link span {
    background: linear-gradient(180deg, #B3F52B 0%, #D2FF76 48%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    color: #fff0;
    font-weight: 700
}

.ftr_bottom_links a {
    text-decoration: none;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 16px;
    transition: color 0.2s;
    color: #fff
}

.ftr_bottom_links a:hover {
    color: #8ce329
}

.ftr_rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgb(255 255 255 / .7)
}

.ftr_stars {
    color: #ffb400
}

a.bt-btn {
    background: linear-gradient(90deg, #FFFFFF 0%, #FBBC05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    color: #fff0;
    border: solid 1px #ddd4d4;
    border-radius: 30px;
    padding: 5px 10px;
    margin: 0 7px
}

.ftr_google_badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgb(255 255 255 / .7);
    justify-content: end;
    padding-top: 10px
}

.ftr_logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ftr_logo span {
    font-size: 28px;
    font-weight: 700
}

.ftr_logo span.ftr_accent {
    color: #8ce329
}

.ftr_logo img {
    width: 85%
}

.why-choose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto
}

.why-choose-content {
    max-width: 600px;
    flex: 1
}

.why-choose-content h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500
}

.why-choose-content h5 .dot {
    height: 12px;
    width: 12px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px
}

.why-choose-content h2 {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block
}

span.why-choose-tittle {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    padding-bottom: 25px
}

.why-choose-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center
}

.why-choose-image img {
    max-width: 80%;
    height: auto
}

.why-choose-content p {
    text-align: justify
}

.faq_container h2 {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block
}

.blog-section {
    max-width: 90%;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    padding: 0 0 40px 0
}

.blog-header {
    position: relative;
    margin-bottom: 30px
}

.blog-header h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px
}

.blog-header .dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%
}

span.blog-text {
    max-width: 600px;
    display: block;
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    text-align: justify
}

.blog-head {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%
}

.see-all {
    right: 0;
    background: #fff;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Onest', sans-serif;
    color: #000;
    min-width: max-content
}

section.blog-section .see-all {
    position: absolute;
    top: 25px
}

span.read-more img {
    width: 11px
}

.blog-list hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
    transition: background 0.2s ease
}

.blog-item h3,
.blog-item p,
.blog-item .read-time {
    margin: 0
}

.blog-thumb {
    width: 140px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 40px
}

.blog-content {
    flex: 1
}

.blog-content h3 {
    font-size: 16px;
    margin-bottom: 5px
}

.blog-content p {
    margin-bottom: 6px;
    padding: 5px 0;
    line-height: 25px;
    width: 90%;
    font-size: 17px
}

.read-time {
    font-size: 16px;
    color: #000;
    font-family: 'Onest', sans-serif
}

.read-more {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    background: #8ef536;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700
}

main {
    padding-bottom: 65px;
    padding-top: 50px
}

.soc-icons {
    position: absolute;
    bottom: 1.5rem;
    left: 50px
}

.social-navbar {
    display: flex;
    align-items: center;
    gap: 17px
}

.contact_container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start
}

.contact_left {
    width: 100%;
    max-width: 60%
}

.contact_title {
    margin: 0 auto;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 121%;
    margin-bottom: 30px
}

.contact_call_section {
    display: flex;
    align-items: center;
    margin-bottom: 40px
}

.contact_status {
    display: flex;
    margin-right: 20px
}

.contact_status-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #F4F4F4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer
}


.contact_status-box img {
    width: 24px;
    height: 24px
}

.contact_call_button {
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 24px 30px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: Onest, sans-serif
}

.contact_call_button:hover {
    background-color: #333;
    transform: translateY(-3px)
}

.contact_call_button img {
    width: 18px;
    height: 18px;
    margin-right: 8px
}

.contact_form_text {
    font-size: 27px;
    line-height: 34px;
    font-weight: 600
}

form.contact_form span {
    font-family: Onest, sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400
}

.contact_interest_item span:hover {
    border: solid 1px #020202;
    background-color: #fff0
}

.contact_left span {
    font-family: Onest, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px
}

.contact_interests {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 20px
}

.contact_interest_item {
    display: inline-block;
    user-select: none
}

.contact_interest_item input[type="checkbox"]:checked+span,
.contact_interest_item input[type="checkbox"]:checked {
    background-color: #111;
    color: #fff;
    border-color: #111
}

.contact_interests {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.contact_interest_item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none
}

.contact_interest_item input:checked+span {
    background-color: #111;
    color: #fff;
    border-color: #111
}

.contact_interest_item span {
    font-family: Onest, sans-serif;
    font-size: 18px;
    font-weight: 300;
    border-radius: 25px;
    padding: 0 7px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    padding: 5px 12px;
    border: solid 1px #fff
}

.contact_form_group {
    margin-bottom: 20px
}

.contact_input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: .5px solid #000;
    font-size: 18px;
    line-height: 35px;
    outline: none;
    transition: border-color 0.3s
}

.contact_input:focus {
    border-color: #B3F52B
}

.contact_textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: .5px solid #000;
    font-size: 16px;
    outline: none;
    resize: vertical;
    min-height: 60px;
    transition: border-color 0.3s;
    resize: none;
    border-radius: 0
}

section.detail-section .contact_textarea {
    min-height: 70px
}

.contact_textarea:focus {
    border-color: #B3F52B
}

.contact_textarea,
input.contact_input::placeholder {
    font-size: 16px;
    color: #000;
    font-family: Onest, sans-serif
}

.contact_textarea::placeholder {
    font-size: 16px;
    color: #000;
    font-family: Onest, sans-serif
}

.contact_submit {
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 8px 11px 8px 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, background-color 0.3s;
    font-family: 'Onest', sans-serif;
    border: solid 1px #000;
}

.contact_submit:hover {
    background-color: #333;
    transform: translateY(-3px)
}

.contact_submit_icon {
    margin-left: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%
}

.contact_map {
    width: 100%;
    overflow: hidden;
    margin: 40px 0
}

.contact_map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    border: 1px solid #000;
    border-radius: 10px
}

.contact_info_text a {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    color: #000;
    font-weight: 600;
    display: block
}

.contact_info_text h2 {
    font-family: 'Onest', sans-serif;
    font-size: 17px
}

.contact_info {
    display: flex;
    gap: 10px;
    justify-content: space-between
}

.contact_info_item {
    display: flex;
    align-items: flex-start
}

.contact_info_icon {
    margin-right: 10px;
    min-width: 22px;
    padding-top: 3px
}

.contact_info_text strong {
    display: block;
    margin-bottom: 5px
}

.contact_info_text p {
    margin: 3px 0
}

.contact_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: sticky;
    top: 100px;
    align-self: flex-start
}

.contact_ufo {
    max-width: 350px;
    animation: float 3s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(-20px)
    }

    50% {
        transform: translateY(40px)
    }

    75% {
        transform: translateY(60px)
    }

    100% {
        transform: translateY(0)
    }
}

section.work-section {
    width: 90%;
    margin: 0 auto
}

.work_header {
    margin-bottom: 30px;
    position: relative
}

.work_title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px
}

.work_subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px
}

.work_contact_btn {
    position: absolute;
    right: 0;
    top: 10px;
    background-color: #f2f2f2;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center
}

.work_contact_btn img {
    margin-right: 5px;
    width: 16px;
    height: 16px
}

.work_tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.work_tabs::-webkit-scrollbar {
    display: none
}

.work_tab {
    border: none;
    background: none;
    padding: 10px 20px;
    background-color: #F4F4F4;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: Onest, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    text-transform: capitalize;
    width: max-content
}

.work_tab.active {
    background-color: #000;
    color: #fff
}

.work_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px
}

.work_project {
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    display: block
}

/* Smooth transition on images */
.work_project_image {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

.work_project {
    overflow: hidden;
    display: block;
    border-radius: 12px;
}

.work_grid:hover .work_project_image {
    opacity: 0.4;
    filter: none;
    transform: scale(1);
}

.work_project:hover .work_project_image {
    opacity: 1;
    filter: brightness(1.08) contrast(1.05);
    transform: scale(1.01);
    z-index: 2;
}

/* Smooth transition for text opacity */
.work_project_title {
    transition: opacity 0.4s ease;
}

/* Dim text when hovering over the grid */
.work_grid:hover .work_project_title {
    opacity: 0.5;
}

/* Keep text fully visible on hovered project */
.work_project:hover .work_project_title {
    opacity: 1;
}


.work_project {
    cursor: pointer;
    overflow: hidden;
    display: block;
    border-radius: 20px;
}

.work_project_image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px
}

.work_project_title {
    width: 100%;
    padding: 10px 3px 0 3px;
    color: #000;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: Onest, sans-serif
}

.tittle-work h1,
.tittle-work span {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 51px
}

.tittle-work {
    justify-content: space-between;
    padding-bottom: 30px;
    display: flex;
    align-items: baseline
}

.contact-now-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 16px;
    background-color: #f7f7f7;
    font-family: Onest, sans-serif;
    border-radius: 999px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 2px 6px rgb(0 0 0 / .1);
    transition: transform 0.3s ease, background-color 0.3s;
    cursor: pointer
}

.contact-now-button .icon {
    font-size: 16px;
    line-height: 1
}

.blog-work h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 121%;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase
}

a.work_project span {
    color: #000;
    background-color: #F4F4F4;
    padding: 10px 10px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    font-size: 15px;
    font-family: Onest, sans-serif;
    text-transform: capitalize
}

.pagination {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 16px;
    font-family: Onest, sans-serif;
    background-color: #fff;
    gap: 12px;
    width: max-content;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 30px;
    cursor: pointer;
    min-width: 12%
}

.pagination .arrow {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #000;
    padding: 4px;
    transition: color 0.3s ease;
    margin-top: 0
}

.pagination .arrow:disabled {
    color: #ccc;
    cursor: default
}

.pagination .page-info {
    font-size: 16px;
    font-weight: 500;
    color: #000
}

.services-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 65px
}

.services-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%
}

span.arrow-btn img {
    width: 12px !important
}

.services-slider {
    display: flex;
    gap: 30px;
    cursor: grab;
    transition: transform 0.3s ease-out;
    will-change: transform, scroll-position;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory
}

.services-slider::-webkit-scrollbar {
    display: none
}

.services-slider.dragging {
    cursor: grabbing;
    transition: none;
    scroll-behavior: auto
}

.service-card {
    min-width: 23%;
    height: 425px;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05);
    position: relative;
    overflow: hidden
}

.service-card:hover {
    background-color: #c1ff45
}

.service-icon {
    width: 43%;
    height: auto;
    margin-bottom: 15px;
    z-index: 2;
    position: relative
}

.service-card:hover .service-title span {
    display: none
}

.service-title {
    justify-content: space-between;
    display: flex;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    padding-top: 10px
}

.service-description {
    color: #333;
    margin-bottom: 5px;
    transform: translateY(50px);
    opacity: 1 !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    position: relative;
    text-align: justify;
    display: none;
    height: 178px;
    overflow: auto;
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    padding-right: 5px
}

a.view-more .arrow-btn {
    height: auto
}

.service-card:hover {
    display: flex
}

.service-card:hover .service-description {
    transform: translateY(0);
    display: block
}

.view-more {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    position: relative;
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 28px;
    color: #000;
    text-decoration: underline;
    margin-top: 30px
}

.service-card:hover .view-more {
    opacity: 1;
    transform: translateY(0)
}

.services-container h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 121%;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase
}

.arrow-btn {
    padding: 10px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    height: 50%
}

.progress-bar {
    height: 4px;
    width: 200px;
    background-color: #eee;
    border-radius: 2px;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
    display: none
}

.progress-indicator {
    height: 100%;
    background-color: #c1ff45;
    border-radius: 2px;
    width: 20%;
    transition: width 0.3s ease, transform 0.3s ease
}

.service-title h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 25px;
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.service-card:active {
    animation: pulse 0.5s ease
}

.service-card:hover .our_service_card_icon {
    display: none
}

.blog_detail_container {
    max-width: 90%;
    margin: 0 auto
}

.blog_detail_header {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: space-between
}

.blog_detail_header h1 {
    width: 60%;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 121%;
    margin: 0
}

.blog_detail_hero {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.blog_detail_hero img {
    width: 100%;
    height: auto;
    max-height: 430px;
    display: block;
    border-radius: 10px
}

.blog_detail_left_meta {
    width: 65%;
    margin: 0 auto;
    padding-top: 10px
}

.blog_detail_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 25px 0;
    width: 65%;
    margin: 0 auto
}

.blog_detail_category {
    font-size: 14px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px
}

.blog_detail_date {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #f0f0f0;
    border-radius: 24px;
    padding: 10px 25px;
    font-size: 14px;
    cursor: pointer;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    font-family: 'Onest', sans-serif
}

.blog_detail_read_time {
    font-size: 14px;
    font-family: 'Onest', sans-serif
}

.blog_detail_share {
    display: flex;
    align-items: center
}

.blog_detail_copy_link {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #f0f0f0;
    border-radius: 24px;
    padding: 10px 25px;
    font-size: 14px;
    cursor: pointer;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    font-family: 'Onest', sans-serif
}

.blog_detail_copy_link svg {
    width: 16px;
    height: 16px
}

.blog_detail_content {
    width: 65%;
    margin: 0 auto;
    padding-top: 30px;
            padding-bottom: 30px;
}

.blog_detail_subheading {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #222
}


.blog-sub {
    width: 65%;
    margin: 0 auto
}

.blog-sub img {
    width: 100%;
    border-radius: 15px;
    height: 440px;
    margin-bottom: 30px;
}

section.detail-content-section p {
    text-align: justify
}

strong {
    font-weight: 600
}

section.detail-content-section h3 {
    font-family: 'Onest', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 20px
}

section.detail-content-section h2 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 121%;
    padding-bottom: 20px;
    padding-top: 26px;
}

.blog_detail_content ul li strong {
    font-weight: 600
}

.blog_detail_content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px
}

.blog_detail_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #8bc34a;
    border-radius: 50%
}

.blog_detail_list_item_title {
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px
}

.blog_detail_list_item_desc {
    color: #555
}

.blog_detail_more_blogs {
    background-color: #000;
    color: #fff;
    padding: 13px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.2s;
    font-family: 'Onest', sans-serif;
    transition: transform 0.3s ease, background-color 0.3s;
    font-family: 'Onest', sans-serif
}

.blog_detail_more_blogs:hover {
    background-color: #333
}

.blog_detail_copy_link {
    will-change: transform;
    transition: transform 0.2s ease
}

.blog_detail_copy_link:hover {
    transform: translateY(-2px)
}

.blog_detail_hero img {
    transform: translateZ(0)
}

.blog_detail_left_meta p {
    font-weight: 700
}

hr.hr_line {
    width: 90%;
    margin: 0 auto;
    border: .1px solid #cecece
}

.blog_detail_content ul li {
    list-style: none
}

.blog-accordion-section {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto
}

.blog-accordion-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start
}

.blog-accordion {
    flex: 1;
    min-width: 300px;
    padding-top: 15px;
    max-height: 365px;
    overflow: auto;
    padding-right: 20px;
      scroll-behavior: smooth;           
  -webkit-overflow-scrolling: touch;  
}

.blog-accordion-item {
    border-bottom: 1px solid #ddd
}

.blog-accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Onest', sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 20px;
    color: #000
}

.blog-accordion-icon {
    transition: transform 0.3s ease;
    font-size: 40px;
    font-weight: 500
}

.blog-accordion-header[aria-expanded="true"] .blog-accordion-icon {
    transform: rotate(45deg)
}

.blog-accordion-content {
    padding: 10px 0;
    font-size: 14px;
    max-height: 138px;
    overflow: auto;
    transition: max-height 0.3s ease
}

.scroll-inner {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #fff0
}

.scroll-inner::-webkit-scrollbar {
    width: 2px
}

.scroll-inner::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px
}

.scroll-inner::-webkit-scrollbar-track {
    background: #fff0
}

.blog-cta-box {
    background-color: #A58CFF;
    border-radius: 16px;
    width: 300px;
    padding: 45px 20px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    overflow: hidden
}

.blog-accordion-item img {
    width: 16px
}

.blog-hand {
    position: absolute;
    width: 60px;
    z-index: 1;
    pointer-events: none
}

.top-hand {
    top: 5px;
    left: 10px
}

.bottom-hand {
    bottom: -3px;
    right: 3px
}

.blog-cta-content {
    position: relative;
    z-index: 2
}

.blog-cta-box h2 {
    font-weight: 600;
    font-size: 33px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    font-family: 'Onest', sans-serif;
    color: #000;
    margin-bottom: 20px
}

.blog-cta-box h2 span {
    color: #fff;
    font-weight: 500;
    font-size: 33px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    font-family: 'Onest', sans-serif;
    margin-bottom: 20px
}

.blog-cta-button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.2s;
    font-family: 'Onest', sans-serif
}

.arrow {
    background: #fff;
    color: #000;
    padding: 4px 8px;
    border-radius: 50%
}

.blog-cta-button span.arrow img {
    width: auto !important
}

.career_wrapper {
    width: 90%;
    margin: 0 auto
}

.career_title {
    text-align: center;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 121%;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase
}

.career_openings {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px
}

.career_subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #333
}

.career_hero-image {
    width: 100%;
    height: auto;
    display: block
}

.banner-career {
    padding: 30px 0
}

.career_openings-title {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 121%;
    text-align: center
}

.career_list {
    list-style: none;
    padding: 0;
    margin: 0
}

.career_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding: 20px 0;
    font-size: 18px;
    cursor: pointer
}

.career_index {
    width: 40px;
    font-weight: 400;
    font-family: 'Onest', sans-serif
}

span.career_position {
    font-family: 'Onest', sans-serif;
    font-size: 23px;
    line-height: 30px
}

.career_position {
    flex: 1;
    padding-left: 10px
}

.career_apply-btn {
    background-color: #000;
    color: #fff;
    padding: 2px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
    line-height: 33px;
    border: solid 1px #000;
    transition: background-color 0.3s ease, transform 0.3s ease
}

.career_apply-btn:hover {
    border: solid 1px #000;
    background-color: #fff0;
    transform: scale(1.05);
    color: #000
}

.detail_header {
    text-align: justify;
    margin-bottom: 40px
}

.detail_header h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 121%;
    text-align: center;
    padding-bottom: 30px
}

.detail_description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px
}

section.detail-section h2 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 121%;
    text-align: center;
    padding-bottom: 30px
}

.detail_responsibilities {
    margin-bottom: 40px
}

.detail_responsibilities li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px
}

.detail_responsibilities li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.detail_responsibilities li::before {
    background-color: #B3F52B
}

.detail_join_section {
    margin-bottom: 30px
}

.detail_join_description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px
}

.detail_form {
    margin-top: 20px
}

.detail_form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px
}

.detail_form_group {
    flex: 1
}

.detail_form_label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    color: #888
}

.detail_form_input {
    width: 100%;
    padding: 10px 2px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s
}

.detail_form_input:focus {
    border-color: #333
}

.detail_form_textarea {
    width: 100%;
    padding: 10px 2px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    resize: vertical;
    min-height: 40px;
    transition: border-color 0.3s
}

.detail_form_textarea:focus {
    border-color: #333
}

.detail_attachment_label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    cursor: pointer
}

.detail_attachment_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px
}

.detail_file_input {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.detail_attachment_info {
    font-size: 15px;
    color: #0b0b0b;
    margin-bottom: 20px;
    font-family: Onest, sans-serif;
    padding-left: 33px
}

.center {
    text-align: center;
    display: flex;
    justify-content: center
}

.detail_checkbox_container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px
}

.detail_checkbox {
    margin-right: 10px;
    margin-top: 3px
}

.detail_checkbox_label {
    font-size: 12px;
    line-height: 1.5;
    color: #666
}

.detail_submit_container {
    display: flex;
    justify-content: center
}

.detail_submit_button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s
}

.detail_submit_button:hover {
    background-color: #333
}

.detail_submit_icon {
    margin-left: 10px;
    font-size: 16px
}

section.detail-section {
    width: 90%;
    margin: 0 auto
}

.contact_form_group {
    display: flex;
    gap: 40px
}

.num-count {
    width: 50%;
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 20px
}

@media only screen and (max-width:600px) {
    .detail_form_row {
        flex-direction: column;
        gap: 15px
    }
}

.s_detail_hero-section {
    background: linear-gradient(100.49deg, #B38DF6 6.32%, #8147E5 100%);
    color: #fff;
    padding: 80px 20px;
    min-height: 99vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.s_detail_hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 95%;
    margin: 0 auto;
    gap: 30px;
    position: relative;
    width: 100%
}

.s_detail_hero-left {
    flex: 1 1 30%;
    min-width: 250px;
    position: relative;
    z-index: 3
}

.s_detail_hero-left h1 {
    font-family: Onest, sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 62px;
    letter-spacing: 0%;
    width: 80%
}

.s_detail_hero-right span {
    font-family: Onest, sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 133%;
    display: block;
    width: 50%;
    text-align: left
}

.s_detail_hero-center {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    filter: drop-shadow(0 10px 20px rgb(0 0 0 / .3));
    position: absolute;
    left: 25%;
    width: 60%;
}

.s_detail_hero-image {
    max-width: 60%;
    height: auto;
    display: block;
}

.s_detail_hero-right {
    flex: 1 1 30%;
    min-width: 250px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.s_detail_hero-subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
    margin-left: auto
}

.details_container {
    width: 90%;
    margin: 0 auto
}

section.detail_tittle_section {
    padding: 40px 0
}

.quote-section {
    display: flex;
    justify-content: center;
    background: #fff;
    margin-top: 80px
}

.quote-content {
    position: relative;
    background: linear-gradient(135deg, #141618, #1c1e21);
    color: #fff;
    padding: 2rem 4rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%
}

.quote-text p {
    margin: 0;
    font-family: Onest, sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    margin: 0;
    width: 45%
}

.quote-center-image {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(-10deg);
    z-index: 2
}

.quote-center-image img {
    width: 180px;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgb(0 0 0 / .3));
    margin: -6.25em auto
}

.quote-button a {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #c0ff00;
    color: #000;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 3;
    text-transform: uppercase;
    width: max-content
}

.cardbox_right p {
    text-align: justify
}

.quote-button a:hover {
    background: #d9ff4d;
    transform: translateY(-2px)
}

.cardbox_left p {
    text-align: justify;
    padding-top: 10px;
}

.blog-cta-button .arrow img {
    transition: transform 0.3s ease
}

.blog-cta-button:hover .arrow img {
    transform: rotate(70deg)
}

.contact_info_text {
    line-height: 30px
}

.quote-button .arrow {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: .3rem;
    border-radius: 50%;
    font-size: .9rem
}

.cardbox_section {
    width: 90%;
    margin: 0 auto;
    font-family: 'Onest', sans-serif;
    padding: 40px 0
}

.cardbox_top {
    display: flex;
    gap: 2rem;
    padding-bottom: 45px
}

.cardbox_left {
    flex: 1 1 40%
}

.cardbox_left h2 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 132%
}

.cardbox_right {
    flex: 1 1 60%
}

.cardbox_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem
}

.cardbox_card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgb(0 0 0 / .05)
}

.cardbox_card h3 {
    margin-bottom: .8rem
}

.cardbox_card p {
    text-align: justify
}

.cardbox_card:hover {
    background-color: #B3F52B
}

.speciality_section {
    max-width: 90%;
    margin: 0 auto
}

.tittle_speciality p {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    margin-bottom: 20px
}

.speciality_box {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    transition: all 0.3s ease;
    cursor: pointer
}

.speciality_left {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-shrink: 0;
    width: 45%
}

.speciality_count {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    padding-right: 70px
}

.speciality_left h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700
}

.speciality_icon {
    display: inline-block;
    opacity: 0;
    transform: scale(.9);
    transition: opacity 0.4s ease, transform 0.4s ease
}

.speciality_icon img {
    width: 100%;
    height: auto
}

.speciality_box:hover .speciality_icon {
    opacity: 1;
    transform: scale(1)
}

.speciality_right {
    flex: 1;
    padding-left: 20px
}

.speciality_right ul {
    padding-left: 20px;
    margin: 0
}

.speciality_right li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px
}

.speciality_right li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #8ef536;
    border-radius: 50%
}

.speciality_left p {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 135%;
    letter-spacing: 0%
}

.portfolio_section {
    max-width: 1300px;
    margin: 0 auto
}

.portfolio_section h2 {
    font-size: 28px;
    margin-bottom: 5px
}

.portfolio_section p {
    color: #666;
    margin-bottom: 30px;
    padding-left: 70px
}

.quote-text p {
    font-size: 30px;
    text-align: left !important;
    line-height: 32px
}

.portfolio_marquee .item img {
    width: 95%;
    height: auto;
    display: block;
    border-radius: 10px;
    cursor: pointer
}

.portfolio_marquee .owl-stage {
    display: flex;
    width: max-content !important;
    animation: marquee-scrolls 100s linear infinite
}

.portfolio_marquee .owl-stage-outer {
    overflow: hidden
}

.portfolio_marquee:hover .owl-stage {
    animation-play-state: paused
}

@keyframes marquee-scrolls {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0%)
    }
}

.portfolio_section {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0
}

section.portfolio_section span {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    padding-left: 70px
}

.wrapper {
    display: flex;
    width: 90%;
    margin: 0 auto;
    min-height: 100vh
}

.left {
    width: 60%;
    padding-right: 20px
}

.right {
    width: 40%;
    position: relative;
    padding-top: 75px
}

.star-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
    background: #fff
}

.star-wrapper img {
    width: 40%;
    height: auto;
    filter: drop-shadow(0 0 10px rgb(0 0 0 / .1))
}

.panel {
    padding: 20px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative
}

.panel.active {
    opacity: 1;
    transform: translateY(0)
}

.panel span {
    display: block;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 135%;
    margin-bottom: 15px
}

.star-placeholder {
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: none
}

.footer-btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 40px;
    font-weight: 500;
    text-align: center
}

.spacer {
    padding-bottom: 10px
}

.wrapper p {
    text-align: justify
}

.get_contact-section {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background-color: #dcff94;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 90%;
    margin: 40px auto
}

.get_form-container {
    display: flex;
    width: 100%;
    padding: 40px
}

.get_contact-left {
    flex: 1;
    padding-right: 30px
}

.get_contact-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2
}

.get_contact-left h1 span {
    display: block;
    font-weight: 600
}

.get_icons {
    margin: 15px 0px 30px 0px;
    display: flex;
    gap: 20px
}

.get_icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}


.get_contact-right {
    flex: 1.2;
    position: relative
}

.get_contact-right h2 {
    display: block;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 135%;
    margin-bottom: 15px;
    width: 50%
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
    position: relative
}

input,
textarea {
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    background: #fff0;
    font-size: 14px
}

textarea {
    resize: none
}

button.contact_submit {
    width: max-content
}

button {
    padding: 10px 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px
}

.get_arrow {
    background: #fff;
    color: #000;
    padding: 4px 6px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px
}

.get_contact-left span {
    font-weight: 600;
    font-size: 65px;
    line-height: 119%;
    font-family: 'Onest', sans-serif;
    display: block
}

.get_contact-right .contact_input {
    border-bottom: 1px solid #837575
}

.get_contact-right .contact_textarea {
    border-bottom: 1px solid #837575
}

.get_contact-right .contact_submit {
    width: auto;
    margin: 0 auto;
    margin-top: 17px
}

.cardbox_card span {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 135%;
    letter-spacing: 0%;
    text-transform: capitalize;
    width: 80%;
    display: block;
    padding-bottom: 10px
}

span.title-faq {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block
}

section.get-faq-section {
    padding-top: 20px
}

.blog-slider-section {
    padding: 55px 20px 0 60px;
    max-width: 100%
}

.blog-slider-section h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    margin-bottom: 30px;
    width: 40%
}

.blog-card {
    display: flex;
    align-items: flex-start;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    gap: 15px
}

.blog-img {
    width: 200px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0
}

.blog-date {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgb(0 0 0 / .1);
    display: block
}

.blog-content {
    flex: 1
}

.read-time {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    margin: 0 0 5px
}

p.read-time b {
    font-weight: 800
}

.blog-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3
}

.blog-content span {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 135%
}

span.our_partner_tittle {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    padding-bottom: 10px
}

span.service-part {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 121%;
    margin: 0;
    display: block
}

.error_contact a {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px
}

.error_contact p {
    margin: 5px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.error_socials {
    display: flex
}

.error_wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Onest', sans-serif;
    text-align: center;
    padding: 20px
}

.error_content {
    color: #000;
    max-width: 600px
}

.error_code {
    font-size: 28px;
    margin: 0 0 10px
}

section.error_section {
    background-image: url(../images/banner-error.png);
    background-size: cover;
    background-repeat: no-repeat
}

.error_message {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    text-transform: lowercase;
    font-family: 'Onest', sans-serif;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
    width: 90%
}

.error_code {
    font-size: 28px;
    margin: 0 0 10px;
    text-align: left
}

.error_contact p {
    margin: 5px 0;
    font-size: 16px
}

.error_contact i {
    margin-right: 8px
}

.error_socials {
    position: absolute;
    bottom: 20px
}

.error_socials a {
    display: flex;
    background: #000;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 16px;
    transition: transform 0.2s ease
}

.error_socials a:hover {
    transform: scale(1.1)
}

.error_contact {
    display: flex;
    gap: 15px;
    align-items: center
}

.error_socials {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%)
}

.about_hero-text-left h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 62px;
    width: 60%
}

.about_hero-text-right p {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 133%;
    display: block;
    width: 55%;
    text-align: left
}

.about_hero {
    background: linear-gradient(135deg, #fbd0e3, #fce5c1, #f4bfdc);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 99vh;
    background-image: url(../images/about-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

.about_hero-content {
    max-width: 90%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    text-align: center;
    min-height: 60vh
}

.about_hero-text-left {
    flex: 1 1 30%;
    text-align: left;
    color: #000
}

.about_hero-image {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    filter: drop-shadow(0 10px 20px rgb(0 0 0 / .3));
    position: absolute;
    left: 30%;
    top: 80px
}

.about_hero-text-right {
    flex: 1;
    text-align: right;
    font-size: 1rem;
    color: #000;
    text-align: right;
    display: flex;
    justify-content: flex-end
}

.about_cloud6 {
    padding: 55px 0;
    color: #000
}

.about_cloud6-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 90%;
    margin: 0 auto
}

.about_cloud6-left {
    top: 60px;
    flex: 1;
    max-width: 50%;
    position: sticky
}

.about_cloud6-left img {
    max-width: 100%;
    height: auto;
    will-change: transform
}

.about_cloud6-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.cloud6-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    margin-bottom: 20px
}

.cloud6-section p {
    text-align: justify
}

.cloud6-image img {
    width: 90%;
    height: auto;
    will-change: transform
}

.cloud6-image {
    padding: 30px 0
}

span.section_service {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    padding-bottom: 10px;
    display: block
}

section.service_section p {
    text-align: justify
}

span.service-txt {
    width: 77%;
    min-height: 64px
}

.our_service_card_link {
    font-size: 21px
}

.see-all-btn {
    display: none
}

.lg-none {
    display: none
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 20px;
    border: 2px solid #333;
    background-color: #fff;
    cursor: pointer
}

.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2
}

.custom-checkbox span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s;
    z-index: 1
}

.custom-checkbox input[type="checkbox"]:checked+span {
    background-color: green
}

.custom-checkbox input[type="checkbox"]:checked+span::after {
    content: '✔';
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1
}

.cust_checkbox {
    width: 76%;
    display: flex;
    align-items: baseline;
    gap: 10px
}

.title-privacy h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 121%;
    text-align: center;
    text-transform: capitalize
}

section.terms_c .accordion .accordion-item {
    border-bottom: 1px solid #B3F52B
}

section.terms_c .accordion button {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    justify-content: left
}

section.terms_c .accordion button:hover,
section.terms_c .accordion button:focus {
    cursor: pointer;
    color: var(--blue)
}

section.terms_c .accordion button:hover::after,
section.terms_c .accordion button:focus::after {
    cursor: pointer;
    border: 1px solid var(--blue)
}

section.terms_c .accordion .accordion-title {
    padding: 0 30px;
    font-family: 'Onest', sans-serif;
    font-size: 23px;
    font-weight: 400;
}

section.terms_c .accordion .icon {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 0;
    width: 22px;
    height: 22px
}

section.terms_c .accordion .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: #000
}

section.terms_c .accordion .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: #000
}

.accordion button[aria-expanded='true'] {
    color: var(--blue)
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: max-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    width: 85%;
    margin: 0 auto
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height
}

.accordion .accordion-content p {
    padding: 10px 0;
    text-align: justify
}

span.num-text {
    display: inline-block;
    background-color: #B3F52B;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    color: #000
}

.quote-text {
    width: 25%
}

.quote-text {
    width: 100%
}

.about_hero-image img {
    width: 99%
}

.cloud6-section h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    margin-bottom: 20px;
    width: 60%
}

section.service_section-page p {
    text-align: justify
}

.contact_info_text p {
    font-size: 19px
}



.quote-center-image:hover .bg-black {
    transform: rotate(23deg)
}

.action-icon img {
    width: 25px
}

@media (max-width:769px) {
    .accordion .accordion-title {
        padding: 0 30px;
        padding: 0 23px;
        font-family: Graphik;
        font-size: 13px
    }

    span.num-text {
        display: inline-block;
        background-color: #B3F52B;
        padding: 13px;
        border-radius: 50%;
        text-align: center
    }

    .title-privacy h1 {
        font-size: 40px
    }
}

.work-section-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 0 40px;
    box-sizing: border-box;
    height: 100vh !important;
    opacity: 0;
    transform: translateY(100px)
}

.work-text-content {
    flex-shrink: 0;
    box-sizing: border-box;
    background-color: #fff0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    text-align: left;
    margin-right: 40px
}

.work-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle
}

.work-cards-outer-container {
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center
}

.work-cards-inner-track {
    display: flex;
    flex-wrap: nowrap;
    height: auto;
    align-items: center;
    will-change: transform
}

.work-card-item {
    flex-shrink: 0;
    width: 40%;
    height: 60vh;
    margin-right: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-left: 30px;
    padding-bottom: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: pointer;
    background-size: 100%
}

.work-card-item:last-child {
    margin-right: 0
}

.work-card-item:hover {
    transform: translateY(45px)
}

.work-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.latest-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: .8em;
    font-weight: 700;
    z-index: 2
}

.card-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card-details h3 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-details p {
    font-size: .95em;
    color: #777;
    margin-bottom: 15px;
}

.view-project-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: .9em;
    transition: background-color 0.3s ease;
}

.view-project-button:hover {
    background-color: #555;
}

.time-slider-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 4px;
    background-color: rgb(0 0 0 / .1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.time-slider-container.active {
    opacity: 1;
}

.time-slider-fill {
    width: 0%;
    height: 100%;
    background-color: #000;
    border-radius: 2px;
    will-change: width;
}

section.approach_card-section p {
    text-align: justify;
}

.card-work-main {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 121%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    min-height: 80%;
    gap: 20px;
}

a.btn-views {
    font-size: 20px;
    border: solid 1px #000;
    border-radius: 50px;
    padding: 0 30px;
    text-transform: capitalize;
}

.work-section-wrapper {
    overflow: hidden;
}

.work-section-wrapper {
    max-height: 80vh;
    overflow: hidden;
}

.blog-item:hover .read-more {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.read-more {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cardbox_card {
    height: 400px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.cardbox_card:hover {
    overflow-y: auto;
}

.cardbox_card::-webkit-scrollbar {
    width: 4px;
}

.cardbox_card::-webkit-scrollbar-track {
    background: #fff0;
}

.cardbox_card::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / .3);
    border-radius: 4px
}

.ftr_logo a {
    margin: 0 auto;
    text-align: center;
}

.details_container p {
    text-align: justify;
}

.get_icon img {
    width: 19px;
}

.get_icon:hover {
    transform: scale(1.1);
}

span.detail_attachment_icon img {
    width: 22px;
}

.work_tab {
    transition: background-color 0.3s ease;
}

.service-description::-webkit-scrollbar {
    width: 6px;
}

.service-description::-webkit-scrollbar-track {
    background: #fff0
}

.service-description::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / .3);
    border-radius: 3px
}

.service-description {
    scrollbar-width: thin;
    scrollbar-color: rgb(0 0 0 / .3) #fff0;
}

.contact_submit_icon img {
    transition: transform 0.3s ease;
}

.contact_submit:hover .contact_submit_icon img {
    transform: rotate(70deg);
}

.social-navbar a img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-navbar a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2)
}

span.ftr-star {
    display: flex;
    align-items: center;
}

.ftr_google_badge p {
    font-size: 14px;
}

.case-study-sect {
    padding: 0 0;
    text-align: center;
}

.case-study-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    width: 38%;
    border-radius: 0 0 10px 10px;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.case-study-sect p {
    text-align: left;
}

.case-study-img img {
    max-width: 100%;
    display: block;
    width: 100%;
    margin: 40px auto;
    border-radius: 12px;
}

.wrk-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
    padding: 0 0 30px 0;
    text-align: left;
}

.wrk-list-col {
    width: 31.3%
}

.wrk-list-col span {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 121%;
    margin: 0;
    display: block;
    padding-bottom: 10px;
    display: block;
    margin-bottom: 10px;
}

.wrk-list-col ul {
    padding-left: 0;
    list-style: none;
}

.wrk-list-col ul li {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

.gallery-item.two .gallery-image {
    height: 100%;
    object-fit: contain;
}

.gallery-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.row-two {
    grid-template-columns: 2fr 1fr;
    height: 400px;
}

.row-equal {
    grid-template-columns: 1fr 1fr;
    height: 490px;
}

.row-three {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.left-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.right-column {
    display: grid;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.full-img img {
    width: 100%;
}

.full-img {
    padding: 20px 0;
}

.contact_info_icon img {
    width: 35px;
    padding-top: 5px;
    padding-right: 10px;
}

.service-card .view-more {
    margin-top: 0px;
}

.service-description {
    height: 230px;
}

.mobile-nav-list a:hover {
    text-shadow: none;
}

.about_cloud6-container h2 {
    width: 55%
}

.bg-black {
    /* background: linear-gradient(135.95deg, #23272A 0%, #1E1F23 98.39%);
    border-radius: 20px;
    width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    height: 150px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    position: static;
    transform: rotate(-12deg)
}

.cloud6-features {
    list-style: none;
    padding: 0;
}

.cloud6-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    text-align: justify;
}

.cloud6-features li img {
    margin-right: 9px;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    padding-top: 6px;
}

section.portfolio_section .marquee_card-title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding-left: unset;
}

.mobile-nav-list a {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.mobile-nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #00C9A7, #FFD074, #B087FF, #845EC2);
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out, background-position 0.5s ease-in-out;
}

.mobile-nav-list a:hover::before {
    transform: scaleX(1);
    background-position: 100% 50%;
}


.ftr_btn .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #111111;
    opacity: 0.3;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
    color: #fff;
    background-clip: padding-box;


}

a.ftr_btn:hover {
    color: #ffff;
    border: none;
    outline: none;
}

.btn-views {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 20px;
    border: solid 1px #000;
    border-radius: 50px;
    padding: 0 30px;
    text-transform: capitalize;
    color: #000;
    font-family: 'Onest', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    z-index: 0;
}

.btn-views.active {
    color: #fff;
    /* text turns white on hover */
}

.btn-views .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #000;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}


.work_card-tag {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 0;
}

.work_card-tag:hover {
    color: #fff;
    border-color: #000;
}

.work_card-tag .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #000;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

.faq_ask_btn {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    transition: color 0.3s ease;
    z-index: 0;
}

.faq_ask_btn:hover {
    color: #000000;
}

.faq_ask_btn .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.3);
    /* white bubble over black button */
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

.quote-button a {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    transition: color 0.3s ease;
    z-index: 0;
}

.quote-button a .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #000;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

.quote-button a {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    transition: color 0.3s ease;
    z-index: 0;
}

.quote-button a:hover {
    color: #000000;
}

.quote-button a .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #fff;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

.see-all,
.contact-now-button {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    transition: color 0.3s ease;
    z-index: 0;
}

.see-all .hover-effect,
.contact-now-button .hover-effect,
.work_tab .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #000000;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

a.see-all:hover {
    color: #fff;
}

.work_tab {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 0;
}

.contact-now-button:hover,
.work_tab:hover {
    color: #fff;
    cursor: pointer;
}

.contact_submit,
.contact_call_button {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 0;
}

.contact_submit .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #ffffff;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

.contact_call_button .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #F4F4F4;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

button.contact_submit:hover {
    color: #000000;
}

.contact_call_button {
    outline: none;
    border: none;
    box-shadow: none;
}

.contact_call_button:hover {
    transform: scale(1.05);
}

a.contact_call_button:hover {
    color: black;
}

.blog_detail_more_blogs {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    transition: color 0.3s ease;
    z-index: 0;
}

.blog_detail_more_blogs .hover-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: #b3f52b;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    z-index: -1;
}

.get_icon .hover-effect {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #020301;
    transform: scale(0);
    opacity: 0.2;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
}

.get_icon img {
    position: relative;
    z-index: 1;
}

.social-navbar svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.social-navbar .ftr_social_icon {
    background-color: #000000;
}

.social-navbar svg:hover {
    fill: #000000;
}

.contact_status-box .hover-effect {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #020301;
    transform: scale(0);
    opacity: 0.2;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
}

h1.title_main {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}


span.trust-part.mbt {
    padding-bottom: 10px;
}

.contact_info a {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact_info a:hover {
    transform: translateY(-3px);
}

section.privacy-p button {
    padding: 10px 15px;
    background: none;
    color: #151414 !important;
}
ul.ftr_contact_info li a:hover
 {
 color: #8ce329 !important;
}
.partners_logo_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partners_logo_item {
  width: calc(100% / 6 - 20px); 
  display: none; 
  text-align: center;
}
.partners_logo_wrapper .partners_logo_item:first-child {
  padding-left: 20px; 
}
button.blog-cta-button a {
        color: #fff;
}
ol li {
        font-family: 'Onest', sans-serif;
        font-size: 20px;
        font-weight: 300;
        line-height: 30px;
}
section.detail-content-section ul li {
        font-family: 'Onest', sans-serif;
        font-size: 20px;
        font-weight: 300;
        line-height: 30px;
}.blog_detail_content ol {
        padding-left: 20px;
}