.twoBtnComponent section {
  padding: 20px 0px 50px;
}

.twoBtnComponent .twoBtn-Wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.twoBtnComponent .twoBtn-Wrapper .twoBtn-tag {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  padding: 16px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 1px solid #ed1c24;
  cursor: pointer;
  border-radius: 4px;
}

.twoBtnComponent .twoBtn-Wrapper .redBtn {
  background-color: #ed1c24;
  color: #ffffff;
}

.twoBtnComponent .twoBtn-Wrapper .redBtn:hover {
  box-shadow: 0 8px 12px rgba(237, 28, 36, 0.2);
  background: #ff3038;
}

.twoBtnComponent .twoBtn-Wrapper .whiteBtn {
  color: #ed1c24;
  background-color: transparent;
}

.twoBtnComponent .twoBtn-Wrapper .whiteBtn:hover {
  background-color: #fff;
  color: #ed1c24;
  box-shadow: 0 8px 12px rgb(237 28 36 / 20%);
}

.twoBtnComponent .smallBtn .twoBtn-Wrapper a,
.twoBtnComponent .smallBtn .twoBtn-Wrapper button {
  padding: 6px 30px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 8px;
  text-transform: none;
}

@media screen and (max-width:767px) {

  .twoBtnComponent .smallBtn .twoBtn-Wrapper a,
  .twoBtnComponent .smallBtn .twoBtn-Wrapper button {
    font-size: 12px;
    line-height: 16px;
    border-radius: 6px;
    padding: 6px 25px;
  }

  .twoBtnComponent .fullwidthBtn {
    width: 100%;
  }
}

.twoBtnComponent .smallBtn .twoBtn-Wrapper {
  position: relative;
  gap: 24px;
}

.twoBtnComponent .smallBtn .twoBtn-Wrapper::before,
.twoBtnComponent .smallBtn .twoBtn-Wrapper::after {
  content: "";
  flex: 1 1 120px;
  max-width: 220px;
  min-width: 60px;
  height: 1px;
  background: #c7d5f2;
  opacity: 0.8;
}

.twoBtnComponent .iconDirection {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .twoBtnComponent section {
    padding: 20px 0px;
  }

  .twoBtnComponent .smallBtn .twoBtn-Wrapper {
    gap: 16px;
  }

  .twoBtnComponent .smallBtn .twoBtn-Wrapper::before,
  .twoBtnComponent .smallBtn .twoBtn-Wrapper::after {
    display: none;
  }
}