/****************
General
****************/

*, *: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;
}

.sale-text {
  font-weight: 700;
  font-size: 24px;
  margin: 10px 0;
  color: #dd7986;
}

strike {
  color: #000;
}

/****************
 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: 18px;
    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: 15px;
  }
}

@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 img {
    height: 32px;
  }
}

/* End of Navigation */

/****************
Hero
****************/

#hero {
  /* background-color: #FBEEEF; */
  background-color: #f9f9f9;
  color: #333;
  margin-top: 60px;
}

#hero h1 {
  margin-bottom: 10px;
  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: 20px;
}

#video .section-title {
  margin-bottom: 5px;
}

#video .section-title span {
  display: block;
}

#video .section-header p {
  margin-bottom: 16px;
}

#video .videoWrapper {
  margin-top: 20px;
}

#video .video {
  cursor: pointer;
}

#video .cta-container {
  margin-top: 30px;
}

#video .modal {
  background: rgba(0, 0, 0, 0.8);
}

#video button {
  border: 0;
  background-color: transparent;
    outline: 0;
}

#video button.close {
  text-align: right;
  margin-bottom: 36px;
}

#video button img {
  height: 30px;
}

#video .video img {
  height: auto;
}

#video .modal-content {
  background-color: transparent;
  border: 0;
  padding: 0 20px;
}

#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 */

/**********************
Highlight
**********************/

#highlight {
  background-color: #f9f9f9;
}

#highlight .section-title {
  margin-top: 15px;
  font-size: 42px;
}

/**********************
 About
*********************/

#about .section-title {
  margin-bottom: 0;
}

#about .sub-heading {
  font-size: 20px;
  line-height: 26px;
  font-style: italic;
}

#about .twitter-link, #about .twitter-link:hover, #about .twitter-link:visited {
  color: #000;
  text-decoration: none;
}

/**********************
 Image Slider
 *********************/

#img-slider {
  background-color: #f9f9f9;
  padding: 50px 0;
}

#img-slider .section-header {
  margin-bottom: 30px;
  text-align: center;
}

#img-slider .section-header .section-title {
  font-size: 30px;
}

#img-slider img {
  border-left: 6px transparent solid;
}

/* CMD */

/**********************
Testimonials
**********************/

#testimonials {
  background-color: #dd7986;
  text-align: center;
  color: #fff;
  padding: 60px 0 0;
}

#testimonials .section-title {
  color: #fff;
  margin-bottom: -30px;
}

#testimonials img {
  max-width: 230px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 10px;
}

#testimonials .text-area {
  padding: 0 100px 0 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 300px;
  -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");
}

/**********************
Pricing Options
**********************/

#purchase-options {
  text-align: center;
}

#purchase-options .section-header {
  margin-bottom: 60px;
}

/** Row with equal height columns  * */

#purchase-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;
  position: relative;
}

#purchase-options .package.mb-0 {
  margin-bottom: 0;
}

#purchase-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;
}

#purchase-options .package p {
  margin-bottom: 0;
}

#purchase-options .package__header {
  padding: 0;
}

#purchase-options .img-container {
  margin-bottom: 24px;
}

#purchase-options .package__special-text {
  font-size: 21px;
  color: #a2a2a2;
  text-transform: uppercase;
}

#purchase-options .package__price {
  font-size: 23px;
  line-height: 29px;
  font-weight: 700;
  margin: 0 0 20px;
  display: inline-block;
  font-family: "roboto-slab", serif;
}

#purchase-options .package__price strike {
  font-weight: 400;
  color: #9a9a9a;
}

#purchase-options .package__price span {
  color: rgb(170, 170, 170);
  font-size: 12px;
}

#purchase-options .package__header img {
  height: 160px;
  padding-top: 30px;
}

#purchase-options .package__body p {
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
}

#purchase-options .package__body p:not(:last-child) {
  margin-bottom: 8px;
}

#purchase-options .package__body-details {
  list-style: none;
  padding: 0 10px;
  margin: 0;
}

#purchase-options .package__title {
  font-size: 20px;
  font-family: "roboto-slab", serif;
  color: #000;
  padding: 0 10px;
  text-transform: capitalize;
}

#purchase-options .package__title span {
  display: block;
  font-size: 16px;
  margin: 12px 0;
  color: #A27742;
  font-weight: 300;
}

#purchase-options .sale {
  position: absolute;
  top: -20px;
  left: -12px;
  display: inline-block;
  background: #dd7986;
  color: white;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  vertical-align: middle;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

#purchase-options .sale:before, #purchase-options .sale:after {
  content: "";
  position: absolute;
  background: inherit;
  height: inherit;
  width: inherit;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

#purchase-options .sale:after {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

/**********************
 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 **/

/*************************
 Tablet
*************************/

/*  768 to 991px  */

@media only screen and (max-width: 991px) {
  .container {
    max-width: 800px;
  }
  section {
    padding: 60px 0;
  }
  .navbar-expand-md .navbar-nav .nav-link, .dropdown-item {
    font-size: 12px;
  }
  .navbar-brand img {
    height: 28px;
  }
  #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;
  }
  #highlight {
    text-align: center;
  }
  #testimonials .text-area {
    padding: 0px 50px;
  }
  #about {
    text-align: center;
  }
  #about .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #about img {
    margin-bottom: 20px;
    height: 300px;
  }
  #purchase-options .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #purchase-options .sale {
    top: -20px;
    right: 0;
    left: initial;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
    font-size: 27px;
  }
  #purchase-options .package:not(:last-child) {
    margin-bottom: 70px;
  }
  #purchase-options .package__header img {
    height: 330px;
  }
  #purchase-options .package__price {
    font-size: 41px;
    line-height: 41px;
    margin: 0 0 10px;
  }
  #purchase-options .package__title {
    font-size: 29px;
  }
  #purchase-options .package__title span {
    margin: 12px 0 30px;
  }
}

@media screen and (max-width:768px) {
  #hero img {
    height: 320px;
  }
  .section-title {
    font-size: 38px;
    line-height: 44px;
  }
}

@media only screen and (max-width:767px) {
  .container {
    max-width: 710px;
  }
  .navbar-brand img {
    height: 28px;
  }
  #hero img {
    height: auto;
  }
  #video .section-title span {
    display: initial;
  }
  #testimonials .section-title {
    color: #fff;
    margin-bottom: -10px;
  }
  #testimonials {
    padding: 50px 0 20px;;
  }
  #testimonials .text-area {
    height: 200px;
  }
  #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, #highlight .section-title {
    font-size: 32px;
    line-height: 38px;
  }
  #hero h1 {
    font-size: 38px;
    line-height: 44px;
  }
}

@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) {
  #video .section-title span {
    display: initial;
  }
  #testimonials {
    padding: 40px 0;
  }
  #testimonials .carousel-indicators {
    bottom: 0;
    cursor: pointer;
  }
  #testimonials .carousel-indicators .active {
    background-color: #fff;
  }
  #testimonials .carousel-indicators li:not(.active) {
    background-color: #fff;
    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;
  }
  #testimonials .text-area .quote {
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 575px) {
  p {
    font-size: 15px;
  }
  #about img {
    margin-bottom: 10px;
    height: 170px;
  }
  #testimonials {
    padding: 50px 0;
  }
  #testimonials .carousel-indicators {
    bottom: -20px;
  }

}

/*  End of (Mobile Landscape) */

@media only screen and (max-width:480px) {
  section {
    padding: 50px 0;
  }
  #purchase-options .package__header img {
    height: 220px;
  }
  #purchase-options .package__price {
    font-size: 30px;
  }
  #purchase-options .package__title {
    font-size: 22px;
  }
  #purchase-options .package__title span {
    margin: 12px 0 30px;
  }
}

/*  479px & Below  (Mobile Portrait) */

@media only screen and (max-width:450px) {
  #hero .sub-heading span, #video .sub-heading span {
    display: block;
  }
  #video .section-header {
    margin-bottom: 16px;
}
#highlight .section-title {
    font-size: 28px;
    line-height: 34px;
}
  #testimonials .text-area .quote {
    font-size: 16px;
    margin-bottom: 20px;
  }
  #img-slider .section-header .section-title {
    font-size: 25px;
  }
  #img-slider img {
    border-left: 1px transparent solid;
  }
  .sale-text {
    margin: 10px 0 20px;
  }
  #purchase-options .sale {
    top: -8px;
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    font-size: 19px;
  }
}

@media only screen and (max-width:440px) {
  .section-title {
    font-size: 28px;
    line-height: 34px;
  }
  .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: 5px;
  }
}

@media only screen and (max-width:430px) {
  #mobile-books select {
    font-size: 13px;
    width: 290px;
  }
}

/************************************
 End of Mobile Landscape + Portrait
************************************/
