:root {
    --primary-color: #D90429;
    --primary-color-hover: #AE0321;
    --theme-black: #151517;
    --white: #ffffff;
    --tertiary: rgba(255, 255, 255, 0.75);
    --bg-black: #010101;
    --sub-head: rgba(255, 255, 255, 0.5);
    --black-color: #000000;
    --figtree: "Figtree", sans-serif;
    --transition-time: 0.5s;
}

body {
    font-family: var(--figtree);
}

.main_wrapper {
    padding: 8rem 0;
}

.about-banner {
    width: 100%;
    height: 578px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.rest_wrapper {
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.wht_bg {
    background-color: #fff;
}

.about_intro {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
    text-align: center;
    width: 1420px;
    max-width: 100%;
}

.h1 {
    font-size: 120px;
    font-weight: 300;
    font-family: var(--figtree);
    line-height: 1.2;
}

.banner_subhd {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.47;
    padding-top: 20px;
}


.h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--figtree);
    line-height: 1.3;
    color: #fff;
}

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

.grid_col4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Profile Anim */

.person_card img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}

.person_images {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.person_images img {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    display: block;
    width: 100%;
}

.person_wrap img {
    transition: bottom var(--transition-time), left var(--transition-time),
        right var(--transition-time), top var(--transition-time),
        width var(--transition-time), height var(--transition-time);
}

.person_wrap:hover img:first-child,
.person_wrap:focus-visible img:first-child {
    width: 60%;
}

.person_wrap:hover img:not(:first-child),
.person_wrap:focus-visible img:not(:first-child) {
    opacity: 1;
}

.person_wrap:hover img:nth-child(3),
.person_wrap:focus-visible img:nth-child(3) {
    bottom: 5%;
    left: 5%;
}

.person_wrap:hover img:nth-child(4),
.person_wrap:focus-visible img:nth-child(4) {
    bottom: 10%;
    left: 10%;
}

.person_wrap:hover img:nth-child(5),
.person_wrap:focus-visible img:nth-child(5) {
    bottom: 15%;
    left: 15%;
}

.person_wrap:hover img:nth-child(6),
.person_wrap:focus-visible img:nth-child(6) {
    bottom: 25%;
    left: 25%;
}

.person_wrap img:first-child {
    top: 0;
    right: 0;
    z-index: 1;
}

.person_wrap img:nth-child(2) {
    width: 20%;
    bottom: 0;
    left: 0;
}

.person_wrap img:nth-child(3) {
    width: 25%;
    bottom: 0;
    left: 0;
}

.person_wrap img:nth-child(4) {
    width: 30%;
    bottom: 0;
    left: 0;
}

.person_wrap img:nth-child(5) {
    width: 40%;
    bottom: 0;
    left: 0;
}

.person_wrap img:nth-child(6) {
    width: 50%;
    bottom: 0;
    left: 0;
}

.person_pic {
    position: relative;
    transition: scale var(--transition-time);
}

/* Profile Anim ends*/

.person_wrap {
    padding: 30px 0;
}

.person_name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.person_job_title {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding-top: 6px;
}

/* logo marquee */
.logo_marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 48px;
}

.logo-scroll-right {
    padding: 0 0 48px;
}

.logo_marquee_track {
    display: flex;
    width: fit-content;
    animation: logo-scroll-left 40s linear infinite;
}

.logo-scroll-right .logo_marquee_track {
    display: flex;
    width: fit-content;
    animation: logo-scroll-right 40s linear infinite;
}

.logo_marquee_icons {
    display: flex;
    gap: 0;
}

.logo_marquee_icons img {
    filter: brightness(0) invert(1);
}

.logo_marquee_icons li {
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    min-height: 103px;
    min-width: 284px;
}


@keyframes logo-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes logo-scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* logo marquee ends */


.wht {
    color: #fff;
}

.blk {
    color: var(--theme-black);
}

.caption {
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    padding-top: 20px;
}

.section-label {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    line-height: 160%;
    margin-bottom: 16px;
}

.conversation_wrapper {
    background-color: var(--theme-black);
    padding: 5rem 0 0;
}

.bg-wrapper {
    padding-top: 4rem;
}



.desktop {
    display: block;
}

.mob {
    display: none;
}





.team-stats-section {
    display: flex;
    align-items: center;
    padding: 4rem 0 6rem;
    gap: 24px;
}

.image-container {
    width: 75%;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.stats-container {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.stat-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid #353639;
}

.stats-container .stat-box:last-child {
    margin-bottom: 0;
}

.material-icons {
    border: 1px solid #353639;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 5px;
}

.stat_txt {
    color: #fff;
    font-size: 46px;
    font-weight: 500;
    line-height: 120.8%;
    letter-spacing: -0.25px;
}

.stat-box p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 6rem;
}

.explore-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.card-text-panel {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-title {
    color: var(--theme-black);
    font-size: 18px;
    font-weight: 800;
    line-height: 160%;
    padding-bottom: 16px;
}

.card-text {
    color: var(--theme-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 147%;
    padding: 0 0 16px;
}

.mad-method-panel {
    padding: 0 0 4rem;
}

.left50 {
    width: 50%;
}

.method-focus-wrap {
    padding: 48px 0 15px;
}

.method-focus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 0 0;
}

.method_caption {
    font-size: 18px;
    font-weight: 500;
    line-height: 147%;
}

.focus-icon {
    border: 1px solid #353639;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.focus-item p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
}

.method-focus-wrap .h3 {
    font-size: 22px;
    font-weight: 700;
}

.method-cta-bar {
    background-color: #2B2C2F;
    border-radius: 12px;
    padding: 24px 36px;
    margin-top: 64px;
}

.method-cta-bar .h3 {
    padding-bottom: 8px;
}

.primary_btn {
    background-color: var(--primary-color);
    font-family: var(--figtree);
    border-radius: 8px;
    text-align: center;
    margin-top: 0;
}

.our_journey {
    border-top: 2px solid #151517;
    border-bottom: 2px solid #151517;
    background: #FDF2F4;
    padding: 75px 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 55px;
    padding-top: 48px;
}

.timeline-step {
    position: relative;
    width: 23%;
    text-align: left;
}

.timeline-year {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    border-radius: 20px;
    background: var(--theme-black);
    display: inline-flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-step:not(.last)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -60px;
    width: 100%;
    height: 2px;
    background: #000;
}

.timeline-step::before {
    content: "";
    position: absolute;
    top: 13px;
    right: -55px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #000;
}

.timeline-step.last::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -52px;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #000;
}

.timeline-head {
    color: var(--theme-black);
    font-size: 14px;
    font-weight: 800;
    line-height: 147%;
    padding: 32px 0;
}

.timeline-para {
    color: var(--theme-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 147%;
}


.method_caption {
    padding-top: 24px;
}

.mad-method-panel .method_caption {
    padding-top: 0;
}

.toggle-tags {
    display: inline-flex;
    gap: 8px;
    background: #2B2C2F;
    padding: 8px;
    border-radius: 12px;
    margin: 36px 0;
}

.tag {
    padding: 6px 12px;
    border-radius: 8px;
    background-color: #353639;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag.active {
    background-color: #fff;
    color: #000;
}

.tab-content {
    display: none;
    color: #fff;
    border-radius: 10px;
}

.tab-content.active {
    display: block;
}



/* MAP */

#mapList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 376px;
    max-width: 100%;
    gap: 16px;
    margin-top: 64px;
}

#mapList li {
    cursor: pointer;
}

#mapList li {
    background: #2B2C2F;
    border-radius: 12px;
    width: 180px;
    padding: 12px;
}

#mapList li.active {
    background: #fff;
}

.location-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 147%;
}

h4.loc-percent {
    color: #fff;
    font-size: 36px;
}

.active .location-name,
.active .loc-percent {
    color: #000;
}

.viewers-map {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    /* margin: 55px 0 0; */
    min-height: 1080px;
    /* background: linear-gradient(270deg, rgba(21, 21, 23, 0.00) 0%, rgba(21, 21, 23, 0.91) 27.64%, #151517 100%); */
}

.our_journey+.bg-wrapper {
    padding: 0;
}

.viewers-map .stat-portion {
    width: 600px;
    max-width: 100%;
}


.map-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all ease 180ms;
    opacity: 1;
}

/* Animation keyframes */
@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.map-images img:not(.active) {
    opacity: 0;
}

/* MAP ends*/




.strip_txt {
    overflow: hidden;
    position: relative;
    background: #FDF2F4;
    width: 100%;
    padding: 32px 0;
    z-index: 9999;
    font-size: 22px;
    font-weight: 500;
    line-height: 147%;
    color: var(--theme-black);
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee_track {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
}

.marquee_content {
    display: flex;
    gap: 0;
}

.marquee_content li {
    position: relative;
    white-space: nowrap;
}

.marquee_content li {
    display: inline-block;
    padding-right: 60px;
    color: var(--theme-black);
    font-size: 22px;
    font-weight: 500;
    line-height: 147%;
    position: relative;
}

.marquee_content li::before {
    position: absolute;
    content: "";
    right: 18px;
    top: 6px;
    background: url('https://s3.amazonaws.com/mobileappdaily/mad/uploads/marquee-seperation_mad_img_1748342370.svg') no-repeat;
    width: 22px;
    height: 22px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.brand-appi-logo img {
    width: 170px;
    height: 37px;
}

.brand-appi-logo a {
    display: block;
}

.header-main {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}

.podcast_strip {
    background: #FDF2F4;
    width: 100%;
    position: relative;
    z-index: 9999;
}

.strip_txt {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.watch_podcast {
    color: #000;
    border-bottom: 1px solid #fff;
    margin-left: 20px;
}


.get_touch {
    display: flex;
    background-color: #2B2C2F;
}

.touch-banner {
    width: 50%;
}

.touch-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.touch-list-panel {
    width: 50%;
    background: var(--theme-black);
    padding: 75px 145px 75px 75px;
}

.touch-banner img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
}

.list-link {
    border: 1px solid #6F7279;
    border-radius: 12px;
    padding: 24px;
}

.list-link:hover {
    border: 1px solid #fff;
}

.list-head {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 160%;
    display: block;
}

.list-caption {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 147%;
    padding-top: 8px;
    display: block;
}

.arrow-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background-color: #353639;
    border-radius: 8px;
    transition: 0.3s ease-in;
}

.arowicon {
    display: none;
}

.list-link:hover .listicon {
    display: none;
}

.list-link:hover .arowicon {
    display: block;
}

.list-link:hover .arrow-bg {
    background-color: #fff;
}


/* News */
.news-about-us {
    background-color: var(--theme-black);
    padding: 6rem 0;
}

.news-about-us .card-text {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 12px;
}

.explore_more {
    font-size: 14px;
}

.news-about-us .card-grid {
    padding: 2rem 0 0;
}

/* News ends */



.fade-bottom {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.8s ease-out;
}

.fade-left:nth-child(2),
.touch-list li:nth-child(2) .fade-bottom {
    transition-delay: 0.3s;
}

.fade-left:nth-child(3),
.touch-list li:nth-child(3) .fade-bottom {
    transition-delay: 0.5s;
}

.fade-left:nth-child(4),
.touch-list li:nth-child(4) .fade-bottom {
    transition-delay: 0.7s;
}

.in-view {
    opacity: 1;
    transform: translateX(0);
}

.fade-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}

.method-cta-bar.in-view {
    transition-delay: 0.7s;
}











@media (min-width: 320px) {
    :root {
        --fs-xs: clamp(0.7rem, 0.7rem + 0.146vw, 0.875rem);
        --fs-base: clamp(1rem, 1rem + 0.104vw, 1.125rem);
    }
}


/* PR */
.pr-section {
    background-color: #3366FF;
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.card-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 48px;
}

.card-slider .item{
    padding-top: 5px;
}

#spotlight {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.pr-section .card-col {
    min-height: 337px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.owl-carousel img:not(.card-logo img) {
    width: auto;
}

.subtitle {
    font-size: var(--fs-base);
    line-height: 140%;
    margin-bottom: 1em;
}

.card-slider .card-title {
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 1rem;
}

.btn-wrap,
.primary_btn {
    margin-top: 15px;
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    gap: 8px;
    transition: transform 0.2s;
}

.link-with-arrow .arrow,
.primary-arrow-btn .arrow {
    display: inline-flex;
    transition: transform 0.2s;
}

.link-with-arrow:hover .arrow,
.primary-arrow-btn:hover .arrow {
    transform: translate(2px, -2px);
}

.card-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.pr-section .main_container {
    position: relative;
    z-index: 2;
}

.card-base {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-col {
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.owl-carousel .owl-nav [class*="owl-"] {
    background: #fff !important;
    border: 1px solid #DADBDD;
    position: relative;
    width: 32px;
    height: 32px;
    margin-top: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.22);
}

.owl-theme .owl-nav {
    margin-top: 24px;
}

.owl-next svg {
    transform: rotate(180deg);
}

/* PR ends */








@media screen and (max-width: 1899px) {
    .viewers-map {
        min-height: 100vh;
    }
}

@media screen and (max-width: 1680px) {
    .about_intro {
        width: 1200px;
    }
}

@media screen and (max-width: 1550px) {
    .about-banner {
        height: 500px;
    }

    .h1 {
        font-size: 82px;
    }

    .banner_subhd {
        font-size: 18px;
    }

    .our_picture {
        max-height: 700px;
    }

    .h2 {
        font-size: 28px;
    }

    .caption {
        font-size: 16px;
    }

    .card_cont {
        left: 20px;
        top: 20px;
    }

    .card-circle {
        right: 20px;
        top: 20px;
        max-width: 45px;
    }

    .card_num {
        font-size: 28px;
    }

    .card_caption {
        font-size: 13px;
        line-height: 1.6;
        padding-top: 10px;
    }

    .social_card {
        min-height: 270px;
    }

    .social_img img {
        max-width: 290px;
    }

    .monthly_visitors_card .social_img img {
        max-width: 340px;
    }

    .action_head {
        font-size: 20px;
    }

    .picture_cont img {
        max-width: 200px;
    }

    .pic_head {
        padding: 0 0 2rem;
    }

    .stat-box p {
        font-size: 16px;
    }

    .stat-box {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .focus-item p {
        font-size: 16px;
    }

    .touch-list-panel {
        padding: 50px 60px;
    }

    .list-link {
        padding: 15px 20px;
    }

    .list-head {
        font-size: 16px;
    }

    .touch-list {
        margin-top: 28px;
        gap: 10px;
    }

    .list-caption {
        font-size: 12px;
        padding-top: 6px;
    }

    .strip_txt li {
        font-size: 18px;
    }

    .strip_txt li::before {
        top: 4px;
    }

    #mapList {
        gap: 12px;
        margin-top: 42px;
    }

    .location-name {
        font-size: 12px;
    }

    h4.loc-percent {
        font-size: 32px;
    }

    .section-label {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .tag {
        font-size: 16px;
    }

    .news-about-us .card-text {
        font-size: 16px;
    }

    .viewers-map .stat-portion {
        width: 450px;
    }

    .pr-section .card-col {
        gap: 28px;
    }


}

@media screen and (max-width: 1440px) {
    .h2 {
        font-size: 26px;
    }

    .picture_cont {
        width: 900px;
    }

    .person_wrap {
        padding: 20px 0 5px;
    }

    .person_name {
        font-size: 16px;
    }


}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1024px) {}


@media (min-width: 767px) and (max-width: 1024px) {
    .h1 {
        font-size: 62px;
    }

    .banner_subhd br {
        display: none;
    }

    .image-container {
        height: 360px;
    }

    .image-container img {
        height: 100%;
        object-fit: cover;
    }

    .stat-box p {
        font-size: 12px;
    }

    .stat_txt {
        font-size: 36px;
    }

    .method-focus {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .method-cta-bar>div {
        width: 50%;
    }

    .timeline-step.last::after {
        right: 0;
    }

    .timeline-step.last::before {
        right: -5px;
    }

    .touch-list-panel {
        padding: 24px;
    }


}


@media screen and (max-width: 1023px) {
    .our_picture {
        max-height: 590px;
    }

    .list_head {
        width: calc(100% - 280px);
        margin-right: 60px;
    }

    .list_cat {
        width: 200px;
        margin-left: 40px;
    }

    .blog_inner_container {
        padding: 1.5rem 0;
    }

    .person_job_title {
        padding-top: 5px;
        font-size: 12px;
    }

    .h2 {
        font-size: 24px;
    }

    .logo_grid {
        grid-template-columns: repeat(4, 1fr);
        grid-row-gap: 20px;
        justify-items: center;
        padding-top: 20px;
    }

    .logo_grid li {
        height: 80px;
        max-width: 100px;
    }

    .logo_grid li img {
        transform: scale(0.8);
    }

    .social_card {
        min-height: 220px;
    }

    .card_cont {
        left: 15px;
        top: 15px;
    }

    .card_num {
        font-size: 26px;
    }

    .card_caption {
        font-size: 11px;
    }

    .card-circle {
        right: 15px;
        top: 15px;
        max-width: 36px;
    }

    .monthly_visitors_card .social_img img {
        max-width: 230px;
    }

    .social_img img {
        max-width: 200px;
    }

    .action_head {
        font-size: 16px;
    }
}


@media screen and (max-width: 767px) {
    .about-banner {
        height: 430px;
    }

    .h1 {
        font-size: 32px;
    }

    .about_intro {
        padding: 0 15px;
    }

    .banner_subhd {
        font-size: 16px;
        padding-top: 15px;
    }

    .section-label {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .h2 {
        font-size: 26px;
    }

    .caption {
        font-size: 16px;
    }

    .grid_col4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .person_name {
        font-size: 14px;
    }

    .person_job_title {
        padding-top: 5px;
        font-size: 11px;
    }

    .logo_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 10px;
    }

    .logo_grid li {
        height: 70px;
    }

    .image-container,
    .stats-container,
    .left50,
    .timeline-step,
    .touch-banner,
    .touch-list-panel {
        width: 100%;
    }

    .stat_txt {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .stat-box {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .material-icons {
        top: 0;
    }

    .team-stats-section {
        padding: 4rem 0;
    }

    .method-focus {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .method-focus-wrap .h3 {
        font-size: 20px;
    }

    .method-cta-bar {
        padding: 24px;
        margin-top: 44px;
        gap: 24px;
        align-items: flex-start;
    }

    .timeline {
        flex-wrap: wrap;
        padding-top: 36px;
        gap: 44px;
    }

    .method-focus-wrap {
        padding: 48px 0 0;
    }

    .timeline-step::before,
    .timeline-step:not(.last)::after,
    .timeline-step.last::after {
        content: none;
    }

    .our_journey {
        padding: 55px 0;
    }

    .timeline-head {
        padding: 24px 0;
    }

    .toggle-tags {
        margin: 24px 0;
    }

    .touch-list-panel {
        padding: 40px 15px;
    }

    .viewers-map {
        margin: 0;
        padding-bottom: 0;
    }

    .map-images img {
        object-fit: cover
    }

    #mapImages {
        position: relative;
        height: 300px;
        margin-top: 5px;
        width: 100%;
    }

    .news-about-us {
        padding: 4rem 0;
    }

    .list-link span:first-child {
        width: calc(100% - 60px);
        padding-right: 20px;
    }

    #mapList li {
        width: 100%;
    }

    .loc-percent {
        font-size: 28px;
    }

    .strip_txt {
        padding: 22px 0;
    }


    /* PR */
    .card-slider {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 36px;
    }

    .pr-section .card-col {
        min-height: auto;
        gap: 32px;
    }

    /* PR ends */

    .logo_marquee_icons li {
        min-height: 75px;
        min-width: 140px;
        padding-right: 30px;
    }

    .logo_marquee_icons li img {
        transform: scale(.8);
    }

    .logo-scroll-right {
        padding: 0;
    }

    #spotlight {
        display: none;
    }
}