.carousel-multi-item.carousel {
    position: relative;
    display: flex;
    flex-flow: wrap;
    width: 100%;
    padding-top: 100px;
    margin-top: -100px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    display: flex;
    width: 100%;
	height: auto;
    overflow: hidden;
}

#multi-item-example {
    height: 100%!important;
    /*background-color: yellow;*/
}

#multi-item-example .carousel-inner {
    overflow: visible;
    height: 100%!important;
    /*background-color: red;*/
}

#multi-item-example .carousel-item {
    margin-bottom: 90px;
    /*background-color: blue;*/
}

#multi-item-example .carousel-item.full-screen.active {
    height: 100%!important;
    /*background-color: purple;*/
}

#multi-item-example .carousel-indicators {
    bottom: 30px;
}

#multi-item-example .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin-right: 8px;
    margin-left: 8px;
    text-indent: -999px;
    background-color: rgba(68, 77, 134, 1.0);
    border: 2px #e5e5e5 solid;
}

#multi-item-example .carousel-indicators .active {
    background-color: white;
    border: 2px #dc911b solid;
}

.carousel-item {
    position: relative;
    display: none;
    justify-content: center;
    -ms-flex-align: center;
      align-items: center;
    width: 100%;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

#multi-item-example .carousel-item.active,
#multi-item-example .carousel-item-next,
#multi-item-example .carousel-item-prev {
    -webkit-animation: opacity .7s ease;
            animation: opacity .7s ease;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex;
    flex-flow: wrap;
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
.carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
.carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
      align-items: center;
    -ms-flex-pack: center;
      justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-prev:focus, .carousel-control-prev:hover,
.carousel-control-next:focus,
.carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.carousel-control-prev {
    left: 5%;
}

.carousel-control-next {
    right: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("../img/svg-arrow-left.svg");
    background-size: contain;
    width: 116px;
    height: 80px;
}

.carousel-control-next-icon {
    background-image: url("../img/svg-arrow-right.svg");
    background-size: contain;
    width: 116px;
    height: 80px;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 15%;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
      justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
      flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 25px;
    margin-left: 25px;
    text-indent: -999px;
    background-color: #3d3d3d;
    border: 2px #282828 solid;
    -moz-border-radius: 50%; /* Firefox */  
    -webkit-border-radius: 50%; /* Safari, Chrome */  
    border-radius: 50%; /* CSS3 */
}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background-color: #dc911b;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    /*bottom: 30%;*/
    left: 15%;
    z-index: 10;
    /*padding-top: 20px;*/
    /*padding-bottom: 20px;*/
    text-align: center;
}

.d-block {
    display: block !important;
}

@keyframes opacity {
    0% {
        opacity: 0.0;
    }
    30% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.d-md-block {
    display: flex;
	flex-direction: column;
    animation: opacity .5s ease-out;
	
}
.w-100 {
    width: 100% !important;
	height: 100%;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
          clip-path: none;
}
