/*----color Picker

Green #54C571
Brown #C34A2C
Orange #FF5F1F
DodgerBlue (W3C) - #1E90FF
sky blur #E1FDFD

--*/
body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.small-heading{
  color: #FF5F1F;
  text-transform: uppercase;
  font-weight: 600;
}
#top-bar{
  width: 100%;
  line-height: 15px;
  background: #1E90FF;
}
@media(max-width:  768px){
  #top-bar{
    line-height: 40px;
  }
}
.top-bar{
  padding-top: 5px;
}
.top-bar a{
  color: #fff;
  text-decoration: none;
}
.top-bar .social-icon{
 margin-top: 5px;
}
.top-bar .social-icon span{
  margin-right: 10px;
}
.top-bar ul.list-inline li{
  display: inline-block;
  margin: 5px;
  padding: 0;
}
.top-bar ul.list-inline li .topbar-label{
  color: #fff;
}
.top-bar ul.list-inline li .topbar-hightlight,
.top-bar ul.list-inline li .topbar-hightlight a{
  color: #fff;
  text-decoration: none;
}
@media (max-width:  768px){
  .top-bar ul.list-inline li{
    display: inherit;
    margin: 0;
    padding: 0;
    margin-bottom: -15px;
  }
  .top-bar .social-icon{
    display: none;
  }
}
.top-bar ul.list-inline li span{
  text-align: center;
}
.appointment-btn a button{
  color: #ffff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.5s fade;
  height: 100%;
  margin-top: 2px;
  padding: 0 5px;
  background: #000;
}
.appointment-bt a button:hover{
  color: #fff;
}
.appointment-btn{
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 45px;
}
/*-------Header-----*/
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  display: block;
  padding: 0 15px;
  line-height: 70px;
  background: #ffffff;
  color: #463f3f;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
nav ul li a:hover {
  background: #f2f2f2;
  color: #fb5958;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul{
  z-index: 1000;
}
nav ul li ul li {
  min-width: 190px;

}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1000;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 150px;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 70px;
  background: #ffffff;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}


.carousel{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.carousel-content {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 60%;
}
.carousel-content img{
  width: 110%;
  height: 100%;
}
.carousel-content h3,
.carousel-content h1,
.carousel-content p{
  color: #fff;
}
@media (max-width: 992px){
  .carousel-content h3
  {
    font-size: 14px;
  }
  .carousel-content h1
  {
    font-size: 20px;
  }
  .carousel-content p
  {
    font-size: 14px;
  }
}
@media (max-width: 672px){
.carousel-content p
  {
    display: none;
  }
  .owl-carousel .item img{
      height: 300px;
  }
}

.carousel-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
}
.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0px;
    padding: 15px;
    color: #000;
    /* font-size: 14px; */
}
.owl-carousel button.owl-prev,
.owl-carousel button.owl-next{
  padding: 10px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #fff !important;
}
@media(max-width:  592px){
  .owl-carousel .owl-nav{
    padding: 5px;

  }
  .owl-carousel button.owl-prev,
  .owl-carousel button.owl-next{
    width: 20px;
    height: 20px;
    margin-right: 2px;
    padding: 5px;
    background: #00BFFF !important;
  } 
}
.carousel-content button{
  background: #F16140;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px;
}
.carousel-content button a{
  color: #ffff;
  text-decoration: none;
}
.facility1{
  background: #54C571;
}
.facility2{
  background: #C34A2C;
}
.facility3{
  background: #FF5F1F;
}
.facility4{
  background: #1E90FF;
}
.facility-box{
  padding: 15px 10px;
  color: #fff;
  height: 220px;
  width: 100%;
}
.facility-box h3:after{
  content: " ";
  display: block;
  width: 20%;
  height: 2px;
  background: #ffff;
  margin-top: 10px;
}
.content-head h2{
  text-align: center;
  font-size: 38px;
}
.heilight-link{
  color: #FF5F1F;
  font-weight: bold;
}

.content-img img{
  width: 100%;
  height: auto;
  border-radius: 40px;
}
.about-content p{
  text-align: justify;
  padding: 20px 0;
}

.service-box{
  padding: 25px 20px;
  background: #fff;
  box-shadow: 0 0 20px #eee;
  margin-bottom: 20px;
  border-radius: 20px;
  height: 320px;
}
.service-box .service-img img{
  height: 80px;
  width: auto;
  background: #FF5F1F;
  padding: 10px;
  border-radius: 50%;
}
.service-box h4{
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
}
.service-box p{
  text-align: center;
  color: #8D8D8D;
}
.page-banner{
  position: relative;
}
.page-banner img{
  width: 100%;
  height: auto;
  margin-left: 0;
}
.page-banner .page-banner-content{
  position: absolute;
  top: 10%;
  left: 20%;
  padding: 20px;
}
.page-banner .page-banner-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,255,255, 0.2);
}
.page-banner .page-banner-content h3{
  font-size: 40px;
  color: #000;
  font-weight: bold;
}
@media(max-width: 592px){
  .page-banner .page-banner-content h3{
      font-size: 20px;
      color: #000;
      font-weight: bold;
    }
    .page-banner .page-banner-content{
      position: absolute;
      top: 5%;
      left: 10%;
      padding: 10px;
    }
    .page-banner img{
      height: 130px;
    }
}
.page-banner .page-banner-content span{
  color: #000;
  font-weight: bold;
}
.page-banner .page-banner-content .page a{
  color: #1E90FF;
  font-weight: bold;
  text-decoration: none;
}
.blogs-box{margin-bottom: 10px;}

#contact-box{
  background: url('IMG/contact-banner.jpg');
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
}
@media(max-width: 764px){
  #contact-box{
    background: none;
    padding: 10px;
  }
}
.contact-box{
  padding: 40px;
  background: #E1FDFD;
  margin: 60px 0px;
  border-radius: 20px;
}
.contact-box H2{
  font-weight: bold;
  padding: 15px 0;
}
.contact-box .input-group{
  margin-bottom: 10px;
}
.contact-box .input-group input,
.contact-box .input-group textarea{
  position: relative;
  width: 100%;
  height: 40px;
  outline: none;
  border: none;
  padding-left: 10px;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
}
.contact-box .input-group textarea{
  height: 140px;
}
.contact-box .input-group button{
  background: #FF5F1F;
  color: #fff;
  outline: none;
  border: none;
  width: 100%;
  text-align: center;
  height: 40px;
  border-radius: 10px;
}
.contact-details{
  cursor: pointer;
  box-shadow: 0 0 5px #eee;
  padding: 30px 10px;
  margin-bottom: 10px;
  width: 90%;
  height: 300px;
}
.contact-details .contact-icon .material-icons{
  font-size: 80px;
  background: #fc0;
  padding: 20px;
  border-radius: 50%;
  border:  1px dashed #000;
  color: #fff;
}
.contact-details .contact-icon .material-icons.item1{
  background: #1E90FF;
}
.contact-details .contact-icon .material-icons.item2{
  background: #D5200D;
}
.contact-details .contact-icon .material-icons.item3{
  background: #FF5F1F;
}
.contact-details .contact-icon h5{
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}