#gg-slider {
padding: 0;
margin: 0;
list-style: none;
position:relative;
}
#gg-slider .slide {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
opacity: 0;
text-align: center;
  background-size: cover;
-webkit-transition: all 0.8s ease;
		-moz-transition: all 0.8s ease;
        -ms-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
		transition: all 0.8s ease;
}
#gg-slider .slide.active {
z-index: 99;
opacity: 1;
}
#gg-slider .thumbs-content {
position: absolute;
left: 50%;
bottom: 20px;
z-index: 9999;
    background: #fff;
}
.thumbs-content a {
float: left;
background-size: cover;
background-position: center;
    display: block;
    width:100px;
    height:60px;
    cursor: pointer;
    opacity:1;
    -webkit-transition: all 0.8s ease;
		-moz-transition: all 0.8s ease;
        -ms-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
		transition: all 0.8s ease;
}
.thumbs-content a:hover, .thumbs-content a.active {
    opacity:0.5;
}
#gg-slider .caption {
width: 80%;
margin: 0 auto;
text-align: center;
display: inline-block;
vertical-align: middle;
}
#gg-slider .caption h1 {
font-family: 'Century Gothic';
font-weight: 300;
font-size: 48px;
line-height: 56px;
color: white;
}
#gg-slider .caption p {
font-family: 'Century Gothic';
font-weight: 300;
font-size: 24px;
color: white;
}
.gg-slider-bt {
  position: absolute;
  top: 50%;
  z-index: 999;
  width: 80px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 60px;
  margin: -30px 0 0;
  cursor: pointer;
  color: white;
  font-size: 23px;
  opacity: 0.4;
      -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
}
.gg-slider-bt:hover {
opacity: 0.8;
}

#bt-prev {
left: 0;
text-align: right;
}
#bt-prev:before {
  content: "\f104";
  text-indent: initial;
  display: block;
  font: normal normal normal 54px/1 FontAwesome;
  line-height: 60px;
  margin-right: 20px;
}
#bt-next {
right: 0;
text-align: left;
}
#bt-next:before {
  content: "\f105";
  text-indent: initial;
  display: block;
  font: normal normal normal 54px/1 FontAwesome;
  line-height: 60px;
  margin-left: 20px;
}

.bullets-content {
	position: absolute;
	bottom: 20px;
	color: black;
	z-index: 9999;
	left: 50%;
}
.bullets-content a.active, .bullets-content a:hover {
background: url(img/bullet-hover.png);
  opacity: 0.8;
}
.bullets-content a {
width: 20px;
height: 20px;
display: block;
margin: 0 5px;
background: url(img/bullet.png);
float: left;
cursor: pointer;
opacity: 0.5;
}