@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');
@import url(../font/rothek_bolditalic_macroman/stylesheet.css);
@import url(../font/rothek_extralight_macroman/stylesheet.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {

  background: #F8FEFE;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #000000;

}

/* Modal background */
.custom-modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center; 
  align-items: center;
}

/* Modal box */
.custom-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: zoomIn 0.3s ease;
}

/* Close button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

/* OK button */
.ok-btn {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #28a745;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.ok-btn:hover {
  background: #218838;
}

/* Animation */
@keyframes zoomIn {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}


.zoom-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}


@keyframes zoomInCustom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.physiotherapy-slide .item {
    opacity: 0;
    animation: zoomInCustom 0.6s ease forwards;
}

.physiotherapy-slide .owl-item.active .item {
    opacity: 1;
    animation-delay: 0.2s;
}

/* Fade-in animation for section on scroll */
.clinical .item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

/* When item is visible */
.clinical .item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card styling with shadow */
.clinical-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover effect on card */
.clinical-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Image zoom-in on hover */
.clinical-item img {
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.clinical-item:hover img {
    transform: scale(1.05);
}

/* Button hover effect */
.btn-fill {
    transition: all 0.3s ease;
}

.btn-fill:hover {
    background-color: #004080; /* Change to match your theme */
    color: #fff;
    transform: scale(1.05);
}

/* Optional smooth fade-in for heading */
.clinical .item-head h4,
.clinical .item-head p {
    animation: fadeUp 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card-lift-down {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  border-radius: 12px;
  background: #fff;
}

.card-lift-down:hover {
  transform: translateY(15px); /* moves down on hover */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.img-zoom-in {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.img-zoom-in:hover {
  transform: scale(1.10);
}
.img-zoom-shadow {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: scale(1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.img-zoom-shadow:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

input:focus,
button:focus,
a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 59px;
  line-height: 85px;
}

h3 {
  font-size: 50px;
  line-height: 60px;
}

h4 {
  font-size: 40px;
  line-height: 50px;
}

h5 {
  font-size: 30px;
  line-height: 40px;
}

h6 {
  font-size: 20px;
  line-height: 30px;
}

a {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #6AA39D;
}

img {
  max-width: 100%;
}

.f-size-11 {
  font-size: 11px;
}

.f-size-12 {
  font-size: 12px;
}

.f-size-14 {
  font-size: 14px;
}

.f-size-16 {
  font-size: 16px;
}

.f-size-18 {
  font-size: 18px;
}

.f-weight-100 {
  font-weight: 100;
}

.f-weight-200 {
  font-weight: 200;
}

.f-weight-300 {
  font-weight: 300;
}

.f-weight-400 {
  font-weight: 400;
}

.f-weight-500 {
  font-weight: 500;
}

.f-weight-600 {
  font-weight: 600;
}

.f-weight-700 {
  font-weight: 700;
}

.f-weight-800 {
  font-weight: 800;
}

.f-weight-900 {
  font-weight: 900;
}

.f-weight-bold {
  font-weight: bold;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.btn-border {
  border: 1px solid #D1A715;
  padding: 10px 20px;
  color: #fff !important;
  border-radius: 40px;
}

.btn-fill {
  padding: 10px 29px;
  color: #fff;
  font-weight: 400;
  border-radius: 10px;
  background: #7AB342;
  display: inline-block;
  border: none;

}

.btn-fill:hover {
  color: #ffffff;
}

a.nav-link {
  color: #000D3A !important;
  padding: 10px 18px !important;
  font-weight: 400;
  
}

.font-happy-monkey {

  font-family: "Happy Monkey", system-ui;
}

.font-rothek-bold {

  font-family: 'rothek-bolditalic';
}

.font-rothek-light {

  font-family: 'rothek-extralight';

}

.navbar-expand-md .navbar-nav {
  margin: 0 auto;
}

.site-banner {
  background: url(../img/banner-bg.jpg) no-repeat;
  background-size: cover;
  padding: 50px 0;
  
}


.color-blue {
  color: #1864A2;
}
.color-green {
  color: #7AB342;
}

.color-white {
  color: #fff;
}

.list-1 li {
  margin-bottom: 10px;
}

.book {
  background: #2479BF;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

.book:after {
  content: "";
  background: url(../img/book-bottom-bg.svg) no-repeat bottom center;
  background-size: cover;
  display: block;
  height: 74px;
  position: absolute;
  bottom: -55px;
  width: 100%;
  left: 0;
}

.z-index-1 {
  z-index: 1;
}

.book-bottom-holder {
  position: relative;
  top: 31px;
}

.book-bottom-holder a.btn-fill {
  padding-left: 15px;
  padding-right: 15px;
}

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

.b-r-10 {
  border-radius: 10px !important;
}

.b-r-15 {
  border-radius: 15px !important;
}

.b-r-20 {
  border-radius: 20px !important;
}

.banner-form {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 32%);
  min-height: 330px;
}

.form-control {
  height: 40px;
  border-radius: 30px;
  border-color: #999999;
}

.left-with-bg {
  background: #1864A2;
  color: #fff;
}

.site-section {
  padding: 120px 0;
}

.left-with-bg {
  background: #1864A2;
  color: #fff;
  padding: 5px 15px;
  border-radius: 0 10px 10px 0;
}

b,
strong {
  font-weight: 600;
}

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

.simple-list {
  list-style: none;
  padding-left: 0;
}

.physiotherapy {
  background: url(../img/bg-2.jpg) top center;
  background-size: cover;
}

span.count {
  width: 30px;
  height: 30px;
  display: inline-flex;
  border: 1px solid #3f3f3f;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.physiotherapy-holder {
  background: linear-gradient(151deg, rgba(255, 244, 244, 1) 0%, rgba(144, 208, 250, 1) 100%);
  padding: 20px;
  border-radius: 15px;
  /*min-height: 334px;*/
   min-height: 350px; /* ensures enough space for button */
}

.very-big {
  font-size: 122px;
}

.max-width-25 {
  max-width: 25px;
}

.testimonials-item {
  background: #1864A2;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
}

.footer-menu ul {
  flex-wrap: wrap;
}

.footer-menu li {
  width: 25%;
  margin-bottom: 15px;
}

.footer-item .email {
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
}

.footer-form button {
  position: absolute;
  right: 0;
  border: none;
  background: transparent;
  top: -5px;
}

.copyright {
  border-top: 1px solid #a7a6a6;
  padding: 30px 0 0;
  margin-top: 15px;
  font-size: 14px;
}

/*.vision {*/
/*    background: #53DFFF url(../img/home-bg.jpg) no-repeat center top;*/
/*    background-size: cover;*/
/*}*/

.testimonials .item-head h4 {
  background: url(../img/shape-1.svg) no-repeat 30% 100%;
}

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {display: none;color: #fff;text-align: center;margin-top: 30px;}

button.owl-dot {
  width: 26px;
  height: 10px;
  background: rgb(0 0 0 / 35%) !important;
  display: inline-block;
  position: relative;
  z-index: 999;
  border-radius: 10px;
  margin: 5px;
}

button.owl-dot.active {
  width: 50px;
}

.owl-carousel .owl-nav {
  display: flex !important;
  justify-content: end;
}

.owl-prev,
.owl-next, .flipster__button.flipster__button--next, .flipster__button.flipster__button--prev {
    display: inline-block;
    height: 35px;
    width: 50px;
    background: #fff url(../img/arrow-owl.svg) no-repeat center !important;
    border-radius: 10px;
    margin: 6px;
    color: #000 !important;
    border: none !important;
    font-size: 20px !important;
    text-indent: 130px;
    overflow: hidden;
    opacity: 1 !important;
    
}
button.flipster__button.flipster__button--next {
    transform: rotate(180deg);
}

.service .owl-prev, .service .owl-next, .testimonials .owl-prev, .testimonials .owl-next{
    background-color: #D9D9D9 !important;
}

.physiotherapy .owl-carousel .owl-nav {
  justify-content: space-between;
}

.physiotherapy-slide {
  position: absolute;
  width: 100%;
  top: 0;
}

.physiotherapy-slide {
  position: relative;
}

.physiotherapy-slide .owl-nav {
  position: absolute;
  width: 100%;
  top: -180px;
}

.physiotherapy .owl-prev,
.physiotherapy .owl-next {
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  margin: 6px;
  color: none;
  font-size: 22px !important;
      filter: invert(1);
}

.service h4 {
  border-bottom: 1px solid #7AB342;
}

.service, .clinical, .cap, .vision {
  background: url(../img/main-bg.jpg) no-repeat ;
    background-size: cover;
        background-attachment: fixed;
}

.doctors h4::before {
  content: "";
  width: 8px;
  height: 29px;
  background-color: #7AB342;
  display: inline-block;
  margin-right: 10px;
}


.site-banner h2 {
  background: url(../img/shape-2.svg) no-repeat 100% 70px;
  padding-bottom: 25px;
  
  
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 2.2s ease-out forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*@keyframes heartbeatMove {*/
/*  0% { background-position-x: 0; }*/
/*  100% { background-position-x: 100%; }*/
/*}*/


.doctors .owl-prev,
.doctors .owl-next {
    display: inline-block;
    height: 35px;
    width: 50px;
    background: #D9D9D9 url(../img/arrow-owl.svg) no-repeat center !important;
    border-radius: 10px;
    margin: 6px;
    color: #000 !important;
    border: none !important;
    font-size: 20px !important;
    text-indent: 130px;
    overflow: hidden;
}
button.owl-next {
    transform: rotate(180deg);
}

/*.cap {*/
/*  background: url(../img/bg-3.jpg) no-repeat top center;*/
/*}*/

.clinical-item {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  min-height: 463px;
}

.clinical h4 {
  background: url(../img/shape-3.svg) no-repeat bottom left;
  padding-bottom: 15px;

}

.cap h4 {
  background: url(../img/shape-4.svg) no-repeat bottom left;
  padding-bottom: 15px;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, .55);
  border-color: rgba(255, 255, 255, .1);
}

.inner-page-blue {
  background-color: #1864A2;
}

.inner-page-blue a.nav-link {
  color: #fff !important;
}

.white-container {
  padding: 40px 30px 40px 30px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.site-content ul {
  padding-left: 30px !important;
}

.site-content li {
  line-height: 30px;
}

.write {
  background: #E0E0E0;
  padding: 20px;
  border-radius: 20px;
  margin-top: 25px;
}

.client {
  padding-top: 0;
}

.client h2 {
  font-size: 140px;
}

.b-right {
  border-right: 1px solid #fff;
}

.inner-page-blue footer.site-footer,
.inner-page-blue footer.site-footer a {
  color: #fff;
}

.inner-page-blue .footer-item .email {
  border: none;
  border-bottom: 1px solid #fdfdfd;
  width: 100%;
  background: transparent;
}

.inner-page-blue .footer-form img,
.inner-page-blue .copyright img {
  filter: invert(1);
}

.inner-page-blue input::placeholder {
  color: #fff;
}

.item-status {
  color: rgb(0 0 0 / 50%);
  font-size: 16px;
}

.category {
  background: #E3E2E2;
  color: #242424;
  border-radius: 5px;
  padding: 2px 5px;
}

.author-pic {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.sm-container {
  max-width: 1000px;
  margin: 0 auto;
}

a.btn-fill.btn-align-top {
  position: relative;
  top: -59px;
  right: 12px;
}

.text-with-img {
  color: white;
  background: url(../img/blog-details-1.jpg) no-repeat;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 169px;
  line-height: 225px;
  position: relative;
}

.blog-details .img-align-top {
    margin-top: -233px;
    width: 100%;
}

.text-holder {
  background: #fff;
  position: relative;
}

.blog-img-adge {
  margin-top: -249px;
}

.right-holder-align {
  margin-top: -259px;
  padding-left: 60px;
}

.table-list {
  border-bottom: 1px solid #b5b5b5;
  padding: 30px;
  border-radius: 10px;
}

.table-list img {
  border-radius: 10px;
  object-fit: cover;
}

.table-list:hover {
  background: #1E1E1E;
  color: #fff;
}

a.btn-link {
  width: 40px;
  height: 40px;
  display: flex;
  background: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}

.table-list:hover a.btn-link {
  display: flex;
}

.banner-form .row p {
    margin-top: 0;
    margin-bottom: 0;
}

.wpcf7-spinner {
    position: absolute !important;
    right: 0;
}
.banner-form form {
    position: relative;
}

button.flipster__button.flipster__button--prev {
    right: 76px;
}
.flipster__button--prev {
    left: initial;
}
.flipster__button {
    background: #fff !important;
    padding: 7px 26px !important;
    border-radius: 5px !important;
    
}

.flipster__button--prev {
    left: initial;
}
.flipster__button--prev {
    left: inherit !important;
}
.flipster__button svg {
    width: 15px;
}
.flipster__button svg {
    width: 13px !important;
}
.flipster__button {
    top: 90% !important;
}
.flipster {
    padding-bottom: 100px;
}
.owl-nav.disabled {
    margin-top: 0px;
}
.service-item {
    padding: 15px;
    background: rgb(255 255 255 / 78%);
    border-radius: 15px;
}

.physiotherapy-slide .owl-nav.disabled {
display: none !important;
}

.physiotherapy .owl-carousel .owl-nav {
    width: 100%;
    position: absolute;
    top: 19px;
}
.physiotherapy-slide > .owl-carousel .owl-dots {
display: none !important;

}

.physiotherapy-slide .owl-carousel .owl-dots {
display: block !important;

}

.physiotherapy-slide1 > .owl-carousel .owl-dots {

  display: none;
}


@media (max-width: 1400px) {

  .text-with-img {
    font-size: 109px;
  }
  
  .book:after {
    height: 66px;
    position: absolute;
    bottom: -46px;
}

.physiotherapy-slide .owl-nav {
    width: 100%;
    top: -60px;
}

}

@media (max-width: 1290px) {
  .very-big {
    font-size: 105px;
  }

  .text-with-img {
    font-size: 99px;
  }
  
  .book:after {
        height: 51px;
        bottom: -36px;
    }
}

@media (max-width: 1200px) {
  .right-holder-align {
    margin-top: -182px;
  }

  .left-content {
    margin-bottom: 90px;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 10px 6px !important;
    font-size: 15px;
  }
  .book-bottom-holder {
    top: initial;
}
a.nav-link {
    padding: 10px 10px !important;
    font-size: 14px;
}
}

@media (max-width: 992px) {
  a.nav-link {
    padding: 15px 10px !important;
    font-size: 14px;
  }

  .site-banner h2,
  .testimonials .item-head h4 {
    /* display: none; */
    /* font-size: revert-layer; */
    line-height: revert-layer;
    font-size: 1.9rem;
  }
  .header-right{
     align-content: center; 
  }
 
    

  .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .55);
    border-color: rgba(255, 255, 255, .1);
  }

  .b-right {
    border-right: none;
  }

  .blog-img-adge {
    margin-top: -79px;
  }

  .right-holder-align {
    margin-top: 0;
    padding-left: 10px;

  }

  .table-list img {
    margin-bottom: 20px;
  }

  a.btn-link {
    padding-top: 21px;
  }

  .text-with-img {
    font-size: 59px;
    line-height: 80px;
  }

  .blog-details .img-align-top {
    margin-top: 0;
  }
  section.site-section.vision-inner {
    padding-bottom: 50px;
}
a.nav-link {
    padding: 6px !important;
}
.home-header .navbar-dark .navbar-toggler-icon {
    filter: brightness(0.5);
}
    .home-header .navbar-dark .navbar-toggler {
        color: rgb(62 55 55);
        border-color: rgb(118 117 117);
    }
        .navbar-collapse {
        position: absolute;
        right: 0;
        top: 44px;
        z-index: 99;
        background: #ffffff;
        width: 180px;
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 0 20px rgb(0 0 0 / 38%);
    }
.bottom-img {
    margin-top: 30px;
    margin-bottom: 30px;
}
    .very-big {
        font-size: 75px;
    }
    
    .inner-page-blue a.nav-link {
    color: #2d2d2d !important;
}

.physiotherapy .owl-carousel .owl-nav {
    top: -93px;
}

}

@media (max-width: 678px) {

  a.nav-link {
    border-bottom: 1px solid #fff;
  }

  .very-big {
    font-size: 45px;
  }


  .right-align {
    justify-content: end !important;
    display: flex;
  }

  .b-bpttom {
    border-bottom: 1px solid #85a3bb;
  }

  .left-with-bg {
    margin-left: 0;
  }

  a.btn-fill.btn-align-top {
    position: initial;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .btn-fill {
    font-size: 10px;
}
.cap h4 {
    background: transparent;
}
.footer-menu li {
    width: 100%;
}

}

@media (max-width: 550px) {
  .text-with-img {
    font-size: 49px;
  }
  .client h2 {
    font-size: 80px;
}
}