@charset "UTF-8";

/* MISCELLANEOUS */

* {
    text-rendering: geometricPrecision;
}

.max-width-narrow {
    max-width: 1120px;
    margin: 0px auto;
}

.text-override h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.text-override p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}

.hero-promo__title-btn {
    display: none;
}

/* Mobile */

@media (max-width: 1199px) {
    .fullwidth-margin {
        width: 970px;
        margin: 0px auto;
        padding: 0px 15px;
    }
}

@media (max-width: 991px) {
    .fullwidth-margin {
        width: 750px;
    }
}

@media (max-width: 767px) {
    .text-override h2 {
        font-size: 32px;
    }

    .text-override p {
        font-size: 17px;
        line-height: 23px;
    }
}

@media (max-width: 750px) {
    .fullwidth-margin {
        width: 100%;
    }
}

/* BUTTONS */

a.duo-button {
    display: inline-block;
    padding: 4px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    font-weight: bold;
    font-size: 16px;
}

a.duo-button span {
    padding: 6px 25px;
    transition: all 0.3s;
    display: block;
}

a.duo-button:hover span {
    background-color: #ddd;
}

a.duo-button.duo-white {
    border: solid 1px #fff;
    color: #000;
}

a.duo-button.duo-white.duo-transp {
    background-color: transparent;
    color: #fff;
}

a.duo-button.duo-white.duo-transp:hover span {
    background-color: #fff;
    color: #000;
}

a.duo-button.duo-white:hover span {
    background-color: #ddd;
}

a.duo-button.duo-red {
    border: solid 1px #a32020;
    color: #a32020;
}

a.duo-button.duo-red:hover span {
    background-color: #a32020;
    color: #fff;
}

a.duo-button.duo-arrow span {
    background-image: url("/content/dam/pwc/15/en/home-v2025/media/images/sa-me-hp-arrow.svg");
    background-size: 7%;
    background-repeat: no-repeat;
    background-position: calc(100% - 25px) 50%;
    padding-right: 60px;
    white-space: nowrap;
}

a.duo-button.duo-arrow:hover span {
    background-position: calc(100% - 20px) 50%;
}

/* HERO */

header.hero-promo__title {
    max-width1: 1150px;
}

.hero-promo .hero-promo__title-textpanel {
    width1: 50%;
}

h2.hero-promo__title-heading {
    font-size1: 48px !important;
}

.hero-promo .hero-promo__title-abstract {
    font-size1: 24px;
}

.hero-promo .hero-promo__image {
    background-size: contain;
}

.page-primary-col--burgundy .hero-promo{
    background: none !important;
}

/* Mobile */

@media (max-width: 991px) {
    header,
    header .container {
        width: 100%;
    }
}

/* INTRO */

#Intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 60px 0px;
}

#Intro .intro-left {
    width: calc(100% - 400px);
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid #a32020;
}

#Intro .intro-right {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

#Intro .intro-right img {
    width: 100%;
    max-width: 384px;
}

#Intro .numberWrapper {
    margin-bottom: 10px;
}

/* Mobile */

@media (max-width: 991px) {
    #Intro {
        flex-direction: column;
    }

    #Intro .intro-left {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    #Intro .intro-right {
        width: 100%;
        display: block;
    }
}

/* TAB INTERFACE */

#Tab-Anim {
    height: 650px;
    padding-top: 30px;
}

#Tab-Anim .tab-wrapper {
    display: flex;
    flex-wrap: nowrap;
    /* overflow-x: auto; */
    position: relative;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    justify-content: center;
    gap: 20px;
}

#Tab-Anim .tab-wrapper::-webkit-scrollbar {
    display: none;
}

#Tab-Anim .tab {
    flex: 0 0 auto;
    padding: 1rem 0px;
    text-align: center;
    cursor: pointer;
    font-weight: normal;
    scroll-snap-align: center;
    position: relative;
    transition: font-weight 0.3s;
    color: #999;
}

#Tab-Anim .tab.active {
    font-weight: bold;
    color: #a32020;
}

#Tab-Anim .tab.tab-abudhabi {
    width: 114px;
}

#Tab-Anim .tab.tab-beirut,
#Tab-Anim .tab.tab-cairo,
#Tab-Anim .tab.tab-dubai {
    width: 82px;
}

#Tab-Anim .tab.tab-doha {
    width: 78px;
}

#Tab-Anim .tab.tab-riyadh {
    width: 90px;
}

#Tab-Anim .underline {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: #a32020;
    transition:
        left 0.3s ease,
        width 0.3s ease;
}

#Tab-Anim .content-wrapper {
    margin: 1.5rem auto 0;
    position: relative;
    max-width: 1120px;
}

#Tab-Anim .tab-content {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#Tab-Anim .tab-content.active {
    opacity: 1;
    pointer-events: auto;
    position: absolute;
}

#Tab-Anim .tab-content img {
    width: 100%;
}

#Tab-Anim .duo-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

#Tab-anim a.duo-button span {
    white-space: nowrap;
}

#Tab-Anim .tab-content img.mob {
    display: none;
}

@media (max-width: 1199px) {
    #Tab-Anim {
        height: 55vw;
    }
}

@media (max-width: 880px) {
    #Tab-Anim {
        height: 68vw;
    }
}

@media (max-width: 700px) {
    #Tab-Anim .tab-wrapper {
        gap: 0px;
    }

    #Tab-Anim .tab.tab-abudhabi {
        width: 94px;
    }

    #Tab-Anim .tab.tab-beirut,
    #Tab-Anim .tab.tab-cairo,
    #Tab-Anim .tab.tab-dubai {
        width: 62px;
    }

    #Tab-Anim .tab.tab-doha {
        width: 58px;
    }

    #Tab-Anim .tab.tab-riyadh {
        width: 70px;
    }

    #Tab-Anim .duo-button {
        bottom: 20px;
    }
}

@media (max-width: 450px) {
    #Tab-Anim .tab {
        font-size: 14px;
        white-space: nowrap;
    }

    #Tab-Anim .tab.tab-abudhabi {
        width: 79px;
    }

    #Tab-Anim .tab.tab-beirut,
    #Tab-Anim .tab.tab-cairo,
    #Tab-Anim .tab.tab-dubai {
        width: 48px;
    }

    #Tab-Anim .tab.tab-doha {
        width: 44px;
    }

    #Tab-Anim .tab.tab-riyadh {
        width: 56px;
    }

    #Tab-Anim .tab-content img.mob {
        display: block;
    }

    #Tab-Anim .tab-content img.desk {
        display: none;
    }

    #Tab-Anim {
        height: 180vw;
    }
}

/* SIGN UP */

#mehp-sec-5 {
    background-color: #a32020;
    background-image: url("/content/dam/pwc/15/en/home-v2025/media/images/sa-me-hp-sign-up.gif");
    background-repeat: no-repeat;
    background-size: 550px !important;
    background-position: 90% 50% !important;
}

#Signup {
    display: flex;
    flex-direction: row;
    padding: 40px 0px 30px;
    color: #fff;
}

#Signup .signup-left {
    width: calc(100% - 400px);
}

#Signup h2 {
    font-size: 32px;
    line-height: 44px;
}

@media (max-width: 1199px) {
    #mehp-sec-5 {
        background-position: 100% 50% !important;
        background-size: auto 100% !important;
    }
}

@media (max-width: 730px) {
    #mehp-sec-5 {
        background-image: none;
    }

    #Signup .signup-left {
        width: 100%;
    }
}

/* CAROUSEL ROW */

#Carousel {
    display: flex;
    flex-direction: row;
    padding: 100px 0px;
}

#Carousel .carousel-left {
    width: calc(100% - 400px);
    padding-right: 40px;
}

#Carousel .carousel-right {
    width: 440px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#Carousel .carousel {
    position: relative;
    width: 650px;
    height: 400px;
    overflow: hidden;
    margin-left: -20px;
}

#Carousel .carousel:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    z-index: 10;
    background-color: #fff;
}

#Carousel .carousel:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/content/dam/pwc/15/en/home-v2025/media/images/carousel-frame.png");
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: cover;
}

#Carousel .slide {
    position: absolute;
    top: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition:
        transform 0.6s ease,
        width 0.6s ease;
    border-left: 20px solid #fff;
}

/* Mobile*/

@media (max-width: 1199px) {
    #Carousel {
        flex-direction: column;
    }

    #Carousel .carousel-left {
        width: 100%;
        padding-right: 0;
    }

    #Carousel .carosel-right {
        width: 650px;
        margin: 0px auto;
        padding-left: 20px;
    }

    #Carousel .carousel {
        margin: 0px auto;
    }
}

@media (max-width: 680px) {
    #Carousel .carousel-left {
        overflow: hidden;
        width: 100vw;
        margin-left: -15px;
    }

    #Carousel .carousel {
        margin-left: calc((100vw - 670px) / 2);
    }

    #Carousel .carosel-right {
        width: 100%;
        padding-left: 0;
    }
}

/* LOCAL ACTION */

#Local {
    display: flex;
    flex-direction: row;
    padding: 120px 0px;
    color: #fff;
}

#Local:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
#Local > div {
    position: relative;
}

#Local .local-left {
    width: calc(100% - 400px);
}

@media (max-width: 767px) {
    #Local .local-left {
        width: 100%;
    }
}

/* OUR EXPERTS */

#Experts-Intro {
    display: flex;
    flex-direction: row;
    align-items: end;
    padding: 110px 0px 30px;
}

#Experts-Intro .experts-left {
    width: calc(100% - 400px);
    padding-right: 40px;
    margin-right: 40px;
}

#Experts-Intro .experts-right {
    width: 400px;
    text-align: right;
}

/* BIOS */

#Experts-Bios {
    font-size: 0;
    margin-bottom: 100px;
}

#Experts-Bios #scroll-container {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* padding: 0px calc((100vw - 1140px) / 2); */
}

#Experts-Bios #scroll-container::-webkit-scrollbar {
    display: none;
}

#Experts-Bios #scroll-content {
    display: inline-block;
}

#Experts-Bios .item {
    display: inline-block;
    width: 300px;
    height: 400px;
    margin: 0 10px;
    position: relative;
    white-space: normal;
    overflow: hidden;
}

#Experts-Bios .item img {
    transition: all 0.5s;
    width: 100%;
}

#Experts-Bios .item:hover img {
    transform: scale(1.1);
}

#Experts-Bios .bio {
    background-color: #a32020;
    padding: 30px;
    color: #fff;
    height: 180px;
    position: absolute;
    bottom: -176px;
    transition: all 0.5s;
}

#Experts-Bios .bio a {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-weight: bold;
    font-size: 16px;
    background-image: url("/content/dam/pwc/15/en/home-v2025/media/images/sa-me-hp-arrow-white.svg");
    background-size: 16%;
    background-repeat: no-repeat;
    background-position: 100%;
    padding-right: 25px;
    transition: all 0.5s;
}

#Experts-Bios .bio a:hover {
    padding-right: 30px;
}

#Experts-Bios .item:hover .bio {
    bottom: 0px;
}

#Experts-Bios .bio p {
    font-size: 14px;
    line-height: 16px;
}

#Experts-Bios .name {
    position: absolute;
    bottom: 4px;
    padding: 20px 30px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    opacity: 1;
    transition: all 0.5s;
    width: 100%;
}

#Experts-Bios .item:hover .name {
    opacity: 0;
    bottom: 120px;
}

#counter {
  position1: fixed;
  top: 20px;
  left: 20px;
  font-size: 2.3rem;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.numberWrapper {
  display: flex;
  color: #a32020;
  position: relative;
  overflow: hidden;
  height: auto;
  align-items: flex-end;
  font-size: 60px;
  padding-bottom: 10px;
  font-family: "PwC ITC Charter", Georgia, serif;
  min-height: 50px;
  font-weight: normal;
}

.numberContent {
  color: #000;
  opacity: 1;
  transition: opacity 0.5s ease;
  font-size: 24px !important;
  font-family: "PwC Helvetica Neue", Arial, sans-serif;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.digit {
  position: relative;
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUpBounce 0.8s ease-out forwards;
  transform-origin: bottom center;
}

/* Static digits (no animation) */
.digit.static {
  transform: none;
  opacity: 1;
  animation: none;
}

.plusSign {
  color: #9a1c1c;
  margin-left: 2px;
  transition: margin-left 0.3s ease;
  display: inline-block;
}

.plusSign.animate {
  animation: shiftBack 0.6s ease;
}

@keyframes slideUpBounce {
  0% {
    transform: translateY(70%);
    opacity: 0;
  }
  60% {
    transform: translateY(-3px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shiftBack {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

h2.numberContent {
    min-height: 55px !important;
    margin-bottom: 0px !important;
}

   /* containerimg styling */
    .containerimg {
        display: flex;
        flex-wrap: wrap;
        gap: 90px; /* Add space between columnimgs */
        padding-bottom: 30px;
        padding-top: 60px;
        justify-content:center;
    }

    /* columnimg styling */
    .columnimg {
        flex: 1; /* Allow columnimgs to grow and shrink equally */
        max-width: 150px; /* Ensure the columnimg doesn’t shrink too much */
        padding: 0px;
        background-color: transparent;
        box-shadow1: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        border-radius: 0px;
    }

   

    #awards {
        display: flex;
        flex-direction: row;
        align-items: end;
        padding: 30px 0px 10px;
    }

    div#container-06bf3555cd {
        display: flex;
        justify-content: center;
    }

/* Mobile */

@media (min-width: 1921px) {
    #Experts-Bios #scroll-container {
        width: 1920px;
        margin: 0px auto;
    }
}

@media (max-width: 1920px) {
    #Experts-Bios #scroll-container {
        padding: 0px calc((100vw - 1140px) / 2);
    }
}

@media (max-width: 991px) {
    #Experts-Intro {
        flex-direction: column;
        align-items: normal;
    }

    #Experts-Intro .experts-left {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
    }

    #Experts-Intro .experts-right {
        width: 100%;
        text-align: left;
    }
}

/* THEMES */

@media (max-width: 767px) {
    .themes-chooser-container h3:after {
        content: "";
        width: 10px;
        height: 20px;
        background-image: url("/content/dam/pwc/15/en/cities/media/images/sa-me-cp-chevron-right-white.svg");
        display: inline-block;
        background-repeat: no-repeat;
        position: relative;
        margin-left: 5px;
        top: 3px;
        transition: all 0.3s;
    }

    .themes-chooser-container .tc-column:hover h3:after {
        opacity: 0;
        width: 0;
        margin-left: 0;
    }
}

@media (orientation: portrait) {
  section#mehp-sec-icr {
    background-size: 100% !important;
  }
 
  .signup-col.signup-left {
    width: 100% !important;
  }
}

 /* Mobile-first optimization */
    @media (max-width: 768px) {
        #awards .containerimg {
            flex-direction: column;
        }
    }

@media (max-width: 768px) {
    #awards .containerimg {
        flex-direction: row !important;
    }
    #awards .containerimg.max-width-narrow1 img {
    max-width: 110px;
    }
    #awards .containerimg {
    gap: 10px !important;
}
}


