: root {
  --color-headings: #242630;
  --color-lead: #242630;
  --color-bodycopy: #3B3F51;  
}

.page-center {
  /*   max-width:1140px; */
  margin:0 auto;
  float:none;
  width:100%;
  position:relative;
  padding-left: 15px;
  padding-right: 15px;
}
.EQ_Showcase_01Outer {
  /*     position: relative; */
  width: 100%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}

.EQ_Showcase_01Outer video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.EQ_Showcase_01Overlay {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.EQ_Showcase_01_cards_OuterList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
  gap:30px 0px;
}
.EQ_Showcase_01_cards_inner {
  transition: all .6s ease;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
}
.EQ_Showcase_01_cards_inner:hover {
  transform: scale(1.05);
}
.EQ_Showcase-popup_outer {
  display: none;
}
.modalBody_bottom_section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.modalBody_bottom_leftCol {
  flex: 0 70%;
}
.modalBody_bottom_rightCol {
  flex: 0 30%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.industry_list_inner span {
  background: #f6f6fe;
  border: 1px solid #e6e9fc;
  box-sizing: border-box;
  color: #4f545d;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  padding: 6px 9px;
}
.modalBody_bottom_content h3 {
    font-weight: 300 !important;
}
/*button Style*/
.modalBody_topSection button.chevron-left{
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  background: #f6f5f5;
  border: 1px solid rgba(229, 231, 234, .5);
  border-radius: 100%;
  box-shadow: 15px 10px 20px 0 rgba(0, 0, 0, .4);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  font-size: 0;
  font-size: 1rem;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  left:3%;
  transform: translateY(-50%);
  transition: all .6s ease;
  width: 40px;
  z-index: 1;
}
button.chevron-right{
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  background: #f6f5f5;
  border: 1px solid rgba(229, 231, 234, .5);
  border-radius: 100%;
  box-shadow: 15px 10px 20px 0 rgba(0, 0, 0, .4);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  font-size: 30px;
  font-size: 0;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  right:50px;
  transform: translateY(-50%);
  transition: all .6s ease;
  width: 40px;
  z-index: 1;
}

.EQ_Showcase-popup_outer.active {
  display: block;
}

body.active {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8); 
  overflow:hidden;
}




.EQ_Showcase-popup_outer {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
  opacity: 0;
}


/* SHOW MODAL */
.EQ_Showcase-popup_outer.active {
  display: flex;
  opacity: 1;
}

body.active .overlay-new.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.5s ease;
  overflow-y:scroll;

}
.EQ_Showcase-popup_outer.fade-out {
  opacity: 0;
  pointer-events: none;
}
.EQ_Showcase-popup_inner {
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  animation: slideUp 0.3s ease;
  position: relative;
  z-index: 10000;

}

.EQ_Showcase-popup_outer.active {
  display: block;
  /*   position: fixed; */
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  z-index: 9999;
  position:absolute;
  width:900px;
}
.industry_list_outer {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.bottom_rightCol_title {
  text-align: right;
}
.Eq_showcase_image img {
  cursor: pointer;
}
.EQ_Showcase_01Outer .modalBody_bottom_button {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.modalBody_bottom_section {
  padding: 30px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}
.close-btn .bar {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  top: 50%;
  left: 0;
  transform-origin: center;
}
.close-btn .bar:first-child {
  transform: rotate(45deg);
}
.close-btn .bar:last-child {
  transform: rotate(-45deg);
}
.modalBody_top_image img {
  width: 100%;
}

.showcase_bar_button_outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .showcase_bar_button:first-child a {
    padding: 0 1.5625rem;
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 1.0);
}
.showcase_bar_button:nth-child(2) a {
    font-size: 16px;
    color: #ffffff;
    background-color: #242530;
    border: 2px solid #fff;
    opacity: 100;
    border-radius: 7px;
    display: inline-block;
    font-weight: 600;
    margin: 0 auto;
    padding: 14px 25px;
    text-decoration: none;
    transition: background-color .3s ease, color .3s ease;
    min-height: 3.5rem;
} */
@media (max-width: 768px) {
  .EQ_Showcase-popup_inner {
    margin: 0;
    border-radius: 0;
  }
}



@media(max-width:1300px){
  .EQ_Showcase-popup_inner{
    max-width:100%;
  }
  .EQ_Showcase-popup_outer.active {
    display: block;
    left: 20px;
    max-width: 100%;
    top: 100px;
    transform: unset;
    z-index: 9999;
    right: 20px;
    position:absolute;
  }
  .EQ_Showcase-popup_modal-content {
    /*     height:600px;
    overflow-y:scroll; */
  }
}
@media(max-width:991px){
  .EQ_Showcase_01_cards_inner {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .EQ_Showcase_01_cards_OuterList{
    justify-content:center; 
  }
  .modalBody_topSection button.chevron-left, 
  .modalBody_topSection button.chevron-right {
    top: 20%;

  } 
  .close-btn {
    right: 25px;
  }
}
@media(max-width:769px){
  .modalBody_bottom_section {
    display: block;
  }
  .EQ_Showcase_01_cards_inner {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .EQ_Showcase_01_cards_OuterList{
    justify-content:center; 
  }
  .EQ_Showcase-popup_outer.active {
    top:30px;   
  }
  .modalBody_bottom_button a{
    padding: 14px 30px !important;
  }
  .modalBody_bottom_rightCol {
    padding-top: 30px;
  }
  .EQ_Showcase-popup_outer.active {
    max-width: 90%;
}
}
@media(max-width:481px){
  .modalBody_topSection button.chevron-left, 
  .modalBody_topSection button.chevron-right {
    height: 20px;
    top: 20%;
    width: 20px;
  } 
  button.chevron-right {
    right: 20px;
    top: 25%;
  }
  .close-btn {
    cursor: pointer;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 6px;
    width: 20px;
    z-index: 10;
  }
}
@media(max-width:381px){
  .close-btn {
    right: 0px;
    top: 0px;
  }
  .modalBody_topSection button.chevron-left, 
  .modalBody_topSection button.chevron-right {
    height: 20px;
    top: 13%;
    width: 20px;
  } 
  button.chevron-right {
    right: 20px;
    top: 13%;
  }
}
