@charset "UTF-8";
/* Homepage Styles */

/* Top */


#home_top {
  background: url('../images/bg-slider.png') repeat center;
  background-size: 100px;
  border-bottom: 30px solid #2d3032;
  padding:  30px 0;
}

#home_top h1 {
  line-height: 1.3;
  font-size: 20pt;
  margin-bottom: 0;
}

#home_top h1 b {
  font-weight: bold;
}

/* Carousel */

.jumbotron {
    width: 100%;
}

.carousel-items {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
}

.slide {
  margin: auto;
  position: relative;
  max-width: 100%;
  width: 680px;
  height: 350px;
}

.slide .background {
  background: black;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.slide .background img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slide .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 30px;
  background: rgba(0,0,0,0.5);
  transition: background 0.2s;
  text-align: left;
}

.slide .overlay:hover  {
  
  background: rgba(0,0,0,0.6);
}

.slide .overlay .title {
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 20pt;
  color: var(--text-color-light);
}

.slide .overlay:hover a.title {
  color: var(--theme-color-1);
}

.slide .overlay .caption {
  display: none;
  font-size: 10pt;
}


.slide .overlay-link {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.center .slide .overlay-link {
  display: block;
}


.carousel-nav {
  display: block;
  margin: 10px auto 30px;
}

.carousel-nav button {
  cursor: pointer;
  border: 0;
  width: 13px;
  height: 13px;
  font-size: 0;
  color: transparent;
  background: url('../images/circle-dot-big.svg') no-repeat center;
  background-size: contain;
  margin: 0 5px;
  position: relative;
  transition: all 0.3s;
}

.carousel-nav button.tns-nav-active {
  background: url('../images/circle-dot-focus.svg') no-repeat center;
  width: 30px;
  height: 30px;
}

/* Download Button */

#index_downloadbtn {
  padding: 20px 30px;
  font-size: 22pt;
}

/* Other Sections */

section#home_categories h3 {
    color: var(--text-color-light);

}

section#home_categories .category-list {
  margin: 10px auto;
}
section#home_categories .category-list a {
  background: none;
  padding: 10px 10px;
  border-radius: 2rem;
  border: 1px solid #f6cc19;
  margin:  5px;
  display:  inline-block;
}

#home_grid {
  
  background: url('../images/bg-slider.png') repeat center;
  background-size: 100px;
  border-top: 30px solid #2d3032;
  border-bottom: 30px solid #2d3032;
}


section#home_categories .category-list a:hover {
  border: 1px solid #64cdfd;
}

section#home_promo .card {
    border-radius: 5px;
    padding: 30px;
    background-color: #212529;
    font-size: 16pt;
}

section#home_promo .card img {
    margin-bottom: 20px;
}



/* RESPONSIVE */

/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {
  


#home_top h1 {
  font-size: 26pt;
}
  
.carousel-items {
  padding: 20px 0;
}

.slide .overlay .caption {
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;

}

.slide .overlay .title {
  text-align: left;
}
  
}

/* Larger than desktop */
@media (min-width: 1000px) {
  
  .carousel-items {
    padding: 50px 0;
  }

  .carousel-items .slide {
    
    box-shadow: 0 0 10px black;
    opacity: 0.6;
    transform: scale(0.85);
    transition: all 0.2s;
    
  }
    
  .carousel-items .center .slide {
    opacity: 1;
    box-shadow: 0 0 20px 5px black;
    transition: all 0.2s;
    transform: scale(1.1);
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

