

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }


html {
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box;
  padding: 0 3rem;
  overflow-x: hidden;
  background-color: #fbfcdd;
  background-color: #fff; }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }
body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #222; }
.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--white {
  background-color: #fff;
  color: #999; }
  .btn--white::after {
    background-color: #fff; }

.btn--green {
  background-color: #C10202;
  color: #fff; }
  .btn--green::after {
    background-color: #C10202; }

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.5s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #C10202;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #DA0202;
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  background-color: #DA0202;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.btn-submit {
  float: right; }

.footer {
  background-color: #eee;
  background-image: linear-gradient(to right bottom, rgba(247, 247, 247, 0.7), rgba(238, 238, 238, 0.7)), url("/img/body-backg.jpg");
  color: #000;
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5rem;
  padding-top: 1rem; }
  .footer__main a {
    display: inline-block;
    margin: 10px;
    font-weight: 700; }
    .footer__main a:link, .footer__main a:visited {
      text-decoration: none;
      color: #222;
      padding: 0 2rem;
      background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
      background-size: 230%;
      transition: all .4s; }
    .footer__main a:hover, .footer__main a:active {
      background-position: 100%;
      color: #C10202;
      transform: translateX(1rem);
      font-weight: 700; }
  .footer__secondary {
    padding-top: 1rem;
    font-size: 1.8rem; }
    .footer__secondary a {
      text-decoration: none;
      color: #222;
      padding: 0 2rem;
      display: inline-block; }
      .footer__secondary a:link, .footer__secondary a:visited {
        background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
        background-size: 230%;
        transition: all .4s; }
      .footer__secondary a:hover, .footer__secondary a:active {
        background-position: 100%;
        color: #C10202;
        transform: translateX(1rem);
        font-weight: 700; }
  .footer__copyright a {
    padding-bottom: 2rem;
    text-decoration: none;
    color: #C10202;
    font-size: 1.8rem; }

.form {
  width: 100%;
  padding: 3rem 5rem 3rem 2rem;
  margin: 0 auto;
  text-align: left;
  color: #000;
  background: #eee;
  border-radius: .5rem; }
  .form__group {
    width: 60%;
    margin: 0 auto; }
    .form__group:not(:last-child) {
      margin-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .form__group {
        width: 75%; } }
    @media only screen and (max-width: 37.5em) {
      .form__group {
        width: 90%; } }
  .form__input {
    width: 100%;
    font-family: inherit;
    color: inherit;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin-top: 3rem;
    border-radius: 3px;
    background-color: #fff;
    border: none;
    border-bottom: 3px solid #777;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    display: block;
    transition: all .3s; }
    .form__input:focus {
      outline: none;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
      border-bottom: 3px solid #A80202; }
    .form__input:focus:invalid {
      border-bottom: 3px solid #DA0202; }
    .form__input:focus:valid {
      border-bottom: 3px solid #A80202; }
    .form__input::-webkit-input-placeholder {
      color: #777; }
  .form__label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2rem;
    margin-top: .7rem;
    display: block;
    transform: translateY(-7rem);
    transition: all .3s; }
  .form__input:placeholder-shown + .form__label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem); }

.navigation {
  width: 100%; }
  .navigation__top {
    background-color: rgba(238, 238, 238, 0.8);
    height: 3.6rem;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative; }
    @media only screen and (max-width: 37.5em) {
      .navigation__top {
        position: fixed;
        z-index: 4; } }
  .navigation__link {
    display:flex;
    float: right; }
    .navigation__link:link, .navigation__link:visited {
      padding: .2rem 2rem;
      color: #222;
      text-decoration: none;
      background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
      background-size: 230%;
      transition: all .4s; }
      @media only screen and (max-width: 37.5em) {
        .navigation__link:link, .navigation__link:visited {
          padding: .2rem 1rem; } }
    .navigation__link:hover, .navigation__link:active {
      background-position: 100%;
      color: #C10202;
      transform: translateX(1rem); }
  .navigation__main {
    width: 100%;
    background: url("/img/body-backg.jpg");
    background-size: cover;
    background-repeat: no-repeat; }
    .navigation__main--logo {
      margin-top: 2rem;
      max-width: 100%;
      margin-left: 5rem;
      border-radius: .5rem;
      opacity: .95; }
      @media only screen and (max-width: 75em) {
        .navigation__main--logo {
          margin-left: 2rem; } }
      @media only screen and (max-width: 56.25em) {
        .navigation__main--logo {
          margin-left: 0; } }
      @media only screen and (max-width: 56.25em) {
        .navigation__main--logo {
          margin-left: 0;
          margin-top: 4rem; } }
    .navigation__main--search {
      display: flex;
      justify-content: center;
      padding: 0;
      text-align: center;
      align-items: center; }
      @media only screen and (max-width: 37.5em) {
        .navigation__main--search {
          padding: 10px 0 0 0;
          /* flex-direction: column;*/
        }
      }
      .navigation__main--search input[type=text] {
        font-family: inherit;
        color: #000;
        font-size: 2rem;
        padding: 1.5rem 2rem;
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        border-bottom: 3px solid transparent;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        width: 70%;
        transition: all .3s; }
        @media only screen and (max-width: 37.5em) {
          .navigation__main--search input[type=text] {
            /* width: 90%; */
          }
        }

      .navigation__main--search input[type=submit] {
        font-family: inherit;
        color: inherit;
        font-size: 2rem;
        background-color: #DA0202;
        padding: 1.5rem 2rem;
        border-radius: 4px;
        margin-left: 2rem;
        color: #fff;
        border: none;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all .3s; }
        @media only screen and (max-width: 37.5em) {
          .navigation__main--search input[type=submit] {
            /* width: 75%; */
            margin: 0.5rem 0;
            /* padding: 1rem 1.5rem; */
            font-weight: 700; } }
        .navigation__main--search input[type=submit]:hover {
          transform: translateY(-0.3rem);
          box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
        .navigation__main--search input[type=submit]:active, .navigation__main--search input[type=submit]:focus {
          outline: none;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          transform: translateY(0); }
  .navigation__motto {
    font-family: "Lobster", cursive;
    font-size: 2.5rem;
    color: #C10202;
    float: left; }
    @media only screen and (max-width: 75em) {
      .navigation__motto {
        float: none; } }
    @media only screen and (max-width: 37.5em) {
      .navigation__motto {
        display: none; } }
    .navigation__motto--paragraph {
      margin-left: 0.2rem;
      padding-left: 0.2rem;
      text-align: left; }

.shopping-cart__preview {
  margin-top: 2rem;
  color: #000;
  width: 100%;
  height: 12rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 37.5em) {
    .navigation__main--logo{
       display:none;
     }
    .shopping-cart__preview {
      display:none;
      margin-right: 0; } }
  .shopping-cart__preview--title {
    color: #C10202;
    font-weight: 700;
    font-size: 2rem;
    margin-left: 2rem; }
  .shopping-cart__preview--content {
    font-size: 2.5rem;
    margin-left: 2rem; }
    .shopping-cart__preview--content span {
      font-weight: 700; }
    .shopping-cart__preview--content div:last-of-type {
      color: #777; }
  .shopping-cart__preview--icon {
    display: flex;
    justify-content: center;
    float: right;
    margin-right: 2rem;
    margin-top: -3rem;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    border-radius: 50%;
    background-color: #DA0202;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all .3s; }
    .shopping-cart__preview--icon i {
      margin-top: 50%;
      margin-left: 50%;
      transform: translateX(-50%) translateY(-50%); }
    .shopping-cart__preview--icon:hover {
      transform: translateY(-0.3rem);
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
    .shopping-cart__preview--icon:active {
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      transform: translateY(0); }

.side-menu__open {
  display: none; }
  @media only screen and (max-width: 37.5em) {
    .side-menu__open {
      display: inline-block; } }

@media only screen and (max-width: 75em) {
  #main-logo {
    width: 40% !important; } }

@media only screen and (max-width: 37.5em) {
  #main-logo {
    width: 100% !important; } }

#main-form-search {
    width: 100% !important; 
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 75em) {
  #main-form-search {
    width: 100% !important; 
  }
}
  
#shopping-cart-preview {
  width: 40%;
  margin-right: 5rem;
  float: right; }
  @media only screen and (max-width: 75em) {
    #shopping-cart-preview {
      width: 50% !important;
      float: right; } }
  @media only screen and (max-width: 56.25em) {
    #shopping-cart-preview {
      width: 50% !important;
      float: right; } }
  @media only screen and (max-width: 37.5em) {
    #shopping-cart-preview {
      width: 100% !important;
      margin: 0 auto; } }
 
.row {
  max-width: 100%;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 1rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 1%; } }
  @media only screen and (max-width: 56.25em) {
    .row {
//      max-width: 90vw;
//      padding: 0 3rem;

 } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 3%; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 3%; } }
    @media only screen and (max-width: 37.5em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 3%) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 3%) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 3%) / 3) + 3%); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 3%) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 3%) / 4) + 3%); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 3%) / 4) + 2 * 3%); }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 3%) / 5); }
  .row .col-2-of-5 {
    width: calc(2 * ((100% - 4 * 3%) / 5) + 3%); }
  .row .col-3-of-5 {
    width: calc(3 * ((100% - 4 * 3%) / 5) + 3 * 3%); }
  .row .col-4-of-5 {
    width: calc(4 * ((100% - 4 * 3%) / 5) + 4 * 3%); }

.header__promo {
  width: 100%;
  padding: 2rem 0 0 0;
  font-size: 2.5rem;
  font-weight: 700;
  float: right;
  border-bottom: 0.3rem solid #777; }
  .header__promo--item {
    margin: 0 1rem;
    float: right; }
    @media only screen and (max-width: 37.5em) {
      .header__promo--item {
        margin: 0 .2rem;
        font-size: 2rem; }
        .header__promo--item:nth-last-of-type(4) {
          display: none; } }
    .header__promo--item a:link,
    .header__promo--item a:visited {
      display: inline-block;
      background-color: #222;
      padding: 0 .5rem;
      border-radius: 1rem 1rem 0 0;
      text-decoration: none;
      color: #fff;
      background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #eee 50%);
      background-size: 230%;
      transition: all .4s; }
    .header__promo--item a:hover,
    .header__promo--item a:active {
      background-position: 100%;
      color: #C10202;
      transform: translateX(1rem) translateY(-0.1rem); }

.gallery {
  width: 100%;
  background-color: #fbfcdd; 
  background-color: #f7f7f7; 

}

  .gallery__frame {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    box-shadow: 0.5rem 0 1rem rgba(0, 0, 0, 0.1); }
    .gallery__frame::after {
      content: "";
      clear: both;
      display: table; }
    .gallery__frame--header {
      width: 100%;
      min-height: 5.6rem;
      margin-top: 2rem;
      background-color: #fff;
      color: #C10202;
      box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
      line-height: 1;
      padding-top: 0.5rem;
      padding-left: 0.5rem;
    }
      @media only screen and (max-width: 56.25em) {
        .gallery__frame--header {
          min-height: 4rem; } }
      .gallery__frame--header a {
        text-decoration: none;
        color: #A80202; }
    .gallery__frame--title {
      width: 100%;
      padding-left: 1rem;
      padding-bottom: 0.4rem;
      text-align: left !important; }
      .gallery__frame--title h1 {
        text-align: left !important; }
        @media only screen and (max-width: 56.25em) {
          .gallery__frame--title h1 {
            font-size: 2.4rem; } }
      .gallery__frame--title h1 a {
        text-decoration: none;
        color: #C10202; }
    .gallery__frame--more {
      padding: 1rem;
      text-align: right !important; }
      @media only screen and (max-width: 56.25em) {
        .gallery__frame--more {
          padding: 0; } }
    .gallery__frame--items {
      width: 100%;
      display: flex;
      flex-wrap: wrap; }
    @media only screen and (max-width: 75em) {
      .gallery__frame--slideshow {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; }
        .gallery__frame--slideshow .book {
          flex: 0 0 auto; } }
    
@media only screen and (max-width: 37.5em) {
  #left-pane {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    opacity: 0.95;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .4s; } }
      
@media only screen and (min-width: 37.5em) and (max-width: 56.25em) {
  #left-pane {
    width: 24% !important; } }

@media only screen and (min-width: 56.25em) {
  #left-pane {
    width: 19% !important; } }

.product-pane {
  min-height: 45rem;
  color: #000;
  font-size: 1.5rem; }
  .product-pane__cover {
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    background-color: #fff; }
  .product-pane__image {
    display: block;
    width: 100%;
    margin: 0 auto;
    object-fit: contain; }
    @media only screen and (max-width: 37.5em) {
      .product-pane__image {
        width: 80%;
    } }
  .product-pane__specifications {
    background-color: #fff;
    #min-height: 25rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); }
    .product-pane__specifications h1 {
      color: #A80202;
      font-size: 2rem; }
    .product-pane__specifications a {
      font-size: 1.5rem !important; }
  .product-pane__cta {
    background-color: #fff;
    min-height: 20rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: relative; }
    .product-pane__cta a {
      font-size: 1.5rem !important; }
    .product-pane__cta--buy {
      text-align: center;
      background-color: #DA0202;
      position: relative;
      margin: 2rem;
      padding: 1rem;
      top: 0;
      right: 0;
      border-radius: 5px;
      text-transform: uppercase;
      color: #fff;
      cursor: pointer;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
      transition: .3s; }
      .product-pane__cta--buy a:link,
      .product-pane__cta--buy a:visited {
        text-decoration: none;
        color: #fff;
        font-weight: 700; }
      .product-pane__cta--buy:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
      .product-pane__cta--buy:active {
        transform: translateY(-0.3rem);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); }

@media only screen and (min-width: 700px) {
  .parent {
    display: flex;
    flex-direction: row-reverse;
  }
  .child {
    width: 40%;
    order:2;
  }
  .child:first-child {
    width: 30%;
    #order:3;
  }
  .child:last-child {
    width: 30%;
    #order:1;
  }

}

// Color styling
  .parent1 {
  
  }

  .child1 {
    margin: 5px;
  }


.phone-number{
  display: inline-block;
}
  @media only screen and (max-width: 75em) {
    .phone-number {
      display: none; 
    }
  }

.boldfont {
 font-weight: bold;
}

.h1font {
    font-size: 2em;
    margin-block-start: 0.67em;
    font-weight: bold;
}

.fade-in-text {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}