

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Default Css */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  overflow-x: hidden;
}
body{
  font-family: 'Poppins';
  font-weight: 400;
  color: #363940;
  overflow-x: hidden;
}
ul,ol{
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,h2,h3,h4,h5,h6,p{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
  color: inherit;
}
img{
  width: 100%;
}

.heading1{
  font-size: 67px;
  font-weight: 500;
  line-height: 77px;
  color: #FFF;
}
.heading2{
  font-size: 54px;
  font-weight: 600;
  line-height: 55px;
  color: #000;
}
.heading3{
  font-size: 48px;
  font-weight: 500;
  line-height: 44px;
  color: #000;
}
.container{
  max-width: 1270px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
/* ===================================================================
                            Header Area CSS Start
====================================================================*/
.header-area{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 64px 0px;
}
.header-main{
  position: relative;
}
.header-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a img {
  max-width: 150px;
  width: 120%;
}
.header-nav nav ul{
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-nav nav ul li a{
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  transition: .3s;
}
.header-nav nav ul ul{
  display: flex;
  gap: 8px;
  padding-right: 12px;
  border-right: 2px solid #FFF;
}
.header-nav nav ul ul li a img{
  height: 36px;
  width: 36px;
  transition: 0.3s;
}
.header-nav nav ul ul li a img:hover{
  transform: scale(1.1);
}



/*Start Mobile Menu icon*/
.mobile-menu {
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	right: 0px;
  display: none;
}
#nav-icon {
  width: 28px;
  height: 23px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000000;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
#nav-icon span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}
#nav-icon span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -2px;
  left: 2px;
}
#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  left: 2px;
}
/*End Mobile Menu icon*/

/* ===================================================================
                            Header Area CSS Start
====================================================================*/
.banner-area{
  background: #041633;
  padding-top: 180px;
  width: 100%;
  position: relative;
}
.banner-gradian{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.banner-gradian svg{
  width: 100%;
  height: 350px;
}
.banner-area::after{
  content: '';
  position: absolute;
  right: 0;
  top: 186px;
  width: 100px;
  height: 85px;
  background: url("../images/shep1.png") no-repeat scroll center center/cover; 
  z-index: 9999999;
}
.banner-content{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 76px;
  z-index: 99999;
}
.banner-text{
  max-width: 761px;
  width: 100%;
}
.banner-text .heading1{
  padding: 25px 0px;
}
.banner-text p{
  font-size: 23px;
  line-height: 35px;
  color: #FFF;
  opacity: 0.8;
}
.banner-phone img {
  max-width: 400px;
  width: 110%;
}

.btn-discover{
  display: inline-flex;
  gap: 10px;
  padding: 4px;
  padding-right: 12px;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.2);
}
.btn-discover:hover{
  color: #fff;
  background: rgba(255, 255, 255, 0.4);
}
.btn-discover span{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 30px;
  width: 44px;
 background: #47bbbc;
}
.btn-discover span img{
  height: 14px;
  width: auto;
}

.banner-area .down-arrow{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: -40px;
  position: relative;
  z-index: 99999999;
}
.down-arrow{
  -webkit-animation: moveit 3s infinite;
  animation: moveit 3s infinite;
  position: relative;
}
.down-arrow img{
  height: 39px;
  width: 33px;
}
@-webkit-keyframes moveit{
  from { top:  0px; opacity:0; }
  25%  { top: -30px; opacity:1; }
  50%  { top: -30px; opacity:1; }
  75%  { top: -30px; opacity:1; }
  to   { top:  0px; opacity:0; }
}

@keyframes moveit{
  from { top:  0px; opacity:0; }
  25%  { top: -30px; opacity:1; }
  50%  { top: -15px; opacity:1; }
  75%  { top: -30px; opacity:1; }
  to   { top:  0px; opacity:0; }
}

/* ===================================================================
                            Aesthetic Links Area CSS Start
====================================================================*/
.Aesthetic-links-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 108px;
  padding-bottom: 90px;
}
.links-contents{
  max-width: 663px;
  width: 100%;
}
.links-contents .heading2{
  padding-bottom: 32px;
}
.links-contents p{
  font-size: 32px;
  line-height: 40px;
  color: #000;
  opacity: 0.6;
}
.links-contents p a{
  color: #4AB9BB;
}
.links-img{
  display: flex;
  gap: 40px;
}
.inner-qr-code{
  background: #DBF1F1;
  max-width: 170px;
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 15px;
}
.inner-qr-code img{
  border-radius: 10px;
}
.links-img img{
  max-width: 170px;
  width: 100%;
}
.single-qr-conde a img{
  height: 50px;
  max-width: 170px;
}

/* ===================================================================
                            Blog Area CSS Start
====================================================================*/
.Blog-area{
  padding: 100px 0px;
  background: #f8f9f4;
}
.blog-title{
  margin-bottom: -36px;
}
.blog-title .btn-discover{
  background: rgba(71, 187, 188, 0.2);
  color: #000;
}
.blog-title .heading3{
  padding-top: 24px;
}
.single-blog{
  padding: 12px;
  padding-bottom: 0px;
}
.single-blog img{
  border-radius: 12px;
  height: 300px;
  width: 100%;
}
.blog-item-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 25px;
  padding-bottom: 10px;
}
.blog-item-title p{
  font-weight: 500;
  font-size: 20px;
  color: #000;
}
.blog-item-title a{
  font-size: 16px;
  color: #000;
}
.font14px{
  font-size: 14px;
  color: #000;
  opacity: 0.6;
}
.bolo-slider-main{
  padding-top: 107px;
}
.swiper-pagination-arrow{
  position: absolute;
  top: 18px;
  right: 0;
}
.swiper-button-prev{
  margin-left: -93px;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next img,
.swiper-button-prev img{
  height: 36px;
  width: 36px;
}


/* ===================================================================
                            Clinic Area CSS Start
====================================================================*/
.Clinic-area{
  padding: 100px 0px;
  background: #041633;
  position: relative;
}
.Clinic-area::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 102px;
  height: 65px;
  background: url("../images/shep2.png") no-repeat scroll center center / contain; 
}
.Clinic-area::before{
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  width: 102px;
  height: 65px;
  background: url("../images/shep1.png") no-repeat scroll center center / contain; 
}
.Clinic-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.Clinic-content .heading3{
  color: #FFF;
}
.btn:focus{
  outline: none;
  box-shadow: none;
}
.btn-apply{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 16px 24px;
  border-radius: 30px;
  background: linear-gradient(142deg, #a5d8c4 0%, #7dc7bf 40.99%, #5abdbc 78.48%, #4ab9bb 100%);
  transition: 0.3s;
}
.btn-apply:hover{
  box-shadow: rgba(212, 212, 228, 0.2) 0px 7px 29px 0px;
  color: #FFF;
}


/* ===================================================================
                            Clinic Area CSS Start
====================================================================*/
.footer-content{
  padding: 68px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.footer-logo img{
  max-width: 120px;
}
.footer-menu ul{
  display: flex;
  align-items: center;
}
.footer-menu ul li{
  padding: 0px 5px;
  position: relative;
  padding-right: 6px;
}
.footer-menu ul li::after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #000;
}
.footer-menu ul li:last-child{
  position: inherit;
}
.footer-menu ul li a{
  font-weight: 300;
  font-size: 14px;
  color: #2e2e2e;
  transition: .3s;
  white-space: nowrap;
}
.footer-menu ul li a:hover{
  color: #000;
}
.footer-social-links{
  display: flex;
  gap: 8px;
}
.footer-social-links a{
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
.footer-social-links a img{
  height: 36px;
  width: 36px;
  border-radius: 50%;
  transition: 0.3s;
}
.footer-social-links a img:hover{
  transform: scale(1.1);
}

