html{
  font-family: 'Vollkorn', serif;
  /* font-family: 'Nunito', sans-serif; */
}

.headerContainer{
  background-color: #023E7D;
}

.headerImg{
  width: 400px;
  height: auto;
  float: left;
}

.text-light{
  color: #009fbb;
}

.navbar-nav{
  font-weight: 600;
  font-family: 'Sawarabi Mincho', serif;
}

.nav-item .nav-link{
  color: #023E7D;
}

.navbar-nav .nav-item .active{
  background-color:rgba(248, 245, 245, 0.15) ;
  border-bottom: solid #2274B9;
  font: bold;
  color: #023E7D;
}

.navbar-nav .nav-item:hover,
.navbar-nav .nav-item:focus{
  background-color:rgba(248, 245, 245, 0.15) ;
}

.nav-link:focus, .nav-link:hover{
  text-decoration: unset;
  color: #009fbb;
}

.contactUsContainer{
  background-color: #023E7D;
}

footer{
  background-color: #5C677D;
  color: #fff;
}

#map_canvas{
  width:100%;
  height:300px !important;
}

.navbar-nav > li{
  padding-left:30px;
  padding-right:30px;
}

#goToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #d7df34; /* Set a background color */
  color: #023E7D; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}
  
#goToTopBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image [images/dental (4)-1.jpg]. This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    
  /* Set a specific height */
  height: 50%;
    
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
  
/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(221, 221, 221, 0.6); /* Black background with 0.5 opacity */
  color: #023E7D;
  padding: 30px; /* Some padding */
}

.img-text {
  position: relative;
}

.img-text .text-bg {
  position: absolute; /* Position the background text */
  width: 30%; /* Full width */
}

.text-hov:hover {
  color: #023E7D;
}

.btn {
  border: none; /* Remove borders */
  color: white; /* Add a text color */
  padding: 14px 28px; /* Add some padding */
  cursor: pointer; /* Add a pointer cursor on mouse-over */
}

.book{
  background-color: rgba(2, 61, 125, 1);
}

.book:hover{
  background-color: rgb(4, 77, 156);
}

.tx{
  background-image: linear-gradient(
    to right,
    #2274B9,
    #2274B9 50%,
    #023E7D 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.tx:before{
  content: '';
  background: #2274B9;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.tx:hover {
 background-position: 0;
}

.tx:hover::before {
  width:100%;
}

.tx2 {
  background-image: linear-gradient(
    to right,
    #023E7D,
    #023E7D 50%,
    #023d7d 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.tx2:before {
  content: '';
  background: #2274B9;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.tx2:hover {
 background-position: 0;
}

.tx2:hover::before {
  width:100%;
}
@media (max-width: 767px) {
  .hero-text{
    width: 100%;
  }
}