/* Global */
@import url('https://fonts.googleapis.com/css?family=Dancing+Script');

@media screen and (max-width: 2000px){
h2 {
  font-family: 'Dancing Script', cursive;
  display: inline-block;
  position: relative;
color: #100D8B;
font-weight: 900;
cursor: pointer;
}
h2 a{
  
  color: #100D8B;
}
h2 a:hover{
  color: #100D8B;
}
h2::after,h2::before{
  content:'';
  position: absolute;
  width: 120px;
  height: 3px;
  background-color: currentColor;
  top: 0.6em;
  transform: scale(1);
  transition: all 0.2s ease-in;
}
h2:hover::before, h2:hover::after{
  transform:scale(0);
  


}
h2::before{
  left: -140px;

}
h2::after{
  right: -140px;
}
}
@media screen and (max-width: 995px){
h2 {
  font-family: 'Dancing Script', cursive;
  display: inline-block;
  position: relative;
color: #100D8B;
font-weight: 900;
cursor: pointer;
}
h2 a{
  
  color: #100D8B;
}
h2 a:hover{
  color: #100D8B;
}
h2::after,h2::before{
  content:'';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: currentColor;
  top: 0.6em;
  transform: scale(1);
  transition: all 0.2s ease-in;
}
h2:hover::before, h2:hover::after{
  transform:scale(0);
  


}
h2::before{
  left: -100px;

}
h2::after{
  right: -100px;
}
}

@media screen and (max-width: 768px){
h2 {
  font-family: 'Dancing Script', cursive;
  display: inline-block;
  position: relative;
color: #100D8B;
font-weight: 900;
cursor: pointer;
}
h2 a{
  
  color: #100D8B;
}
h2 a:hover{
  color: #100D8B;
}
h2::after,h2::before{
  content:'';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: currentColor;
  top: 0.6em;
  transform: scale(1);
  transition: all 0.2s ease-in;
}
h2:hover::before, h2:hover::after{
  transform:scale(0);
  


}
h2::before{
  left: -50px;

}
h2::after{
  right: -50px;
}
}
@media screen and (max-width: 575px){
h2 {
  font-family: 'Dancing Script', cursive;
  display: inline-block;
  position: relative;
color: #100D8B;
font-weight: 900;
cursor: pointer;
}
h2 a{
  
  color: #100D8B;
}
h2 a:hover{
  color: #100D8B;
}
h2::after,h2::before{
  content:'';
  position: absolute;
  width: 120px;
  height: 3px;
  background-color: currentColor;
  top: 0.6em;
  transform: scale(1);
  transition: all 0.2s ease-in;
}
h2:hover::before, h2:hover::after{
  transform:scale(0);
  


}
h2::before{
  left: -140px;

}
h2::after{
  right: -140px;
}
}
/* Carousel */
#carousel-example {
  font-family: 'Lato', sans-serif;
}
#carousel-example .carousel-wrapper {
  background: none;
  color: white;
  font-weight: 900;
  padding: 10px 0;
  text-transform: uppercase;

}
#carousel-example .carousel-wrapper h2 {
 
  text-align: center;
  color: #A3A0A0;
}
#carousel-example .carousel-wrapper ol {
  margin: 0 auto;
  position: static;
  width: 100%;
}
#carousel-example .carousel-wrapper ol span {
  border: 1px solid transparent;
  cursor: pointer;
  height: auto;
  padding: 10px 15px;
  text-align: center;
  transition: border 0.3s, color 0.3s;
  width: auto;
}
#carousel-example .carousel-wrapper ol .active {
  background: none;
  border: 1px solid orange;
  color: orange;
  height: auto;
  padding: 10px 15px;
  width: auto;
}
#carousel-example .carousel-inner .item {
  transition: opacity 1s;
}
#carousel-example .carousel-inner .item .img-wrapper {
  height: 400px;
  margin: 0 -15px 0 0;
  overflow: hidden;
  position: relative;
}
#carousel-example .carousel-inner .item .img-wrapper img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  z-index: auto;
  
}
#carousel-example .carousel-inner .item .carousel-caption {
  background: #FFEA06;
  color: #111;
  font-size: 1.1em;
  height: 400px;
  margin: 0 0 0 -15px;
  padding: 30px;
  position: static;
  text-align: left;
  text-shadow: none;
  word-break: break-all !important;
}
#carousel-example .carousel-inner .item .carousel-caption h2 {
  padding: 0 0 20px;
  text-transform: uppercase;
  
}
@media (max-width: 767px) {
  #carousel-example .carousel-inner .item .img-wrapper {
    height: auto;
  }
  #carousel-example .carousel-inner .item .img-wrapper img {
    transform: none;
    position: static;
    width: 100%;
  }
  #carousel-example .carousel-inner .item .carousel-caption {
    height: auto;
    word-break: break-all !important;
  }
}
