#gallery {
    overflow: hidden;
}

#owl-gallery .item img {
    display: block;
    width: 100%;
    height: auto;
}

footer {
    margin-top: 0px;
}

.item {
    position: relative;
}

.owl-buttons {
    position: absolute;
    bottom: 15px;
    right: 10%;
    opacity: 99999;
}

.caption-container {
    min-height: 100px;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.caption-text {
    color: white;
    width: 80%;
    /* font-size: 0.8em; */
	font-size: 1rem;
	line-height: 1.5;
    margin: 30px auto 20px;
    font-family: "Avenir", sans-serif;
    vertical-align: middle;
    position: relative;
}

.caption-text span {
    /* line-height: 12px; */
	line-height: 1.5;
}

.caption-twitter-ico {
    background-image: url("../images/sprite.png");
    background-repeat: no-repeat;
    background-size: 400px auto;
    display: block;
    width: 44px;
    height: 44px;
    left: 44px;
    border-radius: 23px;
    background-color: #104F83;
    opacity: 1;
    top: -50px;
    position: absolute;
    background-position: -355px -141px;
}

.caption-facebook-ico {
    background-image: url("../images/sprite.png");
    background-repeat: no-repeat;
    background-size: 400px auto;
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 23px;
    background-color: #104F83;
    opacity: 1;
    top: -50px;
    position: absolute;
    background-position: -320px -141px;
}

strong.program::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.5%;
    background-image: url("../images/sprite.png");
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: -324px -203px;
}

a.learn-more {
    margin-left: 5px;
    color: #E25E34;
    text-transform: uppercase;
    /* font-size: 0.8em; */
	font-size: 1rem;
	line-height: 1.5;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
}
a.learn-more:after {
    content: "";
    background-color: #E25E34;
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
a.learn-more:hover {
    color: #ffffff;
}
a.learn-more:hover:after {
    width: 100%;
}

/* Buttons */
div.owl-prev,
div.owl-next {
    width: 41px;
    height: 41px;
    text-indent: -99999px;
    background-image: url("../images/sprite.png");
    transform: rotate(180deg);
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: -250px -200px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    transition: opacity 0.2s;
    display: inline-block;
}
div.owl-prev {
    transform: rotate(180deg);
}
div.owl-next {
    transform: rotate(0deg);
}

div.owl-prev:hover,
div.owl-next:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}