/* Functions & Mixins */
/* ==== Containers & Responsive Mixins ==== */
/* Defines convenience mixins for common breakpoint targets.
these are small, medium, mediumlarge, and large. These variables should be defined prior to use.
*/
/* Universal breakpoints */
.section1,
.section2,
.section3,
.ecommerce-integrations {
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .section1,
  .section2,
  .section3,
  .ecommerce-integrations {
    padding-bottom: 40px;
  }
}
.section1::after,
.section2::after,
.section3::after,
.ecommerce-integrations::after {
  content: "";
  background-color: #fbc600;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 6px;
  width: 10rem;
  float: right;
  -webkit-animation: from-right 750ms ease-in forwards;
  animation: from-right 750ms ease-in forwards;
}
@media (prefers-reduced-motion) {
  .section1::after,
  .section2::after,
  .section3::after,
  .ecommerce-integrations::after {
    -webkit-animation: none;
    animation: none;
  }
}
@media (min-width: 1280px) {
  .section1::after,
  .section2::after,
  .section3::after,
  .ecommerce-integrations::after {
    width: calc(50vw - 410px);
  }
}
.section1__content,
.section2__content,
.section3__content,
.ecommerce-integrations__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
.section1__copy__header,
.section2__copy__header,
.section3__copy__header,
.ecommerce-integrations__copy__header {
  color: #3b3c43;
  font-weight: 400;
  font-size: 42px;
}
@media screen and (max-width: 576px) {
  .section1__copy__header,
  .section2__copy__header,
  .section3__copy__header,
  .ecommerce-integrations__copy__header {
    font-size: 32px;
  }
}
.section1__copy__header span,
.section2__copy__header span,
.section3__copy__header span,
.ecommerce-integrations__copy__header span {
  font-weight: 500;
}
.section1__copy p,
.section2__copy p,
.section3__copy p,
.ecommerce-integrations__copy p {
  font-size: 20px;
}
.section1__copy p,
  .section2__copy p {
	  margin: 20px 0; /* Deepmala - global css overrided it with 0 so added */
}
@media screen and (max-width: 576px) {
  .section1__copy p,
  .section2__copy p,
  .section3__copy p,
  .ecommerce-integrations__copy p {
    font-size: 16px;
  }
  .section1__copy p,
  .section2__copy p {
	  margin: 16px 0; /* Deepmala - global css overrided it with 0 so added */
  }
}

.section1 {
  padding-top: 40px; /* Deepmala - Reduced extraa padding for desktop */
  height: 400px;
}
@media screen and (max-width: 992px) {
  .section1 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0; /* Deepmala - Reduced extraa padding for small devices */
  }
}
.section1__content {
  display: grid;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .section1__content {
    display: block;
  }
}
.section1__content .section1__copy__header {
  position: relative;
  padding-left: 28px;
}
.section1__content .section1__copy__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #fbc600;
  z-index: 2;
}
.section1__content .section1__copy p {
  font-size: 20px;
}
.section1__content .section1__image {
  background-image: url("../img/platform-integrations-section1.jpg");
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .section1__content .section1__image {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .section1__content .section1__image {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .section1__content .section1__image {
    height: 200px;
  }
}

.section2 {
  margin: 80px 0;
}
@media screen and (max-width: 992px) {
  .section2 {
    margin-top: 40px;
  }
}
.section2__copy__header {
  margin-bottom: 12px;
}
.section2__content__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
}
@media screen and (max-width: 992px) {
  .section2__content__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.section2 .emphasis-path {
  background-color: #fff;
}
.section2 .emphasis-path .emphasis-path__route {
  background-color: white;
}
.section2 .emphasis-path .emphasis-path__route .benefits_list {
  max-width: 100% !important;
}
.section2__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section2__image > div {
  width: 100%;
  background-image: url("../img/platform-integrations-section2.jpg");
  background-size: cover;
  background-position: right;
  height: 380px;
}
@media screen and (max-width: 992px) {
  .section2__image > div {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .section2__image > div {
    height: 200px;
  }
}

.section3 {
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .section3 {
    margin-bottom: 40px;
  }
}
.section3__gray-layer {
  background-color: #f7f7f7;
  padding-bottom: 40px;
}
.section3__gray-layer .section3__content__two-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .section3__gray-layer .section3__content__two-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.section3__gray-layer .section3__content__two-cards .card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -40px;
  width: 450px;
  padding: 40px;
  background-color: white;
  -webkit-box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.14);
}
.section3__gray-layer .section3__content__two-cards .card p {
  margin-bottom: 0;
  margin-top:16px; /* Deepmala - global css overrided it with 0 so added */
}
@media screen and (max-width: 768px) {
  .section3__gray-layer .section3__content__two-cards .card {
    width: 100%;
    padding: 20px;
  }
  .section3__gray-layer .section3__content__two-cards .card:nth-child(2) { /* Deepmala - card2 converted to 2nd child */
    margin-top: 0px;
  }
}
.section3__gray-layer .section3__content__two-cards .card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  gap: 12px;
}
.section3__gray-layer .section3__content__two-cards .card__header__title {
  margin: 0;
  letter-spacing: 1px;
  gap: 20px;
  border-left: 2px solid #fbc600;
  padding: 6px 0 0px 12px;
}
.section3__gray-layer .section3__content__two-cards .card__header__image {
  height: 22px;
  width: auto;
}
.section3__gray-layer .section3__content .section3__copy {
  margin-top: 40px;
}
.section3__gray-layer .section3__content .section3__copy__header {
  text-align: center;
}
.section3__gray-layer .section3__content .section3__copy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.section3__gray-layer .section3__content .section3__copy__content img {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .section3__gray-layer .section3__content .section3__copy__content img.desktop {
    display: none;
  }
}
.section3__gray-layer .section3__content .section3__copy__content img.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .section3__gray-layer .section3__content .section3__copy__content img.mobile {
    display: block;
    float: left;
    width: 40px;
    height: auto;
    margin-right: 12px;
  }
}
.section3__gray-layer .section3__content .section3__copy__content .text {
  color: #3b3c43;
  /*border-left: 2px solid black;*/
  padding-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .section3__gray-layer .section3__content .section3__copy__content .text {
    border: none;
    padding-left: 0;
  }
}
.section3__gray-layer .section3__content .section3__copy__content .text p {
  margin: 0;
  font-size: 16px;
}

.ecommerce-integrations {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .ecommerce-integrations {
    margin-bottom: 40px;
  }
}
.ecommerce-integrations h2 {
  color: #3b3c43;
  font-size: 3rem;
  margin-bottom: 6px;
}
@media screen and (max-width: 992px) {
  .ecommerce-integrations h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .ecommerce-integrations h2 {
    font-size: 2rem;
  }
}
.ecommerce-integrations p {
  font-size: 18px;
  margin-top: 0px;
}
@media screen and (max-width: 576px) {
  .ecommerce-integrations p {
    font-size: 16px;
  }
}
.ecommerce-integrations .platform-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .ecommerce-integrations .platform-logos {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 50px 50px;
    justify-items: center;
  }
}
@media screen and (max-width: 576px) {
  .ecommerce-integrations .platform-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    width: auto;
  }
}
.ecommerce-integrations .platform-logos img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 576px) {
  .ecommerce-integrations .platform-logos img {
    height: 40px;
  }
}

.application {
  position: relative;
}
.application h2 {
  text-align: center;
  color: #3b3c43;
  font-size: 3rem;
  margin-bottom: 0px;
}
@media screen and (max-width: 992px) {
  .application h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .application h2 {
    font-size: 2rem;
  }
}
.application p {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 576px) {
  .application p {
    font-size: 16px;
  }
}
.application .gray-layer {
  background-color: #f7f7f7;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 180px;
  z-index: -1;
}

/*Added by Vinda Sawant for compare all modal heading height*/
.modal__size{
	height:unset;
}
/* Universal breakpoints */
.circle-icon-tile {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 40px;
  box-sizing: border-box; }
  .circle-icon-tile:first-of-type {
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .circle-icon-tile:first-of-type {
        margin-right: 20px;
        margin-bottom: 0; } }
  .circle-icon-tile-header {
    font-size: 24px;
    margin: 0 0 24px; }
    @media (min-width: 768px) {
      .circle-icon-tile-header {
        font-size: 32px; } }
.bg-secondary-grey {
  background-color: #f3f6f6; }
  
  /* Universal breakpoints */
.logo-tile-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px; }
  @media (min-width: 992px) {
    .logo-tile-row {
      flex-direction: row; }
      .logo-tile-row > * {
        width: 25%; } }

.logo-tile {
  display: flex;
  box-sizing: border-box;
  margin-right: 20px;
  box-shadow: 0px 4px 4px 0px #00000040;
  width: 100%;
  max-width: 500px;
  height: 170px; }
  @media (min-width: 768px) and (max-width: 1080px) {
    .logo-tile {
      padding: 0 20px; } }
  @media (max-width: 991px) {
    .logo-tile {
      margin-right: 0;
      margin-bottom: 20px;
      padding: 0 20px; } }
  .logo-tile:last-of-type {
    margin-right: 0; }
  .logo-tile-img {
    max-width: 220px;
    width: 100%;
    margin: auto; }
.max-w-800 {
    max-width: 800px;
}
/* grow compo css */
/* Universal breakpoints */
.max-w-800 {
  max-width: 800px; }

.flex-tile-row {
  margin: 40px auto; }
  @media (max-width: 767px) {
    .flex-tile-row {
      margin: 0 auto; } }

.flex-tile-heading {
  margin: 10px 0;
  font-size: 32px; }
  .flex-tile-heading.heading-teal {
    color: #3f647c; }
  @media (min-width: 768px) {
    .flex-tile-heading {
      font-size: 48px; } }

.flex-tile-sub-text {
  font-size: 16px; }
  @media (min-width: 768px) {
    .flex-tile-sub-text {
      font-size: 18px; } }

.flex-tile-row {
  display: flex;
  justify-content: center;
  flex-direction: column; }
  @media (min-width: 768px) {
    .flex-tile-row {
      flex-direction: row;
      margin: 20px 0; } }

.flex-tile-container {
  border-radius: 24px;
  padding: 40px;
  margin: 10px 0; }
  @media (min-width: 768px) {
    .flex-tile-container {
      width: 35%;
      margin: 0 10px; } }
  .flex-tile-container-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%; }
  @media (min-width: 768px) {
    .flex-tile-container.tile-large {
      width: 65%; } }
  .flex-tile-container.tile-grey {
    background-color: #f3f6f6;
    color: #3b3d49; }
  .flex-tile-container.tile-dk-grey {
    background-color: #f3f6f6;
    color: #3b3d49; }
  .flex-tile-container.tile-blue-grey {
    background-color: #62657b;
    color: #FFF; }
  .flex-tile-container.tile-teal {
    background-color: #3f647c;
    color: #FFF; }
  .flex-tile-container-icon {
    display: none; }
    @media (min-width: 768px) {
      .flex-tile-container-icon {
        display: block; }
        .flex-tile-container-icon img {
          width: 96px; } }
/* End */