/*------------------------------------*\
    INDEX
\*------------------------------------*/

/*
GENERAL
UTILITY CLASSES
    SPACING
LAYOUT
COLORS
TYPOGRAPHY

COMPONENTS
    BUTTONS
    QUOTES
MENU
FORMS
FOOTER
*/

/*
    * Broken window theory (The Pragmatic Programmer - David Thomas and Andrew Hunt)
*/

/*------------------------------------*\
    $GENERAL
\*------------------------------------*/
:root {
  --lightRed: #f8d5c4;
  --main: var(--lightRed);

  --red: #951a1d;
  --snowWhite: #f5ebe4;
  --orange: #efac8f;

  --white: #fff;
  --lightGray: #f2f2f2;
  --darkGray: #a3a3a3;
  --black: #200301;
  --trueBlack: #000000;

  --accent: var(--red);
  --accentBG: var(--red);
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  box-sizing: border-box;
}

/*------------------------------------*\
    $GENERAL
\*------------------------------------*/

/*------------------------------------*\
    $UTILITY CLASSES
\*------------------------------------*/
.img {
  max-width: 100%;
 height: auto;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.center {
  margin: 0 auto;
}

.flex-center {
  display: flex;
  align-items: center;
}

/*------------------------------------*\
    $SPACING
\*------------------------------------*/
.text-center {
  text-align: center;
}
.center{
    margin: 0 auto;
}
.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.px-1 {
  padding-left: 1em;
  padding-right: 1em;
}

.px-2 {
  padding-left: 2em;
  padding-right: 2em;
}

.px-3 {
  padding-left: 3em;
  padding-right: 3em;
}

.px-4 {
  padding-left: 4em;
  padding-right: 4em;
}

.px-5 {
  padding-left: 5em;
  padding-right: 5em;
}

.py-1 {
  padding-top: 1em;
  padding-bottom: 1em;
}

.py-2 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.py-3 {
  padding-top: 3em;
  padding-bottom: 3em;
}

.py-4 {
  padding-top: 4em;
  padding-bottom: 4em;
}

.py-5 {
  padding-top: 5em;
  padding-bottom: 5em;
}

.pt-1 {
  padding-top: 1em;
}

.pt-2 {
  padding-top: 2em;
}

.pt-3 {
  padding-top: 3em;
}

.pt-4 {
  padding-top: 4em;
}

.pt-5 {
  padding-top: 5em;
}

.pb-1 {
  padding-bottom: 1em;
}

.pb-2 {
  padding-bottom: 2em;
}

.pb-3 {
  padding-bottom: 3em;
}

.pb-4 {
  padding-bottom: 4em;
}

.pb-5 {
  padding-bottom: 5em;
}

.pl-1 {
  padding-left: 1em;
}

.pl-2 {
  padding-left: 2em;
}

.pl-3 {
  padding-left: 3em;
}

.pl-4 {
  padding-left: 4em;
}

.pl-5 {
  padding-left: 5em;
}

.pr-1 {
  padding-right: 1em;
}

.pr-2 {
  padding-right: 2em;
}

.pr-3 {
  padding-right: 3em;
}

.pr-4 {
  padding-right: 4em;
}

.pr-5 {
  padding-right: 5em;
}

.mx-auto {
  margin: 0 auto;
}

.my-auto {
  margin: auto 0;
}

.mx-1 {
  margin-left: 1em;
  margin-right: 1em;
}

.mx-2 {
  margin-left: 2em;
  margin-right: 2em;
}

.mx-3 {
  margin-left: 3em;
  margin-right: 3em;
}

.mx-4 {
  margin-left: 4em;
  margin-right: 4em;
}

.mx-5 {
  margin-left: 5em;
  margin-right: 5em;
}

.my-1 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.my-2 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.my-3 {
  margin-top: 3em;
  margin-bottom: 3em;
}

.my-4 {
  margin-top: 4em;
  margin-bottom: 4em;
}

.my-5 {
  margin-top: 5em;
  margin-bottom: 5em;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mt-4 {
  margin-top: 4em;
}

.mt-5 {
  margin-top: 5em;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.ml-1 {
  margin-left: 1em;
}

.ml-2 {
  margin-left: 2em;
}

.ml-3 {
  margin-left: 3em;
}

.ml-4 {
  margin-left: 4em;
}

.ml-5 {
  margin-left: 5em;
}

.mr-1 {
  margin-right: 1em;
}

.mr-2 {
  margin-right: 2em;
}

.mr-3 {
  margin-right: 3em;
}

.mr-4 {
  margin-right: 4em;
}

.mr-5 {
  margin-right: 5em;
}

/*------------------------------------*\
            END $SPACING
        \*------------------------------------*/

/*------------------------------------*\
    END $UTILITY CLASSES
\*------------------------------------*/

/*------------------------------------*\
    $LAYOUT
    Break Points: 54em;
\*------------------------------------*/
.container {
  width: 85%;
  max-width: 65em;
  margin: 0 auto;
}

.column {
  padding: 1em;
}

.column:not(:last-child) {
  padding-right: 16px;
}

.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.flex {
  display: flex;
  /* justify-items: center;
  justify-content: center; */
}

.basis20 {
  flex-basis: 20%;
}

.basis25 {
  flex-basis: 25%;
}

.basis30 {
  flex-basis: 30%;
}

.basis33 {
  flex-basis: 33.333%;
}

.basis40 {
  flex-basis: 40%;
}

.basis50 {
  flex-basis: 50%;
}

.basis60 {
  flex-basis: 60%;
}

.basis70 {
  flex-basis: 70%;
}

.basis80 {
  flex-basis: 80%;
}

.basis100 {
  flex-basis: 100%;
}

.headline {
  flex-basis: 100%;
}

.max-25em {
  max-width: 25em;
}

.max-20em {
  max-width: 20em;
}

.max-15em {
  max-width: 15em;
}
.max-10em {
  max-width: 10em;
}

.image-left {
  margin-right: auto;
}

.image-right {
  margin-left: auto;
}

@media only screen and (max-width: 54em) {
  .split {
    flex-direction: column;
  }

  .column:not(:last-child) {
    padding-right: 0px;
  }

  .column:last-child {
    margin-bottom: 1em;
  }

  .column:first-child {
    margin-top: 1em;
  }

  .basis20,
  .basis25,
  .basis30,
  .basis40,
  .basis50,
  .basis60,
  .basis80 {
    flex-basis: 100%;
    margin: 0 auto;
    max-width: 30em;
  }

  .m-width-300 {
    max-width: 300px;
  }

  .m-width-200 {
    max-width: 200px;
  }

  .image-left,
  .image-right {
    margin-right: auto;
    margin-left: auto;
  }
}

/*------------------------------------*\
    $Colors
\*------------------------------------*/

.bgMain {
  background-color: var(--main);
}
.bgRed {
  background-color: var(--red);
}
.bgLightRed {
    background-color: var(--lightRed);
  }
.bgSnowWhite {
  background-color: var(--snowWhite);
}
.bgOrange {
  background-color: var(--orange);
}

.bgWhite {
  background-color: var(--white);
}

.bgBlack {
  background-color: var(--black);
}

/*------------------------------------*\
    $TYPOGRAPHY
\*------------------------------------*/
p,
li {
  font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 1.1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  font-size: 1.8em;
  padding-bottom: 20px;
}

h3 {
  color: var(--black);
  font-size: 2em;
  /* font-weight: 400; */
  padding-top: 20px;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
  }

p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.text-white {
  color: var(--white);
}

.text-red {
  color: var(--red);
}
.text-white {
  color: var(--snowWhite);
}
.text-darkRed {
  color: var(--orange);
}
/*------------------------------------*\
    END $TYPOGRAPHY
\*------------------------------------*/

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/

/*------------------------------------*\
    $HERO
\*------------------------------------*/

.hero {
  min-height: 50vh;
}

.basketWhiteBg {
  background-image: url("images/basket-pattern.png");
  background-size: 10%;
}
.basketRedBg {
  background-image: url("images/basket2.png");
  background-size: 10%;
}

.svgBG {
  background: url("/images/ray-circle.svg") top right no-repeat,
    url("/images/orange-circle.svg") top left no-repeat;
}

.hero {
  padding-top: 140px;
  padding-bottom: 100px;
}

.first-box {
  flex-basis: 40%;
}

.first-box h3 {
  line-height: 1.3;
  font-size: 3em;
  font-weight: 400;
}

.second-box h3, .second-box2 h3 {
  line-height: 1.3;
  font-size: 1.8em;
  font-weight: 700;
}

.third-box h3 {
  line-height: 1.3;
  font-size: 2.5em;
  font-weight: 500;
}

.second-box-wrapper{
  flex-basis: 25%;
}
.second-box {
  flex-basis: 25%;
}

.second-box2 {
  flex-basis: 25%;
  display: none;
}

.third-box {
  flex-basis: 30%;
}

.hero-box {
  padding: 1em;
  padding-left: 2em;
  -webkit-box-shadow: 3px 7px 30px 2px rgb(61 8 8 / 42%);
  box-shadow: 3px 5px 35px 2px rgba(119, 15, 1, 0.1),
    3px 3px 15px 2px rgba(119, 15, 1, 0.2);
  bottom: 0px;
  position: relative;
  transition: 0.2s;
  border-radius: 5px;
}

.hero-box:hover {
  /* border: 1px solid rgba(156, 31, 0, 0.2); */
  bottom: 20px;
  transition: 0.2s;
}

h1 {
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 5em;
  font-weight: 900;
  /* max-width: 500px; */
}

@media only screen and (max-width: 54em) {
  h1 {
    font-size: 4em;
    padding-bottom: 0.2em;
    /* max-width: 500px; */
  }
  .hide-on-mobile{
      display: none;
  }
}

/*------------------------------------*\
    END HERO
\*------------------------------------*/

/*------------------------------------*\
    $AUTHOR
\*------------------------------------*/

.author_name {
  font-size: 2.2em;
  font-weight: 700;
}

h3 {
  font-size: 3em;
}

.h5 {
  font-size: 1.25em;
  padding-bottom:1em ;
  padding-top: 1em;
}

.book-image {
  position: absolute;
  max-width: 22em;
}

@media only screen and (max-width: 54em) {
  .book-image {
    position: relative;
    max-width: 10em;
  }
}

#more {
  display: none;
}

#myBtn {
  text-decoration: underline;
  color: var(--red);
}

#myBtn:hover {
  color: rgb(249, 83, 58);
}

.author_details {
  color: var(--red);
  font-weight: 500;
  line-height: 2;
}

/*------------------------------------*\
    END AUTHOR
\*------------------------------------*/

/*------------------------------------*\
    $BUTTON
\*------------------------------------*/

.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--buttonTextColor, #fff);
  max-width: 10em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.125rem;
  padding: 0.8em 2em;
  background: var(--accent, black);
  margin: 0.35em;
  border-radius: 50px;
}

.btn:hover,
.btn:focus {
  cursor: pointer;
  opacity: 0.9;
}

.btn-fill {
  max-width: 100%;
  display: block;
}


.btn-white {
    display: inline-block;
    text-decoration: none;
    color: var(--red);
    max-width: 10em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.125rem;
    padding: 0.8em 2em;
    background: var(--snowWhite);
    margin: 0.35em;
    border-radius: 50px;
    -webkit-box-shadow: 8px 8px 22px -5px rgba(71,0,18,1);
    -moz-box-shadow: 8px 8px 22px -5px rgba(71,0,18,1);
    box-shadow: 8px 8px 22px -5px rgba(71,0,18,1);
  }

  .btn-white:hover,
  .btn-white:focus {
    cursor: pointer;
    opacity: 0.9;
  }

  .btn-fill {
    max-width: 100%;
    display: block;
  }
/*------------------------------------*\
     END   $BUTTON
\*------------------------------------*/

/*
----------------------------
START TESTIMONIALS
----------------------------
*/
.testimonial-quote {
  margin-right: 20px;
  margin-bottom: 40px;
  flex-basis: 30%;
}

.testimonial-quote:last-of-type {
  margin-right: 0px;
}

@media only screen and (max-width: 700px) {
  .testimonial-quote {
    flex-basis: 100%;
    margin-right: 0px !important;
  }
}
.testimonial-quote .emph {
  color: var(--darkPurple);
  color: black;
  font-weight: bold;
}

.testimonial-quote-bg:before {
  font-family: Helvetica, "Arial", Times, serif;
  content: '"';
  font-weight: 900;
  width: 60px;
  height: 15px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  font-size: 80px;
  color: var(--accent);
  position: absolute;
  top: -15px;
  left: 4%;
}

.testimonial-quote-bg {
  border-top: 5px solid var(--accent);
  border-bottom: 5px solid var(--accent);
  background-color: white;
  text-align: left;
  position: relative;
  /* background-image: url("puxm-images/white-bg.png"); */
  background-size: cover;
}

.testimonial-quote-inside {
  padding: 20px;
}
/*
END TESTIMONIALS
*/
