:root
{
  /* Colors */
  --clr_bg: #fff;
  --clr_fg: #000;
  --clr_bgl: #f2f2f2;
}

html
{
  height: 100%;
}

body
{
  position: relative;
  min-height: 100%;
  padding-bottom: 80px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr_fg);
  background: var(--clr_bg);
}

h1
{
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
}

h2
{
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}

h3
{
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

p
{
  margin: 0 0 10px 0;
  padding: 0;
}

p span
{
  font-weight: 600;
}

a
{
  font-weight: 600;
  color: var(--clr_fg);
  text-decoration: underline;
}

a:hover
{
  color: var(--clr_fg);
}

.Heading
{
  margin: 0 0 50px 0;
}

.Heading::after
{
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  bottom: 0;
  left: calc(50% - 25px);
  background: var(--clr_fg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.Heading h2
{
  padding-bottom: 10px;
}

/* Navigation */

nav
{
  background: var(--clr_fg);
}

nav .container
{
  padding: 30px 10px;
}

nav .BrandName
{
  min-width: 100%;
  text-align: center;
}

@media only screen and (min-width: 992px)
{
  nav .BrandName
  {
    text-align: left;
  }
}

nav a
{
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--clr_bg);
  text-transform: uppercase;
  text-decoration: none;
}

nav a:hover
{
  color: var(--clr_bg);
}

/* Footer */

footer
{
  position: absolute;
  overflow: hidden;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background: var(--clr_fg);
}

footer .container
{
  padding: 30px 10px;
}

footer p
{
  margin: 0;
  font-size: 16px;
  color: var(--clr_bg);
}

/* Main Content */

main
{
  margin: 30px 0;
}

/* Product Header */

#Product .ProductImage
{
  height: 100%;
  min-height: 400px;
  padding: 20px;
  background: var(--clr_bgl);
  border-radius: 8px;
}

#Product .ProductImage img
{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#Product .BrandName p
{
  margin: 0;
  padding-top: 20px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px)
{
  #Product .BrandName p
  {
    padding: 0;
    text-align: left;
  }
}

#Product .ProductName h1
{
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px)
{
  #Product .ProductName h1
  {
    text-align: left;
  }
}

#Product .ProductPrice
{
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
}

#Product .ProductPrice span
{
  font-size: 22px;
}

#Product .ProductDesc
{
  padding-top: 50px;
  padding-bottom: 40px;
  font-size: 18px;
}

#Product .Button a
{
  display: inline-block;
  margin: 5px 0;
  padding: 16px;
  width: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--clr_fg);
  border-radius: 4px;
}

#Product .Button a:hover
{
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 4, 0.4)
}

/* Product Features */

#Features
{
  margin: 50px 0 0;
}

#Features .FeatureCard
{
  min-height: 100%;
  overflow: hidden;
  background: var(--clr_bg);
  border: 1px solid var(--clr_bgl);
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 4, 0.03);
}

@media only screen and (min-width: 992px)
{
  #Features .FeatureCard
  {
    box-shadow: none;
  }

  #Features .FeatureCard:hover
  {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
  }
}

#Features .FeatureIcon
{
  padding: 30px 0 10px;
  text-align: center;
  vertical-align: middle;
  background: var(--clr_bgl);
}

#Features .FeatureTitle
{
  padding: 10px 0 30px;
  text-align: center;
  background: var(--clr_bgl);
}

#Features .FeatureText
{
  padding: 30px 0;
}

#Features ul
{
  margin: 0 10px 0 10px;
  list-style-type: square;
}

#Features li
{
  padding: 8px 0 8px;
  font-size: 16px;
}
