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

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: 'Lato', sans-serif;
}

/** Fixing bootstrap columns for safari **/

.row:before, .row:after {
  display: inline-block !important;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background-color: #000;
}

::selection {
  color: #fff;
  background-color: #000;
}

.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;
  letter-spacing: .8px;
  font-weight: 700;
}

.btn-prime:hover {
  opacity: .9;
}

.btn-prime-dark:hover {
  color: #fff;
}

.btn-prime-dark {
  border: 2px solid #000;
  background-color: #000;
  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 #fff;
  color: #fff;
}

.btn-prime-border:hover {
  background-color: transparent;
  color: #fff;
  opacity: .8;
}

.section-title {
  font-size: 42px;
  color: #000;
  text-transform: capitalize;
  font-family: 'Playfair Display', serif;
}

.sub-heading {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: initial;
  margin-bottom: 15px;
}

.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: #000;
}

strike {
  color: #000;
}

.link-dark, .link-dark:hover, .link-dark:visited {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
}

.no-padding {
  padding: 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-weight: 400;
  padding: 10px 15px;
  font-size: 16px;
  color: #6b6b6b;
  font-family: 'Lato', sans-serif;
}

.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;
}

.navbar .container {
  padding: 0 1rem;
}

.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: #000;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

/* .navbar-brand img {
  height: 80px;
} */

.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;
}

.navbar-nav .nav-item {
  line-height: 40px;
}

@media screen and (max-width:767px) {
  .navbar {
    display: none !important;
  }
}

.buy-now {
  background-color: #000;
  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: #000;
    -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: 5px 15px;
  }
}

@media screen and (max-width:575px) {
  .mobile-menu input~nav>ul>li>a {
    font-size: 18px;
  }
}

/* End of Navigation */

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

#hero {
  background-color: #F0F0F0;
  color: #333;
  margin-top: 60px;
  padding: 0 0 80px;
}

#hero .hero-bg {
  padding: 800px 0 40px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, .4))), url(../img/hero2.jpg);
  background-image: -webkit-linear-gradient(left top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero2.jpg);
  background-image: -o-linear-gradient(left top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero2.jpg);
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

#hero .hero-bg .section-title {
  font-size: 44px;
}

#hero .hero-bg .section-title, #hero .hero-bg .sub-heading {
  color: #fff;
}

#hero .hero-bg .sub-heading {
  margin-bottom: 0;
}

#hero .img-container img {
  margin-top: -290px;
}

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

#hero .text-area {
  padding-top: 40px;
}

/****************
Info
****************/

#info {
  padding: 80px 0 100px;
}

#info .section-title {
  font-size: 28px;
  font-style: italic;
  text-transform: inherit;
}

#info .img-container img {
  width: 100%;
}

#info .paragraph {
  font-size: 12px;
  color: #888;
  margin-bottom: 0;
  text-transform: uppercase;
}

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

#highlight {
  padding-top: 0;
}

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

#highlight .img-container {
  margin-top: -200px;
}

#highlight .text-area {
  margin-top: 70px;
}

#highlight .text-area h5 {
  text-transform: uppercase;
  font-size: 16px;
}

/* CMD */

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

#testimonials {
  background-color: #000;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 0, 0, .85)), to(rgba(0, 0, 0, .85))), url(../img/testimonial-bg.jpg);
  background-image: -webkit-linear-gradient(left top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/testimonial-bg.jpg);
  background-image: -o-linear-gradient(left top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/testimonial-bg.jpg);
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/testimonial-bg.jpg);
  background-size: cover;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
}

#testimonials .section-title {
  font-size: 32px;
  color: #fff;
  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: #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: 200px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#testimonials .text-area .quote {
  font-size: 22px;
  margin-bottom: 20px;
  font-style: italic;
}

#testimonials .reviewer {
  font-weight: 900;
  letter-spacing: 3px;
  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-indicators {
  cursor: pointer;
}

#testimonials .carousel-indicators li:not(:last-child) {
  margin-right: 20px;
}

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

#testimonials .carousel-indicators {
  bottom: -20px;
}

/* 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");
}

/**********************
Slideshow
**********************/

#img-slider {
  text-align: center;
  background-color: #F0F0F0;
}

#img-slider .slick-slide:nth-child(4) img {
  border-right: 0;
}

#img-slider .slick-slide img {
  margin: 0 auto;
  border-top: 40px solid #F0F0F0;
  height: 360px;
}

/* #img-slider .slick-slide img:last-child {
  border-right: none;
} */

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

/**********************
Purchase Options
**********************/

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

#purchase-options .sub-heading {
  margin-bottom: 0;
}

#purchase-options .text-area .section-title {
  font-size: 36px;
}

#purchase-options .text-area .sub-heading {
  font-family: "Playfair Display", serif;
}

#purchase-options .other-title h3 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 30px;
}

#purchase-options img {
  height: 130px;
}

#purchase-options .card {
  border-radius: 0;
  text-align: center;
  border: 0;
}

#purchase-options a:hover {
  text-decoration: none;
}

#purchase-options .card h5 {
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-top: 10px;
}

#purchase-options .card h5:hover {
  color: #a5a5a5;
}

#purchase-options .card h5 span {
  display: block;
}

#purchase-options .card-header {
  text-align: center;
  background-color: #f0f0f0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 0;
}

#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;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
  margin: 0 15px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

#purchase-options .package__title {
  font-size: 32px;
  color: rgb(51, 51, 51);
  font-weight: 400;
  margin-bottom: 0;
}

#purchase-options .package__title span {
  display: block;
  font-size: 18px;
  margin-top: 12px;
  color: #A27742;
  font-weight: 300;
  text-transform: uppercase;
}

#purchase-options .package__price {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
}

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

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

#purchase-options .sale {
  position: absolute;
  top: -20px;
  left: -12px;
  display: inline-block;
  background: #000;
  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);
}

/*************************
 CTA- Section
*************************/

#cta {
  background-color: #131313;
  text-align: center;
  padding: 60px 0;
}

#cta .section-title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 25px;
}

/**********************
 Footer
 *********************/

footer {
  padding: 40px 15px;
  background-color: #F0F0F0;
}

footer p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}

/** MEDIA QUERIES **/

@media only screen and (max-width: 1600px) {
  #hero .hero-bg {
    padding: 400px 0 40px;
    background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, .4))), url(../img/hero-tab.jpg);
    background-image: -webkit-linear-gradient(left top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero-tab.jpg);
    background-image: -o-linear-gradient(left top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero-tab.jpg);
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero-tab.jpg);
  }
}

@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 40px;
  }
  /* #hero .hero-bg {
    padding: 200px 0 40px;
  } */
  #hero .hero-bg .section-title {
    font-size: 37px;
  }
  #hero .hero-bg .sub-heading {
    font-size: 22px;
  }
  #hero .img-container img {
    margin-top: -422px;
  }
  #highlight .img-container {
    margin-top: -300px;
  }
  #testimonials .section-title {
    font-size: 38px;
    line-height: 44px;
  }
  #testimonials .carousel-indicators {
    bottom: -41px;
  }
  #testimonials .text-area {
    height: 220px;
  }
  #img-slider .slick-slide img {
    height: 300px;
  }
  #purchase-options .package__title {
    font-size: 25px;
  }
  #purchase-options img {
    height: 105px;
  }
}

@media only screen and (min-width: 992px) {
  #hero .buy-container {
    display: none;
  }
}

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

/*  768 to 991px  */

@media only screen and (max-width: 991px) {
  .container {
    max-width: 95%;
  }
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 36px;
  }
  .navbar-expand-md .navbar-nav .nav-link, .dropdown-item {
    font-size: 15px;
  }
  #hero .hero-bg {
    padding: 220px 0 110px;
  }
  #hero .hero-bg .section-title {
    font-size: 34px;
  }
  #hero .img-container img {
    margin-top: -110px;
    height: 500px;
  }
  #hero .buy-container {
    margin-top: 0;
  }
  #hero .tablet-hide {
    display: none;
  }
  #hero {
    text-align: center;
    padding-bottom: 40px;
  }
  #highlight {
    text-align: center;
  }
  #highlight .text-area {
    margin-top: 20px;
  }
  #highlight .img-container {
    margin-top: -50px;
  }
  #highlight img {
    height: 400px;
  }
  #highlight h5 {
    margin-top: 25px;
  }
  #highlight ul {
    margin: 0 auto 25px;
    max-width: 300px;
    text-align: left;
  }
  #testimonials .text-area {
    height: 262px;
    padding: 0px 50px;
  }
  #img-slider .slick-slide img {
    height: 340px;
  }
  #purchase-options {
    text-align: center;
  }
  #purchase-options .package:not(:last-child) {
    margin-bottom: 70px;
  }
  #purchase-options .package__title {
    font-size: 29px;
  }
  #purchase-options img {
    height: 100px;
  }
  #purchase-options .text-area {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 870px) {
  .navbar-brand img {
    height: 25px;
  }
}

@media screen and (max-width:768px) {
  #hero img {
    height: 320px;
  }
  .section-title {
    font-size: 42px;
    line-height: 44px;
  }
  #info .section-title {
    font-size: 23px;
    line-height: 29px;
  }
  #testimonials .text-area .quote {
    font-size: 27px;
    margin-bottom: 33px;
    font-style: italic;
  }
  #img-slider .slick-slide img {
    height: 300px;
  }
}

@media only screen and (max-width:767px) {
  .container {
    max-width: 710px;
  }
  .navbar-brand img {
    padding-top: 5px;
    height: auto;
  }
  #hero {
    margin-top: 60px;
  }
  #hero img {
    height: auto;
  }
  #info {
    text-align: center;
    padding: 0 0 140px;
  }
  #info .text-area {
    padding: 50px 0;
  }
  #testimonials .section-title {
    color: #fff;
  }
  #testimonials {
    padding: 50px 0 40px;
    ;
  }
  #testimonials .text-area {
    height: 200px;
  }
  #testimonials .carousel-control-next, .carousel-control-prev {
    width: 7%;
  }
  #testimonials .text-area .quote {
    font-size: 22px;
    margin-bottom: 15px;
  }
  #testimonials .carousel-indicators {
    bottom: -14px;
  }
  #testimonials .section-title {
    margin-bottom: 0;
  }
  #purchase-options .card {
    margin: 0 auto 50px;
    height: auto !important;
    max-width: 500px;
  }
  #purchase-options img {
    height: 270px;
  }
  #purchase-options .card h5 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 710px) {
  .section-title, #highlight .section-title {
    font-size: 32px;
    line-height: 38px;
  }
  #testimonials .section-title {
    font-size: 22px;
    line-height: 28px;
  }
  #hero h1 {
    font-size: 38px;
    line-height: 44px;
  }
  #img-slider {
    padding: 30px 0;
  }
  #img-slider .slick-slide img {
    height: 260px;
  }
}

/******************************
 Mobile Landscape + Portrait
******************************/

/*  480px to 767px  (Mobile Landscape) */

@media only screen and (max-width: 640px) {
  #img-slider .slick-slide img {
    height: 315px;
  }
}

@media only screen and (max-width: 600px) {
  #testimonials {
    padding: 40px 0;
  }
  #testimonials .carousel-indicators {
    bottom: -20px;
    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;
    height: 220px;
  }
}

@media only screen and (max-width: 575px) {
  p {
    font-size: 16px;
  }
  #highlight ul li {
    font-size: 16px;
  }
  #highlight img {
    height: auto;
  }
  #testimonials {
    padding: 60px 0;
  }
  #testimonials .carousel-indicators {
    bottom: -30px;
  }
  #testimonials .text-area .quote {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #purchase-options .section-header {
    margin-bottom: 30px;
  }
  #testimonials .text-area {
    padding: 0;
    height: 155px;
  }
}

@media only screen and (max-width:500px) {
  #img-slider .slick-slide img {
    height: 320px;
  }
}

/*  End of (Mobile Landscape) */

@media only screen and (max-width:480px) {
  section {
    padding: 30px 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;
  }
  #hero .img-container img {
    height: 300px;
  }
  #info .text-area {
    padding: 30px 0;
  }
}

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

@media only screen and (max-width:450px) {
  #hero .hero-bg .section-title {
    margin-bottom: 12px;
  }
  #hero .sub-heading span {
    display: block;
  }
  #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;
  }
  #info {
    text-align: center;
    padding: 0 0 80px;
  }
  #info .section-title {
    font-size: 18px;
    line-height: 24px;
}
  .sale-text {
    margin: 10px 0 20px;
  }
  .section-title, #highlight .section-title {
    font-size: 29px;
    line-height: 35px;
  }
  #purchase-options .text-area .section-title {
    font-size: 29px;
    line-height: 35px;
    margin-bottom: 16px;
  }
  #purchase-options .sale {
    top: -8px;
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    font-size: 19px;
  }
  #purchase-options img {
    height: 200px;
  }
  #purchase-options .card {
    max-width: 300px;
  }
  #purchase-options .card h5 {
    font-size: 18px;
  }
  #cta .section-title {
    font-size: 25px;
    line-height: 31px;
  }
}

@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;
  }
}

/*  End of (Mobile Portrait) */

@media only screen and (max-width:375px) {
  .navbar-brand img {
    padding-top: 10px;
    height: 44px;
  }
  #testimonials .section-title {
    margin-bottom: 15px;
  }
}

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