.hero {
    background: url(/wp-content/themes/bytecrab/inc/assets/images/front-page/hero-front-page.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.hero span {
    color: #008777;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 78px;
}
.hero .divider {
    width: 80px;
    background-color: #121212;
    height: 1px;
}
.hero p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 800px;
    width: 100%;
}
@media only screen and (max-width: 1024px) {
    .hero {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px) {
    .hero {
        gap: 20px;
        background: url(/wp-content/themes/bytecrab/inc/assets/images/front-page/hero-front-page-mobile.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 130px 16px 150px;
    }
    .hero span {
        font-size: 18px;
        line-height: 24px;
    }
    .hero h1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 48px;
    }
    .hero .divider {
        width: 80px;
        background: rgba(0, 0, 0, 0.50);
    }
    .hero p {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }
}
.trusted {
    padding: 60px 0 100px;
    text-align: center;
    max-width: 100%;
}
.trusted h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.trusted .carousel {
    display: flex;
    gap: 110px;
    align-items: center;
}

.trusted .carousel img {
    display: block;
    max-height: 80px;
    flex-shrink: 0; 
}

.trusted .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.trusted .track {
    display: flex;
    gap: 110px;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: scroll;
}

.trusted .slide {
    display: flex;
    gap: 110px;
    align-items: center;
    flex-shrink: 0;
}

.trusted .slide img {
    display: block;
    max-height: 80px;
    flex-shrink: 0;
    width: auto;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * var(--total-width))); }
}
section.industries {
    align-items: center;
}
div.industries h2 {
    display: none;
}
section.services {
    padding: 60px 20px;
    max-width: none;
    width: 100%;
    align-self: stretch;
}
section.services,
.why-us,
.process {
    align-items: center;
    gap: 48px;
}
.why-us {
    padding: 0px 20px 100px;
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
}
.services-cards .card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 20px;
    position: relative;
    width: 100%;
    min-height: 250px;
    box-sizing: border-box;
    transition: box-shadow .4s;
    overflow: hidden;
}
.services-cards .card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.services-cards .card h3 {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    padding: 0 0 0 20px;
    margin: 3px 0 0 -20px;
    border-style: solid;
    border-width: 0 0 0 6px;
}
.services-cards .card:nth-child(1) h3,
.services-cards .card:nth-child(2) h3 {
    border-color: #CCEBE7;
}
.services-cards .card:nth-child(3) h3 {
    border-color: #CFAEFA;
}
.services-cards .card:nth-child(4) h3 {
    border-color: #C1FBFF;
}
.services-cards .card:nth-child(5) h3 {
    border-color: #EFEFEF;
}
.services-cards .card.card-cta h3 {
    border-color: #CCEBE7;
}
.services-cards .card h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 0;
    height: 100%;
    background: #CCEBE7;
    transition: width .4s;
    z-index: -1;
}
.services-cards .card:nth-child(1) h3::before,
.services-cards .card:nth-child(2) h3::before,
.services-cards .card.card-cta h3::before {
    background: #CCEBE7;
}
.services-cards .card:nth-child(3) h3::before {
    background: #CFAEFA;
}
.services-cards .card:nth-child(4) h3::before {
    background: #C1FBFF;
}
.services-cards .card:nth-child(5) h3::before {
    background: #EFEFEF;
}
.services-cards .card:hover h3::before {
    width: calc(100% + 40px);
}
.services-cards .card > svg {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 35px;
    right: 20px;
    opacity: 0;
    transition: opacity .4s;
    z-index: 2;
}
.services-cards .card:hover > svg {
    opacity: 1;
}
.services-cards .card p {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    flex: 1;
}
.services-cards .card.card-cta {
    cursor: pointer;
}
.services-cards .card.card-cta > svg {
    display: none;
}
.services-cards .card.card-cta .card-cta-action {
    margin-top: auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #008777;
    text-transform: none;
}
.services-cards .card.card-cta:hover .card-cta-action {
    color: #121212;
}
@media only screen and (max-width: 1024px) {
    section.services {
        padding: 40px 20px;
    }
    .services-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services-cards .card {
        min-height: 0;
    }
    .services-cards .card > svg {
        opacity: 1;
    }
}
@media only screen and (max-width: 767px) {
    section.services {
        padding: 0 16px 60px;
        gap: 40px;
    }
    .services-cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .services-cards .card {
        padding: 0 16px;
        min-height: 0;
    }
    .services-cards .card h3 {
        padding: 0 0 0 16px;
        margin: 0 0 0 -16px;
        font-size: 18px;
        line-height: 30px;
    }
    .services-cards .card h3::before {
        display: none;
    }
    .services-cards .card:hover {
        box-shadow: none;
    }
    .services-cards .card > svg {
        top: 2px;
    }
    .services-cards .card p {
        font-size: 16px;
        line-height: 24px;
    }
    .services-cards .card.card-cta .card-cta-action {
        font-size: 14px;
        line-height: 20px;
    }
}
.statistics {
    flex-direction: row;
    gap: 10.18%;
    padding: 100px 0;
    color: white;
    text-align: center;
    background-color: #008777;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}
.statistic-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.statistic-item span {
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}
.statistic-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
}
@media only screen and (max-width: 767px) {
    .statistics {
        flex-direction: column;
        gap: 50px;
        padding: 60px 16px;
    }
    .statistic-item span {
        font-size: 52px;
    }
    .statistic-item p {
        font-size: 18px;
        max-width: 206px;
    }
}
section .header h5,
section h5 {
    color: #9CA2A7;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
}
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    gap: 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
    section .header h5 {
        color: #121212;
        font-size: 16px;
        line-height: 24px;
    }
    .cta {
        margin: 40px 0 0;
        gap: 16px;
        font-size: 16px;
        line-height: 20px;
    }
}
.process-wrapper-tabs {
    display: none;
}
.why-us-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}
.why-us-row {
    display: flex;
    justify-content: space-between;
}
.why-us-row .text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    width: 100%;
}
.why-us-row .text .header {
    font-size: 28px;
    font-weight: 400;
    line-height: 42px;
    text-transform: uppercase;
    display: flex;
    gap: 16px;
    align-items: flex-end;
}
.why-us-row .text .header span {
    font-size: 72px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    color: #008777;
}
.why-us-row .text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}
.why-us-row svg {
    max-width: 400px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .why-us {
        padding: 60px 16px;
        gap: 32px;
    }
    .why-us-wrapper {
        gap: 24px;
        max-width: 100%;
    }
    .why-us-row {
        flex-direction: column;
        border-left: 1px solid #000;
        padding: 0 0 0 20px;
    }
    .why-us-row:nth-child(2) {
        border-left: none;
        border-right: 1px solid #000;
        padding: 0 20px 0 0;
    }
    .why-us-row:nth-child(2) .text .header {
        align-items: flex-end;
    }
    .why-us-row .text {
        gap: 36px;
        max-width: 100%;
    }
    .why-us-row .text .header {
        flex-direction: column;
        font-size: 18px;
        line-height: 24px;
        align-items: flex-start;
    }
    .why-us-row .text .header span {
        font-size: 44px;
    }
    .why-us-row .text p {
        font-size: 16px;
        line-height: 24px;
    }
    .why-us-row svg {
        display: none;
    }
}
section.process {
    max-width: none;
    width: 100%;
    align-self: stretch;
    padding: 74px 20px;
    gap: 0;
}
section.process.alt {
    background: #f6faf8;
    border-top: 1px solid #e2e8e5;
    border-bottom: 1px solid #e2e8e5;
}
section.process .process-wrap {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
section.process .process-head {
    max-width: 720px;
    margin-bottom: 46px;
}
section.process .process-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0d6e5e;
    margin-bottom: 14px;
}
section.process .process-head h2 {
    font-size: 33px;
    margin-bottom: 16px;
    letter-spacing: -.01em;
    line-height: 1.18;
    font-weight: 700;
    text-transform: none;
}
section.process .process-head p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5751;
}
section.process .proc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
section.process .proc {
    border: 1px solid #e2e8e5;
    border-radius: 14px;
    padding: 26px 22px;
    background: #fff;
    position: relative;
}
section.process .proc .n {
    color: #0d6e5e;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: .04em;
}
section.process .proc h3 {
    font-size: 16px;
    margin-bottom: 9px;
    font-weight: 700;
    line-height: 1.18;
    color: #16201d;
    text-transform: none;
}
section.process .proc p {
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5751;
}
section.process .process-foot {
    text-align: center;
    margin-top: 34px;
}
@media only screen and (max-width: 1024px) {
    section.process {
        padding: 60px 20px;
    }
    section.process .process-head {
        margin-bottom: 32px;
    }
    section.process .process-head h2 {
        font-size: 24px;
        line-height: 32px;
    }
    section.process .process-head p {
        font-size: 16px;
    }
    section.process .proc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media only screen and (max-width: 767px) {
    section.process {
        padding: 60px 16px;
    }
    section.process .proc-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
section.engagement {
    max-width: none;
    width: 100%;
    align-self: stretch;
    padding: 74px 20px;
    gap: 0;
}
section.engagement .engagement-wrap {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
section.engagement .engagement-head {
    max-width: 720px;
    margin-bottom: 46px;
}
section.engagement .engagement-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0d6e5e;
    margin-bottom: 14px;
}
section.engagement .engagement-head h2 {
    font-size: 33px;
    margin-bottom: 16px;
    letter-spacing: -.01em;
    line-height: 1.18;
    font-weight: 700;
    text-transform: none;
}
section.engagement .engagement-head p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5751;
}
section.engagement .eng-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
section.engagement .eng {
    border: 1px solid #e2e8e5;
    border-radius: 14px;
    padding: 30px 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
section.engagement .eng:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -28px rgba(13, 110, 94, .32);
    border-color: #0d6e5e;
}
section.engagement .eng .tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0d6e5e;
    margin-bottom: 13px;
}
section.engagement .eng h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.18;
    color: #16201d;
    text-transform: none;
}
section.engagement .eng p {
    font-size: 14px;
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #4a5751;
}
section.engagement .eng .best {
    font-size: 12.5px;
    color: #4a5751;
    border-top: 1px solid #e2e8e5;
    padding-top: 13px;
    line-height: 1.5;
}
section.engagement .eng .best b {
    color: #16201d;
    font-weight: 600;
}
@media only screen and (max-width: 1024px) {
    section.engagement {
        padding: 60px 20px;
    }
    section.engagement .engagement-head {
        margin-bottom: 32px;
    }
    section.engagement .engagement-head h2 {
        font-size: 24px;
        line-height: 32px;
    }
    section.engagement .engagement-head p {
        font-size: 16px;
    }
    section.engagement .eng-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    section.engagement .eng:hover {
        transform: none;
    }
}
@media only screen and (max-width: 767px) {
    section.engagement {
        padding: 60px 16px;
    }
}
.case-studies {
    gap: 100px;
    align-items: center;
    background: #E1EDFF;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
}
.case-study {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}
.case-study:nth-child(2) {
    background-image: url(/wp-content/themes/bytecrab/inc/assets/svg/case-case-studies-laptop-bg.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: right top;
}
.case-study:nth-child(3) {
    background-image: url(/wp-content/themes/bytecrab/inc/assets/svg/case-studies-phone-bg.svg);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: -12% center;
}
.case-study:nth-child(4) {
    background-image: url(/wp-content/themes/bytecrab/inc/assets/svg/case-case-studies-laptop-bg.svg);
    background-size: 57%;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.case-study>img {
    max-width: 50%;
    width: 100%;
}
.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 506px;
    width: 100%;
}
.text-wrapper .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.text-wrapper .text h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
}
.text-wrapper .text h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}
.text-wrapper .text span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #008777;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
}
.text-wrapper .text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}
.quote {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.quote-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.50);
}
.quoted {
    display: flex;
    align-items: center;
    gap: 24px;
}
.quoted img {
    height: 40px;
    width: 40px;
    border-radius: 40px;
}
.quoted .name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.quoted .name p {
    font-size: 16px;
    font-weight: 300;
}
@media only screen and (max-width: 1024px) {
    .case-studies {
        gap: 60px;
        padding: 80px 0;
    }
    .case-study {
        max-width: 100%;
        flex-direction: column-reverse;
        gap: 20px;
        padding: 0 16px;
    }
    .case-study:nth-child(2) {
        background-size: 124%;
        background-position: 47% -2%;
    }
    .case-study:nth-child(3) {
        background-size: 157%;
        background-position: 45% -8%;
        flex-direction: column;
    }
    .case-study:nth-child(4) {
        background-size: 112%;
        background-position: 41% -7%;
    }
    .case-study>img {
        max-width: 100%;
    }
    .text-wrapper {
        gap: 16px;
        max-width: 100%;
    }
    .text-wrapper .text h3 {
        font-size: 26px;
        font-weight: 600;
        line-height: 40px;
        text-transform: uppercase;
    }
    .text-wrapper .text h4 {
        font-size: 20px;
        line-height: 120%;
    }
    .text-wrapper .text span {
        font-size: 16px;
        line-height: 20px;
    }
    .text-wrapper .text p {
        font-size: 16px;
        line-height: 24px;
    }
    .quote {
        gap: 8px;
    }
    .quote-text {
        font-size: 14px;
        line-height: 18px;
    }
    .quoted .name {
        font-size: 16px;
        line-height: 20px;
        line-height: 18px;
    }
    .quoted .name p {
        font-size: 14px;
    }
    .text-wrapper a {
        margin-top: 16px;
    }
}