body,
html {
  font-family: var(--font-body);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: var(--color-text);
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden;
  background: var(--color-bg);
}
h2,
h3,
h4 {
  font-family: var(--font-heading);
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: var(--font-heading-weight);
  font-size: 32px;
  color: var(--color-text);
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}
h4 {
  font-size: 18px;
  color: var(--color-text);
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: var(--color-accent);
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--color-accent-600);
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 100%;
  text-align: left;
  position: relative;
  background: var(--color-divider);
  margin-bottom: 20px;
  border: 0;
}
/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: var(--color-bg);
  border-color: rgba(231, 231, 231, 0);
  border-bottom: 2px solid var(--color-divider);
  box-shadow: none;
}
#menu a.navbar-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--font-heading-weight);
  color: var(--color-text);
  text-transform: uppercase;
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: var(--font-body);
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a::after {
  display: none;
}
#menu.navbar-default .navbar-nav > li > a:hover {
  color: var(--color-accent);
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  color: var(--color-accent);
}
.navbar-default .navbar-nav > .active > a::after,
.navbar-default .navbar-nav > .active > a:hover::after,
.navbar-default .navbar-nav > .active > a:focus::after {
  display: none !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: var(--color-bg);
  border-color: var(--color-accent);
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--color-accent);
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: left;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background: var(--color-divider);
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.section-title p {
  font-size: 18px;
  text-align: left;
}
.btn-custom {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  color: var(--color-bg);
  background-color: var(--color-accent);
  padding: var(--space-2) var(--space-4);
  letter-spacing: 0;
  margin: 0;
  font-size: 13px;
  border-radius: var(--radius-md);
  transition: all 0.2s linear;
  border: 1px solid transparent;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: var(--color-bg);
  background-image: none;
  background-color: var(--color-accent-600);
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section */
.intro {
  display: table;
  width: 100%;
  padding: 0;
  background-color: var(--color-text);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  filter: grayscale(1) contrast(1.08);
}
.intro .overlay {
  background: rgba(0, 0, 0, 0.55);
}
.intro h1 {
  font-family: var(--font-heading);
  color: var(--color-bg);
  font-size: 72px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: var(--font-heading-weight);
  color: inherit;
}
.intro p {
  color: var(--color-neutral-200);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  margin-bottom: 60px;
}
header .intro-text {
  padding-top: 350px;
  padding-bottom: 200px;
  text-align: left;
}
/* Products Section */
#products {
  padding: 100px 0;
  background: var(--color-surface);
}
#products .section-title {
  text-align: left;
}
/* Features Section */
#features {
  background: var(--color-surface);
}
#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: all 0.5s;
  color: var(--color-bg);
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 0;
  background: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
/* About Section */
#about {
  padding: 100px 0;
  background: var(--color-bg);
}
#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about h2::after {
  position: absolute;
  content: "";
  background: var(--color-divider);
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
}
#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}
#about img {
  max-width: 450px;
  margin-top: 10px;
  background: var(--color-surface);
  border-right: 0;
  box-shadow: var(--shadow-md);
}
#about p {
  line-height: 24px;
  margin: 30px 0;
}
/* Services Section */
#services {
  padding: 100px 0;
  background: var(--color-surface);
  color: var(--color-text);
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: var(--color-text);
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: var(--color-divider);
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: var(--color-accent);
  border-radius: 0;
  color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}
#services h3 {
  font-weight: 600;
  padding: 5px 0;
  color: var(--color-text);
}
#services p {
  color: var(--color-neutral-700);
}
#services .service-desc {
  margin-bottom: 40px;
}
/* Portfolio Section */
#portfolio {
  padding: 100px 0;
}
.portfolio-item {
  margin: 1px -15px 0 -14px;
  padding: 0;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: var(--color-bg);
  background: rgba(32, 30, 29, 0.8);
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: var(--color-bg);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}
/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background: var(--color-surface);
}
#testimonials i {
  color: var(--color-neutral-300);
  font-size: 32px;
  margin-bottom: 20px;
}
.testimonial {
  position: relative;
  padding: 20px;
}
.testimonial-image {
  float: left;
  margin-right: 15px;
}
.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 0;
}
.testimonial-content {
  position: relative;
  overflow: hidden;
}
.testimonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-neutral-700);
}
/* Team Section */
#team {
  padding: 100px 0;
}
#team h4 {
  margin: 5px 0;
}
#team .team-img {
  width: 240px;
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: var(--color-neutral-600);
}
/* Contact Section */
#contact {
  padding: 100px 0 60px;
  background: var(--color-text);
  color: var(--color-neutral-300);
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
  color: var(--color-neutral-300);
}
#contact h2 {
  color: var(--color-bg);
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(243, 242, 242, 0.3);
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
}
#contact h3 {
  color: var(--color-bg);
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: var(--color-accent-400);
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid var(--color-bg);
  color: var(--color-bg);
}
#contact .btn-custom:hover {
  color: var(--color-text);
  background: var(--color-bg);
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-body);
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: var(--color-text);
  background-color: var(--color-surface);
  background-image: none;
  border: 1px solid var(--color-divider);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
#contact .form-control:focus {
  border-color: var(--color-accent);
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
  color: var(--color-neutral-500);
}
.form-control:-moz-placeholder {
  color: var(--color-neutral-500);
}
.form-control::-moz-placeholder {
  color: var(--color-neutral-500);
}
.form-control:-ms-input-placeholder {
  color: var(--color-neutral-500);
}
#contact .contact-item {
  margin: 20px 0;
}
#contact .contact-item span {
  color: var(--color-neutral-200);
  margin-bottom: 10px;
  display: block;
}
#contact .contact-item i.fa,
#contact .contact-item i.fab {
  margin-right: 10px;
}
#contact .social {
  border-top: 1px solid rgba(243, 242, 242, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
}
#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid var(--color-neutral-300);
  color: var(--color-neutral-300);
  border-radius: 0;
  transition: all 0.3s;
}
#contact .social i.fa:hover {
  color: var(--color-accent);
  background: transparent;
  border-color: var(--color-accent);
}
/* Footer Section */
#footer {
  background: var(--color-bg);
  border-top: 2px solid var(--color-divider);
  padding: 30px 0;
}
#footer p {
  color: var(--color-neutral-600);
  font-size: 14px;
}
#footer a {
  color: var(--color-accent);
}
#footer a:hover {
  border-bottom: 2px solid var(--color-accent);
}

@media (max-width: 768px) {
  #about img {
    margin: 50px 0;
  }
}
.modal-content {
  padding: 10px;
}
.fa-cart-shopping, .fa-shopping-cart {
  font: normal normal normal 20px / 1 FontAwesome;
}
.cart-navigation {
  display: flex;
  align-items: center;
}
.cart-list-container {
  margin-bottom: 5px;
}
.cart-list-item:nth-child(odd) {
  background-color: var(--color-neutral-200);
}
.cart-list-item span:nth-child(1) {
  margin-right: 5px;
}
.cart-list-item {
  display: flex;
  justify-content: space-between;
}

.product-name h3 {
  min-height: 7.5vh;
}
.product-description {
  min-height: 7.5vh;
}

.product-grid-img-container {
  min-height: 250px;
  display: flex;
  align-items: center;
}

.product-card {
  height: 100%;
  margin-bottom: var(--space-4);
  text-align: left;
}
