/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Ubuntu:wght@300;400;500;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Ubuntu:wght@300;400;500;700&display=swap');*/
/* Normal Arrow, injects an array as a character so that it will appear rght after the text */
.text-with-two-buttons-module {
  text-align: center;
}
@media (max-width: 1199px) {
  .text-with-two-buttons-module {
    text-align: left;
  }
}
.text-with-two-buttons-module .two-btn-module_heading {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .text-with-two-buttons-module .two-btn-module_heading {
    margin-bottom: 30px;
  }
}
.text-with-two-buttons-module .two-btn-module_heading h2 {
  font-size: 42px;
  line-height: 56px;
  color: #001C3A;
  position: relative;
}
.text-with-two-buttons-module .two-btn-module_heading h2:after {
  content: "";
  width: min(150px, 100%);
  height: 10px;
  background: #DF1F2C;
  position: absolute;
  bottom: -30px;
  right: 50%;
  transform: translateX(50%);
}
@media (max-width: 1199px) {
  .text-with-two-buttons-module .two-btn-module_heading h2 {
    --font-size: 42px;
    --line-height: 56px;
    --font-vs-line-height-diff: calc(var(--line-height) - var(--font-size));
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: #2D2D2D;
    position: relative;
  }
}
@media (max-width: 1199px) and (max-width: 991px) {
  .text-with-two-buttons-module .two-btn-module_heading h2 {
    --font-size: 28px;
    --line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .text-with-two-buttons-module .two-btn-module_heading h2:before {
    content: "";
    background: #DF1F2C;
    height: calc(100% - var(--font-vs-line-height-diff));
    width: 10px;
    position: absolute;
    top: calc(0.5 * var(--font-vs-line-height-diff));
    left: -40px;
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .text-with-two-buttons-module .two-btn-module_heading h2:before {
    left: -20px;
  }
}
@media (max-width: 1199px) {
  .text-with-two-buttons-module .two-btn-module_heading h2:after {
    display: none;
  }
}
.text-with-two-buttons-module .two-btn-module_text {
  color: #2D2D2D;
  margin-bottom: 40px;
}
.text-with-two-buttons-module .two-btn-module_btn-section {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .text-with-two-buttons-module .two-btn-module_btn-section {
    justify-content: flex-start;
    column-gap: 40px;
  }
}
.text-with-two-buttons-module .two-btn-module_btn-section a {
  min-width: 200px;
}