  body {
    background-color: #EFEFEF;
  }

  /* VIDEO HERO */
    video {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: auto;
      background: black;
      overflow: hidden;
      pointer-events:none;
    }
  /* VIDEO HERO END */

  /* STATS */
    .stats {
      display: flex;
      background: black;
      justify-content: center;
      align-items: center;
      padding: 50px 0;
      border-bottom: 1px solid white;
    }
    .stats .stat {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .stats .stat .num {
      font-size: 30px;
      line-height: 3rem;
      color: white;
    }
    .stats .stat .label {
      font-size: 15px;
      color: white;
    }
    .space_star {
      width: 50px;
      height: 60px;
      background: url(../icons/starRed.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 20px;
    }
  /* STATS END */


  /* INDUSTRIES SHOWCASE */
    .industryShowcase .industries_title {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-size: 30px;
      padding: 25px 5%;
      text-align: center;
    }
    .industryShowcase .industries_title .industries_description {
      font-size: 20px;
      display: inline-block;
      padding: 25px 0 0;
    }

    .insurance, .healthcare, .bfsi, .property, .farm, .bpk {
      overflow: hidden;
      transform: scale(0.1);
      opacity: 0;
      transition: all 1s ease-in-out;
    }

    .industryShowcase .ind .industry {
      display: flex;
      flex-direction: column;
    }
    .industry img {
      width: calc(100% - 50px);
      margin: 25px;
/*      border-top-right-radius: 25px;*/
      border-bottom-right-radius: 25px;
      border-bottom-left-radius: 25px;
      box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
    }
    .industry .industry_title {
      font-size: 1.2em;
      display: block;
      font-weight: 600;
      padding: 25px;
    }
    .industry .industry_description {
      font-size: 1em;
      padding: 0 25px;
      display: block;
    }
    .industry .industry_cta {
      background: url(../icons/white-arrow.svg);
      background-repeat: no-repeat;
      background-position: 90% 50%;
      background-size: 20px;
      display: flex;
      width: 135px;
      font-size: 1em;
      margin: 25px;
      padding: 5px 15px;
      background-color: #D61F29;
      border-radius: 20px;
      transition: all 1s;
      text-decoration: none;
      color: white;
    }    
    @keyframes ctaAnim {
      from { background-position: -10% 50%; }
      to { background-position: 90% 50%; }
    }
    .industry .industry_cta:hover {
      animation-name: ctaAnim;
      animation-duration: 0.6s;
      background-color: black;
    }

  /* INDUSTRIES SHOWCASE END */

  /* PRODUCT SHOWCASE */
  .productShowcase {
    background: white;
    box-shadow: inset 0 0 100px 16px rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: relative;
    min-height: 635px;
  }
  .showcase_subheading {
    display: inline-block;
    padding: 50px 30px;
    font-size: 25px;
    font-weight: 600;
  }
  .product_slider {
    padding: 0 30px 50px;
  }
  .product_name {
    font-size: 40px;
    color: #D61F29;
    font-weight: 700;
    padding: 0 0 25px 0;
    display: inline-block;
  }

  .productShowcase .selector {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    left: 0;
    width: calc(100% - 40px);
    padding: 0 20px;
  }

  .selector .arrow_left img, .selector .arrow_right img {
    width: 20px;
  } 

  .productShowcase .product_slider .product_cta {
    display: flex;
    margin: 40px 0 0 0;
    width: 125px;
    background: url(../icons/white-arrow.svg), #D61F29;
    background-position: 90% center;
    background-repeat: no-repeat;
    background-size: 25px;
    transition: all 0.2s ease-out;
    padding: 5px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
  }
  .productShowcase .product_slider .product_cta:hover {
    animation-name: ctaAnim;
    animation-duration: 0.6s;
    background-color: black;
  }

  /* PRODUCT SHOWCASE END */

  /* WHITE PAPERS */
    .whitePapers {
      display: flex;
      margin: 25px;
      border-radius: 35px;
      overflow: hidden;
      flex-direction: column-reverse;
      background: black;
      box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.2);
    }
    .whitePapers .whitePaper {
      display: flex;
      flex-direction: column;
    }
    .whitePapers .whitePapers_info {
      display: flex;
      flex-direction: column;
      padding: 25px;
      color: white;
    }
    .whitePapers_info .whitePapers_title {
      font-size: 1.5em;
    }
    .whitePapers_info .whitePapers_description {
      display: none;
    }
    .whitePapers_info .whitePapers_cta a {
      background: url(../icons/white-arrow.svg);
      background-repeat: no-repeat;
      background-position: 90% 50%;
      background-size: 20px;
      display: flex;
      width: 160px;
      margin: 25px 0 0;
      font-size: 1em;
      padding: 5px 20px;
      background-color: #D61F29;
      border-radius: 20px;
      transition: all 0.6s;
      text-decoration: none;
      color: white;
    }
    .whitePapers_info .whitePapers_cta a:hover {
      animation-name: ctaAnim;
      animation-duration: 0.6s;
      background-color: black;
    }
    .whitePapers img {
      width: 150%;
    }
  /* WHITE PAPERS END */

  /* CTA BAR */
    .cta_bar {
      display: flex;
      flex-direction: column;
      background: url(../images/cta-bar-bg.jpg);
      background-size: cover;
      margin: 50px 0;
      padding: 50px 0;
    }
    .cta_bar .cta_left {
      font-size: 1.8em;
      font-weight: 600;
      padding: 25px;
      color: white;
    }
    .cta_bar .cta_right {
      padding: 25px;
    }
    .cta_bar .cta_right span {
      display: flex;
      font-style: italic;
      color: white;
    }
    .cta_bar .cta_right a {
      font-weight: 600;
      text-decoration: none;
      display: flex;
      color: white;
      margin: 25px 0 0;
      padding: 10px 20px;
      background: url(../icons/white-arrow.svg);
      background-repeat: no-repeat;
      background-size: 20px;
      background-position: calc(100% - 20px) 50%;
      background-color: #D61F29;
      width: 55%;
      border-radius: 5px;
    }
  /* CTA BAR END */

@media only screen and (min-width: 768px) {
  /* VIDEO HERO */
    video {
      max-width: 100%;
      height: auto;
    }
  /* VIDEO HERO END */

  /* STATS */
    .stats {
      flex-direction: row;
      column-gap: 50px;
      padding: 20px 0;
    }
    .stats .stat .num {
      font-size: 60px;
      line-height: 4rem;
    }
    .stats .stat .label {
      font-size: 30px;
    }
  /* STATS END */

  /* PRODUCT SHOWCASE */

    .productShowcase {
      display: flex;
      border: 1px solid white;
      border-radius: 50px;
      margin: 0 5% 5%;
      padding: 0;
      overflow: hidden;
    }
    .productShowcase .showcase_subheading {
      font-weight: 300;
      font-size: 40px;
      display: flex;
      background: rgb(78,2,6);
      background: linear-gradient(0deg, rgba(78,2,6,1) 0%, rgba(214,31,41,1) 100%);
      width: calc(50% - 200px);
      justify-content: center;
      align-items: center;
      color: white;
      padding: 25px 100px;
    }
    .productShowcase .product_slider .product_details {
      font-size: 1.3em;
    }
    .productShowcase .product_slider {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: calc(50% - 200px);
      padding: 0 100px;
    }
    .productShowcase .selector {
      width: calc(50% - 80px);
      right: 0;
      left: 50%;
      padding: 0 40px;
    }
    .productShowcase .selector img {
      cursor: pointer;
    }


  /* PRODUCT SHOWCASE END */

  /* INDUSTRIES SHOWCASE */
    .healthcare, .farm {
      transform: translateY(110%);
      opacity: 0;
    }
    .insurance, .bfsi, .property, .bpk {
      transform: translateY(-110%);
      opacity: 0;
    }
    .industryShowcase {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 60px 0;
    }
    .industryShowcase .ind {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: start;
      column-gap: 10px;
      width: 100%;
      flex-wrap: wrap;
/*      background: rgb(255,255,255);
      background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 60%, rgba(239,239,239,1) 100%);*/
      border-radius: 25px;
    }
    .industryShowcase .ind .industry {
      width: calc(33% - 10px);
      background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 60%, rgba(239,239,239,1) 100%);
      border-radius: 25px;
    }
    .industryShowcase .ind .industry {
      flex-direction: column-reverse;
    }
    .industry .industry_description {
      min-height: 100px;
    }
  /* INDUSTRIES SHOWCASE END */

  /* WHITE PAPERS */
    .whitePapers {
      flex-direction: row;
      column-gap: 10%;
      background: none;
      box-shadow: none;
      border-radius: 0;
      align-items: center;
      padding: 60px 25px;
      justify-content: center;
      background: white;
      margin: 0;
    }
    .whitePaper {
      flex-direction: row !important;
      align-items: center;
    }
    .whitePapers .whitePapers_info {
      padding: 0 25px 0 0;
    }
    .whitePapers .whitePapers_info .whitePapers_title {
      color: black;
    }
    .whitePapers .whitePapers_info .whitePapers_description {
      display: flex;
      color: black;
    }
    .whitePapers img {
      width: 50%;
      border-radius: 25px;
    }
  /* WHITE PAPERS END */

  /* CTA BAR */
    .cta_bar {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    } 
    .cta_left {
      width: 300px;
    }
    .cta_right {
      width: 285px;
    }
  /* CTA BAR END */
}
@media only screen and (min-width: 1366px) {
    .productShowcase .product_slider {
    }
    .productShowcase .product_slider .product_details {

    }
    .productShowcase .product_slider .product_name {
    }
  /* INDUSTRIES SHOWCASE, WHITE PAPERS */
    .industryShowcase .ind, .whitePaper {
      width: calc(100% - 7%);
      margin: 0 5%;
    }
  /* INDUSTRIES SHOWCASE END */
}