.slider .view {
  position: relative;
  display: block;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.slider .view a.item {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  box-sizing: border-box;
}

.slider .view a>img {
  position: relative;
  width: auto;
  min-width: 100% !important;
  min-height: 100% !important;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slider .pager-section .carousel .item>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider .pager-section {
  width: 100%;
  padding: 15px 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-between;
  justify-content: flex-start;
  align-items: center;
}

.slider .pager-section .next,
.slider .pager-section .previous {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  box-sizing: border-box;
  color: inherit;
  font-size: 24px;
  line-height: 1;
  margin-right: 8px;
  width: 16px;
  vertical-align: middle;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
}

.slider .pager-section .next:focus,
.slider .pager-section .previous:focus,
.slider .pager-section .next.slideshow-control-focused,
.slider .pager-section .previous.slideshow-control-focused {
  outline: 2px solid ButtonText !important;
  outline-offset: 1px !important;
  box-shadow: none !important;
}

.slider .pager-section .carousel .item:focus {
  outline: none;
}

.slider .pager-section .carousel .item:focus-visible {
  border-color: currentColor;
  box-shadow: 0 0 0 2px currentColor inset;
}

.slider .pager-section .next {
  text-align: right;
}

.slider .pager-section .previous {
  text-align: left;
}

.slider .pager-section .carousel {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  height: 56px;
  white-space: nowrap;
  overflow: hidden;
}

.slider .pager-section .carousel .wrapper {
  position: relative;
  height: 100%;
  min-width: 100%;
}

/* Autoplay control placement - Slider layout only */
.slider .pager-section .slideshow-autoplay-control {
  flex: 0 0 auto;
  height: 56px;
  width: 44px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Autoplay control - reusable with Templates/All/AutoRotateControl.html */
.slideshow-autoplay-control {
  --slideshow-autoplay-bg: linear-gradient(165deg, rgba(92, 92, 92, 0.86), rgba(58, 58, 58, 0.86));
  --slideshow-autoplay-bg-hover: linear-gradient(165deg, rgba(105, 105, 105, 0.92), rgba(64, 64, 64, 0.92));
  --slideshow-autoplay-border: rgba(255, 255, 255, 0.45);
  --slideshow-autoplay-border-hover: rgba(255, 255, 255, 0.62);
  --slideshow-autoplay-icon: #fff;
  --slideshow-autoplay-progress-track: rgba(255, 255, 255, 0.18);
  --slideshow-autoplay-progress-value: rgba(255, 255, 255, 0.72);
}

.slideshow-autoplay-control--light {
  --slideshow-autoplay-bg: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(232, 232, 232, 0.92));
  --slideshow-autoplay-bg-hover: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(242, 242, 242, 0.98));
  --slideshow-autoplay-border: rgba(0, 0, 0, 0.18);
  --slideshow-autoplay-border-hover: rgba(0, 0, 0, 0.28);
  --slideshow-autoplay-icon: #222;
  --slideshow-autoplay-progress-track: rgba(0, 0, 0, 0.12);
  --slideshow-autoplay-progress-value: rgba(0, 0, 0, 0.5);
}

.slideshow-autoplay-button {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  overflow: visible;
  border: 1px solid var(--slideshow-autoplay-border);
  border-radius: 50%;
  background: var(--slideshow-autoplay-bg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: transparent !important;
  cursor: pointer;
  font-size: 0 !important;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.slideshow-autoplay-progress {
  position: absolute;
  inset: 1px;
  width: auto;
  height: auto;
  transform: rotate(-90deg);
  transform-origin: center;
  transform-box: fill-box;
  pointer-events: none;
  overflow: visible;
}

.slideshow-autoplay-progress-track,
.slideshow-autoplay-progress-value {
  fill: none;
  stroke-width: 2;
  stroke: var(--slideshow-autoplay-progress-track);
}

.slideshow-autoplay-progress-value {
  stroke: var(--slideshow-autoplay-progress-value);
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  stroke-linecap: round;
}

.slideshow-autoplay-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.slideshow-autoplay-play::before {
  width: 0;
  height: 0;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent var(--slideshow-autoplay-icon);
  border-width: 8px 0 8px 11px;
}

.slideshow-autoplay-pause::before {
  width: 13px;
  height: 13px;
  background: linear-gradient(var(--slideshow-autoplay-icon), var(--slideshow-autoplay-icon)), linear-gradient(var(--slideshow-autoplay-icon), var(--slideshow-autoplay-icon));
  background-size: 3px 13px, 3px 13px;
  background-position: 2px 0, 8px 0;
  background-repeat: no-repeat;
}

.slideshow-autoplay-button:hover {
  background: var(--slideshow-autoplay-bg-hover);
  border-color: var(--slideshow-autoplay-border-hover);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.slideshow-autoplay-button:active {
  transform: scale(0.98);
}

.slideshow-autoplay-button:focus,
.slideshow-autoplay-button:focus-visible,
.slideshow-autoplay-button.slideshow-control-focused {
  outline: 3px solid ButtonText !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 5px ButtonFace !important;
}
/* End autoplay control */

.slider .pager-section .carousel .item {
  display: inline-block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  margin: 0 5px;
  padding: 0;
  border: 4px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 50ms ease;
}

.slider .pager-section .carousel .item:last-child {
  margin-right: 0;
}

.dma-slideshow.slider .pager-section .carousel a.current,
.dma-slideshow.slider .pager-section .carousel a.item:hover {
  border-color: currentColor !important;
}

/* Display Text on Hover */

.slider .displayTextOnHover {
    /*display:none;*/
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width:100%;
    vertical-align: bottom;
    color: transparent;
    z-index: 2;
    background: -moz-linear-gradient(top, rgba(137, 255, 241, 0) 0%, rgba(0, 0, 0, .8) 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(137, 255, 241, 0)), color-stop(100%, rgba(0, 0, 0, .8)));
    background: -webkit-linear-gradient(top, rgba(137, 255, 241, 0) 0%, rgba(0, 0, 0, .8) 80%);
    background: -o-linear-gradient(top, rgba(137, 255, 241, 0) 0%, rgba(0, 0, 0, .8) 80%);
    background: -ms-linear-gradient(top, rgba(137, 255, 241, 0) 0%, rgba(0, 0, 0, .8) 80%);
    background: linear-gradient(to bottom, rgba(137, 255, 241, 0) 0%, rgba(0, 0, 0, .8) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0089fff1', endColorstr='#000000', GradientType=0);
    cursor: context-menu;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    transition: all 1s;
}

.slider .item:hover .displayTextOnHover {
    display: block;
    color: #fff;
    opacity: .8;
}

.slider .carousel-caption {
    position: absolute;
    bottom: 20px;
    padding: 0 50px 20px 50px;
}

.slider .photo-date {
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 0;
}

.slider .photo-caption {
    font-family: 'Colossalis';
    font-weight: 100;
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.slider .photo-sub-caption {
    font-weight: 100;
    font-size: 18px;
}

.slider .photo-descr-text {
    font-size: 18px !important;
}

.slider .overlay-links {
    text-align:right;
    display: inline-block;
}
.slider .overlay-links div.olink { 
    display: inline;
    cursor: pointer;
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 16px;
    color: #fff;  
    letter-spacing: 2px; 
    padding-left: 10px;
    padding-bottom: 5px;
    white-space: nowrap;
}

.slider .overlay-links .download-link::before,
.slider .overlay-links .details-link::before,
.slider .overlay-links .share-link::before { 
    color: #fff; 
    display: inline-block; 
    font-family: 'Font Awesome 5 Free'; 
    font-size: 18px; 
    font-weight: 900; 
    vertical-align: baseline;
    margin-right: 8px; 
}

.slider .overlay-links .download-link::before { content: "\f019"; }
.slider .overlay-links .details-link::before { content: "\f05a"; }
.slider .overlay-links .share-link::before { content: "\f1e0"; }

.slider a.slider-more-btn {
    display: inline-block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: .23em;
    color: #fff;
    background: #858587;
    padding: 12px 42px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 0px;
    border: 2px solid #858587;
    white-space: nowrap;
    cursor: pointer;
}

.dma-slideshow .slider-title {
    font-family: Arial, sans-serif !important;
    font-size: 30px;
    font-weight: 100;
    text-transform: capitalize;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 27px;
}

@media screen and (max-width:991px){

    .slider .item .displayTextOnHover{
        position: absolute;
        bottom: -2px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(137, 255, 241, 0)), color-stop(100%, rgba(0, 0, 0, 1)));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        background: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    }
}

@media screen and (max-width: 769px) {

    .slider .item .displayTextOnHover{
        display: block;
        opacity: 1;
        color: #fff;
    }
}

@media screen and (max-width: 575px) {
    .slider .carousel-caption {
        padding: 0 25px;
        max-width: 100vw;
    }
    
    .slider .photo-caption {
        line-height: 27px;
    }
    .slider #photo-Sub-Caption {
        font-size: 15px!important;
        margin-bottom: 0;
    }
    .slider .more-wrapper {
        text-align: center;
    }
}

.DNNAligncenter {
    text-align: left;
}
