/*-- -------------------------- -->
<---       Pricing Page Styles      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing-hero {
    padding: var(--sectionPadding);
    background-color: rgba(58, 10, 204, 0.1);
    position: relative;
    padding-top: 10rem;
  }
  #pricing-hero .cs-background-image {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    z-index: -2;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    opacity: 1;
  }
  #pricing-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
  #pricing-hero .cs-content {
    width: 100%;
    text-align: center;
  }
  #pricing-hero .cs-title {
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    max-width: 40rem;
    margin: 0 auto;
  }
  #pricing-main {
    padding: var(--sectionPadding);
    background-color: #fff;
  }
  #pricing-main .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #pricing-main .cs-content {
    text-align: center;
    gap: 0rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pricing-main .cs-topper {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
  }
  #pricing-main .cs-title {
    color: var(--headerColor);
    margin-bottom: 1rem;
  }
  #pricing-main .cs-text {
    color: var(--bodyTextColor);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  #pricing-main .cs-pricing-simple {
    margin-top: 2rem;
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto 0;
  }
  #pricing-main .cs-pricing-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
  }
  #pricing-main .cs-pricing-line:last-child {
    border-bottom: none;
  }
  #pricing-main .cs-service {
    color: var(--headerColor);
    font-weight: 600;
    font-size: 1.1rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #pricing-main .cs-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 80px;
    text-align: right;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #pricing-main .cs-pricing-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  #pricing-main .cs-pricing-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 400px;
  }
  #pricing-benefits .cs-benefits-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #pricing-hero {
    padding-top: 12rem;
  }
  #pricing-hero .cs-background-image {
    height: auto;
    top: -120px;
    right: 0;
  }
  #pricing-benefits .cs-benefits-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
