@charset "UTF-8";
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/open-sans-v35-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/fonts/open-sans-v35-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/open-sans-v35-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Condensed", serif;
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/RobotoCondensed-Regular.ttf") format("truetype");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Condensed", serif;
  font-style: normal;
  font-weight: bold;
  src: url("../assets/fonts/RobotoCondensed-SemiBold.ttf") format("truetype");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --plyr-color-main: #3b9667;
  --plyr-control-icon-size: 44px;
}

/*

     @include grid-md {
        min-height: 40vh;
    }

*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
.prs-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.prs-hero {
  background-color: #2B3240;
  padding: 80px 0 72px;
}
@media only screen and (max-width: 767.98px) {
  .prs-hero {
    padding: 56px 0 48px;
  }
}
.prs-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.prs-hero__title {
  font-family: "Roboto Condensed", serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.prs-hero__title span {
  color: #3b9768;
}
@media only screen and (max-width: 767.98px) {
  .prs-hero__title {
    font-size: 2rem;
  }
}
.prs-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 12px;
}
.prs-hero__meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.prs-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b9768;
  background-color: rgba(59, 151, 104, 0.18);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.prs-pain {
  background-color: #1e2736;
  padding: 72px 0;
}
@media only screen and (max-width: 767.98px) {
  .prs-pain {
    padding: 48px 0;
  }
}
.prs-pain__intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.prs-pain__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.prs-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .prs-pain__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .prs-pain__grid {
    grid-template-columns: 1fr;
  }
}
.prs-pain__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.prs-pain__item::before {
  content: "✗";
  display: block;
  font-size: 0.75rem;
  color: #e94181;
  margin-bottom: 6px;
  font-weight: 700;
}

.prs-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.prs-section--alt {
  background: #FBFAF8;
}
@media only screen and (max-width: 767.98px) {
  .prs-section {
    padding: 52px 0;
  }
}
.prs-section__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b9768;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prs-section__eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #3b9768;
  flex-shrink: 0;
}
.prs-section__title {
  font-family: "Roboto Condensed", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2B3240;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767.98px) {
  .prs-section__title {
    font-size: 1.5rem;
  }
}
.prs-section p {
  font-size: 1rem;
  color: #535964;
  line-height: 1.8;
  margin-bottom: 20px;
}

.prs-callout {
  background: rgba(59, 151, 104, 0.06);
  border-left: 3px solid #3b9768;
  border-radius: 0 6px 6px 0;
  padding: 16px 22px;
  font-size: 0.9rem;
  color: #535964;
  line-height: 1.65;
  margin: 4px 0 0;
}
.prs-callout strong {
  color: #2B3240;
}

.prs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.prs-list li {
  position: relative;
  font-size: 0.95rem;
  color: #535964;
  line-height: 1.65;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid #DEDAD2;
}
.prs-list li:first-child {
  border-top: 1px solid #DEDAD2;
}
.prs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: rgba(59, 151, 104, 0.15);
  border-radius: 50%;
}
.prs-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 7px;
  border-right: 2px solid #3b9768;
  border-bottom: 2px solid #3b9768;
}

.prs-built {
  background: #2B3240;
  padding: 80px 0;
}
@media only screen and (max-width: 767.98px) {
  .prs-built {
    padding: 52px 0;
  }
}
.prs-built__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b9768;
  margin-bottom: 12px;
}
.prs-built__title {
  font-family: "Roboto Condensed", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767.98px) {
  .prs-built__title {
    font-size: 1.5rem;
  }
}
.prs-built__intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}
.prs-built__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .prs-built__grid {
    grid-template-columns: 1fr;
  }
}
.prs-built__feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.prs-built__feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.prs-built__feature-text h4 {
  font-family: "Roboto Condensed", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.prs-built__feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.prs-cta {
  background-color: #FFFFFF;
  background-image: linear-gradient(rgba(59, 151, 104, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 151, 104, 0.02) 1px, transparent 1px);
  background-size: 12px 12px;
  border-top: 4px solid #3b9768;
  padding: 88px 24px;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .prs-cta {
    padding: 60px 24px;
  }
}
.prs-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.prs-cta__title {
  font-family: "Roboto Condensed", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2B3240;
  margin-bottom: 14px;
  line-height: 1.15;
}
@media only screen and (max-width: 767.98px) {
  .prs-cta__title {
    font-size: 1.75rem;
  }
}
.prs-cta__desc {
  font-size: 1rem;
  color: #7C8088;
  line-height: 1.7;
  margin-bottom: 32px;
}
.prs-cta__btn {
  display: inline-block;
  background: #3b9768;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.prs-cta__btn:hover {
  opacity: 0.85;
}
.prs-cta__note {
  font-size: 0.8rem;
  color: #7C8088;
  margin-top: 14px;
}

/*# sourceMappingURL=persuasive-layout.css.map */
