
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  padding-top: 0;
  background-image: linear-gradient(50deg,#bd92ee,#dfcef3)
}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#headertop{
  background-color:white;
  text-align: left;
  z-index: 900;
}

.subheader{
  background-color:white;
  text-align: center;
  padding-left: 20%;    
  padding-top: 0px;
  padding-bottom: 0px;  
  
}
.subheader .location{
  align-content: flex-end;
  text-align: right;
  font-size: 14px;
  display: inline;
  color: purple;
  padding-left: 20px;
}

.subheader .sublogo{
  margin-bottom: 0px;
  padding-right: 0px;
  margin-top: 0px;
  padding-bottom: 0px;  
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  /* Fallback: Set a background color. */
  background-color: red;
  
  /* Create the gradient. */
  background-image: linear-gradient(45deg, rgb(239, 103, 225), rgb(236, 4, 213));
  
  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;

  /* Use the text as a mask for the background. */
  /* This will show the gradient as a text color rather than element bg. */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

 .logo {
  align-content: end;
  font-size: 44px;
  margin: 0;
  padding-top: 50px;
  padding-left: 20px;
  padding-bottom: 0px;
  line-height: 1; 
  font-weight: 900;  
  letter-spacing: 0.5px;  
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    /* Fallback: Set a background color. */
  background-color: red;
  
  /* Create the gradient. */
  background-image: linear-gradient(45deg, #f378e7, rgb(236, 4, 213));
  
  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;

  /* Use the text as a mask for the background. */
  /* This will show the gradient as a text color rather than element bg. */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
 

.input-group-append {
        cursor: pointer;
        height: 24px;
      }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.uploadLabel{
  font-size: 24px;
  text-align: right;   
  border-radius: 10;
  size: 100;
  border-color:black;
  border-width: 2px;
  padding-left: 20px;
  padding-right: 20px;

}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
 
input[type="file"]::file-selector-button {
  border: 2px solid #1977cc;
  border-radius: 10px;  
  padding: 0.2em 2em 0.2em 2em;
  border-radius: 0.2em;
  background-color: #fec39b;
  transition: 1s;
}

input[type="file"]::file-selector-button:hover {
  background-color: #81ecec;
  border: 2px solid #00cec9;
} 

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1977cc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #298ce5;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #1977cc;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1977cc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0p 0;  
  align-items: center;
  box-shadow: 5px 4px 15px 2px #fdcccc;
  align-content: center;
}
 

#header.header-scrolled {
  top: 0;
}


#header2 {
  align-items: end;
  background: #f7dede;
  transition: all 0.5s;
  z-index: 995;  
  padding: 0px 0;  
  box-shadow: 0px 2px 15px #fdcccc;
  text-align: end;
}

#kinderlogo{
   width: 75%;
}
/**
* Appointment Button *
*/
.appointment-btn-containers{     
  padding-top: 50px;
  width: 10%;  
  align-items: center;    
  transition: all 0.5s;  
  z-index: 995;     

}
.appointment-btn {
  margin-left: 5px;  
  background:rgb(244, 8, 8);
  color: #fff;
  border-radius: 50px;
  padding: 8px 10px;  
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-flex;
}

.appointment-btn:hover { 
  color: #fff;  
  font-weight: bolder;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 0px 0 0;
    padding: 6px 18px;
  }
}

 



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {  
  width: 70%;
  align-items: center;
  padding-top: 2px;
  
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #2c4964;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ef0def;
  border-color: #1977cc;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ef0def;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1977cc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh; 
  background: url("../img/home-new.png") ;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: -120px;
  box-shadow: 0px 2px 15px #fdcccc;
}
 
 
#hero .container {
  position: relative;
}

#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 24px;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #d35400;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us{
 width: 97%; 
 padding-bottom: 40px;
 overflow: hidden;
} 
 

.why-us .content {
  padding: 10px;
  background: #dfbd43;
  border-radius: 4px;
  color: #fff;
  align-items: center;
  align-content: center;
  text-align: center;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 20px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .icon-boxes .icon-box {
  align-content: center;
  border-radius: 10px;
  background: #f9ebeb;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  color: #90328a;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #39ec5a;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
  align-content: center;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #1d1d1d;
  text-align: justify;
}

#adhdappointment{
  align-content: center;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom:0px;
  width: 100%;
  color: white;
} 

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-image: linear-gradient(45deg, rgb(248, 245, 240), blanchedalmond);
  box-shadow: 5px 2px 15px 2px #fdcccc;
  font-size: 14px;
  text-align: justify;
}
.about .icon-boxes h4 {
  font-size: 18px;
  color: #d63fbf;
  margin-bottom: 15px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #d63fbf;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d63fbf;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #d63fbf;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #d63fbf;
  border-color: #d63fbf;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #d63fbf;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
}

.about .icon-box .list-box {
  margin-left: 100px;
  line-height: 24px; 
}

/* image from freepick*/
.about .video-box {
  background: url("../img/momwithbaby.jpg") center center no-repeat;
  background-size: cover;
  box-shadow: 5px 5px 6px 6px #f2bebe;
  padding-left: 10px;
  min-height: 500px;
}  
 

/*--------------------------------------------------------------
# generalpaediatrics
--------------------------------------------------------------*/
.generalpaediatrics{  
  background-image: linear-gradient(20deg, rgb(250, 217, 167), blanchedalmond);   
  font-size: 14px;
  color: black;
}

.generalpaediatrics .icon-box {
  color: black;
  text-align: center;
  border: 2px   #cc19c0;;
  padding: 40px 20px 20px 20px;
  transition: all ease-in-out 0.3s; 
  background-image: linear-gradient(20deg,rgb(242, 162, 226),#f9ebeb);   
  box-shadow: 5px 2px 12px 2px #fdcccc;
}

.generalpaediatrics .section-title { 
  background-image: linear-gradient(20deg,#f9ebeb, rgb(242, 162, 226));   
  padding-left: 20px;
  padding-top: 20px;
  text-align: left;
  padding-bottom: 30px;   
  border-radius: 2px;    
  box-shadow: 5px 2px 15px 2px #f08bdc;
}

.generalpaediatrics .subsections {
  border-radius: 10px;
  background-color: white;
  box-shadow: 5px 2px 15px 2px #f08bdc;
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 30px;
  text-align: left;
  padding-bottom: 20px;
  border-top:#a0a768 ;
}


.generalpaediatrics .subsections .icon-box .list-box {
   text-align: left;
   padding: 10px 70px;   
}
.generalpaediatrics .section-title .genheader{
  text-align: center;  
  color: #90328A;
}
 
  

.generalpaediatrics .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

 
.generalpaediatrics .subsections .icon-box .icon-header{
   text-align: left;
   font:bolder;
   color: black;
   font-size: 16px;
   padding-top: 5px;
}

.generalpaediatrics .icon-box p {
  line-height: 24px;
  text-align: left;
  margin-bottom: 0;
}

.generalpaediatrics .icon-box:hover {
  background-image: linear-gradient(20deg, #f7aee9, #ecc7dc);   
  color: black;
}

.generalpaediatrics .icon-box:hover .icon i {
  color: #fff;
}
 

.generalpaediatrics .subsections .icon-box .genpeadcons{
  text-align: center;  
  font: bold;
  font-size: medium;
  padding-bottom: 10px;
}



.generalpaediatrics .icon-box:hover .icon::before {
  background: rgba(255, 255, 255, 0.3);
} 
 
.generalpaediatrics .subsections .icon-box .doctorreddyimage{
  background: url("../img/DrReddy.png") center center no-repeat;
  background-size: contain;
  min-height: 320px;
}

.generalpaediatrics .container .section-title .appointmentbooking p {
  background-color: #e2f2c3; 
  columns: red;
}

.generalpaediatrics .container .section-title .appointmentbooking h5 {
  color: red;
  text-align: center;
}

.generalpaediatrics .container .section-title .appointmentbooking-container a {
  color: red;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  text-decoration: underline;
}

.generalpaediatrics .container .section-title .appointmentbooking-container a:hover {
  color: red;
  text-align: center;
  font-size: 22px;
  font-style: italic;
  text-decoration: underline;
}


.generalpaediatrics .container .section-title  .appointmentbooking-container{
  align-content: center;
  padding: 20px 80px;
  margin: auto;
  width: 70%;  
  padding: 10px;
  
}

/*--------------------------------------------------------------
# generalpaediatrics
--------------------------------------------------------------*/
.asdlink{
 color: red; 
}

.developmentalandadhdpeadiatrics{
  /*background-image: url("/assets/img/DevelopmentBackground.png");*/
  background-image: linear-gradient(45deg, rgb(248, 245, 240), blanchedalmond);
  background-repeat: no-repeat;
  font-size: 14px;
  background-size: cover;
}

.developmentalandadhdpeadiatrics .section-title {
  background-image: linear-gradient(50deg, #a1dcde, #d2c2e8);
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
  text-align: left;
  padding-bottom: 30px;
  box-shadow: 5px 2px 15px 2px #f08bdc;
}
 
.developmentalandadhdpeadiatrics .section-title .genheader{
  text-align: center; 
  color: #00719b; 
}

.developmentalandadhdpeadiatrics .subsections {
  background-color: white;
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 30px;
  text-align: left;
  padding-bottom: 20px;
  border-top:#a0a768 ;
  box-shadow: 5px 2px 15px 2px #f08bdc;
}


.developmentalandadhdpeadiatrics .icon-box1 {
  text-align: center;
  border: 2px dotted  #6f97a6;;
  padding: 40px 20px 20px 20px;
  transition: all ease-in-out 0.3s;   
  background-image: linear-gradient(50deg, #a1dcde, #d2c2e8);
}

.developmentalandadhdpeadiatrics .icon-box1 .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #57889a;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.developmentalandadhdpeadiatrics .icon-box1 .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.developmentalandadhdpeadiatrics .icon-box1 .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(26, 123, 208, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}

.developmentalandadhdpeadiatrics .icon-box1 h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;  
  color: #00719b ;
}

 
.developmentalandadhdpeadiatrics .subsections .icon-box1 .icon-header{
   text-align: left;
   font:bolder;
   color: black;
   font-size: 16px;
   padding-top: 5px;
}

.developmentalandadhdpeadiatrics .icon-box1 p {
  line-height: 24px;
  text-align: left justify;
  margin-bottom: 0;
}

.developmentalandadhdpeadiatrics .icon-box1:hover {
  background-image: linear-gradient(50deg, #80dcdf, #b898e8);
  border-color: #90cc19;
  color: black;
}

.developmentalandadhdpeadiatrics .icon-box1:hover .icon {
  background: #457d90;
}

.developmentalandadhdpeadiatrics .icon-box1:hover .icon i {
  color: #fff;
}

.developmentalandadhdpeadiatrics .subsections .icon-box1 .list-box {
  text-align: left;
  padding: 10px 70px;   
}

.developmentalpeadpara{
  text-align: justify;
   
}

.developmentalpeadparacenter{
  text-align: center;
   
}

.diagpara{
  width: 100%;   
  padding-left: 40px;
  padding-top: 0px;
  align-items: end; 
  align-content: flex-end;
}

 
/*--------------------------------------------------------------
# outeam
--------------------------------------------------------------*/
.ourteam{ 
  background-image: linear-gradient(45deg, #f4ddec, blanchedalmond); 
  background-repeat: no-repeat;
  font-size: 14px;
  background-size: cover;
}

.ourteam .section-title {
  background-image: linear-gradient(50deg, #a1dcde, #d2c2e8);
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
  text-align: left;
  padding-bottom: 10px;
  box-shadow: 5px 2px 15px 2px #f08bdc;

}
 
.ourteam .section-title .genheader{
  text-align: center; 
  color: #00719b; 
}

.ourteam .subsections {
  background-color: white;
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 30px;
  text-align: left;
  padding-bottom: 20px;
  border-top:#a0a768 ;
  box-shadow: 5px 2px 15px 2px #f08bdc;
}

.ourteam .outeampaedsbox {
  text-align: left;
  border: 2px dotted  #6f97a6;;
  padding: 50px 10px 10px 20px;
  transition: all ease-in-out 0.3s;   
  background-image: linear-gradient(50deg, #a1dcde, #d2c2e8);
}

.imagediv { 
  border: 2px solid  #a6746f;;
  
}

.ourteamdrname{  
  color: #253c53;
  font-size: 16px; 
  font-weight: 700; 
  text-align: center;
  margin: 0 0 0 0;
  text-transform: none;
}

.ourteamdrnamedeg{
  font-size: 14px;
  color: black;
  line-height: 30px;
  text-align: center;
  font-weight: 600;
  margin: 0 0 0 0;
} 


/*--------------------------------------------------------------
# appointmentbookingsteps
--------------------------------------------------------------*/
.appointmentbookingsteps{  
  background-image: radial-gradient(blanchedalmond, rgb(221, 173, 101));
  font-size: 14px;
}


.appointmentbookingsteps .section-title {
  box-shadow: 0px 0px 10px 10px gray;;
  text-align: center;
  background-image: radial-gradient(rgb(255, 208, 137),blanchedalmond);
  padding-left: 50px;
  padding-top: 20px;
  text-align: left;
  padding-bottom: 30px;
}

.appointmentbookingsteps .section-title .genheader{
  text-align: center;  
}
.appointmentbookingsteps .section-title  h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;  
  color:rgb(237, 38, 38);
}

.appointmentbookingsteps .container .section-title  h6 {
  color: black;
  text-align: center;
}

.appointmentbookingsteps .container .section-title  .centeralignpara {
  color: black;
  text-align: center;
}
.appointmentbookingsteps .howtoappointment{
  align-content: center; 
  font-size: 20px;
  width: 100%;   
  text-align: center;
  text-decoration: bold;
  background-image: linear-gradient(blanchedalmond, rgb(209, 179, 135));
  color: rgb(237, 38, 38);
} 


.appointmentbookingsteps .howtoappointmentsteps{
  text-align: center;
  background-color:rgb(249, 196, 118);
  box-shadow: 0px 10px 10px 10px gray;;
  padding-left: 50px;
  padding-top: 20px;
  text-align: left;
  padding-right: 20px;
  padding-bottom: 30px;
}

.appointmentbookingsteps .howtoappointmentsteps .stepheader{
  text-align: left;
  font:bolder;
  color: black;
  font-size: 16px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# urgentcare
--------------------------------------------------------------*/

.urgentcare{
  background-image: linear-gradient(45deg, rgb(248, 245, 240), rgb(247, 224, 191));
  font-size: 14px;
  align-content: center;
  font-style: normal;
  color : black;
} 

.urgentcare .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
}

.urgentcare .section-title {
  background-image: linear-gradient(40deg, #f67777b8,#60b7c06c);
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
  text-align: left;
  padding-bottom: 30px;
  box-shadow: 0px 10px 10px 10px #fdcccc;
}
 
.urgentcare .section-title .genheader{
  text-align: center;  
  color: #ea3b18b8;
}

.urgentcare .subsections {
  background-color: white;
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
  text-align: left;
  padding-bottom:10px;
  border-top:#a0a768 ;
  box-shadow: 0px 10px 10px 10px #fdcccc;
}


.urgentcare .icon-box {
  text-align: center;
  border: 2px dotted  #6f97a6;;
  padding: 40px 20px 20px 20px;
  transition: all ease-in-out 0.3s;   
  background-image: linear-gradient(40deg, #f58a8ab8,#78c0c86c);
}

.urgentcare .subsections .icon-box .p{
  text-align: justify;
}
.urgentcare .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #57889a;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.urgentcare .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.urgentcare .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(26, 123, 208, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}

.urgentcare .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;  
}

.urgentcare .icon-box p {
  line-height: 24px;
  text-align: left justify;
  margin-bottom: 0;
}

.urgentcare .icon-box:hover {
  background-image: linear-gradient(40deg, #f67777b8,#60b7c06c);
  border-color: #90cc19;
  color: black;
}
   
.urgentcarepara{
  text-align: justify;
   
}
 

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.referral{
  background-image: linear-gradient(45deg, #4dcfdd6c,#ae71b0b8);
  font-size: 14px;
  align-content: center;
}

.referral .section-title h2{
  color: #a82aacb8;
}

.urgentcareform{
  background-image: linear-gradient(45deg, #1ed6ea6c,#ae71b0b8);
  font-size: 14px;
  align-content: center;
}


.referral .referral-form {
  align-content: center;
  width: 100%;  
  text-align: center;
  border-color: #b17e7e;
  box-shadow: 0px 10px 10px 10px gray;
  border-style: double;
  background-image: linear-gradient(45deg, blanchedalmond,rgb(223, 184, 125));
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 20px; 
  padding-bottom: 30px;
}

.urgentcare .urgentcare-form {
  align-content: center;
  width: 100%;  
  text-align: center;
  border-color: #b17e7e;
  box-shadow: 0px 10px 10px 10px gray;
  border-style: double;
  background-image: linear-gradient(45deg, rgb(244, 187, 171),rgb(240, 153, 129));
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 20px; 
  padding-bottom: 30px;
}


.referral .referral-form label,
.urgentcare .urgentcare-form label
{     
  height: 24px;
  padding-top: 10px; 
  font-size: 15px;
  font-style: normal; 
  font-weight: bolder;
  text-align: left;
  align-content: left; 
  padding-left: 0px;
}

.referral .referral-form .form-group ,
.urgentcare .urgentcare-form .form-group
{
  padding-bottom: 10px; 
  align-content:  left;
}
    
.referral .referral-form .loading:before,
.urgentcare .urgentcare-form .loading::before
 {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.referral .referral-form input,
.referral .referral-form textarea,
.referral .referral-form select,
.urgentcare .urgentcare-form input,
.urgentcare .urgentcare-form textarea,
.urgentcare .urgentcare-form select
 {
  border-radius: 35;   
  height: 24px;
  padding-top: 10px;
  box-shadow: #dbbfbf;
  font-size: 15px;
  font-style: normal; 
  align-content: left;
  padding: 10px !important;
}

.referral .referral-form input:focus,
.referral .referral-form textarea:focus,
.referral .referral-form select:focus,
.urgentcare .urgentcare-form input:focus,
.urgentcare .urgentcare-form textarea:focus,
.urgentcare .urgentcare-form select:focus
 {
  border-color: #1977cc;
}

.referral .referral-form input,
.referral .referral-form select,
.urgentcare .urgentcare-form input,
.urgentcare .urgentcare-form select {
  height: 44px;
}

.referral .referral-form textarea,
.urgentcare .urgentcare-form textarea {
  padding: 10px 12px;
}

.referral .referral-form button[type=submit],
.urgentcare .urgentcare-form button[type=submit]
 {
  background: #ff0000;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.referral .referral-form button[type=submit]:hover,
.urgentcare .urgentcare-form button[type=submit]:hover {
  background: #ff0000;
}

.referral .container .submit-btn-container
.urgentcare .container .submit-btn{
  align-content: center; 
  width: 100%;   
  padding-top: 30px;
  text-align: center;
  text-decoration: bold;
  color: rgb(237, 38, 38);
}

.referral .container .referral-form .custom-file-button 
.urgentcare .container .urgentcare-form .custom-file-button{
	input[type="file"] {
		margin-left: -2px !important;
    background-color: red;

		&::-webkit-file-upload-button {
			display: none;
		}
		&::file-selector-button {
			display: none;
		}
	}

	&:hover {
		label {
			background-color: #19dc19;
			cursor: pointer;
		}
	}
}

.urgentcare .section-title p{
  text-align:  left;
}

#successmessage{
  font-size: 24px;
  color: green;
}

#errorMessage{
  font-size: 24px;
  color: red;
  font-weight: bolder;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
   /*--background-image: linear-gradient(56deg, blanchedalmond, rgb(205, 255, 209));--*/
   background-image: linear-gradient(45deg, rgb(248, 245, 240), blanchedalmond);
  box-shadow: 5px 2px 15px 2px #fdcccc;
  font-size: 14px;
}

.contact .section-title h2{
  color: #56ae5c ;
}

.contact .label { 
  text-align: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 15px;
  color: black;
}

.contact .icon-box .icon {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: #56ae5c;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.contact .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.contact .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #b1edb5;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}


.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1977cc;
  color: #fff;
}

/*--------------------------------------------------------------
# locations
--------------------------------------------------------------*/

.locations{
  background-image: linear-gradient(45deg, #c2f2f86c,#eac9ebb8);
}

.locations .section-title h2{
  color: #a82aacb8;
}
.locations .label { 
  text-align: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 15px;  
}
.locations .addresslabel { 
  align-items: center;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  font-weight:bold;  
}
 .locations .icon-box .icon {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: #6347b5;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.locations .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.locations .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #8978bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f7fd;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1977cc;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1977cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1977cc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1c84e3;
  color: #fff;
  text-decoration: none;
}


/*
 urgent care buttons
*/
.urgentcare-containers{     
  padding-top: 10px;
  padding-right: 0px;
  width: 20%;  
  align-items: center;    
  transition: all 0.5s;  
  z-index: 995;     
}

.urgentcare-home-btn {
  margin-left: 5px;  
  background:rgb(244, 8, 8);
  color: #fff;
  border-radius: 50px;
  padding: 8px 10px;  
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-flex;
}

.urgentcare-home-btn:hover { 
  color: #fff; 
  font-size: 15px;
  font-weight: bolder;
}

@media (max-width: 768px) {
  .urgentcare-home-btn {
    margin: 0 0px 0 0;
    padding: 6px 18px;
  }
}
