body {
    font-family: "Lato", sans-serif;
}

/*************Start Slider***************/
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    border: 1px solid #000;
    border-radius: 10px;
}
.share {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 99999;
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
	border: 1px solid #feab26;
    background-color: #feab26;
}
.carousel-caption{
	color: #000;
}
/*************End Slider***************/

/*************Start About***************/
.gallery {
    position:relative;
    width: 70%;
	height: 100%;
	cursor: pointer;
   
}
.gallery .box {
    position:relative;
   width: 100%;
	height: 100%;
    background:#000;
    float:left;
    margin:15px 0;
    box-sizing:border-box;
    overflow:hidden;
    box-shadow:0 5px 10px rgba(0,0,0,.8);
}
.container .box:before {
    content:'';
    position:absolute;
    top:10px;
    left:10px;
    right:10px;
    bottom:10px;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    box-sizing:border-box;
    transition:0.5s;
    transform: scaleX(0);
    opacity:0;
}
.container .box:before {
    transform:scaleX(1);
    opacity:1;
}
.container .box:after {
    content:'';
    position:absolute;
    top:10px;
    left:10px;
    right:10px;
    bottom:10px;
    border-left:1px solid #fff;
    border-right:1px solid #fff;
    box-sizing:border-box;
    transition:0.5s;
    transform: scaleY(0);
    opacity:0;
}
.container .box:after {
    transform:scaleY(1);
    opacity:1;
}
.container .box .imgBox {
    position:relative;
}
.container .box .imgBox img {
    width:100%;
    transition:0.5s;
}
.container .box .imgBox img {
    opacity:.2;
    transform:scale(1.2);
}
.container .box .content {
    position:absolute;
    width:100%;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
    padding:20px;
    box-sizing:border-box;
    text-align:center;
}
.container .box .content h2 {
    margin: 0 0 10px;
    padding:0;
    color:#fff;
    transition:0.5s;
    transform:translateY(-50px);
    opacity:0;
    visibility:hidden;
}
.container .box .content p {
    margin:0;
    padding:0;
    color:#fff;
    transform:translateY(50px);
    opacity:0;
    visibility:hidden;
}
.container .box .content h2,
.container .box .content P {
    opacity:1;
    visibility:visible;
    transform:translateY(0px);
}
/*************End About***************/
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 0px solid #e5e5e5; 
}
.btn-group-justified {
    display: table;
    width: 35%;
    table-layout: fixed;
    border-collapse: separate;
}
.btn-default:hover {
    color: #333;
    background-color: transparent;
    border-color: transparent;
}
/*************Start Responsive***************/
@media screen and (min-width: 768px){
.carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 25%;
	color: #000;
}
}
@media(max-width:767px){
	.gallery {
    position:relative;
    width: 100%;
	height: 100%;
	cursor: pointer;
   
}
}
@media(max-width:320px){
.carousel-caption {
   display: none;
}
}
/*************End Responsive***************/