

/*-----------------------------------------
01) Elements
--------------------------------------------------*/
.owl-dots {
  float: left;
  margin-top: 50px;
  text-align: center;
  width: 100%;
}
.owl-dots .owl-dot {
  background: #40545a;
  border-radius: 35px;
  display: inline-block;
  height: 10px;
  margin: 0 3px;
  width: 20px;
  transition: all 0.3s ease 0s;
}
.owl-dots .owl-dot:hover {
  background: #19abd6;
}
.owl-dots .owl-dot.active {
  background: #19abd6;
  border: 2px solid #19abd6;
  width: 30px;
}

/*-----------------------------------------
02) Hero
--------------------------------------------------*/
#hero {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 400px;
  width: 100%;
  display: block;
}
.hero-1 {
  background: url('../../images/background/05.jpg');
  background-position: center center;
}
.wrap-hero-content{
  background: -webkit-linear-gradient(145deg, rgba(38,44,51,0.8) 20%, rgba(0,201,255,0.9) 100%);
  background: -moz-linear-gradient(145deg, rgba(38,44,51,0.8) 20%, rgba(0,201,255,0.9) 100%);
  background: linear-gradient(145deg, rgba(38,44,51,0.8) 20%, rgba(0,201,255,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc262c33', endColorstr='#e600c9ff',GradientType=1 );
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-content{
  position: absolute;
  min-width: 1170px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 70px;
  font-weight: 400;
  text-transform: uppercase;
}
h1 span {
  font-weight: 700;
  color: #19abd6;
}
.sub-title {
  font-family: 'Montserrat', serif;
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
  text-transform: none;
  font-weight: 400;
}
.arrow {
  position: absolute;
  bottom: 40px;
  color: #fff;
  font-size: 50px;
  text-align: center;
  left: 0;
  right: 0;
  -webkit-animation-duration:2s;
  -moz-animation-duration:2s;
  -ms-animation-duration:2s;
  -o-animation-duration:2s;
  animation-duration:2s;
}

.mouse-icon {
  position: absolute;
  border: 2px solid #fff;
  opacity: 0.8;
  border-radius: 50px;
  height: 50px;
  width: 30px;
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 100;
}
.mouse-icon .scroll {
  -webkit-animation-name: scrolling;
  -webkit-animation-duration: 1.4s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: scrolling;
  animation-duration: 1.4s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
.mouse-icon .scroll {
  background: #19abd6;
  position: relative;
  border-radius: 50px;
  width: 5px;
  height: 10px;
  top: 6px;
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes scrolling  {
  0%   { top:2px;  opacity: 0;}
  30%  { top:8px; opacity: 1;}
  100% { top:16px; opacity: 0;}
}
@keyframes scrolling  {
  0%   { top:2px;  opacity: 0;}
  30%  { top:8px; opacity: 1;}
  100% { top:16px; opacity: 0;}
}

.content {
  padding: 80px 0;
}

.content h2 {
  color: #40545a;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}

/*-----------------------------------------
02) Page Title
--------------------------------------------------*/
#page-title {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 350px;
  display: block;
}
.page-title-bg {
  background: url('../../images/background/07.jpg');
  background-position: center center;
}
.wrap-page-title-content {
  background: rgba(64, 84, 90, 0.9);
  width: 100%;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-title-content {
  display: block;
  margin-top: 160px;
}
#page-title h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.page-title-content hr {
  margin-bottom: 15px;
}
.page-title-content ul {
  padding-left: 0;
}
.page-title-content ul li {
  display: inline-block;
  margin-right: 3px;
}
.page-title-content ul li {
  font-size: 13px;
  color: #fff;
}
.page-title-content ul li a {
  color: #fff;
}
.page-title-content ul li a:hover {
  opacity: 0.8;
}
.page-title-content ul li.active {
  color: #fff;
}

@media screen and (max-width: 768px){
  .section-title {
    font-size: 38px;
  }
  .hero-content {
    min-width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 992px) {
  .hero-content {
    min-width: 100%;
    padding: 10px;
  }
}