.stripBanner .container {
  max-width: 1060px;
  width: 100%;
}

.stripBanner .linearBg {
  background: linear-gradient(92.95deg, #002d60 2.48%, #005d95 97.58%);
}

.stripBanner .sticky {
  position: sticky;
  top: 500px;
  z-index: 10;
}

.stripBanner section {
  padding-block: 20px;
}

.stripBanner .stripBanner_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.stripBanner .stripBanner_wrapper .left-text {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0px !important;
}

.stripBanner .stripBanner_wrapper .blue-text {
  color: #69d2ff;
  font-weight: 700;
  font-size: 20px;
}

/* right side btns */
.stripBanner .btns-container {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
}

.stripBanner .calBtn {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  background-color: #ed1c24;
  color: #fff;
  border: 1px solid #ed1c24;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 4px;
  outline: none;  
  cursor: pointer;
}

.stripBanner .talkToBtn, .stripBanner .product-download-btn {
  text-decoration: underline;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background: transparent;
  border: none;
}

.stripBanner .calBtn:hover {
  box-shadow: 0 8px 12px rgb(237 28 36 / 20%);
  background: #ff3038;
}

.stripBanner .image-text {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.stripBanner .image-text img {
  width: 40px;
  height: auto;
}

.stripBanner .discount-wrapper {
  position: absolute;
  left: 40px;
  top: -35px;
}

.stripBanner .discount-bubble {
  position: relative;
  background-color: #ed1c24;
  color: #fff;
  font-weight: 600;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 20px;
  position: relative;
  display: inline-block;
}

.stripBanner .discount-bubble p {
  margin-bottom: 0px !important;
}

.stripBanner .discount-bubble::after {
  content: '';
  position: absolute;
  left: 5px;
  bottom: -20px;
  width: 0;
  height: 0;
  border-width: 30px 6px 0 6px;
  border-style: solid;
  border-color: #ed1c24 transparent transparent transparent;
  transform: rotate(45deg);
}

@media screen and (min-width: 767px) {
  .stripBanner .sticky .stripBanner_wrapper .left-text {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .stripBanner .container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 767px) {
  .stripBanner .stripBanner_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .stripBanner .stripBanner_wrapper .left-text {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .stripBanner .stripBanner_wrapper .blue-text {
    font-size: 14px;
  }

  .stripBanner .calBtn {
    width: 100%;
    text-align: center;
  }

  .stripBanner .btns-container {
    flex-direction: column;
  }

  .stripBanner .sticky .stripBanner_wrapper .left-text {
    text-align: left;
  }

  .stripBanner .sticky .btns-container {
    width: 100%;
    flex-direction: column-reverse;
  }
}

/* three btns container */
.stripBanner .extraButtons .stripBanner_wrapper {
  flex-wrap: nowrap;
}

.stripBanner section.extraButtons {
  padding-block: 25px;
}

.stripBanner .extraButtons .image-text {
 width: 40%;
}

.stripBanner .extraButtons .image-text .left-text {
  line-height: 1.5;
}

.stripBanner .extraButtons .calBtn {
  padding: 12px;
}

@media screen and (max-width:767px) {
  .stripBanner .extraButtons .image-text {
    width: 100%;
  }
}