/* Variables
Variables that the other CSS sections depend upon
*/
{% include '../../css/variables/_colors.css' %}

/* ==== DESKTOP ==== */

.bs-industries {
  padding-top: 127px;
  display: block;
  height: 300vh;
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 991px) {
  .bs-industries {
    display: none !important;
  }
}

.bs-industries__sticky {
  height: calc(100vh - 157px);
  position: sticky; 
  top: 157px;
  overflow: visible;
  min-height: 600px;
}


.bs-industries__inner {
  display: flex;
  flex: 1;
  width: 100%;
  padding: 0 24px;
  opacity: 0.5;
}
/* @media (max-width: 991px) {
  .bs-industries__inner {
    display: block;
    margin-bottom: 50px;
  }
} */

.bs-industries__inner__left {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
/* @media (max-width: 991px) {
  .bs-industries__inner__left {
    width: 100%;
    display: block;
  }
} */

.bs-industries__inner__left__image-1,
.bs-industries__inner__left__image-2,
.bs-industries__inner__left__image-3,
.bs-industries__inner__left__image-4,
.bs-industries__inner__left__image-5,
.bs-industries__inner__left__image-6,
.bs-industries__inner__left__image-7,
.bs-industries__inner__left__image-8  {
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  background-size: cover;
  border: 4px solid #000;
}

.bs-industries__inner__left__image-1 {
  height: 140px;
  width: 140px;
  border-color: #ffe3db;
  z-index: 4;
  /* transform: translate(-60px, -60px); */
  transform: translate(-40px, 320px);
}

.bs-industries__inner__left__image-2 {
  height: 146px;
  width: 146px;
  border-color: #e3e3e3;
  z-index: 3;
  /* transform: translate(-250px, 30px); */
  transform: translate(-200px, 320px);
}

.bs-industries__inner__left__image-3 {
  height: 127px;
  width: 127px;
  border-color: #dce3fa;
  z-index: 2;
  /* transform: translate(-200px, 200px); */
  transform: translate(-160px, 230px);
}

.bs-industries__inner__left__image-4 {
  height: 110px;
  width: 110px;
  border-color: #fde0fb;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-90px, 250px);
}
.bs-industries__inner__left__image-5 {
  height: 140px;
  width: 140px;
  border-color: #fde0fb;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-320px, 270px);
}
.bs-industries__inner__left__image-6 {
  height: 200px;
  width: 200px;
  border-color: #dce3fa;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-240px, 40px);
}
.bs-industries__inner__left__image-7 {
  height: 220px;
  width: 220px;
  border-color: #e3e3e3;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-90px, 30px);
}
.bs-industries__inner__left__image-8 {
  height: 120px;
  width: 120px;
  border-color: #ffe3db;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-290px, 140px);
}

.bs-industries__inner__right {
  width: 60%;
}
/* @media (max-width: 991px) {
  .bs-industries__inner__right {
    width: 100%;
  }
} */

.bs-industries__inner__right p {
  color: #333333;
  letter-spacing: 0.01em;
  font-size: 60px;
  line-height: 1.167em;
}
/* @media (max-width: 991px) {
  .bs-industries__top__right p {
    font-size: 20px;
    max-width: 100%;
  }
} */

.bs-industries__inner__lists {
  display: flex;
  column-gap: 20px;
}

.bs-industries__inner__list {
  list-style-type: none;
  padding: 0;
  margin-top: 50px;
  width: calc(50% - 10px);
}

.bs-industries__inner__list li {
  font-size: 28px;
  line-height: 1.153em;
  padding-left: 1.5em;
  margin-bottom: -0.7em;
  /* margin-bottom: 0.35em; */
  position: relative;
}

.bs-industries__inner__list li .subtext {
  font-size: 20px;
}

.bs-industries__inner__list li::after {
  height: 0.85em;
  width: 0.85em;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
  border: 0.1em solid #fff;
  content: '';
}

.bs-industries__inner__list__left li:nth-of-type(1)::after {
  background: #104ADF;
  border-color: #dbe4fa;
}

.bs-industries__inner__list__left li:nth-of-type(2)::after {
  background: #ec2ee4;
  border-color: #fce0fb;
}

.bs-industries__inner__list__left li:nth-of-type(3)::after {
  background: #F7450D;
  border-color: #ffe3db;
}

.bs-industries__inner__list__left li:nth-of-type(4)::after {
  background: #000;
  border-color: #d9d9d9;
}

.bs-industries__inner__list__right li:nth-of-type(3)::after {
  background: #104ADF;
  border-color: #dbe4fa;
}

.bs-industries__inner__list__right li:nth-of-type(4)::after {
  background: #ec2ee4;
  border-color: #fce0fb;
}

.bs-industries__inner__list__right li:nth-of-type(1)::after {
  background: #F7450D;
  border-color: #ffe3db;
}

.bs-industries__inner__list__right li:nth-of-type(2)::after {
  background: #000;
  border-color: #d9d9d9;
}


/* ==== MOBILE ==== */

.bs-industries-mobile {
  display: none;
  padding-top: 97px;
}
@media (max-width: 991px) {
  .bs-industries-mobile {
    display: block;
  }
}

.bs-industries-mobile__images {
  height: 300px;
  position: relative;
  display: none;
}

.bs-industries-mobile__images__image-1,
.bs-industries-mobile__images__image-2,
.bs-industries-mobile__images__image-3,
.bs-industries-mobile__images__image-4,
.bs-industries-mobile__images__image-5,
.bs-industries-mobile__images__image-6,
.bs-industries-mobile__images__image-7,
.bs-industries-mobile__images__image-8  {
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  background-size: cover;
  border: 4px solid #000;
}

.bs-industries-mobile__images__image-1 {
  height: 140px;
  width: 140px;
  border-color: #ffe3db;
  z-index: 4;
  /* transform: translate(-60px, -60px); */
  transform: translate(-40px, 320px);
}

.bs-industries-mobile__images__image-2 {
  height: 146px;
  width: 146px;
  border-color: #e3e3e3;
  z-index: 3;
  /* transform: translate(-250px, 30px); */
  transform: translate(-200px, 320px);
}

.bs-industries-mobile__images__image-3 {
  height: 127px;
  width: 127px;
  border-color: #dce3fa;
  z-index: 2;
  /* transform: translate(-200px, 200px); */
  transform: translate(-160px, 230px);
}

.bs-industries-mobile__images__image-4 {
  height: 110px;
  width: 110px;
  border-color: #fde0fb;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-90px, 250px);
}
.bs-industries-mobile__images__image-5 {
  height: 140px;
  width: 140px;
  border-color: #fde0fb;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-320px, 270px);
}
.bs-industries-mobile__images__image-6 {
  height: 200px;
  width: 200px;
  border-color: #dce3fa;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-240px, 40px);
}
.bs-industries-mobile__images__image-7 {
  height: 220px;
  width: 220px;
  border-color: #e3e3e3;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-90px, 30px);
}
.bs-industries-mobile__images__image-8 {
  height: 120px;
  width: 120px;
  border-color: #ffe3db;
  z-index: 1;
  /* transform: translate(-60px, 140px); */
  transform: translate(-290px, 140px);
}

.bs-industries-mobile p {
  font-size: 39px;
}

.bs-industries-mobile__lists {
  display: flex;
  column-gap: 20px;
}

@media (max-width: 767px) {
  .bs-industries-mobile__lists {
    display: block;
    margin-top: 30px;
  }
}

.bs-industries-mobile__list {
  list-style-type: none;
  padding: 0;
  margin-top: 50px;
  width: calc(50% - 10px);
}

@media (max-width: 767px) {
  .bs-industries-mobile__list {
    width: 100%;
    margin: 0;
  }
}

.bs-industries-mobile__list li {
  font-size: 28px;
  line-height: 1.153em;
  padding-left: 1.5em;
  margin-bottom: 0.35em;
  position: relative;
}

.bs-industries-mobile__list li::after {
  height: 0.85em;
  width: 0.85em;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  border: 0.1em solid #fff;
  content: '';
}

.bs-industries-mobile__list__left li:nth-of-type(1)::after {
  background: #104ADF;
  border-color: #dbe4fa;
}

.bs-industries-mobile__list__left li:nth-of-type(2)::after {
  background: #ec2ee4;
  border-color: #fce0fb;
}

.bs-industries-mobile__list__left li:nth-of-type(3)::after {
  background: #f7450e;
  border-color: #ffe3db;
}

.bs-industries-mobile__list__left li:nth-of-type(4)::after {
  background: #000;
  border-color: #d9d9d9;
}

.bs-industries-mobile__list__right li:nth-of-type(3)::after {
  background: #104ADF;
  border-color: #dbe4fa;
}

.bs-industries-mobile__list__right li:nth-of-type(4)::after {
  background: #ec2ee4;
  border-color: #fce0fb;
}

.bs-industries-mobile__list__right li:nth-of-type(1)::after {
  background: #F7450D;
  border-color: #ffe3db;
}

.bs-industries-mobile__list__right li:nth-of-type(2)::after {
  background: #000;
  border-color: #d9d9d9;
}


/** STAGING GLOBAL FLUID MAX **/
.hs-content-id-134910709071 .dnd-section>.row-fluid {
  max-width: 1480px;
}
/** STAGING ONLY **/
.hs-content-id-134910709071 .bs-industries, 
.hs-content-id-134910709071 .bs-industries__sticky {
  height: auto;
  margin-bottom: 50px;
}
.hs-content-id-134910709071 .bs-industries__inner {
  opacity: 1;
}
.hs-content-id-134910709071 .bs-industries__inner__list li {
  margin-bottom: 0;
}
.hs-content-id-134910709071 .bs-industries__inner__list li span {
  opacity: 1 !important;
}