@font-face {
    font-family: MarkWebProBold;
    src: url('../fonts/MarkWebPro-BoldW01Regular.ttf')
}

@font-face {
    font-family: MarkOffcForMC-EXtra-light;
    src: url('../fonts/MarkWebPro-ExtraLightW01Rg.ttf')
}

@font-face {
    font-family: MarkOffcForMC;
    src: url('../fonts/MarkWebPro-BookW01Regular.ttf')
}

@font-face {
    font-family: MarkOffcForMC-medium;
    src: url('../fonts/MarkWebPro-MediumW01Regular.ttf')
}

@font-face {
    font-family: MarkOffcForMC-thin;
    src: url('../fonts/MarkWebPro-ThinW01Regular.ttf')
}

/* HEADER START*/


.main-header {
    position: absolute;
    width: 100%;
    top: 0;
    padding: 30px;
    z-index: 90;
    transition: 0.8s ease;
}

.main-header:hover {
    background-color: #000;
}

.main-header .logo a img {
    width: 60px;
    max-width: 60px;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .container nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-header .container nav ul li {
    margin-left: 40px;
}

.main-header .container nav ul li a {
    font-family: MarkOffcForMC-medium;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.main-header .container nav ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

.main-header .container .hamburger-nav {
    width: 1.5rem;
    display: none;
}

.main-header .container .hamburger-nav span {
    border-bottom: 0.0625rem solid #fff;
    display: block;
    padding: 0.375rem 0 0 0;
}

.animate, .split-text, .tweening, .path-drawing {
    opacity: 0;
}

.mobile-popup {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #222221;
    height: 100%;
    min-height: 100vh;
    z-index: 99;
    display: none;
}

.mobile-popup .mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 36px 0 36px;
    border-bottom: 1px solid rgba(255,255,255, 0.4);
    background-color: #141413;
}

.mobile-popup .mob-header .logo a img {
    width: 46px;
}

.mobile-popup .mob-header .close-icon-mobile a img {
    width: 34px;
}

.mobile-popup .mobile-links {
    background-color: #141413;
}

.mobile-popup .mobile-links nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
}

.mobile-popup .mobile-links nav ul li a {
    display: block;
    font-family: MarkOffcForMC-medium;
    font-size: 16px;
    padding: 20px 48px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255, 0.4);
}

.mobile-popup .footer-mobile ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-popup .footer-mobile ul  li {
    margin-bottom: 24px;
}

.mobile-popup .footer-mobile ul  li:first-child {
    margin-top: 24px;
}

.mobile-popup .footer-mobile ul  li a {
    padding: 0 48px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #b1ada6;
}

.mobile-popup .footer-mobile ul  li a img {
    width: 20px;
    height: 20px;
}

.mobile-popup .footer-mobile ul  li a  p {
    margin: 0 0 0 8px;
    font-family: MarkOffcForMC-medium;
    font-size: 16px;
}



/*VIDEO START*/

.hero-video {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero-video .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video .video-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .35);
}

.scroll-down-icon {
    display: inline;
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 98;
    animation:  scroll-arrow-down 2s infinite;
    padding: 20px 0;
}

@keyframes scroll-arrow-down {
    0%{
        opacity: 0;
        transform:  translateY(-40px)
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform:  translateY(20px,20px);
    }
}

.scroll-down-icon  img {
    width: 27px;
}
.hero-video .video-container video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.hero-video .welcome-text {
    z-index: 70;
}

.hero-video .welcome-text h1 {
    font-family: MarkOffcForMC-EXtra-light,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 300;
    line-height: 72px;
    font-size: 60px;
    color: #fff;
    margin: 14px 0;
}

.hero-video .welcome-text  p {
    font-size: 12px;
    font-family: MarkWebProBold,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-transform: uppercase;
    color: #b1ada6;
    margin: 0;
    line-height: 16px;
    letter-spacing: 3px;
}


/* inside track start*/

.inside-track {
    background: url('../images/inside-track-v2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.inside-track::before {
    content: '';
    position: absolute;
    top: 0;
    height: 635px;
    width: 60%;
    background: rgb(255,255,255);
    background: linear-gradient(270deg, rgba(255,255,255,0) 20%, rgba(0,0,0,0.6) 60%);
}

.inside-track .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 634px;

}

.inside-track .container p,
.inside-track .container h2,
.inside-track .container h3 {
    margin: 0;
}

.inside-track .container p {
    font-size: 12px;
    font-family: MarkWebProBold,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-transform: uppercase;
    color: #B1ADA6;
    line-height: 20px;
    letter-spacing: 1.71px;
}

.inside-track .container h2 {
    font-size: 60px;
    line-height: 70px;
    font-family: MarkOffcForMC-EXtra-light,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    color: #fff;
    padding: 15px 0 24px 0;
    letter-spacing: 0.92px;
}

.inside-track .container a {
    text-decoration: none;
    margin-bottom: 9px;
    display: flex;
}

.inside-track .container a h3 {
    font-family: MarkOffcForMC-medium,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
}

.inside-track .container a img {
    margin-left: 24px;
    transition: 0.3s ease;
}

.inside-track .container a:hover img {
    transform: translateX(10px);
}

/* Solutions start*/

.our-solutions {
    background: #000;
}

.our-solutions.solutions-action {
    background: url('../images/solutions-v2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 634px;
    position: relative;
}

.our-solutions.solutions-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 635px;
    width: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(270deg, rgba(255,255,255,0) 20%, rgba(0,0,0,0.6) 100%);
}

.our-solutions .container p,
.our-solutions .container h2,
.our-solutions .container h3 {
    margin: 0;
}

.our-solutions .container p {
    font-size: 12px;
    font-family: MarkWebProBold,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-transform: uppercase;
    color: #B1ADA6;
    line-height: 20px;
    letter-spacing: 1.71px;
}

.our-solutions .container h2 {
    font-size: 60px;
    line-height: 70px;
    font-family: MarkOffcForMC-EXtra-light,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    color: #fff;
    padding: 15px 0 24px 0;
    letter-spacing: 0.92px;
}

.our-solutions .container a {
    text-decoration: none;
    margin-bottom: 9px;
    display: inline-flex;
}

.our-solutions .container a h3 {
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
}

.our-solutions .container a img {
    margin-left: 24px;
    width: 17px;
    height: 21px;
    transition: 0.3s ease;
}

.our-solutions .container a:hover img {
    transform: translatex(5px) translateY(-5px);
}

.play-purpose {
    height: 799px;
    display: flex;
}

.play-purpose .left {
    flex-basis: 50%;
    height: 799px;
    background: url('../images/mc-virutal-lab.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.play-purpose .right {
    flex-basis: 50%;
    height: 799px;
    background: #fff;
}

.purpose-text {
    margin-top: -799px;
    display: flex;
    justify-content: flex-end;
    height: 799px;
    align-items: center;
}


.purpose-text .container {
    z-index: 90;
    width: 50%;
    margin: 0;
    max-width: 50%;
    padding-left: 134px;
    padding-right: 200px;

}

.purpose-text .container span {
    font-size: 12px;
    font-family: MarkWebProBold,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-transform: uppercase;
    color: #000;
    line-height: 20px;
    letter-spacing: 1.71px;
}

.purpose-text .container h2 {
    font-size: 60px;
    line-height: 70px;
    font-family: MarkOffcForMC-EXtra-light,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    color: #000;
}

.purpose-text .container p {
    font-size: 18px;
    line-height: 24px;
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 500;
}

.purpose-text .container a {
    text-decoration: none;
    margin-bottom: 9px;
    display: inline-flex;
    align-items: center;
}

.purpose-text .container a h3 {
    font-family: MarkOffcForMC-medium,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;

    color: #000;
    font-size: 16px;
    line-height: 21px;
    margin-top: 5px;
}

.purpose-text .container a img {
    margin-left: 24px;
    transition: 0.3s ease;
}

.purpose-text .container a:hover img {
    transform: translatex(5px) translateY(-5px);
}

.under-the-hood {
    background: #1B1B1B;
}

.under-the-hood .container {
    display: flex;
    height: 634px;
    justify-content: space-between;
}

.under-the-hood .container .hood-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 634px;
}

.under-the-hood .container p,
.under-the-hood .container h2,
.under-the-hood .container h3 {
    margin: 0;
}

.under-the-hood .container p {
    font-size: 12px;
    font-family: MarkWebProBold,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-transform: uppercase;
    color: #B1ADA6;
    line-height: 20px;
    letter-spacing: 3px;
}

.under-the-hood .container h2 {
    font-size: 60px;
    line-height: 70px;
    font-family: MarkOffcForMC-EXtra-light,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    color: #fff;
    padding: 15px 0 24px 0;
}

.under-the-hood .container a img {
    transition: 0.3s ease;
}




/* slider circle*/

.solutions-layer {
    display: flex;
    /*justify-content: flex-end;*/
    /* position: absolute;
    left: 0;
    top: 6px; */
    height: 100%;
    justify-content:flex-end;
    align-items: center;
    /*display: none;*/
}

.solution-products {
    display: block;
    overflow: hidden;
    width: 900px;
    padding: 30px 0 30px 28px;
}

.solution-products .inner-container {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    padding-top: 15px;
}

.solutions-layer .box {
    /*border: 2px solid #ff671b;*/
    width: 297px;
    height: 270px;
    border-radius: 50%;
    padding-right: 30px;
    position: relative;
    transition: 0.3s;
}

.solutions-layer a {
    display: flex;
    text-decoration: none;
    width: 100%;
    height: 100%;
    margin-right: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.solutions-layer .box a:hover {
    background: #ff671b;
    transform: scale(1.05);
}

.solutions-layer .box h2 {
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    color: #fff;
    margin: 0;
    width: 300px;
    font-weight: 400;
    text-align: center;
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.solutions-layer .box svg {
    display: block;
    width: 270px;
    height: 270px;
    position: absolute;
}

.solutions-layer .box svg.path-drawing {
    opacity: 0;
}


.solutions-layer .slider-icons {
    position: absolute;
    right: 4px;
    bottom: 70px;
    display: flex;
}

.solutions-layer .slider-icons a {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #54524F;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
}

.solutions-layer .slider-icons a:hover {
    border: 1px solid #ff671b;
}

.solutions-layer .left-slider-icon img {
    transform: rotate(-180deg);

}

.solutions-layer .left-slider-icon:hover img {
  transform: rotate(-180deg);

}

.locked {
    cursor: grab;
}

.locked * {
    cursor: grabbing;
    pointer-events: none;
}

.smooth {
-webkit-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
   -moz-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
     -o-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
        transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
}



/* POPUP-OVERLAY*/

.btn-proba {
    background: grey;
    display: flex;
    justify-content: center;
}

.btn-overlay {
    background: rgb(0, 0, 0);
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    display: none;
}

.btn-overlay .popup-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    height: 100%;
}

.btn-overlay .popup-video video {
    width: 100%;
    height: 100%;
}

.btn-overlay .close-icon {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 99;
}

.btn-overlay .close-icon a:hover img {
    transform: rotate(-90deg)
}

.btn-overlay .close-icon  img {
    width: 30px;
    transition: 0.3s;
}


/*FOOTER START*/

.footer {
    background: #141413;

}


.footer .logo {
    padding-top: 85px;
}

.footer .logo  img {
    width: 60px;
    max-width: 60px;
}

.footer .top-level {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer .top-level .help-column {
    /* width: 17.81vw; */
    width: 342px;
}

.footer .top-level .help-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .top-level .help-column ul li h2 {
    padding-top: 30px;
    font-size: 24px;
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 300;
    color: #fff;
    margin-bottom: 40px;
}

.footer hr {
    border-color: rgb(68, 67, 64);
    height: 1px;
}

.footer .top-level .help-column ul li {
    margin-bottom: 24px;
}

.footer .top-level .help-column ul li a img {
    width: 20px;
}

.footer .top-level .help-column ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer .top-level .help-column ul li a:hover {
    text-decoration: underline;
    color: rgb(177, 173, 166);
}

.footer .top-level .help-column ul li a img {
    margin-right: 8px;
}

.footer .top-level .help-column ul li a p {
    margin-bottom: 4px;
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    color: rgb(177, 173, 166);
    font-size: 16px;
    font-weight: 400;
}

.footer .top-level .help-column ul li .location-link img {
    width: 12px;
}

.footer .top-level .company-mastercard-sites {
    display: flex;
}

.footer .top-level .company-mastercard-sites .company,
.footer .top-level .company-mastercard-sites .mc-websites
{
    width: 293px;
}

.footer .top-level .company-mastercard-sites h3 {
    margin-bottom: 1.2rem
}

.footer .top-level .company-mastercard-sites  ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .top-level .company-mastercard-sites  ul li {
    margin-top: 0.625rem;
}

.footer .top-level .company-mastercard-sites  ul li a {
    text-decoration: none;
    color: #fff;
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.footer .top-level .company-mastercard-sites  ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer .top-level .company-mastercard-sites h3 {
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgb(177, 173, 166);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer  .bottom-level {
    padding: 2.5rem 0;
    color: #fff;
}

.footer  .bottom-level p {
    color: #fff;
    font-size: 16px;
    font-family: MarkOffcForMC,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
}

.footer  .bottom-level  .footer-privacy ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.footer  .bottom-level  .footer-privacy ul li {
    margin-right: 2rem;
}

.footer  .bottom-level  .footer-privacy ul li a {
    font-family: MarkOffcForMC-medium,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.footer  .bottom-level  .footer-privacy ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer  .bottom-level .col-3 img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.footer  .bottom-level .col-3 a {
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
}

.footer  .bottom-level .col-3 a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer  .bottom-level .col-3 a span {
    color: #fff;
    font-family: MarkOffcForMC;
}

.footer  .bottom-level .col-2 .footer-si {
    display: flex;
    justify-content: flex-end;
}

.footer  .bottom-level .col-2 .footer-si a {
    text-decoration: none;
    color: #fff;
    margin-left: 16px;
}

.footer  .bottom-level .col-2 .footer-si a i {
    font-size: 25px;
}

.footer  .bottom-level .col-2 .footer-si a:hover i {
    color: #B1ADA6;
}

/* HELPERS*/

.d-block {
    display: block;
}

.img-icon:hover img {
    filter: url('#colorFilter');
}

.img-icon2:hover img {
    filter: invert(1) url('#colorFilter');
}

.big-screen-break {
  display: none
}



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

    .hero-video .container,
    .inside-track .container,
    .our-solutions,
    .under-the-hood,
    footer {
        padding-left: 40px;
    }

    .purpose-text .container {
        padding-right: 100px;
    }

    .solutions-layer .slider-icons {
      right: 40px;
    }

    .under-the-hood {
      padding-right: 30px;
    }

    .solution-products {
      padding: 30px 0 30px 25px;
    }

    .our-solutions {
      padding-left: 0;
    }

    .our-solutions .solution-text {
      padding-left: 40px;
    }

    footer  {
      padding-right: 40px;
    }
}

@media screen and (max-width: 1300px) and (min-width: 1024px){
    .under-the-hood {
      padding-left: 0;
    }
    .under-the-hood .container {
      flex-direction: column;
    }

    .solutions-layer {
      justify-content: center;
    }

    .solution-products {
      padding: 0 0 30px 15px;
      margin-top: -100px;
    }

    .under-the-hood .container .hood-text  {
      padding-left: 40px;
    }
    .solutions-layer .slider-icons {
      bottom: 20px;
      right: 20px;
    }

    .purpose-text .container {
      padding: 0 50px;
    }
}




/* TABLET*/

@media screen and (max-width: 1024px) {
    .main-header .container {
      align-items: center;
    }

    .main-header .container .hamburger-nav {
      margin-top: -10px;
      display: block;
    }

    .main-header nav {
      display:none;
    }
    /*.mobile-popup {
      display: block;
    }*/

    .under-the-hood .container {
    flex-direction: column;
    }

    .solutions-layer {
    justify-content: center;
    }

    .our-solutions.solutions-action {
        background: url('../images/solutions-v2.jpg');
        background-size: cover;
        background-position: center right;
    }

    .inside-track::before {
        content: '';
        position: absolute;
        top: 0;
        height: 635px;
        width: 100%;
        background: rgb(255,255,255);
        background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.4) 0%);

    }

    .under-the-hood {
      padding-left: 0;
    }

    .under-the-hood .container .hood-text  {
      padding-left: 40px;
    }

    .btn-overlay .close-icon a img {
        width: 30px;
    }

    .footer .top-level {
        flex-direction: column;
    }

    .footer .top-level .company-mastercard-sites {
        padding-top: 2.5rem;
    }

    .footer  .bottom-level .col-3 a {
        justify-content: flex-start;
    }

    .footer  .bottom-level .col-2 .footer-si {
        justify-content: flex-start;
    }

    .footer  .bottom-level {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer .bottom-level .col-2 .footer-si a {
        margin-left: 0;
        margin-right: 16px;
        padding-bottom: 15px;
    }

    .footer .bottom-level .col-3 {
        padding-bottom: 15px;
    }

    .footer .bottom-level .footer-privacy {
        padding-bottom: 15px;
    }

    .play-purpose {
        flex-direction: column;
    }

    .purpose-text {
        margin-top: -399px;
        display: flex;
        justify-content: flex-end;
        height: 599px;
    }

    .purpose-text .container {
        width: 100%;
        max-width: 100%;
        padding: 0 100px 0 40px;
    }

    .solutions-layer .slider-icons {
      bottom: 20px;
      right: 20px;
    }

    .solution-products {
      width: 600px;
    }

    .solution-products .inner-container {
      padding-bottom: 60px;
    }

}




/*MOBILE*/

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

    .main-header {
        padding: 16px 16px;
    }

    .main-header .logo a img {
      width: 48.75px;
    }

    .mobile-popup .mob-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 16px 0 16px;
        border-bottom: 1px solid rgba(255,255,255, 0.4);
    }

    .mobile-popup .mob-header .logo a img {
        width: 48px;
    }

    .mobile-popup .mob-header .close-icon-mobile a img {
          width: 34px;
    }

    .mobile-popup .mobile-links nav ul {
        padding: 0;
        margin: 0;
        width: 100%;
        list-style: none;
    }

    .mobile-popup .mobile-links nav ul li a {
        display: block;
        font-family: MarkOffcForMC-medium;
        font-size: 16px;
        padding: 20px 16px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255, 0.4);
    }

    .mobile-popup .footer-mobile ul li a {
      padding: 0 16px;
    }

    .hero-video {
        height: 95vh;
    }

    .our-solutions .solution-text {
      padding-left: 0px;
    }

    .hero-video .container,
    .inside-track .container,
    .our-solutions,
    .under-the-hood,
    footer {
        padding: 0 15px;
    }

    .hero-video .welcome-text h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-video .welcome-text h1 br {
          display:none;
      }

    .hero-video .welcome-text  p {
        font-size: 12px;

    }

    .scroll-down-icon {
        left: 48%;

    }

    .inside-track {
      background-position: -540px center;
    }

    .inside-track::before {
        content: '';
        position: absolute;
        top: 0;
        height: 635px;
        width: 100%;
        background: rgb(255,255,255);
        background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.4) 0%);

    }

    .inside-track .container h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .inside-track .container a img {
      margin-left: 10px;
    }

    .our-solutions.solutions-action {
        background: url('../images/solutions-v2.jpg');
        background-size: cover;
        background-position: -500px center ;
    }

    .our-solutions.solutions-action .container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }

    .under-the-hood .container  {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }



    .our-solutions .container p {
        text-align: center;
    }

    .our-solutions .container h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .our-solutions .container h2 br {
      display: none;
    }

    .our-solutions .container a {
        text-align: center;
        justify-content: center;
    }

    .under-the-hood .container .hood-text  {
      padding-left: 0;
    }

    .under-the-hood .container .hood-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .under-the-hood .container a {
        text-align: center;
        justify-content: center;
    }

    .play-purpose .left {
      background-position:  center ce;
    }

    .purpose-text {
      margin-top: -340px;
      height: 300px;
    }

    .purpose-text .container {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .purpose-text .container a {
        justify-content: center;
    }

    .purpose-text .container h2 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
        margin: 12px 0 0 0 ;
    }

    .solution-products {
      width: 300px;
      margin-top: -150px;
      padding: 30px 0 30px 15px;

    }

    .purpose-text .container p {
      padding-top: 16px;
    }

    .btn-overlay .popup-video {
        height: 100%;
        width: 100%;
    }

    .btn-overlay .close-icon a img {
        width: 20px;
    }

    .footer .top-level {
      margin-bottom: 3rem;
    }

    .footer {
        padding: 0;
    }

    .footer .bottom-level {
      padding-right: 0;
    }

    .footer .logo {
        padding-top: 40px;
    }

    .footer .logo img {
      width: 48px;
    }

    .footer .bottom-level .col-2 .footer-si {
      padding-bottom: 40px;
    }

    .footer .bottom-level .col-2 .footer-si a {
      padding-bottom: 0;
    }

    .footer .bottom-level .col-3 {
      padding-bottom: 0;
    }

    .footer .bottom-level .col-3 img {
      height: 24px;
    }

    .footer .bottom-level .col-3 a {
      padding-bottom: 40px;
    }

    .footer .bottom-level p {
      margin-bottom: 0;
    }

    .footer .top-level .company-mastercard-sites {
        flex-direction: column;
        padding-top: 36px;
    }

    .footer .top-level .company-mastercard-sites .company {
      padding-bottom: 36px;
    }

    .footer .top-level .help-column ul li,
    .footer .bottom-level .footer-privacy ul li {
        margin-bottom: 15px;
    }

    .footer .top-level .company-mastercard-sites .mc-websites {
        padding: 20px 0 56px 0;
    }

    .footer .bottom-level .footer-privacy ul {
        flex-direction: column;
    }




}

@media screen and (min-width: 2000px){
  .purpose-text .container p {
    max-width: 600px;
  }
}

@media (min-aspect-ratio: 16/9) {
    .hero-video .video-container video {
        height: auto;
        width: 100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video .video-container video {
        height: 100%;
        width: auto;
    }
}


/*   cookies css   */
.ot-sdk-show-settings {
	right: 0;
	z-index: 1;
	position: fixed;
	bottom: 0;
}
#ot-sdk-btn.ot-sdk-show-settings,
#ot-sdk-btn.optanon-show-settings {
    color: #141413 !important;
    border: 1px solid #141413 !important;
}
#ot-sdk-btn.ot-sdk-show-settings:hover,
#ot-sdk-btn.optanon-show-settings:hover {
    color: #fff !important;
    background-color: #cf4500 !important;
}


/*
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 
    

}
*/

