@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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #000;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1600px;
  width: 100%;
  padding-left: 2%;
  padding-right: 2%;
  margin: auto;
}

.object-cover {
  object-fit: cover;
}
.object-contain{
  object-fit: contain;
}
.rounded-1 {
  border-radius: 10px !important;
}
.rounded-2 {
  border-radius: 20px !important;
}
.rounded-3 {
  border-radius: 30px !important;
}

.bg-dark {
  background-color: #000 !important;
}
.text-black-50 {
  color: #000 !important;
}
.bg-light {
  background-color: #dfdfdf !important;
}
.text-primary {
  color: #28aae2 !important;
}
.bg-primary {
  background-color: #28aae2 !important;
}
.bg-secondary {
  background-color: #333333 !important;
}

.gradient-1 {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(31, 188, 255, 1) 100%
  );
}

.gradient-2 {
  background: linear-gradient(
    90deg,
    rgba(31, 188, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.fw-300 {
  font-weight: 300 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}

/* 0 */

.ls-001 {
  letter-spacing: -0.01em;
}
.ls-002 {
  letter-spacing: -0.02em;
}
.ls-003 {
  letter-spacing: -0.03em;
}
.ls-004 {
  letter-spacing: -0.04em;
}
.ls-100 {
  letter-spacing: 0.1em;
}
.ls-150 {
  letter-spacing: 0.15em;
}
.ls-200 {
  letter-spacing: 0.2em;
}
.ls-300 {
  letter-spacing: 0.03em;
}
.ls-500 {
  letter-spacing: 0.05em;
}
.ls-600 {
  letter-spacing: 0.06em;
}
.ls-002 {
  letter-spacing: -0.02em;
}
.ls-004 {
  letter-spacing: -0.04em;
}

/* 0 */

/* 01 */
h1,
.h1 {
  font-size: 50px;
  line-height: 0.8;
}

.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-25 {
  font-size: 25px;
}
.fs-28 {
  font-size: 28px;
}
.fs-30 {
  font-size: 30px;
}
.fs-32 {
  font-size: 32px;
}
.fs-35 {
  font-size: 35px;
}
.fs-40 {
  font-size: 40px;
}
.fs-45 {
  font-size: 45px;
}
.fs-50 {
  font-size: 50px;
}
.fs-55 {
  font-size: 55px;
}
.fs-60 {
  font-size: 60px;
}
.fs-80 {
  font-size: 80px;
}

/* 01 */

/* 02 */
.lh-0-9 {
  line-height: 0.9;
}
.lh-1-2 {
  line-height: 1.2;
}
.lh-1-3 {
  line-height: 1.3;
}
.lh-1-4 {
  line-height: 1.4;
}
.lh-1-5 {
  line-height: 1.5;
}
.lh-1-7 {
  line-height: 1.7;
}
.lh-1-8 {
  line-height: 1.8;
}
.lh-2 {
  line-height: 2;
}
/* 02 */
/* .text-shadow {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
} */
.btn {
  padding: 14px 30px;
  border: 1px solid;
  border-radius: 40px;
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-light {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}
.btn-primary {
  color: #fff;
  background-color: #28aae2;
  border-color: #28aae2;
}
.btn-success {
  color: #fff;
  background-color: #893277;
  border-color: #893277;
}
.btn-success:hover, .btn-primary:hover, .btn-light:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.report-btn {
  font-size: 15px;
  text-transform: none;
  padding: 5px 36px;
}
.banner-btns .btn {
  padding: 9px 30px;
}

/* .scroll header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
} */
.navbar-brand {
  display: inline-block;
  width: 328px;
}

.navbar-nav .nav-link {
  padding: 0 !important;
  color: #ffffff;
  font-size: 17px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar-nav > li + li {
  margin-left: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #000;
}

button#ScrollToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: transparent;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  z-index: 99;
  color: #000;
}

button#ScrollToTop:hover {
  background: #000;
  color: #fff;
}

@media (min-width: 992px) {
  div#navbarOffcanvas {
    position: inherit !important;
    flex-direction: row;
    visibility: visible;
    width: auto;
    transform: translateX(0%);
    border-right: 0;
    margin-left: 0;
    background-color: transparent;
  }
  .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
/* .carousel-item::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 50%);
} */
.banenr-wrap.bg-white {
  background-color: rgb(255 255 255 / 80%) !important;
}
.banenr-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 11px;
  background: #28aae2;
}
.services-img {
  border-radius: 0 0 100px 100px;
}

.choose-wrap {
  box-shadow: 0px 0px 25px 10px rgba(192, 220, 239, 0.3);
  border-radius: 40px !important;
}
.choose-sec {
  background-image: url(../images/choose-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.treatment-text {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.patient-bx.bg-dark {
  background: linear-gradient(
    to bottom,
    #273138 0%,
    #1b2229 47%,
    #111719 100%
  ) !important;
}

.review-sec .container {
  /* background-image: url(../images/review-bg.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat; */
  position: relative;
}
.review-sec .rev-con::before {
  content: "";
  position: absolute;
  top: 7%;
  left: -15px;
  height: 90%;
  width: 105vw;
  background-color: #e8e8e8;
  transform: rotate(-4deg);
  z-index: -1;
}
.contact-text ul li,
.contact-text ul li a {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
}
.contact-text ul li {
  padding-left: 30px;
  position: relative;
}
.contact-text ul li::before {
  content: "\f095";
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  font-family: "FontAwesome";
  font-size: 19px;
}
.contact-text ul li:nth-child(2)::before {
  content: "\f0e0";
}
.contact-text ul li:nth-child(3)::before {
  content: "\f3c5";
}
.part-sec .slick-prev:before,
.part-sec .slick-next:before {
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 30px;
  line-height: 1;
  opacity: 1;
  color: #000;
}
.part-sec .slick-next:before {
  content: "\f105";
}
.part-sec .slick-track {
  display: flex;
  gap: 30px;
}
.footer-wrap ul li a {
  color: #ffffff;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.02em;
padding: 0px;
}
.footer-wrap ul li a:hover,
.footer-links ul li a:hover {
  color: #28aae2;
}
.footer-links ul li a {
  color: #ffffff;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-bx {
  border-color: #707070 !important;
}
.patient-text ul {
  list-style: disc;
  padding-left: 20px;
}
.patient-text ul li::marker {
  color: #28aae2;
}
.sub-wrap.bg-primary{
  background-color: #30303F !important;
}
.booking-btn {
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: #222344;
  background: #cdad7d;
  border-radius: 20px;
  width: 221px;
  height: 104px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.consultation-btn a:hover{
  color: #222344;
  background: #cdad7d;
}
.booking-btn:hover{
  background: #28aae2;
  color: #ffffff; 
}
.consultation-btn a {
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
  background: #28aae2;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 30px 48px;
}
.consultation-btn
 {
    bottom: -30px !important;
    left: -30px !important;
}
.services-card, .before-wrap.bg-light{
  background: rgba(242, 242, 242, 0.7) !important;
}
.count{
  background: #28aae2;
  border-radius: 90px;
  width: 63px;
  height: 63px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  margin: auto;
}
.offer-sec.bg-light, .serv-sec.bg-light{
  background-color: #F0F0F0 !important;
}
.consultation-text ul, .serv-text ul{
  padding-left: 20px ;
  list-style: disc;
}
.carousel-item{
  height: 800px;
}
.sound-on {
  width: 428px;
  right: -13% !important;
  bottom: 30px !important;
}
.team-img {
  height: 200px;
  width: 200px;
}
.story-img {
  height: 250px;
  width: 250px;
}
.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}
.accordion-button::after {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: #28aae2 ;
  background-image: none !important;
}
.accordion-button.collapsed::after {
  background-color: #28aae2 ;
}
.accordion-flush .accordion-item .accordion-button {
  padding: 20px 20px;
}
.course-text ul li {
  width: fit-content ;
  margin: auto;
}
.form-group input{
  height: 60px;
}
.form-group textarea{
  height: 150px;
}
.form-group .radio-btn{
height: 20px;
width: 20px;
}
@media (max-width: 1600px) {
  .fs-15 {
    font-size: 13px;
  }
  .fs-18 {
    font-size: 16px;
  }
  .navbar-brand {
    width: 275px;
  }
  .fs-20 {
    font-size: 17px;
  }
  .btn {
    font-size: 17px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
  }
  h1,
  .h1 {
    font-size: 38px;
  }
  .fs-40 {
    font-size: 30px;
  }
  .fs-17 {
    font-size: 15px;
  }
  .serv-icn {
    width: 70px;
  }
  .fs-25 {
    font-size: 20px;
  }
  .choose-icon img {
    width: 60px;
  }
  .fs-30 {
    font-size: 22px;
  }
  .fs-45 {
    font-size: 35px;
  }
  .contact-text ul li,
  .contact-text ul li a {
    font-size: 17px;
  }
  .contact-text ul li,
  .contact-text ul li a {
    font-size: 17px;
  }

  .footer-wrap ul li a {
    font-size: 16px;
  }
  .report-btn {
    font-size: 13px;
    padding: 5px 35px;
  }
  .footer-links ul li a {
    font-size: 16px;
  }
  .fs-80
 {
    font-size: 65px;
}
.fs-50 {
    font-size: 40px;
}
.booking-btn {
    font-size: 18px;
    width: 200px;
    height: 85px;
}
.consultation-btn a {
    font-size: 18px;
    padding: 25px 35px;
}
.carousel-item{
  height: 600px;
}
.sound-on {
  width: 340px;
}
.team-img {
  height: 170px;
  width: 170px;
}
.story-img {
  height: 200px;
  width: 200px;
}
.form-group input {
  height: 50px;
}
.fs-16 {
  font-size: 14px;
}
.form-group .radio-btn {
  height: 17px;
  width: 17px;
}
.form-group textarea {
  height: 120px;
}     
}
@media (max-width: 1400px) {
  .fs-15 {
    font-size: 11px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .navbar-brand {
    width: 220px;
  }
  .fs-20 {
    font-size: 15px;
  }
  .btn {
    font-size: 15px;
    padding: 10px 25px;
  }
  .navbar-nav .nav-link {
    font-size: 12px;
  }
  .navbar-nav .nav-link {
    font-size: 12px;
  }
  .navbar-nav .nav-link {
    font-size: 12px;
  }
  .navbar-nav .nav-link {
    font-size: 12px;
  }
  .fs-17 {
    font-size: 13px;
  }
  .serv-icn {
    width: 55px;
  }
  .fs-25 {
    font-size: 18px;
  }
  .choose-icon img {
    width: 50px;
  }
  .fs-30 {
    font-size: 18px;
  }
  .fs-45 {
    font-size: 28px;
  }
  .contact-text ul li,
  .contact-text ul li a {
    font-size: 15px;
  }
  .contact-text ul li::before {
    font-size: 15px;
  }
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
  .footer-wrap ul li a {
    font-size: 14px;
  }
  .report-btn {
    font-size: 11px;
    padding: 5px 35px;
  }
  .footer-links ul li a {
    font-size: 14px;
  }
  .fs-40 {
    font-size: 25px;
}
.fs-80 {
    font-size: 50px;
}
.fs-50 {
    font-size: 32px;
}
.booking-btn {
    font-size: 16px;
    width: 180px;
    height: 80px;
}
.consultation-btn a {
    font-size: 16px;
    padding: 20px 30px;
}
.carousel-item{
  height: 500px;
}
.sound-on
 {
    width: 250px;
}
.team-img {
  height: 150px;
  width: 150px;
}
.story-img {
  height: 180px;
  width: 180px;
}
}

@media (max-width: 991px) {
  .navbar-toggler {
    font-size: 25px;
    padding: 0;
    color: #000;
  }
  .navbar-nav .nav-link {
    margin: 8px 0px;
  }
  .header-btn {
    margin-top: 10px;
    display: inline-block;
  }
  .navbar-toggler-icon {
    width: auto;
    height: auto;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  div#navbarOffcanvas {
    background: #28aae2;
    border-right: 0 !important;
    padding: 35px !important;
    width: 300px;
  }
  .navbar-nav > li + li {
    margin-left: 0;
  }

  .offcanvas-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    filter: brightness(1) invert(0);
    opacity: 1;
  }
  .offcanvas-header {
    padding: 0;
  }
  .carousel-item {
    height: 380px;
  }
  .consultation-btn {
    bottom: -10px !important;
    left: -10px !important;
}
.sound-on {
  width: 200px;
  right: -2% !important;
  bottom: 20px !important;
}
.story-wrap {
  width: 90% !important;
}
}
@media (max-width: 767px) {
  .map-sec {
    height: 350px !important;
  }
  .slick-next {
    right: -10px;
  }
  .slick-prev {
    left: -10px;
  }
  .fs-80 {
    font-size: 45px;
}
.fs-50 {
    font-size: 28px;
}
.team-img {
  height: 120px;
  width: 120px;
}
.story-wrap {
  width: 100% !important;
}
.form-group input {
  height: 45px;
}
.fs-16 {
  font-size: 12px;
}
}
@media (max-width: 575px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
  h1,
  .h1 {
    font-size: 28px;
  }
  .fs-40 {
    font-size: 23px;
  }
  .fs-20 {
    font-size: 13px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 15px;
  }
  .banner-btns .btn {
    padding: 9px 15px;
  }
  .carousel-item {
    height: 350px;
  }
  .fs-30 {
    font-size: 14px;
  }
  .map-sec {
    height: 250px !important;
  }
  .part-sec .slick-prev:before,
  .part-sec .slick-next:before {
    font-size: 20px;
  }
  .patient-left.w-50 {
    width: 100% !important;
  }
  .patient-right.w-50 {
    width: 100% !important;
  }
  .fs-80 {
    font-size: 40px;
}
.fs-50 {
    font-size: 25px;
}

.booking-btn {
    font-size: 14px;
    width: 130px;
    height: 70px;
}
.consultation-btn a {
    font-size: 14px;
    padding: 13px 15px;
}
.sound-on {
  width: 170px;
  right: -2% !important;
  bottom: 20px !important;
}
.story-text {
  width: 100% !important;
}
.top-left {
    flex-direction: column;
    text-align: center;
    gap: 5px;
}
.top-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.top-header {
    display: block !important;
}

}
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}
.grecaptcha-badge:hover {
width: 256px !important;
}

.grecaptcha-badge {

visibility: hidden;

}