.image-text-list {
  padding-top: 40px;
  padding-bottom: 40px;
  color: #5E5E5E;
}
@media (min-width: 768px) {
  .image-text-list {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.image-text-list__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .image-text-list__content {
    gap: 80px;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .image-text-list__content.image-text-list__content--reverse {
    flex-direction: row-reverse;
  }
}

.image-text-list__content-left,
.image-text-list__content-right {
  flex: 1;
}

.image-text-list__content-left > .sticky-wrapper {
  position: sticky;
  top: 160px;
}
.image-text-list__content-left > .sticky-wrapper.has-screenshot {
  padding-bottom: 100px;
}
.image-text-list__content-left > .sticky-wrapper > img {
  max-width: 90%;
  object-fit: contain;
  border-radius:20px;
}

/** main screenshot device stuff */

.image-text-list__content-left > .sticky-wrapper > .main-device-screen {
  position: relative;
  z-index: 1;
}

.image-text-list__content-left > .sticky-wrapper > .main-device-screen .device-render {
  max-width: 100%;
  object-fit: cover;
}
.image-text-list__content-left> .sticky-wrapper > .main-device-screen .img-fluid {
  object-fit: cover;
  object-position: top center;
}

.image-text-list__content-left > .sticky-wrapper > .main-device-screen.phone .img-fluid {
  position: absolute;
  top: 50%;
  /* bottom: 15px; */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 90%;
  object-fit: cover;
  /* display: block; */
  border-radius: 65px;
}

.image-text-list__content-left > .sticky-wrapper > .main-device-screen.tablet .img-fluid {
  position: absolute;
  top: 50%;
  /* bottom: 0px; */
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(95%);
  height: calc(93%);
  object-fit: cover;
  /* display: block; */
  border-radius: 5px;
}

.image-text-list__content-left> .sticky-wrapper > .main-device-screen.laptop .img-fluid {
  position: absolute;
  top: 50%;
  /* bottom: 0px; */
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(75%);
  height: calc(75%);
  object-fit: cover;
  /* display: block; */
  border-radius: 5px;
}

.image-text-list__content-left > .sticky-wrapper > .main-device-screen.phone {
  transform: translateY(-5%);
  left: 0;
  max-width:580px;
}
.image-text-list__content-left > .sticky-wrapper > .main-device-screen.phone .device-render {
  /* max-width: 200%; */
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.image-text-list__content-left > .sticky-wrapper > .main-device-screen.tablet .device-render {
  /* max-width: 340px; */
  /* transform: translateX(-25%); */
  position: relative;
  z-index: 1;
}
.image-text-list__content-left > .sticky-wrapper > .main-device-screen.laptop .device-render {
  max-width: 100%;
  /* transform: translateX(-25%); */
  position: relative;
  z-index: 1;
}


/** secondary screenshot stuff */
.image-text-list__content-left > .sticky-wrapper > .device-screen {
  position: absolute;
  max-width: 70%;
  top: 100px;
  transform: translateY(25%);
  z-index: 2;
}

.image-text-list__content-left > .sticky-wrapper > .device-screen .device-render {
  max-width: 100%;
  object-fit: cover;
}
.image-text-list__content-left> .sticky-wrapper > .device-screen .img-fluid {
  object-fit: cover;
  object-position: top center;
}

.image-text-list__content-left > .sticky-wrapper > .device-screen.phone .img-fluid {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  /* display: block; */
  border-radius: 30px;
}

.image-text-list__content-left > .sticky-wrapper > .device-screen.tablet .img-fluid {
  position: absolute;
  top: 50%;
  /* bottom: 0px; */
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  object-fit: cover;
  /* display: block; */
  border-radius: 15px;
}

.image-text-list__content-left> .sticky-wrapper > .device-screen.laptop .img-fluid {
  position: absolute;
  top: 50%;
  /* bottom: 0px; */
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 114px);
  height: calc(100% - 82px);
  object-fit: cover;
  /* display: block; */
  border-radius: 5px;
}

@media (max-width: 1499px) {
  .image-text-list__content-left> .sticky-wrapper > .device-screen.laptop .img-fluid {
    width: calc(100% - 90px);
    height: calc(100% - 60px);
  }
}

@media (max-width: 1199px) {
  .image-text-list__content-left> .sticky-wrapper > .device-screen.laptop .img-fluid {
    width: calc(100% - 72px);
    height: calc(100% - 52px);
  }
}

@media (max-width: 991px) {
  .image-text-list__content-left> .sticky-wrapper > .device-screen.laptop .img-fluid {
    width: calc(100% - 54px);
    height: calc(100% - 36px);
  }
}

@media (max-width: 767px) {
  .image-text-list__content-left> .sticky-wrapper > .device-screen.laptop .img-fluid {
    width: calc(100% - 72px);
    height: calc(100% - 49px);
  }
}

@media (max-width: 420px) {
  .image-text-list__content-left> .sticky-wrapper > .device-screen.laptop .img-fluid {
    width: calc(100% - 57px);
    height: calc(100% - 35px);
  }
}


.image-text-list__content-left > .sticky-wrapper > .device-screen.phone .device-render {
  max-width: 200%;
  transform: translateX(-25%);
  position: relative;
  z-index: 1;
}

.image-text-list__content-left > .sticky-wrapper > .device-screen.tablet .device-render {
  /* max-width: 340px; */
  /* transform: translateX(-25%); */
  position: relative;
  z-index: 1;
}
.image-text-list__content-left > .sticky-wrapper > .device-screen.laptop .device-render {
  max-width: 100%;
  /* transform: translateX(-25%); */
  position: relative;
  z-index: 1;
}

.image-text-list__content-right {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.image-text-list__content-right .eyebrow {
  margin-bottom: 1rem
}

.image-text-list__content-heading {
  margin-bottom: 1rem
}

.image-text-list__content-entries {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.image-text-list__content-entry {
  display: flex;
  gap: 20px;
  line-height: 24px;
}

.bg-true-blue {
  background-color: #0070B9;
}

.bg-bright-highlight {
  background-color: #90D9F91A;
  ;
}

.bg-dark-blue {
  background-color: #063354;
}

.image-text-list__content-entry .image-text-list_item-title h4 {
  color:#0070B9;
  font-size:18px;
  line-height:22px;
}

.image-text-list__content-entry .image-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.image-text-list__content-entry img.image-text-list_item-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
