/*! custom.css v1.0 */

/* ==========================================================================

   Custom CSS Stylesheet. This is where you should add your own styles!

   ========================================================================== */

/*
* Simple style overrides or custom adds
*/

.some-css-selector {
  font-size: 13px;
}

.imghover {
  position: relative;
  width: 300px;
  margin: 20px;
}

.imghover__img {
  display: block;
  width: 100%;
}

.imghover__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.imghover__overlay--blur {
  backdrop-filter: blur(5px);
}

.imghover__overlay--solid {
  background: #2f87ff;
}

.imghover__overlay > * {
  transform: translateY(20px);
  transition: transform 0.7s;
}

.imghover__overlay:hover {
  opacity: 1;
}

.imghover__overlay:hover > * {
  transform: translateY(0);
}

.imghover__title {
  font-size: 2em;
  font-weight: bold;
}

.imghover__description {
  font-size: 0.9em;
  margin: 0.25em;
  margin-bottom: 1.25em;
  text-align: center;
}

.imghover__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #2f87ff;
  color: #fff;
  font-weight: bold;
}

/* Assure no X overflow is happening in fluid container */
.container-fluid.no-pad-cols .row,
.row.no-pad-cols {
  margin-left: 0;
  margin-right: 0;
}
.container-fluid.no-pad-cols,
.container-fluid.no-pad-cols > .row > div[class*="col-"],
.no-pad-cols > div[class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* Image boxes carousel element */
.image-boxes__carousel-wrapper {
  border-bottom: solid 1px #ddd;
}
.image-boxes__carousel-wrapper.no-border {
  border: none;
}
.image-boxes__carousel-wrapper .image-boxes__carousel .inner-slide a {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.image-boxes__carousel-wrapper .inner-slide {
  color: #fff;
  color: rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.image-boxes__carousel-wrapper .inner-slide:hover {
  color: #fff;
}
.image-boxes__carousel-wrapper .inner-slide:hover a {
  color: #cd2122;
}
.image-boxes__carousel-wrapper .inner-slide:hover .btn-fullcolor {
  color: #fff;
}

.image-boxes__carousel-wrapper .inner-slide .imgprev {
  background: #242731;
}
.image-boxes__carousel-wrapper .inner-slide:hover .imgprev img {
  opacity: 0.6;
}

.image-boxes__carousel-wrapper .inner-slide .details {
  display: block;
  padding: 30px 0 0;
  border-left: 1px solid #eeeeee;
  min-height: 105px;
}
.image-boxes__carousel-wrapper .inner-slide .details {
  text-align: center;
}

.image-boxes__carousel-wrapper .inner-slide [data-role="title"] {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}
.image-boxes__carousel-wrapper .inner-slide [data-role="category"] {
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 0;
  color: #ceced0;
}

.image-boxes__carousel-wrapper .slick-dots {
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 0;
  right: 0;
  z-index: 10;
}
.image-boxes__carousel-wrapper .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.image-boxes__carousel-wrapper .slick-dots li .slickBtn {
  display: inline-block;
  margin: 0 3px;
  background: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  box-shadow: none;
  padding: 3px;
}
.image-boxes__carousel-wrapper .slick-dots li .slickBtn:hover {
  background-color: #ccc;
}
.image-boxes__carousel-wrapper .slick-dots li.slick-active .slickBtn {
  background-color: #fe6060;
  box-shadow: none;
}
.no-touch .image-boxes__carousel-wrapper .inner-slide .imgprev::after {
  background: transparent;
  border-bottom: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.no-touch .image-boxes__carousel-wrapper .inner-slide:hover .imgprev::after {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 8px solid #cd2122;
}

/* Hoverlay style */
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide {
  position: relative;
  margin: 0;
  color: #fff;
  cursor: pointer;
}
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide .imgprev {
  margin: 0;
}
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide .imgprev img {
  width: 100%;
  display: block;
}
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide .imgprev::after {
  display: none;
}
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide .details {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fe6060;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  border-left: none;
}
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide:hover .details {
  opacity: 1;
  visibility: visible;
}
.image-boxes__carousel-wrapper.stl-hoverlay .dt-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.image-boxes__carousel-wrapper.stl-hoverlay .inner-slide [data-role="title"] {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 10px 0;
}

/* Full-width style */
.image-boxes__carousel-wrapper.full-width,
.image-boxes__carousel-wrapper.full-width .inner-slide .details {
  border: none;
}
.image-boxes__carousel-wrapper.full-width .inner-slide {
  margin: 0 12px;
}
.image-boxes__carousel-wrapper.full-width .inner-slide:hover .imgprev img {
  opacity: 1;
}
/* end Image boxes carousel element */

/* ==========================================================================
   ** Responsive styles custom rules
   * These rules are ready to be used for either overrides
   * or just your own custom rules.
   ========================================================================== */

@media only screen and (min-width: 1921px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
}

@media only screen and (min-width: 1200px) {
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

@media only screen and (min-width: 992px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
}

@media only screen and (min-width: 768px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 320px) {
}
