body{
  font-family: 'Lato', sans-serif;
}
.section {
  padding: 120px 0;
}
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c1c1c;
  color: #fff;
}
.hero .logo{
  margin: 15px 0;
}
.hero .logo img{
  max-width: 700px;
  margin: 0 auto;
}
.hero h2, .hero h3{
  font-weight: 400;
  letter-spacing: 1px;
}
.hero h3 a{
  color: #fff;
  text-decoration: none;
  position: relative;
}
.hero h3 a span{
  position: relative;
  z-index: 2;
}
.hero h3 a:before{
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #821518;
  transition: all .4s ease;
  z-index: 1;
}
.hero h3 a:hover:before{
  width: 100%;
}
.hero .products{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}
.hero .products span{
  font-size: 18px;
}
.hero .products span:not(:last-child):after{
  content: '';
  display: inline-flex;
  width: 8px;
  height: 8px;
  background-color: #821518;
  border-radius: 50%;
  margin: 0 15px;
}
.social-nav{
  margin-top: 30px;
}
.social-nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-nav ul li:not(:last-child){
  margin-right: 15px;
}
.social-nav ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  border: 2px solid #821518;
  border-radius: 50%;
  transition: all .4s ease;
}
.social-nav ul li a:hover{
  background-color: #821518;
}
.social-nav ul li a svg{
  height: 22px;
}
.social-nav ul li a svg path{
  fill: #fff;
}
@media (min-width: 1200px){
  .hero h2{
    font-size: 3rem;
  }
}
@media (min-width: 992px){
  .hero .products span{
    font-size: 22px;
  }
  .hero .products span:not(:last-child):after{
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 420px){
  .hero h3.email{
    font-size: 17px;
  }
}
/*Countdown*/
.countdown-timer{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.countdown-timer .time{
  text-align: center;
  padding: 20px 10px;
  background-color: #821518;
  color: #fff;
  border-radius: 5px;
}
.countdown-timer .time:not(:last-child){
  margin-right: 10px;
}
.countdown-timer .time .number{
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}
.countdown-timer .time span{
  display: block;
}
.countdown-timer .time span:fisrt-child{
  margin-bottom: 5px;
}
@media (min-width: 421px){
  .countdown-timer .time .number{
    font-size: 2rem;
  }
  .countdown-timer .time:not(:last-child){
    margin-right: 15px;
  }
}
@media (min-width: 768px){
  .countdown-timer .time .number{
    font-size: 3rem;
  }
}
@media (min-width: 1200px){
  .countdown-timer .time .number{
    font-size: 4rem;
  }
}
#productsCarousel .carousel-inner{
  max-width: calc(100% - 100px);
  margin: auto;
}
#productsCarousel .carousel-control-next, #productsCarousel .carousel-control-prev{
  width: 50px;
}
#productsCarousel .carousel-indicators{
  top: 100%;
  bottom: initial;
}