<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Template Name : cover-flow-11
 */

/**********************/
/* Cover Flow 11
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.cover-flow-11.sz-slider {
  background: #fff;
  -webkit-font-smoothing: antialiased !important;
}
/* 2 - Background Images Position */
.cover-flow-11.sz-slider[data-type=slider]:not([data-background=image]) &gt; .carousel-inner &gt; .item {
  height: 80% !important;
  background-position: center;
}
/* 3 - Slides - Wrapper */
.cover-flow-11.sz-slider[data-type=slider]:not([data-background=image]) &gt; .carousel-inner {
  padding: 40px 0 0 0 !important;
}

/********************/
/* Cover Flow 11
/* Layer Settings
/********************/

/* 1 - Text - wrapper */
.cover-flow-11-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  display: block;
  position: absolute;
}
/* 2 - Container */
.cover-flow-11-layer &gt; div {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  font-size: 0;
  width: 227px;
  height: 90px;
  line-height: 1;
  display: block;
  text-align: left;
  position: absolute;
  background: rgba(0,0,0,.8);
  margin: auto auto 40px 40px;
  padding: 18px 50px 20px 23px;
}
/* 3 - Link */
.cover-flow-11-layer &gt; div &gt; a {
  display: block;
  text-decoration: none;
}
/* 4 - Heading - Tags */
.cover-flow-11-layer &gt; div &gt; a &gt; span {
  display: block;
  letter-spacing: .1px;
  font-family: 'Barlow', sans-serif;
}
/* 5 - Heading - ( Creative ) */
.cover-flow-11-layer &gt; div &gt; a &gt; span:nth-child(1) {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}
/* 6 - Tags - ( Industrial, Creative, Ideas ) */
.cover-flow-11-layer &gt; div &gt; a &gt; span:nth-child(2) {
  color: #d1d1d1;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 768px and &lt; 992px -----*/
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Container */
  .cover-flow-11-layer &gt; div {
    width: 196px;
    margin: auto auto 40px 20px;
    padding: 18px 25px 20px 23px;
  }
}

/*----- When the screen size gets = 576px and &lt; 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Container */
  .cover-flow-11-layer &gt; div {
    width: 145px;
    height: 65px;
    padding: 10px;
    margin: auto auto 40px 18px;
  }
  /* Heading - ( Creative ) */
  .cover-flow-11-layer &gt; div &gt; a &gt; span:nth-child(1) {
    font-size: 28px;
  }
  /* Tags - ( Industrial, Creative, Ideas ) */
  .cover-flow-11-layer &gt; div &gt; a &gt; span:nth-child(2) {
    font-size: 9px;
    margin-top: 5px;
  }
}

/*----- When the screen size gets &lt;= 575.98px -----*/
@media (max-width: 575.98px) {
  /* Container */
  .cover-flow-11-layer &gt; div {
    width: 90%;
    height: 50px;
    padding: 2px;
	text-align: center;
    margin: auto auto 40px auto;
  }
  /* Heading - ( Creative ) */
  .cover-flow-11-layer &gt; div &gt; a &gt; span:nth-child(1) {
    font-size: 15px;
  }
  /* Tags - ( Industrial, Creative, Ideas ) */
  .cover-flow-11-layer &gt; div &gt; a &gt; span:nth-child(2) {
    font-size: 8px;
    margin-top: 3px;
  }
}

/*********************/
/* Cover Flow 11
/* Indicators Buttons
/*********************/

/* 1 - Indicators - wrapper */
.sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-11-indicators.carousel-indicators {
  padding: 0;
  width: 112px;
  height: 19px;
  margin: 0 auto 15px auto;
}
/* 2 - Indicators - children */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators &gt; li {
  padding: 0;
  margin: 4px;
  width: 10px;
  height: 10px;
  border: none;
  line-height: 10px;
  background: rgba(0,0,0,.5);
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 0 0 2px rgba(0,0,0,.5);
  -webkit-box-shadow: 0 0 0 2px rgba(0,0,0,.5);
  transition: background .2s ease, border .2s ease, box-shadow .2s ease;
  -webkit-transition: background .2s ease, border .2s ease, -webkit-box-shadow .2s ease;
}
/* 3 - Indicator - active - child */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators &gt; li.active {
  border: none;
  background: transparent;
  box-shadow: 0 0 0 2px #bdd22d;
  -webkit-box-shadow: 0 0 0 2px #bdd22d;
}
/* 4 - Indicators - inside circle */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators &gt; li::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  background: rgba(0,0,0,.5);
  transform: scale(.7);
  -webkit-transform: scale(.7);
  border-radius: 0;
  -webkit-border-radius: 0;
}
/* 5 - Indicator - active - inside circle */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators &gt; li.active::after {
  background: #bdd22d;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 273px and &lt; 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-11-indicators.carousel-indicators {
    display: none;
  }
}

/*----- When the screen size gets &lt;= 272px -----*/
@media (max-width: 272.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-11-indicators.carousel-indicators {
    display: none;
  }
}

/**************************/
/* Cover Flow 11
/* Left And Right Buttons
/**************************/

/* 1 - Buttons */
.cover-flow-11-btn.sz-slider .carousel-control {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 15;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-decoration: none;
  background: rgba(0,0,0,.5);
  border-radius: 0;
  -webkit-border-radius: 0;
  transition: color .2s ease, background .2s ease;
  -webkit-transition: color .2s ease, background .2s ease;
}
/* 2 - Prev - Button */
.cover-flow-11-btn.sz-slider .carousel-control.left {
  margin: auto auto auto 25px;
}
/* 3 - Next - Button */
.cover-flow-11-btn.sz-slider .carousel-control.right {
  margin: auto 25px auto auto;
}
/* 4 - Hover */
.cover-flow-11-btn.sz-slider .carousel-control:hover {
  color: #fff;
  background: #bdd22d;
}
/* 5 - Icons */
.cover-flow-11-btn.sz-slider .carousel-control &gt; i {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 14px;
  margin: auto;
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  display: inline-block;
  transition: color .2s ease;
  -webkit-transition: color .2s ease;
}
/* 6 - Icons - hover */
.cover-flow-11-btn.sz-slider .carousel-control:hover &gt; i {
  color: #fff;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 576px and &lt; 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Prev - Button */
  .cover-flow-11-btn.sz-slider .carousel-control.left {
    margin: auto auto auto 15px;
  }
  /* Next - Button */
  .cover-flow-11-btn.sz-slider .carousel-control.right {
    margin: auto 15px auto auto;
  }
}

/*----- When the screen size gets = 273px and &lt; 576px -----*/
/*Buttons*/
/*
@media (min-width: 273px) and (max-width: 575.98px) {
  .cover-flow-11-btn.sz-slider .carousel-control {
    display: none;
  }
}
*/

/*----- When the screen size gets &lt;= 272px -----*/
@media (max-width: 272.98px) {
  /* Buttons */
  .cover-flow-11-btn.sz-slider .carousel-control {
    display: none;
  }
}</pre></body></html>