.offersection {
  background: #1f438e;
  position: fixed;
  bottom: 10px;
  right: 0%;
  left: 0;
  margin: 0 auto;
  z-index: 99999;
  width: calc(100% - 30px);
  max-width: 1530px;
  padding: 35px 40px;
}

.offer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.offer-inner-wraper {
  width: 1000px;
  align-items: center;
}

.offer-call {
  width: calc(100% - 1000px);
  max-width: 230px;

  & .btn-white-border:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--themecolor);
  }
}

.closeoffer {
  position: absolute;
  top: 20px;
  right: 20px;
}

.offercontentdiv {
  position: relative;
  width: calc(100% - 81px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  align-items: center;

  & .heading-40 {
    font-size: clamp(20px, 20px + (30 - 20) * ((100vw - 375px) / (1920 - 375)), 30px);
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.32;
  }
}

@media (max-width: 1439.98px) {
  .offer-inner-wraper {
    width: 830px;
  }

  .offer-call {
    width: calc(100% - 830px);
  }
}

@media (max-width: 1199.98px) {
  .offer-inner-wraper {
    width: 670px;
  }

  .offersection {
    padding: 25px;
  }

  .offer-call {
    width: calc(100% - 670px);
  }
}

@media (max-width: 991.98px) {
  .offersection {
    padding: 20px;
  }

  .offer-inner-wraper {
    width: 470px;
  }

  .offer-call {
    width: calc(100% - 470px);
    max-width: 190px;

    & .btn-white-border {
      padding: 15px;
    }
  }
}

@media (max-width: 767.98px) {
  .offer-wrapper {
    row-gap: 12px;
  }

  .offer-inner-wraper {
    width: 100%;
    justify-content: center;
    row-gap: 12px;
    text-align: center;
  }

  .offer-call {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .offercontentdiv {
    width: 100%;
  }

  .offer-call {
    & .btn-white-border {
      padding: 15px 20px;
    }
  }

  .closeoffer {
    top: 4px;
    right: 12px;
  }

  .closeoffer img {
    width: 12px;
  }
}