:root {
  --abspsy-blue: #0099cc;
  --abspsy-red: #ff3333;
  --abspsy-yellow: #f7dd82;
}
.main-flex {
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}
.prices-header {
  padding: 2rem 1.5rem 1.5rem;
}
.prices-header h2 {
  font-size: clamp(1.5rem, 0.964rem + 1.714vw, 2.25rem);
  font-weight: 900;
  color: var(--abspsy-blue);
}
.prices-header h3 {
  font-size: clamp(1.125rem, 0.857rem + 0.857vw, 1.5rem);
}
.prices-hero-main {
  background-color: #ccc;
  background-image: url('../images/prices-hero.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 60px;
}
.prices-hero-main-content {
  padding: 35px 2rem 120px;
}
.prices-hero-main-content h1 {
  font-size: clamp(2.25rem, 1.714rem + 1.714vw, 3rem);
  font-weight: 300;
  color: #fff;
}
.prices-hero-main-content h1 span:first-child {
  display: block;
}
.prices-hero-main-content h1 strong {
  font-weight: 900;
  display: inline-block;
  position: relative;
}
.prices-hero-main-content h1 strong:before {
  content: '';
  width: 100%;
  height: 5px;
  background: #f7dd82;
  background: -moz-linear-gradient(left,  #f7dd82 0%, #fa951f 100%);
  background: -webkit-linear-gradient(left,  #f7dd82 0%,#fa951f 100%);
  background: linear-gradient(to right,  #f7dd82 0%,#fa951f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7dd82', endColorstr='#fa951f',GradientType=1 );
  left: 0;
  top: 90%;
  position: absolute;
  display: block;
}
.prices-hero-buttons {
  color: #fff;
}
.price-page-btn {
  margin: 4px;
  padding: 0.75rem 2rem;
  background: #33c3f3;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.price-page-btn:hover,
.price-page-btn:focus {
  background: var(--abspsy-blue);
  color: #fff;
  text-decoration: none;
}
.prices-hero-extra {
  width: 70%;
  margin: -70px auto 0;
  padding: 1rem 50px 0.75rem;
  min-height: 140px;
  background: var(--abspsy-yellow);
  border-radius: 70px;
  border: 10px solid #fff;
  font-family: 'Roboto Condensed', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prices-hero-extra strong {
  display: block;
}
.prices-hero-extra strong span {
  color: #f33;
  display: inline-block;
  position: relative;
}
.prices-hero-extra strong span:before {
  content: '';
  width: 100%;
  height: 5px;
  background: #f33;
  left: 0;
  top: 90%;
  position: absolute;
  display: block;
}
.prices-main {
  padding: 1.5rem;
  background-image: url('../images/sun-moon-face.webp');
  background-repeat: no-repeat;
  background-position: center -100px;
}
.flex-row {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.col-50 {
  padding: 3rem 1rem;
  margin: 1.5rem;
  width: calc(50% - 3rem);
  border-radius: 1rem;
  border: 1px solid var(--abspsy-blue);
  background: rgba(255,255,255,0.5);
  position: relative;
}
.prices-main .col-50 h3,
.prices-main .col-50 p {
  padding-bottom: 1rem;
  font-weight: 700;
}
.prices-main .col-50 h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.prices-main .col-50 h2 span {
  color: #f33;
  font-size: 36px;
  font-weight: 400;
  display: block;
}
.prices-main .col-50 h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.price-phone h3 span,
.price-web h3 span {
  margin-top: 0;
  display: block;
  font-size: 1rem;
}
.price-phone a {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.5rem;
  color: var(--abspsy-blue);
  text-decoration: underline;
}
.price-extra p {
  margin-bottom: 0;
  font-weight: 400 !important;
}
.price-extra p span {
  padding: 0 5px;
  display: inline-block;
  font-weight: 700 !important;
  background: #e5e5e5;
}
.price-great h3 span {
  display: inline-block;
  position: relative;
}
.price-great h3 span:before {
  content: '';
  width: 100%;
  height: 5px;
  background: var(--abspsy-blue);
  left: 0;
  top: 90%;
  position: absolute;
  display: block;
}
.pricing {
  margin: 0 auto;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto Condensed', sans-serif;
}
.pricing-row {
  padding: 4px 0;
  display: flex;
  font-size: 24px;
}
.price-name {
  font-weight: 700;
}
.price-name,
.price-amount {
  flex-shrink: 0;
}
.price-amount {
  color: #f33;
}
.price-space {
  margin: 0 6px;
  flex-grow: 1;
  position: relative;
}
.price-space:after {
  content: '';
  width: 100%;
  height: 1px;
  border-top: 2px dotted #f33;
  left: 0;
  bottom: 7px;
  position: absolute;
}
.price-burst {
  width: 230px;
  top: -100px;
  position: absolute;
}
.price-burst img {
  width: 100%;
}
.price-web .price-burst {
  top: -130px;
  right: -30px;
}
.price-great .price-burst {
  width: 250px;
  top: -110px;
}

@media (max-width: 1200px) {
  .main-flex {
    padding: 0;
  }
  .prices-hero-main {
    border-radius: 0;
  }
  .prices-hero-extra {
    width: 100%;
    padding: 1rem 1rem 0.75rem;
    border-radius: 0;
    border: none;
    border-top: 10px solid #fff;
  }
  .prices-main {
    padding: 1.5rem 0;
    background-image: none;
  }
  .flex-row .col-50 {
    width: calc(100% - 3rem);
  }
  .price-phone .price-burst,
  .price-great .price-burst {
    left: -60px;
  }
  .price-web {
    margin-top: 3rem;
  }
  .price-web .price-burst {
    right: -60px;
  }
}