/* New carousel */
.carousel-fade .carousel-inner{
    height: -webkit-fill-available;
}
.carousel-caption{
    background: #0005;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.carousel-caption .caption_content{
    font-size: 100px;
    font-family: 'opensans';
    color: #ffffff;
}
.carousel-caption .caption_content h1{
  font-size: calc(50px + (100 - 50) * ((100vw - 320px) / (1600 - 320)));
}
.carousel-caption .caption_content p{
  font-size: calc(23px + (40 - 23) * ((100vw - 320px) / (1600 - 320)));
}
.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
    height: -webkit-fill-available;
  }
  .carousel-fade .carousel-inner .active {
    opacity: 1;
  }
  .carousel-fade .carousel-inner .active.left,
  .carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
  }
  .carousel-fade .carousel-inner .next.left,
  .carousel-fade .carousel-inner .prev.right {
    opacity: 1;
  }
  .carousel-fade .carousel-control {
    z-index: 2;
    opacity: .9;
  }
  .carousel-control{
      width: 2%;
  }
  .carousel-control .glyphicon{
    color: #ffffff;
    background-color: #e11c46;
    cursor: pointer;
    padding: 2px;
  }
  @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-fade .carousel-inner > .item.next,
      .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
      }
      .carousel-fade .carousel-inner > .item.prev,
      .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
      }
      .carousel-fade .carousel-inner > .item.next.left,
      .carousel-fade .carousel-inner > .item.prev.right,
      .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
      }
  }
  @media screen and (min-width: 768px){
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    width: 43px;
    height: 37px;
    }
  }

      /* New carousel End */


/* carousel styles */
.carousel-inner .item img{
    line-height:1;
    width:100%;
    height: 100%;
    object-fit:cover;
}
.carousel-caption {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
/* Carousel styles end */

.section-heading {
	background:#512322;
	color:#eaeff3;
	width:100%;
	padding:10px;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align:center;
}
.item-heading {
	background: #2f6562;
	color:#31ff00;
	width:100%;
	padding:10px;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align:center;
}
.item-container {
display:flex;
direction:column;
flex-wrap:wrap;
}
.item {
   flex-grow: 0; 
   flex-shrink: 0;
}
#services{
    background-color: #f6f6f6;
    transition: all 0.55s linear;
    margin-bottom:0px;
    margin-left:0px;
    margin-right:0px;
}
#services .row .item {
    padding-bottom:10px;
    padding-left:10px;
}
#myProgress {
    float:right;
    width: 30%;
    border:1px solid black;
    background-color: #ddd;
  }
  #myBar {
    width: 1%;
    height: 30px;
    background-color: #4CAF50;
  }
  .section-header h3{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-top: 30px;
    padding: 0;
    font-size: 32px;
    font-size: calc(18px + (32 - 18) * ((100vw - 320px) / (1600 - 320)));
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #e11c46;
    bottom: 0;
    left: calc(50% - 20px);
}