@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
body {
  font-family: 'Nunito', sans-serif;
  color: #000000;
  background-color: #fefefe;
  overflow-x: hidden;
}
:root{
  --red:#ef1515;
  --black:#000;
  --white:#fff;
  --blue:#156595;
  --lightblue:#98CAED;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding: 8% 0;
}

.layout_margin-top {
  margin-top: 90px;
}

.layout_margin-bottom {
  margin-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  /* text-transform: uppercase; */
  color: var(--blue);
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.navbar-brand img{
  width: 300px;
  height: 100px;
}
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(45deg, #a2cfee, #f9fafe);
  /* background-image: url(../images/banner-inner.jpg); */
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 0px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #000;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .active a{
  color: var(--red)!important;
  
}
.custom_nav-container .navbar-nav .nav-item a:hover{
  color: var(--red);
  
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #62d2a2;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--black);
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #1fab89;
  padding-left: 20px;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--black);
}
.slider_section .detail-box .sub-heading{
  font-size: 22px;
}

.slider_section .detail-box p {
  color: var(--black);
  font-size: 18px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .btn-box .btn1 {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--red);
}
.btn-box .btn1 .fa-solid{
  font-size: 13px;
}

.about_section .readmore .btnn{
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--red);

}
.about_section .readmore .btnn:hover{
  background-color: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.slider_section .btn-box .btn1:hover {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.carousel-item{
  
}
.carousel-item .detail-box::before{
  content: "";
  height: 70%;
  
  width: 5px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;


}
.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider_section .img-box img {
  width: 100%;
  max-width: 375px;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: var(--black);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
}

.department_section {
  position: relative;
}

.department_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
}

.department_section .box .img-box {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
  background-color: #62d2a2;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.department_section .box .img-box img {
  max-width: 55px;
  max-height: 55px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.department_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.department_section .box .detail-box a {
  color: #1fab89;
  font-weight: 600;
}

.department_section .box .detail-box a:hover {
  color: #62d2a2;
}

.department_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.department_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #62d2a2;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #62d2a2;
}

.department_section .btn-box a:hover {
  background-color: transparent;
  color: #62d2a2;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  border-radius: 15px;
}

.about_section .detail-box h3 {
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #62d2a2;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #62d2a2;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #62d2a2;
}

/* why section start */

#why{
background-color: var(--blue);

}
.why .detail-box .heading_container{
  color: var(--white);
}
.why .detail-box .heading_container h2{
  color: var(--white);
  text-transform: capitalize !important;
}
.why .detail-box p{
  color: var(--white);
}
.why .readmore .btnn{
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--white);
  color: var(--blue);
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--blue);

}
.why .readmore .btnn:hover{
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.why .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          position: relative;
          padding: 40px 0;
}

.why .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -12rem;
  left: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.why .img-box img {
  width: 250px;
  border-radius: 15px;
  box-shadow: 1px 4px 2px grey ;
}

.why .detail-box h3 {
  font-weight: bold;
}

.why .detail-box p {
  margin-top: 15px;
}

.why .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #62d2a2;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #62d2a2;
  margin-top: 15px;
}

.why .detail-box a:hover {
  background-color: transparent;
  color: #62d2a2;
}
/* why section end */


/* rightfit section start */
.rightfit_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rightfit_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rightfit_section .detail-box .heading_container h2{
  
  text-transform: capitalize !important;
}
.rightfit_section .img-box img {
  width: 100%;
  border-radius: 15px;
}

.rightfit_section .detail-box h3 {
  font-weight: bold;
}

.rightfit_section .detail-box p {
  margin-top: 15px;
}

.rightfit_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #62d2a2;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #62d2a2;
  margin-top: 15px;
}

.rightfit_section .detail-box a:hover {
  background-color: transparent;
  color: #62d2a2;
}

.rightfit_section .readmore .btnn{
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--red);

}
.rightfit_section .readmore .btnn:hover{
  background-color: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}


/* rightfit section end */

/* services section start */

.section-services {
	padding-top: 70px;
	padding-bottom: 18%;
	/* font-family: "Poppins", sans-serif; */
	background-color: var(--blue);
	color: #fff;
}
.section-services1{
  padding-top: 70px;
	padding-bottom: 18%;
}
.section-services1 .header-section{
  margin-bottom: 12%;

}

.section-services .header-section {
	margin-bottom: 12%;
}

.header-section{
  position: relative;
}
.section-services1 .header-section .title::before{
  content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: var(--blue);
}
.section-services1 .header-section .title::after{
  content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: var(--blue);
}

.section-services .header-section .title {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 25px;
	text-transform: uppercase;
	font-weight: 700;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: var(--white);
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: var(--white);
}
.service{
  margin-top: -21%;
}

 .header-section .title span {
	color: var(--white);
}

 .header-section .description {
	color: var(--white);
}

 .single-service {
	margin-top: 40px;
	background-color: var(--white);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

 .single-service .part-1 {
	padding: 40px 40px 10px;
	/* border-bottom: 2px solid #1d1e23; */
}
 .part-1 i {
	margin-bottom: 25px;
	font-size: 50px;
	color: var(--red);
}

 .single-service .part-1 .title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.8em;
}

 .single-service .part-2 {
	padding: 0px 40px 40px;
  box-shadow: 3px 5px 5px #9eb8ff;
}

 .single-service .part-2 .description {
	margin-bottom: 22px;
	color: #6f6f71;
	font-size: 14px;
	line-height: 1.8em;
}

 .single-service .part-2 a {
	color: var(--red);
	font-size: 14px;
	text-decoration: none;
}

 .single-service .part-2 a i {
	margin-right: 10px;
	color: var(--red);
}
.ser1{
  margin-top: -10px;
}
/* services section end */





.doctor_section {
  background: #178066;
}

.doctor_section .heading_container {
  color: #ffffff;
}

.doctor_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.doctor_section .box .img-box {
  width: 100%;
}

.doctor_section .box .img-box img {
  width: 100%;
}

.doctor_section .box .detail-box {
  width: 100%;
  padding: 25px 15px;
  text-align: center;
  position: relative;
}

.doctor_section .box .detail-box .social_box {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 150%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.doctor_section .box .detail-box .social_box a {
  color: #62d2a2;
  margin: 0 10px;
}

.doctor_section .box .detail-box .social_box a:hover {
  color: #1fab89;
}

.doctor_section .box:hover .social_box {
  top: 0;
  opacity: 1;
}

.doctor_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.doctor_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #1fab89;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #1fab89;
}

.doctor_section .btn-box a:hover {
  background-color: transparent;
  color: #1fab89;
}

.contact_section {
  position: relative;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 20px;
  outline: none;
  color: #101010;
  background: #eeeeee;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #000000;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #000000;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #000000;
}

.contact_section .form_container input::placeholder {
  color: #000000;
}

.contact_section .form_container input.message-box {
  height: 175px;
}

.contact_section .form_container button {
  width: 100%;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: var(--red);
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--red);
}

.contact_section .form_container button:hover {
  background-color: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.contact_section .map_container {
  height: 368px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.client_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 45px;
  border-radius: 15px;
}

.client_section .box .img-box {
  margin-bottom: 15px;
  min-width: 145px;
  max-width: 145px;
  overflow: hidden;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 7px solid rgba(255, 255, 255, 0.45);
}

.client_section .box .detail-box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.client_section .box .detail-box1 .name img {
  width: 25px;
  margin-bottom: 5px;
}

.client_section .box .detail-box1 .name h6 {
  color: var(--blue);
  font-size: 20px;
}

.client_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  background-color: var(--blue);
  background-position: center;
  border-radius: 5px;
  margin: 0 2.5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: var(--red);
}

.client_section .carousel-control-next {
  left: initial;
}

.footer_section {
  background: var(--lightblue);
  color: var(--black);
  padding: 60px 0 15px 0;
  position: relative;
}

.footer_section h4 {
  font-weight: bold;
  margin-bottom: 20px;
}

.footer_section .footer_col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* font-weight: bold; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_section .footer_detail .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* font-weight: bold; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: var(--black);
}
.footer_section .footer_detail .contact_link_box a {
  margin: 5px 0;
  color: var(--black);
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}
.footer_section .footer_detail .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: var(--red);
}
.footer_section .footer_detail .contact_link_box a:hover {
  color: var(--red);
}

.footer_section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black);
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.footer_section .footer_social a:hover {
  color: var(--red);
}

.footer_section .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: nowrap;
}

.footer_section .footer_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  /* font-weight: bold; */
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  margin-bottom: 10px;
  color: var(--black);
}

.footer_section .footer_links a:hover {
  color: var(--red);
}

.footer_section form input {
  border: none;
  background-color: #fefefe;
  width: 100%;
  height: 45px;
  color: #000000;
  outline: none;
  border-radius: 5px;
  padding: 0 15px;
}

.footer_section form input::-webkit-input-placeholder {
  color: #777;
}

.footer_section form input:-ms-input-placeholder {
  color: #777;
}

.footer_section form input::-ms-input-placeholder {
  color: #777;
}

.footer_section form input::placeholder {
  color: #777;
}

.footer_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--blue);
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #62d2a2;
  margin-top: 15px;
}

.footer_section form button:hover {
  background-color: var(--red);
  color: var(--white);
}

.footer-logo{
    width:100%;
}
.footer-logo img{
    width: 260px;
    height: 95px ;
    
}

.copyright{
  background-color: var(--blue);
  text-align: center;
  color: var(--white);
  
  
}
.footer-info1 p{
  font-size: 14px;

}
.copyright .footer-info p a{
  text-align: center;
  color: var(--white);
 
}
.copyright .footer-info p a:hover{
  color: var(--red);
}

/*# sourceMappingURL=style.css.map */


/* contact page start */
.contact-page{
  background-image: url(../images/hearing\ aid\ banner\ images\ 6-01.jpg);
  width: 100%;
  height: 50vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
    justify-content: center;
    align-items: center;

}
.contact-details .address .icon{
  width: 30px;
  height: 30px;
  border: 1px solid var(--black);
  /* border-radius: 25px; */
  text-align: center;

}
.contact-details h4{
  color: var(--blue);
  font-weight: bold;
}
.contact-details .address .icon1{
  width: 40px;
  height: 30px;
  border: 1px solid var(--black);
  /* border-radius: 25px; */
  text-align: center;
}
.contact-details .address .icon1 i{
  margin-top: 5px;
}

.contact-details .address .group{
  margin-top: 10px;
}
.contact-details .address .group .data{
  padding-left: 10px;
}

/* contact page end */

/* faq page start */
.faq-page{
  background-image: url(../images/hearing\ aid\ banner\ images\ 6-01.jpg);
  width: 100%;
  height: 50vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
    justify-content: center;
    align-items: center;

}

.accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  /* width: 600px; */
  margin:0 auto;
}
.accordion {
  width: 100%;
  color: white;
  overflow: hidden;
  margin-bottom: 16px;
}
.accordion:last-child{
  margin-bottom: -8px;
}
.accordion-label {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 10px;
  background: var(--blue);
  font-weight: bold;
  cursor: pointer;
  /* font-size: 20px; */
}
.accordion-label:hover {
  background: rgba(4,57,94,1);
}
.accordion-label::after {
  content: "\276F";
  width: 16px;
  height: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: rgba(4,57,94,1);
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content p{
  margin: 0;
  color: #333;
  font-size: 18px;
}
.accordion input:checked + .accordion-label {
  background: rgba(4,57,94,1);
}
.accordion input:checked + .accordion-label::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion input:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 16px;
}





.sub-faq{
  padding:0 0 5% 0 ;
}
.sub-faq h2{
  color: var(--blue);
  font-weight: bold;
}
.content-wrapper1{
  background-color: var(--white);
    box-shadow: 10px 0 60px #e7e7e7;
    padding: 30px ;
    
}
.border-topp{
  position: relative;
}
.border-topp::before{
  content: "";
  width: 95%;
  height: 5px;
  background-color: var(--blue);
  position: absolute;
  left: 15px;
  top: -6px;

}
.border-topp1::before{
  content: "";
  width: 95%;
  height: 5px;
  background-color: var(--blue);
  position: absolute;
  left: 15px;
  top: -6px;

}
.content-wrapper1 i{
  font-size: 18px;
  color: var(--blue);
}
.content-wrapper1 p:hover i{
  color: var(--red);
}
.content-wrapper2{
  background-color: var(--white);
    box-shadow: 10px 0 60px #e7e7e7;
    padding: 30px;
}
.content-wrapper2 i{
  font-size: 18px;
  color: var(--blue);
}
.content-wrapper2 p:hover i{
  color: var(--red);
}




/* faq page end */
/* Help Yourself start */
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0.25rem;
}
.innerpage-title{
  padding-left: 30px;
}
.innerpage-title::before{
  content: "";
  height: 70%;  
  width: 5px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  
}
.innerpage-title h2{
  font-size: 55px;
  font-weight: bolder;

}
.help-page{
  background-image: url(../images/hearing\ aid\ banner\ images\ 6-01.jpg);
  width: 100%;
  height: 50vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
    justify-content: center;
    align-items: center;

}
.breadcrumb .active{
  color: var(--red);
  font-weight: bold;
}
.heading-help h4{
  padding-top: 5%;
}
.heading-help h2{
  color: var(--blue);
  font-weight: bold;
  padding: 0 80px 2% 80px;
  
}
.heading-help p{
  padding: 0 10%;
}
.container1{
  /* width: 1100px; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container1 .box{
  position: relative;
  /* width: 320px; */
  
  background: #fff;
  padding: 100px 40px 60px;
  box-shadow: 0px 15px 45px rgba(0,0,0,.1);
  margin-left: 5%;
}

.container1 .box:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-orgin: top;
  transition: transform 0.5s;
}

.container1 .box:hover:before{
 transform: scaleY(1);
  transform-orgin: bottom;
  transition: transform 0.5s; 
}

.container1 .box h2{
  position: absolute;
  left: 40px;
  top: 60px;
  font-size: 4em;
  font-weigth: 800;
  z-index: 1;
  opacity: 0.1;
  transition: 0.5s;
}

.container1 .box:hover h2{
  opacity: 1;
  color: #fff;
  transform: translateY(-40px)
}

.container1 .box h3{
  position: relative;
  font-size: 1.5em;
  z-index: 2;
  color: var(--blue);
  transition: 0.5s;
}

.container1 .box p{
  position: relative;
  z-index: 2;
  color: #555;
  transition: 0.5s;
}

.container1 .box:hover h3,
.container1 .box:hover p{
  color: #fff;
}
/* Help Yourself End */
/* hearing aids start */
.hearing-page{
  background-image: url(../images/hearing\ aid\ banner\ images\ 4-01.jpg);
  width: 100%;
  height: 50vh;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
    justify-content: center;
    align-items: center;

}
.img-machine{
  width: 100%;
}

.img-machine img{
  width: 100%;
  box-shadow: 0px 1px 3px;
  /* margin-top: 10%; */
  height:375px;
}
.hering-content{
  padding: 7% 0;
}
.hering-content h2{
  font-weight: bold;
  color: var(--blue);
}
.img-hearing{
  width: 100%;
}
.img-hearing img{
  width: 100%;
  border-radius: 25px;
}
.hearing-back{
  background-color: var(--blue);
}
.img-wear img{
  width: 100%;
    box-shadow: 0px 1px 3px;
    height:375px;
}


/*  */
.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 300px;
	max-width: 300px;
	max-height: 300px;
	width: 30%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 300px;
	max-width: 300px;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 300px;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

  figure.effect-bubba {
	background: var(--blue);
}

figure.effect-bubba img {
	opacity: 0.7;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
  /* width: 300px;
  height: 300px; */
}

figure.effect-bubba:hover img {
	opacity: 0.4;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.effect-bubba figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

figure.effect-bubba h2 {
	padding-top: 50%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
  font-size: 22px;
  text-transform: capitalize;
  display: none;
}
.grid figure figcaption:hover h2 {
  display: block;

}
figure.effect-bubba p {
	padding: 20px 2.5em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.img-wrapper img{
  width: 100%;
}

.section_title {
  font-size: 40px;
  font-weight: bold;
  color: inherit;
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
}

.section_details {
  text-align: center;
  font-size: 25px;
  color: #FFFFFFaa;
}

.hearing-aids .service{
  margin: 0;
  /* padding-bottom: 5%; */
}
.hearing-aids .service .single-service h3{
  color: var(--blue);
}
.hearing-aids .header-section .title1{
 
  text-transform: capitalize;
  color: var(--blue);
}
.main1{
  margin-top: 35%;
}
/*  */
.circuitry{
  background-color: var(--blue);
  position: relative;
  margin-bottom:15% !important;
  padding: 40px 10px;
  
}
.circuitry .img-hearing{
  position: absolute;
  display: flex;
    position: absolute;
    top: -11rem;
    left: 0rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.circuitry .img-hearing img{
  width: 500px;
  height: 450px;
  box-shadow: 2px 1px 5px grey;
  
}
.circuitry .hering-content h2{
  color: var(--white);

}
.circuitry .hering-content h4{
  color: var(--white);
}
.circuitry .hering-content p{
  color: var(--white);
}

/*  */

.services11 {
  padding-bottom: 30px;
  text-align: center;
  padding: 0 0 50px 0px;
}
.services11 .section-title h2 {
  color: var(--blue);
  font-weight: bold;
  font-size: 42px;
  padding: 0 0 50px 0;
  
}
.services11 .section-title  {
  text-align: center;
  /* font-style: italic; */
  margin-bottom: 40px;
  color: #666;
}
.service-box1 {
  padding: 40px 80px;
  margin-bottom: 30px;
    /* padding: 15px; */
    text-align: center;
    box-shadow: 0px 0 5px #bdbdbd;
    float: left;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* width: 360px; */
    height: 335px;
}
.services11 .service-box {
  margin-bottom: 30px;
  padding: 15px;
  text-align: center;
  box-shadow: 0px 0 5px #bdbdbd;
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* width: 360px; */
    height: 365px;
}
.services11 .service-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--blue);
  left: 0px;
  top: -500px;
  z-index: -1;
  transition: 1s;
}

.services11 .service-box:hover::after {
  top: 0px;
  
}
.services11 .service-box:hover h4{
color: var(--white);
}
.services11 .service-box:hover p{
  color: white;
}

.services11 i {
  display: flex;
  justify-content: center;
}
.services11 i {
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 100%;
  transition: 0.5s;
  color: var(--blue);
  font-size: 35px;
  overflow: hidden;
  padding-top: 18px;
  box-shadow: 0px 0 5px #bdbdbd;
  margin: 10px auto 15px;
}
.services11 h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}
.services11 h4 a {
  color: #444;
  text-decoration: none;
}
.services11 h4 a:hover {
  color: #28a745;
}
.services11 p {
  line-height: 24px;
  font-size: 16px;
}
/*  */
.photo{
  position: relative;
}
.photo .title:before{
  content: "";
    position: absolute;
  bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}

.photo .title::after{
  content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.style .title:before{
  content: "";
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}
.style .title::after{
  content: "";
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.what{
  position: relative;
}
.what .title:before{
  content: "";
    position: absolute;
    top:60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}
.what .title::after{
  content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.about{
  position: relative;
}
.about .title:before{
  content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}
.about .title::after{
  content: "";
    position: absolute;
    bottom: -9px;
    left: 16%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.testi{
  position: relative;
}
.testi .tit:before{
  content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}
.testi .tit::after{
  content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.what1{
  position: relative;
}
.what1 .title:before{
  content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}
.what1 .title::after{
  content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.cont{
  position: relative;
}
.cont .title:before{
  content: "";
    position: absolute;
    /* top: 90%; */
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--blue);

}
.cont .title::after{
  content: "";
    position: absolute;
    bottom: -14px;
    left: 14%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: var(--blue);
}
.img-wear1{
    width:360px;
}

/* hearing aids end */
@media (max-width:1366px){
  .imm1{
    margin-top: -12%;
  }
}

/* crafted start */

/* img galler end */


