/*body {
  background-color: #fff;
  margin: 0;
}

header {
  border-bottom: 5px solid #0062a6;
}

.header-top {
  background-color: #f3f3f3;
  border-bottom: 1px solid #ededed;
  height: 30px;
}

.logo {
  padding: 30px 0;
}*/

#main-slider {
  box-shadow: 0 1px 4px rgb(0, 0, 0, 27%), 0 0 40px rgb(0, 0, 0, 6%) inset;
  margin-bottom: 20px;
}

#main-slider .splide__slide {
  overflow: hidden;
}

#main-slider .splide__slide img {
  height: auto;
  position: relative;
  transform: scale(2);
  width: 100%;
}

#main-slider .splide__slide.is-active.is-visible img {
  transform: scale(1);
  transition: transform ease-in-out 3s;
  z-index: 1;
}

/* Thumbnails */
#thumbnail-carousel {
  display: flex;
  margin: 0 auto 20px;
  justify-content: center;
  overflow: visible;
}

#thumbnail-carousel .splide__arrow {
  background-color: transparent;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #thumbnail-carousel .splide__arrow {
    display: none;
  }
}

#thumbnail-carousel .splide__arrow svg {
  fill: #0062a6;
  height: 4rem;
  width: 4rem;
}

#thumbnail-carousel .splide__arrow--prev {
  left: -3rem;
}

#thumbnail-carousel .splide__arrow--next {
  right: -3rem;
}


#thumbnail-carousel .splide__slide {
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  list-style: none;
  margin: 0 0.2rem;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity ease-in-out .3s;
}

#thumbnail-carousel .splide__slide:hover {
  opacity: 1;
}

#thumbnail-carousel .splide__slide.is-active {
  border-color: #0062a6;
  opacity: 1;
}

#thumbnail-carousel .splide__slide img {
  width: 100%;
  height: auto;
}

/* Category */
.category {
  border-bottom: 3px solid #3d4e5c;
  box-shadow: 0 1px 4px rgb(0, 0, 0, 27%), 0 0 40px rgb(0, 0, 0, 6%) inset;
  margin-bottom: 20px;
  transition: box-shadow ease-in-out .2s;
}

.category:hover {
  box-shadow: 0 1px 12px rgb(0, 0, 0, 27%);
}

.category-body {
  background-color: #eee;
  font-weight: bold;
  padding: 15px;
}

.category-body p {
  margin: 0;
  color: #337ab7;
  font-family:sans-serif;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .category {
    box-shadow: none;
  }

  .category-img {
    display: none;
  }

  .category-body {
    padding: 8px;
  }
}