/*-- Use For Custom Styling --*/
.contact_sec{
  background: #f2f2f2;
  color: #333
}
.contact_sec textarea.form-control{
  height: 150px;
}
.contact_sec .btn.btn_submit{
  display: block;
  width: 100%;
  background: #0176ff;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  text-transform: uppercase
}
.contact_sec .btn.btn_submit:hover{
  background: #002450;
  color: #fff;
}

.contact_info img{
  margin-bottom: 10px;
}
.contact_info p{
  margin-bottom: 5px;
}
.text-dark{
  color: #333!important
}

.owl-theme .owl-nav{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #869791;
  color: #fff;
  border: 0;
  border-radius: 50%
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover{
  background: var(--primary);
  color: #fff;
  opacity: 1
}
.owl-carousel .owl-nav button.owl-next{
  right: 3%;
  left: auto
}
.owl-carousel .owl-nav button.owl-prev{
  left: 3%;
  right: auto
}
.owl-theme .owl-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.owl-theme .owl-dots{padding-bottom: 10px;}
.owl-theme .owl-dots .owl-dot span{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  background: #fff;
}
.owl-theme .owl-dots .owl-dot.active span{
  background: #002450;
}

.owl_hero{
  min-height: 60vh
}
.owl_hero .item{
  position: relative
}
.owl_hero .item .cont{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);    
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 20px;
  z-index: 2
}
.owl_hero .item .cont h1{
  font-size: 36px;
  text-align: center;
  margin: 0;
  color: #fff;
  font-weight: 600
}
.owl_hero .item .cont p{
  font-size: 18px;
  text-align: center;
  margin: 0;
  color: #fff
}

.about-media{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}













@media screen and (max-width: 575px){
  .contact_sec .btn.btn_submit{
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  header a.logo img{
    max-width: 120px!important;
  }
  .side-menu .side-nav{
    height: 40%
  }
  .owl_hero{
    min-height: 20vh
  }
  .owl_hero .item .cont h1{
    font-size: 15px;
  }
  .owl_hero .item .cont p{
    display: none
  }
  .owl_hero .item .cont{
    position: relative;
    background: #00b7ff;
    left: auto;
    right: auto;
    transform: none
  }
  .owl-dots{background: #00b7ff}
}