.grdnt-pink:not(.overly) {
  background-image: -webkit-linear-gradient(90deg, #f5c0f5 0, #ff6efe 100%);
  background-image: linear-gradient(90deg, #f5c0f5 0%, #ff6efe 100%);
}

.grdnt-grey:not(.overly) {
  background: #F9F9FB;
}

.sec-pad-lg {
  padding: 120px 0;
}

.video-over .sec-pad-lg {
  padding: 60px 0;
}

.video-over .commonTile {
  margin-top: -20px;
}


.step-section {
  margin-bottom: 100px;
  line-height: 1.5;
}

.spce {
  clear: both;
  height: 20px;
  width: 100%
}

.spce.xs {
  height: 5px
}

.spce.sm {
  height: 10px
}

.ft-list li {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ft-list li [class*="icon-"] {
  height: 50px;
  width: 50px;
}

.ft-list li .icon-img {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  background: #fbe1fb;
}

.ft-list li img {
  width: 60%;
  margin: auto;
}

.ft-list li .text {
  flex: 1;
  padding-left: 10px;
  padding-top: 6px;
}

.video-wrapper {
  position: relative;
}

.video-wrapper.rad {
  border-radius: 20px;
}

.video-over {
  position: relative;
}

.video-wrapper .video-phone-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  opacity: 0.9;
}

.btn-over {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.btn-round {
  transition: .5s;
  -webkit-transition: .5s;
  position: relative;
  border-radius: 50%;
  font-size: 22px;
  height: 80px;
  width: 80px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  margin: 0 auto
}

.btn-round:not([class*="grdnt-"]) {
  background: #fff;
}

.btn-round:after {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  display: block;
  background: rgba(255, 255, 255, .8);
  width: 80%;
  height: 80%;
  animation: grow-scnd 1.5s infinite;
  -o-animation: grow-scnd 1.5s infinite;
  -moz-animation: grow-scnd 1.5s infinite;
  -webkit-animation: grow-scnd 1.5s infinite;
  -ms-animation: grow-scnd 1.5s infinite;
  animation-delay: 0s;
  animation-timing-function: ease-in-out
}

.btn-round:hover {
  color: #fff;
}

@keyframes grow-scnd {
  0% {
    width: 0;
    height: 0;
    opacity: 1
  }

  50% {
    width: 0;
    height: 0;
    opacity: 1
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0
  }
}

.btn-round span {
  color: #fff;
  font-size: 18px
}



/* loan-calculator */

.loan-calculator h4 {
  font-size: 32px;
  font-weight: 700;
}

.loan-calculator .spce {
  font-size: 13px;
  color: #869ab8;
}

.loan-calculator h5 {
  font-size: 16px;
  font-weight: 700;
}


.amount-container {
  padding: 20px;
  width: 90%;
  max-width: 550px;
  float: right;

  background: #FFFFFF;
  box-shadow: 0px 21px 64px 0px rgba(0, 85, 255, 0.07);
  border-radius: 16px 16px 16px 16px;
}

.amount-title {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

.amount-name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.current-amount {
  font-size: 16px;
  font-weight: 600;
  color: #FF00FF;
  padding: 3px 8px;
  border-radius: 12px;
  min-width: 120px;
  text-align: right;
}

.slider-container {
  margin: 10px 0 15px 0;
  position: relative;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f48df4 0%, #FF00FF 100%);
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.slider:hover {
  transform: scale(1.02);
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  border: 2px solid #FF00FF;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  border: 2px solid #FF00FF;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #666;
  font-size: 12px;
}

.term-selector {
  display: flex;
  gap: 6px;
  margin: 12px 0 15px 0;
  flex-wrap: wrap;
}

.term-btn {
  flex: 1;
  min-width: calc(25% - 6px);
  padding: 8px 10px;
  border: 1.5px solid #ddd;
  background-color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.term-btn:hover {
  border-color: #f48df4;
  color: #f48df4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 17, 203, 0.15);
}

.term-btn.active {
  background: linear-gradient(90deg, #f48df4 0%, #FF00FF 100%);
  border-color: #f48df4;
  color: white;
  box-shadow: 0 4px 12px rgba(106, 17, 203, 0.1);
}

.amount-list {
  background-color: white;
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #FF00FF;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
}

.amount-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.amount-item:last-child {
  border-bottom: none;
  margin-top: 6px;
}

.amount-item .label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.amount-item .value {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.amount-item .value.total {
  font-size: 16px;
  color: #FF00FF;
}

.apply-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #6a11cb 0%, #FF00FF 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(106, 17, 203, 0.3);
}

.apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(106, 17, 203, 0.4);
}

.apply-button:active {
  transform: translateY(0);
}


@media (max-width: 480px) {
  .amount-container {
    padding: 15px;
    width: 100%;
  }

  .current-amount {
    min-width: 100px;
    font-size: 11px;
    padding: 2px 6px;
  }

  .term-btn {
    min-width: calc(50% - 5px);
  }
}