@import url("https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@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");

/* general css */

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Amaranth", sans-serif;
}

body {
  overflow-x: hidden;
  font-family: "Amaranth", sans-serif;
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #13ade3;
  --primarygradient: linear-gradient(180deg, #13ade3 0%, #0384b2 100%);
  --primarygradientlight: linear-gradient(180deg,
      rgba(19, 173, 227, 0.15) 0%,
      rgba(3, 132, 178, 0.15) 100%);
  --amaranth: "Amaranth", sans-serif;
  --poppins: "Poppins", sans-serif;
}

/* Button */
.btn {
  font-family: var(--amaranth);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 14px 15px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  gap: 10px;
  white-space: nowrap;
  border: 2px solid var(--primary);
  cursor: pointer;
  width: fit-content;
}

.btn img {
  transition: all 0.2s;
  max-width: 15px;
}

.btn.btn_primary_outline {
  color: var(--primary);
  background: transparent;
}

.btn.btn_primary_outline:hover {
  background: #13ace318;
}

.btn.btn_primary_outline:hover img {
  transform: scale(1.3);
}

.btn.btn_primary_outline.white {
  border-color: var(--white);
  color: var(--white);
}

.btn.btn_primary {
  color: var(--white);
  background: var(--primary);
}

.btn.btn_primary:hover img {
  transform: scale(1.3);
}

.text-btn {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--black);
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
}

.text-btn img {
  filter: brightness(0);
  max-width: 14px;
  transition: all 0.2s;
}

.text-btn:hover img {
  transform: scale(1.3);
}

.container {
  width: 100%;
  max-width: 1710px;
  padding: 0 15px;
  margin: 0 auto;
}

.img-fluid {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.flex-div {
  display: flex;
}

.flex-div.reverse {
  flex-direction: row-reverse;
}

.flex-div>div {
  width: 100%;
}

ul {
  padding-left: 0;
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
}

.relative {
  position: relative;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2,
.section-title h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--black);
  margin-bottom: 30px;
}

.section-title p {
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 22px;
  line-height: 30px;
  color: #00000099;
}

/* header css */

.main-header {
  position: fixed;
  top: 50px;
  z-index: 99;
  width: 100%;
  background: white;
  padding: 30px 30px;
  transition: all 0.2s;
  border-bottom: 1px solid #ffffff80;
}

.main-header.sticky {
  top: 0;
  background: var(--white);
  padding: 6px 15px;
  box-shadow: 0px 0px 5px #00000029;
}

body.menu-open {
  overflow: hidden;
}

.main-header .navbar {
  display: flex;
  justify-content: start;
  gap: 95px;
  align-items: center;
  background: transparent;
  padding: 0px 0px;
  color: var(--white);
  max-width: 1710px;
  margin: 0 auto;
  position: relative;
}

.main-header .navbar .logo a {
  display: block;
}

.main-header .navbar .logo img {
  width: 100%;
  max-width: 210px;
  min-width: 210px;
  transition: all 0.2s;
}

.main-header.sticky .navbar .logo img {
  max-width: 130px;
}

.main-header .navbar .site-title {
  margin-bottom: 0;
}

.main-header .navbar .site-title a {
  color: var(--black);
  font-size: 23px;
  text-decoration: none;
  font-weight: 600;
}

.main-header .menu-primary-menu-container>ul {
  list-style: none;
  display: flex;
  gap: 35px;
  z-index: 9;
  padding-left: 0;
}

.main-header .menu-item>a {
  text-decoration: none;
  color: var(--black);
  display: block;
  font-weight: 400;
  font-size: 18px;
  transition: all 0.1s;
  cursor: pointer;
  text-decoration: none;
}

.main-header .menu-item.active>a,
.main-header .menu-item:hover>a {
  color: var(--primary);
}

.main-header .mega-content {
  padding: 15px;
}

.main-header .menu-toggle {
  display: none;
  cursor: pointer;
  width: 21px;
  height: 21px;
  position: relative;
}

.main-header .menu-toggle .toggle-bar {
  transition-duration: 0.5s;
  position: absolute;
  height: 3px;
  width: 21px;
  top: 9px;
  background-color: var(--primary);
}

.main-header .menu-toggle .toggle-bar::before {
  transition-duration: 0.5s;
  position: absolute;
  width: 21px;
  height: 3px;
  background-color: var(--primary);
  content: "";
  top: -7px;
  right: 0;
}

.main-header .menu-toggle .toggle-bar::after {
  transition-duration: 0.5s;
  position: absolute;
  width: 21px;
  height: 3px;
  background-color: var(--primary);
  content: "";
  top: 7px;
  right: 0;
}

.main-header .menu-toggle.open .toggle-bar {
  background: transparent;
}

.main-header .menu-toggle.open .toggle-bar::before {
  transform: rotateZ(45deg) scaleX(1.25) translate(4.5px, 4.5px);
}

.main-header .menu-toggle.open .toggle-bar::after {
  transform: rotateZ(-45deg) scaleX(1.25) translate(4.5px, -4.5px);
}

.main-header .desktop-menu .menu-primary-menu-container {
  margin-left: auto;
  margin-right: auto;
}

/* Hide mega menu by default */
.main-header .sub-menu {
  display: none;
  padding-left: 0;
  list-style: none;
}

.main-header .sub-menu li a {
  text-decoration: none;
  display: block;
  padding: 7px 0px;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #000000b2;
}

.main-header .sub-menu li a:hover {
  /* background-color: #13ade31c; */
  color: var(--primary);
}

.main-header .menu-item {
  position: relative;
}

.main-header .menu-item.mobile-btn {
  display: none;
  padding: 30px 0 0 10px;
}

.main-header .menu-item.has-sub-menu::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -16px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  transform: rotate(225deg);
}

.main-header .menu-item.has-sub-menu:hover::after {
  border-top: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
}

.main-header .header-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-header .btn {
  height: 50px;
}

.main-header .menu-item .sub-menu h4,
.main-header .menu-item .sub-menu h4 a,
.main-header .menu-item .sub-menu a h4 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  padding: 10px 0;
  border-bottom: 1px solid #00000080;
  text-align: left;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--black);
  white-space: nowrap;
}

.main-header .menu-item .sub-menu a:has(h4) {
  background-color: transparent;
}

.main-header .menu-item .sub-menu h4:hover a {
  color: var(--primary);
}

/* footer css */

.main-footer {
  background-image: var(--primarygradient);
  padding: 80px 0 0px;
  z-index: 9;
  position: relative;
}

.main-footer .form-div {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.main-footer .form-div .title {
  max-width: 442px;
}

.main-footer .form-div .title h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: 67px;
  color: var(--white);
  margin-bottom: 30px;
}

.main-footer .form-div .title p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
}

.main-footer .form-div .title p span {
  font-size: 600;
}

.main-footer .form-div .title p a {
  color: var(--white);
  text-decoration: none;
}

.main-footer .form-div .title p a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.main-footer .custom-form {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 50px;
}

.main-footer .custom-form h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 30px;
  width: 100%;
}

.main-footer .custom-form label {
  display: block;
  width: 100%;
}

.main-footer .custom-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main-footer .custom-form p {
  margin-bottom: 20px;
  width: 100%;
}

.main-footer .custom-form p:nth-last-child(2) {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-footer .custom-form span {
  display: block;
  margin-top: 5px;
}

.main-footer .custom-form form p:nth-child(3) {
  width: 49%;
}

.main-footer .custom-form form p:nth-child(4) {
  width: 49%;
}

.main-footer .custom-form span textarea {
  max-height: 110px;
  overflow-y: auto;
}

.main-footer .custom-form span input,
.main-footer .custom-form span textarea {
  width: 100%;
  border: 1px solid #00000099;
  border-radius: 10px;
  padding: 9px 15px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--black);
}

.main-footer .custom-form span input::placeholder,
.main-footer .custom-form span textarea::placeholder {
  color: #00000099;
}

.main-footer .custom-form .wpcf7-submit {
  border: 2px solid #13ade3;
  background-color: #13ade3;
  transition: all 0.3s;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.main-footer .custom-form .wpcf7-submit:hover {
  color: #13ade3;
  background-color: transparent;
}

.main-footer .flex-div {
  align-items: start;
  gap: 50px 160px;
  margin: 0 auto;
  padding-top: 80px;
  border-top: 1px solid white;
}

.main-footer .flex-div .left-part {
  width: 100%;
  max-width: 330px;
}

.main-footer .flex-div .left-part .logo {
  max-width: 215px;
  transition: all 0.2s;
  margin-bottom: 20px;
}

.main-footer .flex-div .left-part p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: var(--white);
}

.main-footer .flex-div .left-part .site-title {
  margin-bottom: 20px;
  opacity: 1;
}

.main-footer .flex-div .right-part {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 47px;
}

.main-footer .right-part .links h3 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--white);
}

.main-footer .right-part .links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-footer .right-part .links ul li a {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  transition: all 0.2s;
  gap: 10px;
}

.main-footer .right-part .links ul li a span {
  font-family: var(--poppins);
  min-width: 102px;
}

.main-footer .right-part .links ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.main-footer .right-part .links ul li a img {
  max-width: 20px;
}

.main-footer .footer-bottom {
  padding: 20px 0 20px;
  border-top: 1px solid #ffffff;
  margin-top: 80px;
}

.main-footer .footer-bottom .copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  align-items: center;
}

.main-footer .footer-bottom .copyright p {
  position: relative;
}

.main-footer .footer-bottom .copyright p:first-child::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -15px;
  width: 1px;
  height: 20px;
  background-color: var(--white);
}

.main-footer .footer-bottom .social {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.main-footer .footer-bottom .social img {
  max-width: 21px;
}

.main-footer .footer-bottom>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.main-footer .footer-bottom p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
}

.main-footer .footer-bottom p a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  text-decoration: none;
}

.main-footer .footer-bottom p a:hover {
  text-decoration: underline;
}

.main-footer.footer-line {
  padding: 33px 0;
}

.main-footer.footer-line .footer-bottom {
  margin-top: 0;
  padding: 0;
  border-top: none;
}

.main-footer.footer-line .footer-bottom>div {
  justify-content: center;
}

.main-footer.footer-line .footer-bottom p {
  font-size: 18px;
}

/* home banner css */
.home-banner {
  padding: 170px 0px 0;
}

.home-banner .banner-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.home-banner .banner-img::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #002734 0%, #0384b200 100%);
}

.home-banner .banner-img>img {
  min-height: 700px;
  object-fit: cover;
  object-position: right;
}

.home-banner .banner-img .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 606px;
  right: 54px;
}

.home-banner .banner-img .section-title h1 {
  color: var(--white);
}

.home-banner .banner-img .section-title p {
  color: #fffffff0;
}

.services {
  padding: 80px 0;
}

.services .section-title h2,
.services .section-title p {
  text-align: center;
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid .services-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
  /* Center column */
}

.services .services-grid .services-card {
  background: var(--primarygradientlight);
  border-radius: 20px;
  padding: 20px;
}

.services .services-grid .services-card .img-div {
  margin-bottom: 30px;
}

.services .services-grid .services-card .img-div img {
  max-width: 96px;
}

.services .services-grid .services-card h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 10px;
}

.services .services-grid .services-card p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 30px;
  color: #00000099;
}

.services .section-title p,
.client-review .section-title p {
  max-width: 1000px;
  margin: 0 auto;
}

.dr-msg {
  padding: 50px 0 0;
  position: relative;
  margin-bottom: 80px;
}

.dr-msg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 144px);
  background: var(--primarygradient);
}

.dr-msg .msg-card {
  display: flex;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 9;
}

.dr-msg .msg-card>div {
  width: 100%;
}

.dr-msg .msg-card .img-div {
  max-width: 550px;
  max-height: 650px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--white);
  overflow: hidden;
}

.dr-msg .msg-card .img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: top;
  max-height: 630px;
}

.dr-msg .msg-card .section-title {
  margin-bottom: 30px;
}

.dr-msg .msg-card .section-title h2,
.dr-msg .msg-card .section-title p {
  color: var(--white);
}

.dr-msg .msg-card .content {
  margin-top: 50px;
  padding-bottom: 155px;
}

.client-review {
  padding: 50px 0;
  position: relative;
  margin-bottom: 110px;
}

.client-review::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 196px);
  background: #dbf1f9;
}

.client-review .container {
  position: relative;
  z-index: 9;
}

.client-review .section-title h2,
.client-review .section-title p {
  text-align: center;
}

.client-review .client-slider .client-card {
  border: 15px solid #ffffff;
  border-radius: 20px;
  background: var(--primarygradient);
  padding: 50px;
  text-align: center;
  color: var(--white);
  margin: 0 15px;
}

.client-review .client-slider .client-card img {
  max-width: 170px;
  margin: 0 auto 20px;
}

.client-review .client-slider .client-card p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
}

.client-review .client-slider .client-card h4 {
  font-family: var(--amaranth);
  font-weight: 400;
  font-size: 22px;
  line-height: 25px;
  color: var(--white);
}

.client-review .client-slider .slick-dots {
  display: none !important;
}

.client-review .client-slider .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #dbf1f9;
  font-size: 0;
  position: absolute;
  bottom: -80px;
  cursor: pointer;
}

.client-review .client-slider .slick-prev {
  left: calc(50% - 35px);
  transform: translateX(-50%);
}

.client-review .client-slider .slick-next {
  left: calc(50% + 35px);
  transform: translateX(-50%);
}

.client-review .client-slider .slick-arrow img {
  max-width: 20px;
}

.client-review .client-slider .slick-arrow.slick-next img {
  transform: rotate(180deg);
}

.client-review .section-title p {
  color: var(--black);
}

.schedule-appointment {
  background: var(--primary);
  padding: 13px 0;
  height: 50px;
}

.schedule-appointment p {
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0 60px;
}

.schedule-appointment p a {
  color: var(--white);
  text-decoration: none;
}

.service-banner {
  height: 700px;
  margin: 120px 0px 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.6) 4.81%,
      rgba(255, 255, 255, 0.6) 49.54%,
      #dcf3fb 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.service-banner .comtent-clm h1 {
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 30px;
}

.service-banner .comtent-clm .desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  max-width: 848px;
  color: #00000099;
}

.service-banner .comtent-clm .btn {
  margin-top: 50px;
}

.service-banner .container {
  height: 100%;
}

.service-banner-content .image-clm {
  height: 100%;
  padding-top: 32px;
}

.service-banner-content .image-clm img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-symptoms {
  padding: 80px 0 0;
  text-align: center;
  overflow: hidden;
}
.service-symptoms.no-padding{
	padding: 0 0 0;
}
.service-symptoms-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 57px;
}

.service-symptomslist-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px;
  background: #dcf3fb;
  border-radius: 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}

.service-symptoms-questions-item {
  position: relative;
  padding: 50px 0;
}

.service-symptoms-questions-item .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.service-symptoms-questions-item .image-clm {
  max-width: 520px;
  width: 100%;
  border-radius: 20px;
  border: 2px solid #000000;
  padding: 20px;
}

.service-symptoms-questions-item .content-clm {
  max-width: calc(100% - 610px);
  margin-left: auto;
  width: 100%;
  text-align: left;
}

.service-symptoms-questions-item::before {
  position: absolute;
  content: "";
  width: 1000%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: #dcf3fb;
  z-index: -1;
}

.service-symptoms-questions-item .image-clm img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.service-symptoms-questions-item h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 30px;
}

.service-symptoms-questions-item .desc {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #000000b2;
}

.service-symptoms-questions-item:nth-child(even)::before {
  opacity: 0;
}

.service-symptoms-questions-item:nth-child(even) .inner {
  flex-direction: row-reverse;
}

.service-symptoms-questions-item:nth-child(even) .content-clm {
  margin-right: auto;
  margin-left: 0;
}

section.faq-sec {
  padding: 80px 0;
  text-align: center;
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item .title {
  padding: 28px 30px 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-item {
  background: #dcf3fb;
  overflow: hidden;
  border-radius: 20px;
  text-align: left;
}

.accordion-item .accordion-content {
  display: none;
}

.accordion-item .title span {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}

.accordion-item .accordion-content .inner {
  line-height: 1.5;
  font-weight: 400;
  color: #000000b2;
  padding: 0 40px 20px;
  padding-top: 0;
}

.accordion-item.active .accordion-trigger svg path:first-child {
  opacity: 0;
}

/* Blog Listing Page */
.blog_list_sec {
  padding: 170px 0px 80px;
}

.blog_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.blog_header h1 {
  font-size: 60px;
  color: var(--primary);
  line-height: 1;
}

.blog_header p {
  font-family: var(--poppins);
  font-size: 20px;
  color: var(--black);
  line-height: 1.5;
}

.blog_listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 10px;
}

.blog_card {
  padding: 24px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog_card:hover {
  background: var(--primarygradientlight);
}

.blog_card .blog_img {
  position: relative;
  max-height: 240px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.blog_card .blog_heading {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
}

.blog_card .blog_desc {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #00000099;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog_list_sec .pagination-wrap,
.blog_list_sec .pagination-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.blog_list_sec ul .page-numbers,
.blog_list_sec .pagination-wrap a,
.blog_list_sec .pagination-wrap span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 50%;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.blog_list_sec .pagination-wrap .current-page,
.blog_list_sec .pagination-wrap a:hover,
.blog_list_sec .pagination-wrap span:hover {
  background-color: var(--primary);
  color: #fff;
}

.blog_list_sec .pagination-wrap .dots {
  background-color: transparent;
  border: transparent;
  width: auto;
  height: auto;
}

.blog_list_sec .pagination-wrap .dots:hover {
  background-color: transparent;
  border: transparent;
  color: var(--primary);
}

/* Blog Detail */
.blog_detail_sec {
  padding: 130px 0 60px;
}

.blog_detail_header {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog_detail_header .blog_inner_img {
  max-width: 450px;
  max-height: 400px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-fit: top;
}

.blog_detail_header h1 {
  font-size: 40px;
  color: var(--primary);
  line-height: 1.2;
  width: calc(100% - 500px);
}

.blog_content h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog_content h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #00000099;
}

.blog_content h4 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog_content ul {
  list-style: disc;
}

.blog_content ul,
.blog_content ol {
  font-size: 16px;
  font-family: var(--poppins);
  line-height: 1.5;
  color: #00000099;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog_content ul li,
.blog_content ol li {
  font-size: 16px;
  font-family: var(--poppins);
  line-height: 1.5;
}

.blog_content p {
  font-size: 16px;
  font-family: var(--poppins);
  line-height: 1.5;
  color: #00000099;
  margin-bottom: 16px;
}

.blog_content a {
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
  font-family: var(--poppins);
  text-decoration: none;
}

.blog_content p a,
.blog_content strong {
  font-family: var(--poppins);
}

.blog_content blockquote {
  padding: 16px;
  border-radius: 12px;
  background: var(--primarygradientlight);
  margin-bottom: 20px;
}

.blog_content img {
  width: auto;
  margin: auto;
  margin-bottom: 20px;
}

/* Contact Us */
.contact_us {
  padding: 130px 0 60px;
}

.contact_us .container {
  max-width: 1200px;
}

.contact_us .heading_text {
  font-size: 60px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 55px;
  text-align: center;
}

.contact_detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.contact_card {
  background: var(--primarygradientlight);
  border-radius: 20px;
  padding: 20px;
}

.contact_card h2 {
  font-size: 24px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 20px;
}

.contact_card p {
  font-size: 20px;
}

.contact_card .address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--poppins);
}

.contact_card .time_detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact_card p,
.contact_card a {
  font-family: var(--poppins);
  font-size: 16px;
  color: var(--black);
}

.contact_card a {
  text-decoration: none;
}

.contact_card .time_list {
  display: flex;
  align-items: start;
  gap: 5px;
}

.contact_card .time_list .day {
  max-width: 180px;
  width: 100%;
}

.contact-info ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.contact-info li {
  font-family: var(--poppins);
}

.contact_us .footer_text {
  font-size: 20px;
  font-family: var(--poppins);
}

.policy_detail_sec {
  padding: 100px 0 100px;
}

.policy_banner {
  height: 700px;
  overflow: hidden;
  padding-top: 120px;
}

.policy_banner .img-div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.4;
  z-index: 1;
}

.policy_banner .img-div {
  height: 100%;
  position: relative;
}

.policy_banner .img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.policy_banner .content-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.policy_banner .content-div h1 {
  font-size: 60px;
  color: var(--white);
  line-height: 1;
}

.all_service_list_sec {
  padding: 100px 0 100px;
}

.all_service_list_sec .service_list_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.all_service_list_sec .service_list_item {
  background: var(--primarygradientlight);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
}

.all_service_list_sec .service_list_item .img-div {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 300px;
}

.all_service_list_sec .service_list_item .img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.all_service_list_sec .service_list_item .content-div h3 {
  font-size: 24px;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.all_service_list_sec .service_list_item .content-div p {
  font-size: 16px;
  font-family: var(--poppins);
  line-height: 1.5;
  color: var(--black);
}

.all_service_list_sec .service_list_item .content-div {
  margin-bottom: 20px;
}

.all_service_list_sec .section-title {
  text-align: center;
}


@media (min-width: 1500px) {
  .main-footer .custom-form {
    min-width: 1000px;
    max-width: 1000px;
  }
}

@media (min-width: 991px) {
  .main-header .desktop-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .main-header .menu-item .sub-menu.col1>div {
    flex: 1;
    max-width: 205px;
    min-width: 180px;
  }

  .main-header .menu-item .sub-menu.col3>div {
    min-width: 210px;
  }

  .main-header .menu-item .sub-menu,
  .main-header .menu-item .sub-menu.col1,
  .main-header .menu-item .sub-menu.col3 {
    min-width: 100%;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: var(--white);
    transition: all 0.3s;
    z-index: 9;
    box-shadow: 0px 0px 3px #00000012;
    border-top: 2px solid var(--primary);
  }

  .main-header .sub-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--black);
  }

  .main-header .menu-item.active .sub-menu {
    display: flex;
    gap: 50px;
  }
}

@media (max-width: 1548px) {
  .service-banner {
    margin: 80px 0px 0;
  }

  .service-symptoms-list {
    gap: 40px;
  }

  .service-symptoms-questions-item .image-clm img {
    max-height: 500px;
  }

  .service-symptoms-questions-item .content-clm {
    max-width: calc(100% - 580px);
  }
}

@media (max-width: 1400px) {
  .dr-msg .msg-card .img-div {
    max-width: 400px;
  }

  .dr-msg::after {
    height: calc(100% - 60px);
  }

  .dr-msg .msg-card .content {
    margin-top: 0px;
    padding-bottom: 70px;
  }

  .service-banner {
    height: 550px;
  }

  .service-banner .comtent-clm h1 {
    font-size: 60px;
  }

  .service-banner .comtent-clm .desc {
    max-width: 738px;
  }

  .service-symptoms-questions-item h3 {
    font-size: 34px;
  }

  .service-symptoms-questions-item .desc {
    font-size: 20px;
  }

  .service-symptoms-questions-item .image-clm img {
    max-height: 470px;
  }
}

@media (max-width: 1300px) {
  .main-footer .flex-div {
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  .main-header .menu-primary-menu-container>ul {
    padding: 0px;
  }

  .main-header .secondary-btn {
    padding: 10px 20px;
    font-size: 17px;
  }

  .main-header .primary-btn {
    padding: 12px 20px;
  }

  .main-header .navbar .logo img {
    width: 100%;
    max-width: 140px !important;
    min-width: 140px !important;
  }

  .main-header .menu-item>a {
    font-size: 16px;
  }

  .main-header .primary-btn {
    font-weight: 400;
    font-size: 15px;
  }

  .service-symptoms {
    padding-top: 60px;
  }

  .service-symptoms-list {
    gap: 20px;
  }

  .service-symptoms-questions-item .image-clm {
    max-width: 430px;
  }

  .service-symptoms-questions-item .content-clm {
    max-width: calc(100% - 480px);
  }

  section.faq-sec {
    padding: 60px 0;
  }

  .service-symptoms-questions-item h3 {
    font-size: 30px;
  }

  .service-symptomslist-item {
    font-size: 20px;
  }

  .main-footer .form-div {
    flex-direction: column;
  }

  .main-footer .form-div .title {
    max-width: unset;
  }

  .blog_list_sec {
    padding: 100px 0px 80px;
  }

  .blog_listing {
    grid-template-columns: repeat(2, 1fr);
  }

  .all_service_list_sec .service_list_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid .services-card:last-child:nth-child(3n + 1) {
    grid-column: unset;
  }

  .dr-msg::after {
    height: 100%;
  }

  .dr-msg {
    padding: 50px 0 50px;
  }

  .main-footer .form-div .title h2 {
    font-size: 40px;
    line-height: 47px;
  }
}

@media (max-width: 991px) {
  .main-header .header-btn .primary-btn {
    display: none;
  }

  .main-header {
    padding: 15px 0;
  }

  .main-header.sticky {
    padding: 15px 0;
  }

  .main-header .navbar {
    padding: 0 15px;
    gap: 15px;
    justify-content: space-between;
  }

  .main-header .menu-primary-menu-container>ul {
    flex-direction: column;
    padding: 20px 20px 20px;
    position: absolute;
    top: 53px;
    left: -100%;
    width: 100%;
    background: var(--white);
    transition: all 0.5s;
    height: calc(100vh - 126px);
    overflow: auto;
    gap: 5px;
    margin: 0;
    border-top: 1px solid #7ec04033;
  }

  .main-header .menu-item {
    width: 100%;
  }

  .main-header .menu-item>a {
    padding: 10px 15px;
    width: 100%;
    display: block;
    font-weight: 500;
    border-radius: 10px;
  }

  .main-header .menu-item>a:hover {
    background-color: #13ade312;
  }

  .main-header .menu-toggle {
    display: block;
  }

  .main-header .menu-item .sub-menu {
    position: relative;
    width: 100%;
    padding: 5px 15px;
  }

  .main-header .menu-item.active .sub-menu {
    display: flex;
  }

  .main-header .menu-item .sub-menu {
    flex-direction: column;
    gap: 15px;
  }

  .main-header .menu-item .sub-menu h4,
  .main-header .menu-item .sub-menu h4 a {
    font-size: 15px;
    line-height: 20px;
  }

  .main-header .menu-item.has-sub-menu::after {
    right: 15px;
    top: 14px;
    transition: all 0.2s;
  }

  .main-header .menu-item.has-sub-menu.active::after {
    transform: rotate(45deg);
    top: 18px;
  }

  .main-header .menu-primary-menu-container>ul.active {
    left: 0;
  }

  .main-header .menu-item.mobile-btn {
    display: block;
  }

  .main-header .menu-item.active>a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .main-header .header-btn .secondary-btn {
    display: none;
  }

  .main-header .sub-menu li a {
    font-size: 14px;
  }

  .main-header .menu-item.active>a {
    background: #13ade312;
  }

  .main-header .menu-item.active:hover>a {
    color: var(--primary);
    background: #13ade312;
  }

  .main-header .white-btn {
    padding: 8px 18px;
  }

  .main-header .btn {
    height: 40px;
    padding: 4px 15px;
    font-size: 13px;
  }

  .main-footer .flex-div .right-part {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
  }

  .main-footer .right-part .links:last-child {
    column-span: 2;
  }

  .home-banner .banner-img>img {
    min-height: 550px;
  }

  .home-banner .banner-img .content {
    right: 24px;
  }

  .home-banner {
    padding: 100px 0px 0;
  }

  .dr-msg .msg-card {
    flex-direction: column;
  }

  .dr-msg .msg-card .img-div {
    max-height: 460px;
  }

  .dr-msg .msg-card .img-div img {
    max-height: 430px;
  }

  .dr-msg .msg-card .content {
    padding-bottom: 0px;
  }

  .service-symptoms-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-symptoms-questions-item .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .service-symptoms-questions-item .content-clm {
    max-width: 100%;
  }

  .service-symptoms-questions-item:nth-child(even) .inner {
    flex-direction: column;
  }

  .accordion-item .title {
    padding: 18px 20px 18px 30px;
  }

  .main-footer .custom-form {
    padding: 30px;
  }

  .blog_card .blog_heading {
    font-size: 24px;
  }

  .blog_card .blog_desc {
    font-size: 16px;
  }

  .blog_card .text-btn {
    font-size: 18px;
  }

  .contact_us {
    padding: 60px 0;
  }

  .contact_us .heading_text {
    margin-bottom: 30px;
    font-size: 40px;
  }

  .contact_card h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact_detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .contact-info ul,
  .contact_us .footer_text {
    font-size: 16px;
  }

  .contact_card .time_list .day {
    max-width: 120px;
  }

  .blog_detail_sec {
    padding: 60px 0;
  }

  .blog_detail_header h1 {
    width: 100%;
  }

  .policy_banner {
    padding-top: 70px;
    height: 550px;
  }

  .policy_banner .content-div h1 {
    font-size: 45px;
  }

  .all_service_list_sec .service_list_wrapper {
    gap: 20px;
  }

  .all_service_list_sec .service_list_item {
    padding: 20px 15px;
  }

  .all_service_list_sec .service_list_item .btn {
    padding: 10px 15px 10px 15px;
    border-radius: 7px;
  }

  .all_service_list_sec {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {

  .section-title h2,
  .section-title h1 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  .section-title p {
    font-size: 19px;
    line-height: 27px;
  }

  .btn img {
    max-width: 15px;
  }

  .main-header .btn {
    height: 35px;
  }

  .home-banner .banner-img .content {
    right: unset;
    left: 20px;
    padding-right: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .schedule-appointment p {
    margin: 0 30px;
  }

  .services .services-grid .services-card .img-div img {
    max-width: 66px;
  }

  .services .services-grid .services-card .img-div {
    margin-bottom: 20px;
  }

  .services .services-grid .services-card h3 {
    font-size: 22px;
    line-height: 25px;
  }

  .services .services-grid .services-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .text-btn {
    font-size: 17px;
    line-height: 24px;
  }

  .btn {
    font-size: 15px;
  }

  .home-banner .banner-img>img {
    min-height: 450px;
  }

  .main-footer .form-div .title h2 {
    font-size: 30px;
    line-height: 37px;
  }

  .main-footer .form-div .title p {
    font-size: 19px;
    line-height: 26px;
  }

  .main-footer {
    padding: 50px 0 0px;
  }

  .main-footer .right-part .links h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .main-footer .right-part .links ul li a {
    font-size: 17px;
    line-height: 24px;
  }

  .service-banner-content .image-clm {
    display: none;
  }

  .service-banner .comtent-clm h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .service-banner .comtent-clm .btn {
    margin-top: 25px;
  }

  .service-banner {
    height: 500px;
  }

  .blog_list_sec {
    padding: 60px 0px;
  }

  .blog_listing {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .blog_header {
    gap: 8px;
    margin-bottom: 20px;
  }

  .blog_header h1 {
    font-size: 40px;
  }

  .blog_header p {
    font-size: 16px;
  }

  .blog_card {
    gap: 12px;
    background: var(--primarygradientlight);
  }

  .blog_detail_header {
    gap: 30px;
    margin-bottom: 20px;
  }

  .blog_detail_header h1 {
    font-size: 32px;
  }

  .blog_content h2 {
    font-size: 28px;
  }

  .blog_content h3 {
    font-size: 20px;
  }

  .blog_content h4 {
    font-size: 18px;
  }

  .policy_detail_sec {
    padding: 80px 0 50px;
  }

  .main-footer .custom-form {
    padding: 30px 20px;
  }

  .main-footer .custom-form h3 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .policy_banner .content-div h1 {
    font-size: 35px;
    text-align: center;
  }

  .all_service_list_sec .service_list_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 520px) {
  .main-footer .form-div {
    margin-bottom: 50px;
  }

  .main-footer .flex-div {
    padding-top: 50px;
  }

  .main-header .navbar {
    padding: 0 15px;
  }

  .main-header .header-btn {
    gap: 10px;
  }

  .main-header .navbar .logo img {
    max-width: 90px !important;
  }

  .main-header .menu-primary-menu-container>ul {
    top: 53px;
    padding: 20px 10px 20px;
  }

  .main-footer .flex-div .right-part {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .services .services-grid {
    display: flex;
    flex-direction: column;
  }

  .service-symptoms-list {
    display: flex;
    flex-direction: column;
  }

  .service-symptoms-questions-item .image-clm {
    padding: 10px;
  }

  .accordion-item .title .accordion-trigger {
    width: 30px;
    height: 30px;
  }

  .accordion-item .title .accordion-trigger svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .accordion-item .accordion-content .inner {
    padding: 0 20px 020px;
  }

  .accordion-item .title {
    padding: 18px 20px 18px 20px;
  }
}