/*! Frame Carousel - v0.1.0 - 2015-06-08
* http://www.eastros.com/frame-carousel/
* Copyright (c) 2015 Umar Ashfaq; Licensed MIT */
.fc {
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
  /*width: 300px;
  height: 400px;*/
  width: calc(96% - 90px) !important;
  height: 0 !important;
    padding-top: 75%; /* (img-height / img-width * container-width) */
                /* (853 / 1280 * 100) */
  display: block;
  margin: 0px 45px 30px;

}
.fc .fc-frame {
  margin: 0 auto;
}
.fc .fc-image-mask {
  background: #fff;
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.fc .fc-film {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.fc .fc-film:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.fc .fc-image-masked {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  float: left;
}
.fc .fc-controls {
  top: 50%;
  width: 100%;
  position: absolute;
  text-align: center;
  z-index: 10;
}
.fc .fc-btn {
  color: #028B96;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid #028B96;
  position: absolute;
  box-sizing: border-box;
  line-height: 0.3;
  font-size: 40px;
  opacity: 0.7;
}
.fc .fc-btn:hover,
.fc .fc-btn:focus,
.fc .fc-btn:active,
.fc .fc-btn.active {
  text-decoration: none;
  opacity: 1;
}
.fc .fc-btn.disabled {
  pointer-events: none;
  opacity: 0.4;
  color:#575756;
  border: 1px solid #575756;
}
.fc .fc-btn.disabled.fc-btn-left:before {
     border-color: transparent #575756 transparent transparent !important;

}
.fc .fc-btn.disabled.fc-btn-right:before {
   border-color: transparent transparent transparent #575756 !important;
}
.fc .fc-btn.fc-btn-left {
  left: -45px;
}
.fc .fc-btn.fc-btn-left:before {
  right: 16px;
  top: 10px;
  position: absolute;
  display: block;
  content: " ";
  border: 9px solid;
  width: 0;
  height: 0;
  /* line-height: normal; */
  border-color: transparent #028B96 transparent transparent !important;
}
.fc .fc-btn.fc-btn-right {
  right: -45px;
}
.fc .fc-btn.fc-btn-right:before {
  left: 16px;
  top: 10px;
  position: absolute;
  display: block;
  content: " ";
  border: 9px solid;
  width: 0;
  height: 0;
  /* line-height: normal; */
  border-color: transparent transparent transparent #028B96 !important;
}
.fc .fc-pagination {
  font-size: 40px;
  width: 100%;
  text-align: center;
  top: 95%;
  left: 7px;
  position: absolute;
}
.fc .fc-pagination .fc-pagination-inner {
  margin: 0 auto;
  display: inline-block;
}
.fc .fc-pagination .fc-pagination-inner:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.fc .fc-pagination .fc-pagination-inner a {
  color: #028B96;
  position: relative;
  float: left;
  display: block;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 14px;
  height: 14px;
  opacity: 0.7;
  text-decoration: none;
}
.fc .fc-pagination .fc-pagination-inner a:before {
  position: absolute;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #028B96;
  border-radius: 6px;
  box-sizing: border-box;
  top: 0;
  left: 0;
}
.fc .fc-pagination .fc-pagination-inner a:hover,
.fc .fc-pagination .fc-pagination-inner a:focus,
.fc .fc-pagination .fc-pagination-inner a:active,
.fc .fc-pagination .fc-pagination-inner a.active {
  text-decoration: none;
  opacity: 1;
}
.fc .fc-pagination .fc-pagination-inner a:hover:before,
.fc .fc-pagination .fc-pagination-inner a:focus:before,
.fc .fc-pagination .fc-pagination-inner a:active:before,
.fc .fc-pagination .fc-pagination-inner a.active:before {
  background-color: #028B96;
}
.fc .fc-animate {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}
.fc .fc-debug:after {
  content: attr(data-debug);
  position: absolute;
  top: 0;
  left: 0;
  color: red;
  background: white;
}
.fc.fc-collapsed {
  /*background-image: none !important;*/
  /*margin: 0 !important;*/
}
.fc.fc-collapsed .fc-pagination {
  /*top: 70%;*/
}
.fc.fc-collapsed .fc-controls {
}

.gallery .fc-text {  
    width: 100%;
    text-align: center;
}
.gallery .fc-text .fc-title-inner{
  margin-top:10px;
  font-family: poppins, sans-serif;
  font-weight: 300;
  font-size:19px;
  line-height: 23px;
}

.gallery .fc-text .fc-alt-inner{
    font-family: poppins, sans-serif;
  font-weight: 600;
  font-size:25px;
  line-height: 25px;
  color:#028B96;

}

