/****************
General
****************/

@import url("https://use.typekit.net/tks1eay.css");
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: "droid-serif", serif;
  font-weight: 300;
}

/** Fixing bootstrap columns for safari **/
.row:before, .row:after {
  display: inline-block !important;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background-color: #dd7986;
}

::selection {
  color: #fff;
  background-color: #dd7986;
}

.btn-prime, .btn-prime:link, .btn-prime:visited {
  text-decoration: none;
  padding: 10px 25px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  font-family: "roboto-slab", serif;
  letter-spacing: .8px;
  font-weight: 700;
}

.btn-prime:hover {
  opacity: .9;
}

.btn-prime-dark:hover {
  color: #fff;
}

.btn-prime-dark {
  border: 2px solid #dd7986;
  background-color: #dd7986;
  color: #fff;
}

.btn-prime-dark:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0;
}

.btn-prime-border {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}

.btn-prime-border:hover {
  background-color: transparent;
  color: #dd7986;
}

.section-title {
  font-size: 48px;
  margin-bottom: 10px;
  color: #000;
  text-transform: capitalize;
  font-family: "roboto-slab", serif;
}

.sub-heading {
  font-size: 23px;
  line-height: 28px;
  color: #dd7986;
  text-transform: initial;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

strong {
  font-weight: 700;
}

section {
  padding: 80px 0;
}

/****************
 Navigation
****************/

header {
  background-color: #fff;
}

nav {
  -webkit-box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
  box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
}

.bg-dark {
  background-color: #f8f8f8 !important;
}

.navbar-expand-md .navbar-nav .nav-link, .dropdown-item {
  font-family: "roboto-slab", serif;
  font-weight: 700;
  padding: 10px 15px;
  font-size: 14px;
  color: #212529;
  letter-spacing: .8px;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #3d4246;
  opacity: .9;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #3d4246;
}

.navbar-dark .navbar-nav .nav-link:focus {
  color: #3d4246;
  outline: 0;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
  color: #777;
}

.navbar-nav .dropdown-menu {
  left: auto;
  right: 0;
  border: 0;
  border-radius: 0;
  margin-top: 0;
}

.dropdown-item {
  background-color: #fff;
}

.dropdown-menu.show {
  background-color: #fff;
  padding: 0;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #f8f8f8;
  color: #212529;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #fff;
  background-color: #dd7986;
}

.navbar-brand img {
  height: 40px;
}

.navbar-dark .navbar-toggler {
  color: #323c4f;
  border-color: #323c4f;
  background-color: #323c4f;
}

nav.navbar.navbar-expand-sm.bg-dark.navbar-dark.fixed-top {
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.18);
}

.navbar {
  padding: 0 1rem;
}

.navbar-nav .nav-item {
  line-height: 40px;
}

@media screen and (max-width:767px) {
  .navbar {
    display: none !important;
  }
}

.buy-now {
  background-color: #dd7986;
  color: #fff !important;
}

/****************
Mobile Menu
****************/

header {
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
  box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
}

@media screen and (min-width:768px) {
  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width:767px) {
  input#burger {
    display: none;
  }
  .mobile-menu input+label {
    position: fixed;
    top: 20px;
    right: 20px;
    height: 20px;
    width: 34px;
    z-index: 5;
    padding: 0;
    margin-bottom: 0;
  }
  .mobile-menu input+label span {
    position: absolute;
    width: 100%;
    height: 2px;
    /* top: 50%; */
    top: 60%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: #dd7986;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .mobile-menu input+label span:first-child {
    top: 4px;
  }
  .mobile-menu input+label span:last-child {
    /* top: 17px; */
    top: 20px;
  }
  .mobile-menu label:hover {
    cursor: pointer;
  }
  .mobile-menu input:checked+label span {
    opacity: 0;
    top: 50%;
  }
  .mobile-menu input:checked+label span:first-child {
    opacity: 1;
    -webkit-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  .mobile-menu input:checked+label span:last-child {
    opacity: 1;
    -webkit-transform: rotate(-405deg);
    -ms-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  .mobile-menu input~nav {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
    overflow: hidden;
  }
  .mobile-menu nav {
    position: relative;
  }
  .mobile-menu input~nav>ul {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    /* right: 20%; */
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0;
    margin-bottom: 0;
    width: 80%;
  }
  .mobile-menu input~nav>ul>li {
    opacity: 0;
    /* transition: ease .3s; */
    /* transition-delay: 0s; */
  }
  .mobile-menu input~nav>ul>li>a {
    text-decoration: none;
    text-transform: uppercase;
    color: #212529;
    font-weight: 700;
    display: block;
    padding: 30px;
    font-size: 25px;
  }
  .mobile-menu input~nav>ul>li>a {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    padding: 15px;
  }
  .mobile-menu input:checked~nav {
    height: 100%;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .mobile-links {
    list-style: none;
  }
  .mobile-menu input:checked~nav>ul>li {
    opacity: 1;
  }
  .mobile-menu .navbar-brand {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;
    padding: 10px;
  }
}

@media screen and (max-width:575px) {
  .mobile-menu input~nav>ul>li>a {
    font-size: 18px
  }
}

@media screen and (max-width:450px) {
  .mobile-menu .navbar-brand {
    padding: 15px;
  }
}

@media screen and (max-width:450px) {
  .mobile-menu .navbar-brand img {
    height: 32px;
  }
}

/* End of Navigation */

/****************
Hero
****************/

#hero {
  background-color: #FBEEEF;
  color: #333;
  margin-top: 60px;
}

#hero h1 {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 56px;
  font-weight: 600;
}

#hero .cta-container {
  margin-top: 20px;
}

/****************
Video
****************/

#video {
  background-color: #fff;
  text-align: center;
}

#video .section-header {
  margin-bottom: 26px;
}

#video .section-title {
  margin-bottom: 5px;
}

#video .section-header p {
  margin-bottom: 16px;
}

#video .videoWrapper {
  margin-top: 20px;
}

#video .cta-container {
  margin-top: 30px;
}

#video .modal {
  background: rgba(0, 0, 0, 0.8);
}

#video button.close {
  text-align: right;
  margin-bottom: 36px;
}

#video button img {
  height: 30px;
}

#video .modal-content {
  background-color: transparent;
  border: 0;
}

#video .modal-body {
  padding: 0;
}

/* Modal */

.modal-dialog {
  min-height: calc(100vh - 60px);
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1140px;
    margin: 1.75rem auto;
  }
}

/* End Of video */

/* CMD */

/* Tabs Section */

#tabs {
  padding: 0;
}

#books>nav {
  padding-top: 60px;
  background-color: #FBEEEF;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#books>nav a {
  text-decoration: none;
  text-align: center;
  vertical-align: top;
  font-weight: bold;
  color: #fff;
}

#books .link-title {
  background-color: #dd7986;
  border: 2px solid #dd7986;
  padding: 10px 18px;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 auto;
  width: 150px;
  font-weight: 600;
  font-family: "roboto-slab", serif;
  letter-spacing: .8px;
  font-weight: 700;
}

#books>nav a:hover, #books>nav a:focus {
  color: rgba(255, 255, 255, .9);
}

#books>nav a.selected {
  color: #fff;
  font-weight: bold;
}

#books>nav a img {
  height: 190px;
  margin-bottom: 30px;
}

#books>nav a h2 {
  font-size: 1em;
  padding: 0 5px 26px;
  text-transform: capitalize;
}

#tabs .section-title {
  font-size: 32px;
  margin-bottom: 0;
}

#books .tab-container {
  width: 100%;
}

#books>.content-area>.book-info {
  display: none;
  padding: 80px 0;
}

#books>.content-area>.book-info.selected {
  display: block;
}

#books .content-area h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 60px 0 20px;
}

#books img {
  max-width: 100%;
}

#books .tab-container {
  position: relative;
  text-align: center;
  padding-bottom: 60px;
}

#books .tab-container .selected::after {
  position: absolute;
  top: 98%;
  left: 35%;
  content: '';
  width: 0;
  height: 0;
  border-top: solid 40px #FBEEEF;
  border-left: solid 40px transparent;
  border-right: solid 40px transparent;
}

#books .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#books .column {
  display: block;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

#unveiled .section-title {
  margin-bottom: 16px;
}

#mobile-books {
  text-align: center;
  padding: 30px 0;
  background-color: #f9f9f9;
}

#mobile-books h3 {
  margin-bottom: 20px;
}

#mobile-books select {
  padding: 10px;
  font-size: 14px;
  font-family: "roboto-slab", serif;
}

@media (min-width:671px) {
  #mobile-books {
    display: none;
  }
}

@media (max-width:670px) {
  #books nav {
    display: none;
  }
}

/**********************
Testimonials
**********************/

#testimonials {
  background-color: #f9f9f9;
  text-align: center;
}

#testimonials .section-title {
    margin-bottom: -10px;
}

#testimonials img {
  max-width: 230px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 10px;
}

#testimonials .text-area {
  padding: 0 100px 0 0;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 480px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#testimonials .text-area .quote {
  font-size: 23px;
  margin-bottom: 30px;
  font-style: italic;
}

#testimonials .reviewer {
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 0;
}

#testimonials .reviewer span {
  display: block;
  font-size: 17px;
  letter-spacing: initial;
  text-transform: initial;
  font-weight: 400;
}

#testimonials button {
  background-color: transparent;
  border: none;
}

#testimonials .title {
  margin-bottom: 0;
  font-size: 15px;
}

/* carousel */

#testimonials .carousel-control-next, .carousel-control-prev {
  width: 4%;
}

#testimonials .carousel-control-prev-icon, #testimonials .carousel-control-next-icon {
  height: 40px;
  width: 40px;
  color: #000;
  opacity: .5;
  cursor: pointer;
}

/* Control */

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/**********************
 About
 *********************/

#about {
  background-color: #dd7986;
  color: #fff;
}

#about .section-title {
  color: #fff;
}

#about .sub-heading {
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  font-style: italic;
}

#about .twitter-link, #about .twitter-link:hover, #about .twitter-link:visited {
  color: #fff;
  text-decoration: none;
}

/**********************
Pricing Options
**********************/

#pricing-options {
  text-align: center;
}

#pricing-options .section-header {
  margin-bottom: 35px;
}

/** Row with equal height columns  * */

#pricing-options .package {
  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-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  margin: 0 15px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

#pricing-options .package.mb-0 {
  margin-bottom: 0;
}

#pricing-options .package__btn {
  display: inline-block;
  margin-top: auto;
  padding: 14px;
  color: #fff;
  background-color: #dd7986;
  border: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  font-family: "roboto-slab", serif;
  letter-spacing: .8px;
  font-size: 16px;
}

#pricing-options .package p {
  margin-bottom: 0;
}

/* #pricing-options .package:not(:last-child) .package__header {
  padding: 20px 15px;
} */

#pricing-options .package__header {
  padding: 0;
}

/* #pricing-options .package:not(:last-child) .package__header {
  padding: 20px 15px;
} */

/* #pricing-options .package__header:last-child {
  padding-bottom: 0;
} */

#pricing-options .img-container {
  margin-bottom: 24px;
}

#pricing-options .package__special-text {
  font-size: 21px;
  color: #a2a2a2;
  text-transform: uppercase;
}

#pricing-options .package__price {
  font-size: 23px;
  line-height: 29px;
  font-weight: 700;
  margin: 0 0 20px;
  display: inline-block;
  font-family: "roboto-slab", serif;
}

#pricing-options .package__price strike {
  font-weight: 400;
}

#pricing-options .package__price span {
  color: rgb(170, 170, 170);
  font-size: 12px;
}

#pricing-options .package__header img {
  height: 160px;
  padding-top: 30px;
}

#pricing-options .package__body {
  /* padding: 26px 10px; */
  /* border-top: 1px solid #ddd; */
}

#pricing-options .package__body p {
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
}

#pricing-options .package__body p:not(:last-child) {
  margin-bottom: 8px;
}

#pricing-options .package__body-details {
  list-style: none;
  padding: 0 10px;
  margin: 0;
}

#pricing-options .package__title {
  font-size: 20px;
  font-family: "roboto-slab", serif;
  color: #000;
  padding: 0 10px;
  text-transform: capitalize;
}

#pricing-options .package__title span {
  display: block;
  font-size: 16px;
  margin: 12px 0;
  color: #A27742;
  font-weight: 300;
}

/**********************
 Footer
 *********************/

footer {
  padding: 40px 15px;
  background-color: #000;
}

footer p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}

/** MEDIA QUERIES **/

@media only screen and (max-width: 1199px) {
  #books .tab-container .selected::after {
    left: 35%;
  }
}

/*************************
 Tablet
*************************/

/*  768 to 991px  */

@media only screen and (max-width: 991px) {
  .container {
    max-width: 800px;
  }
  section {
    padding: 60px 0;
  }
  #hero {
    text-align: center;
  }
  #hero .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #hero .img-container {
    margin-bottom: 40px;
  }
  #hero .img-container {
    margin-bottom: 20px;
  }
  #books .tab-container .selected::after {
    left: 32%;
  }
  #books>nav a img {
    height: 140px;
  }
  #books .book-info img {
    height: 400px;
  }
  #tabs {
    text-align: center;
  }
  #testimonials .text-area {
    padding: 0px 50px;
  }
  #about {
    text-align: center;
  }
  #about img {
    margin-bottom: 20px;
    height: 300px;
  }
  #pricing-options .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #pricing-options .package:not(:last-child) {
    margin-bottom: 50px;
  }

  #pricing-options .package__header img {
    height: 330px;
}
#pricing-options .package__price {
    font-size: 41px;
    line-height: 41px;
    margin: 0 0 10px;
}
#pricing-options .package__title {
    font-size: 29px;
}
#pricing-options .package__title span {
    margin: 12px 0 30px;
}
}

@media only screen and (max-width:767px) {
  .container {
    max-width: 710px;
  }
  #books .tab-container .selected::after {
    left: 30%;
  }
  #tabs .book-cover {
    margin-bottom: 40px;
  }

  #testimonials .section-title {
    margin-bottom: 30px;
}
  #testimonials .text-area {
    height: 400px;
  }
  #testimonials .carousel-control-next, .carousel-control-prev {
    width: 7%;
  }
  #testimonials .text-area .quote {
    font-size: 18px;
  }
}

@media only screen and (max-width: 710px) {
  .section-title {
    font-size: 36px;
  }
  #hero h1 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 670px) {
  #books>nav a img {
    height: 103px;
  }
}

@media only screen and (min-width: 601px) {
  #testimonials .carousel-indicators {
    display: none;
  }
}

/******************************
 Mobile Landscape + Portrait
******************************/

/*  480px to 767px  (Mobile Landscape) */

@media only screen and (max-width: 600px) {
  #testimonials .section-title {
    margin-bottom: 15px;
}
#testimonials .section-title {
    margin-bottom: 0;
}
#testimonials .text-area {
    height: 473px;
}
  #testimonials .carousel-indicators {
    bottom: -20px;
    cursor: pointer;
}
  #testimonials .carousel-indicators .active {
    background-color: #dd7986;
  }
  #testimonials .carousel-indicators li:not(.active) {
    background-color: #dd7986;
    opacity: .5;
  }
  #testimonials .carousel-indicators li {
    margin-right: 10px;
    margin-left: 10px;
  }
  #testimonials .carousel-control-next, .carousel-control-prev {
    display: none;
  }
  #testimonials .text-area {
    padding: 0;
  }
}

@media only screen and (max-width: 575px) {
  p {
    font-size: 15px;
  }
  #about img {
    margin-bottom: 10px;
    height: 170px;
  }
}

@media only screen and (max-width: 575px) {
  /* #testimonials .text-area {
    justify-content: initial;
  } */
}

/* @media only screen and (max-width: 710px) {
  .section-title {
      font-size: 28px;
  }
} */

/*  End of (Mobile Landscape) */

@media only screen and (max-width:480px) {
  section {
    padding: 50px 0;
}
  #books .book-info img {
    height: 250px;
  }
  #tabs .book-cover {
    margin-bottom: 16px;
  }
  #pricing-options .package__header img {
    height: 220px;
}
#pricing-options .package__price {
    font-size: 30px;
}
#pricing-options .package__title {
    font-size: 25px;
}
#pricing-options .package__title span {
    margin: 12px 0 30px;
}
}

/*  479px & Below  (Mobile Portrait) */

@media only screen and (max-width:450px) {
  #testimonials .text-area .quote {
    font-size: 16px;
    margin-bottom: 20px;
  }
  #testimonials .carousel-indicators {
    bottom: -30px;
}
}

@media only screen and (max-width:440px) {
  .section-title {
    font-size: 28px;
  }
  .sub-heading {
    font-size: 18px;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 38px;
  }
  #about .sub-heading {
    font-size: 17px;
    line-height: 23px;
  }
  #about .section-title {
    margin-bottom: 3px;
  }
  #mobile-books select {
    font-size: 15px;
    width: 350px;
    padding-left: 0;
    font-weight: 700;
  }
}

/*  End of (Mobile Portrait) */
@media only screen and (max-width:375px) {
  #testimonials .section-title {
      margin-bottom: 20px;
  }
}

@media only screen and (max-width:360px) {
  #testimonials .text-area {
    height: 482px;
  }
}

@media only screen and (max-width:430px) {
  #mobile-books select {
    font-size: 13px;
    width: 290px;
  }
}

/************************************
 End of Mobile Landscape + Portrait
************************************/
