@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/*Common stle*/
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: transparent;
  /* font-family: 'Sen', sans-serif; */
}

body {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sen', sans-serif;
}

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

img {
  width: 100%;
}

i {
  font-weight: normal;
}

a,
p,
ul li,
ol li {
  font-size: 16px;
  line-height: 26px;
  color: #272626;
  font-weight: 300;
  font-family: 'Sen', sans-serif;
}

section {
  padding: 60px 0;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*Fonts*/
h1 {
  font-size: 36px;
  line-height: 44px;
  font-family: 'Sen', sans-serif;
}

h2 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 32px;
  font-family: 'Sen', sans-serif;
}

.f24 {
  font-size: 24px;
  line-height: 32px;
}

/*Font Weight*/

.f400 {
  font-weight: 400;
}

.f500 {
  font-weight: 500;
}

.f600 {
  font-weight: 600;
}

.f700 {
  font-weight: 700;
}

.f800 {
  font-weight: 800;
}

.f900 {
  font-weight: 900;
}

/*Colors
--------------------------------------*/

/*Buttons
--------------------------------------*/
.btn-main {
  background-color: #000000;
  padding: 10px 15px;
  color: #fff;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 10px;
  border-radius: 10px;
  font-family: 'Sen', sans-serif;
}
.text-orange{background-color:#F26B21;}
.btn-main:hover {
  background-color: #000;
  color: #fff !important;
}

/*HEADER
--------------------------------------*/
.header {
  background-color: #F26B21;
  padding: 7px 0;
}

.header .call-icon i {
  color: #fff;
  margin-right: 20px;
}

/*NAVABAR
--------------------------------------*/
.navbar {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  transition: 0.6s all;
}

.navbar-expand-md.fixed-top .navbar-nav .dropdown-menu {
  top: 60px;
}

.navbar.fixed-top {
  top: 0;
  background-color: #36506c;
}

.navbar-brand {
  width: 350px;
  padding: 5px 0;
  margin-left: 63px;
}

.navbar-brand .logo-x {
  display: block;
}

.navbar.fixed-top .navbar-brand .logo-x {
  display: none;
}


.navbar-brand .logo-y {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-y {
  display: block;
}

.navbar-expand-md .navbar-nav .nav-link {
  color: #000;
  padding: 24px 0;
  margin-left: 24px;
  font-size: 16px;
  color: #272626;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.fixed-top.navbar-expand-md .navbar-nav .nav-link {
  color: #fff;
}

.navbar-expand-md .navbar-nav .nav-item:hover .nav-link {
  color: #232323;
}

.fixed-top.navbar-expand-md .navbar-nav .nav-item:hover .nav-link {
  color: #fff;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  background-color: #FBD5C0 !important;
  color: #fff;
}

/*FOOTER
--------------------------------------*/
.footer {
  background: linear-gradient(92deg, #F26B21, #F59763);
  padding: 80px 0;
}

.footer .foot-links ul li a {
  color: #6d7c90;
  padding-bottom: 5px;
  display: inline-block;
}

.copyright-content {
  padding: 15px;
  background: #000000;
}

.footer p,
.footer h5,
.footer a {
  color: #fff;
  font-family: 'Sen', sans-serif;
}

.footer-stick {
  display: none;
}

/*HOME PAGE
--------------------------------------*/
h2.title-head {
  margin-bottom: 0px;
  font-size: 40px;
  line-height: 42px;
  font-family: 'Sen', sans-serif;
}

h1.title-head {
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 35px;
  font-family: 'Sen', sans-serif;
}




/*carousel*/
.carousel {
  margin-top: 3px;
}

.carousel .carousel-item {
  position: relative;
}

.carousel .carousel-item .banner-caption {
  position: absolute;
  top: 50%;
  left: 150px;
  margin-top: -60px;
}

/*About Section------------------------------*/
.doctor-img {
  position: relative;
  padding: 20px;
}

.doctor-img:before {
  position: absolute;
  content: '';
  top: -10px;
  left: -10px;
  width: 405px;
  height: 270px;
  border-radius: 10px;
  z-index: -1;
  -webkit-animation: a-one 5s infinite linear;
  animation: a-one 5s infinite linear;
  background-color: #f59763;
}

.doctor-img:after {
  position: absolute;
  content: '';
  bottom: -10px;
  right: -10px;
  width: 405px;
  height: 270px;
  border-radius: 10px;
  z-index: -1;
  -webkit-animation: a-two 5s infinite linear;
  animation: a-two 5s infinite linear;
  background-color: #f59763;
}

.doctor-img img {
  border-radius: 10px;
  -webkit-animation: a-seven 10s infinite linear;
  animation: a-seven 10s infinite linear;
}

@-webkit-keyframes a-one {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  50% {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

@keyframes a-one {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  50% {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

@-webkit-keyframes a-two {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  50% {
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

@keyframes a-two {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  50% {
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

.doctor-content {
  position: relative;
  margin-left: 40px;
}

.doctor-content h3 {
  font-size: 18px;
  padding-bottom: 10px;
}

@-webkit-keyframes a-three {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  50% {
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

@keyframes a-three {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  50% {
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

@-webkit-keyframes a-seven {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes a-seven {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}


.doctor-content img {
  position: absolute;
  top: -55px;
  right: 0;
  z-index: -1;
  width: 500px;
  -webkit-animation: a-three 5s infinite linear;
  animation: a-three 5s infinite linear;
}

.sec-treatment h2 {
  font-size: 20px;
  line-height: 28px;
}

.sec-sport-inj {
  background: url("../images/sport-injuries-bg.jpeg") no-repeat center center;
  background-size: cover;
  min-height: 700px;
  padding-top: 150px;
}

.sec-sport-inj h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: #61d1dc;
  font-family: 'Sen', sans-serif;
}

.sec-sport-inj h2 {
  font-size: 35px;
  line-height: 44px;
  font-weight: 400;
  color: #ec5c0e;
  font-family: 'Sen', sans-serif;
}

.sec-invasive {
  background: url("../images/orthopeadic-surgery-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 381px;
  padding: 34px 0 25px;
  margin-bottom: 30px;
}

.sec-invasive.one {
  background: url("../images/shoulder-injuries.jpg") no-repeat center center;
  background-size: cover;
  min-height: 381px;
  padding: 34px 0 25px;
  margin-bottom: 30px;
}

/*Treatment Section_______________________________*/
.tab-vertical .nav.nav-tabs {
  float: left;
  display: block;
  margin-right: 0px;
  border-bottom: 0;
}

.tab-vertical .nav.nav-tabs .nav-item {
  margin-bottom: 6px;
}

.tab-vertical .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  background: #fff;
  padding: 17px 49px;
  color: #000;
  background-color: #dce5ee;
  -webkit-border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
}

.tab-vertical .nav-tabs .nav-link.active {
  color: #0a0a0a;
  background-color: #fff !important;
  border-color: transparent !important;
}

.tab-vertical .nav-tabs .nav-link.active i {
  color: #0a0a0a;
}

.tab-vertical .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 4px !important;
  border-top-right-radius: 0px !important;
}

.tab-vertical .tab-content {
  overflow: auto;
  -webkit-border-radius: 0px 4px 4px 4px;
  -moz-border-radius: 0px 4px 4px 4px;
  border-radius: 0px 4px 4px 4px;
  background: #fff;
  padding: 30px;
}




.treatment-1 {
  background: linear-gradient(90deg, rgb(46 97 154) 0%, rgba(239, 214, 247, 0) 100%);
  padding: 40px;
}

.treatment-2 {
  background: linear-gradient(255deg, rgb(46 97 154) 0%, rgba(239, 214, 247, 0) 100%);
  padding: 40px;
}

.treatment-2 .tab-vertical .nav.nav-tabs {
  float: right;
  display: block;
  margin-right: 0px;
  border-bottom: 0;
}

.treatment-2 .tab-vertical .tab-content {
  overflow: auto;
  -webkit-border-radius: 0px 4px 4px 4px;
  -moz-border-radius: 0px 4px 4px 4px;
  border-radius: 0px 4px 4px 4px;
  background: #fff;
  padding: 30px;
}

.sec-treatment h3 {
  color: #fff;
  padding-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
}

.sec-treatment ul li a {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  display: block;
}

.sec-treatment ul li a i {
  position: absolute;
  top: 19px;
  left: 18px;
  font-size: 18px;
  color: #000;
}

/**************************************/

.sec-treat {
  background-color: #d4530c;
  padding: 30px;
  position: relative
}

.sec-treat h2 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 70px;
  font-family: 'Sen', sans-serif;
}

.sec-treat li a {
  padding-bottom: 18px;
  display: block;
}

.sec-treat li a i {
  font-size: 1;
}

.sec-treat li a,
.sec-treat h2 {
  color: #fff;
  font-family: 'Sen', sans-serif;
}

.sec-treat .btn-main {
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -55px;
}

.sec-treat img {
  width: 190px;
  position: absolute;
  top: -95px;
  left: 50%;
  margin-left: -95px;
}

.sec-trat-new {
  padding: 100px 0;
}

.title-pd {
  margin-bottom: 100px;
  padding-top: 10px;
}

.sec-cta {
  background: url(../images/sports-medicine-solution-banner.png);
  background-size: cover;
  height: 293px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

/*sec-choose------------------------------*/
.sec-choose .choose-wrap {
  text-align: center;
  padding: 20px;
}

.sec-choose .choose-wrap i {
  color: #36506c;
  font-size: 40px;
  padding-bottom: 20px;
}

.title-head {
  margin-bottom: 40px;
}

.page-banner {
  background-color: #F9C0A1;
  height: 190px;
  /*margin-top: 24px;*/
}

.common-page-banner {
  background-color: #F9C0A1;
  height: 190px;
  margin-top: 24px;
}

.shoulder-page-banner {
  background-color: #F9C0A1;
  height: 190px;
  /* margin-top: 24px; */
}

.common-page-banner .page-tittle,
.shoulder-page-banner .page-tittle,
.page-banner .page-tittle {
  padding: 77px 0;
}

.sec-affilation img {
  width: 150px;
  margin-bottom: 20px;
}

.sec-affilation .aff-box {
  padding: 30px;
  background-color: #f7f9fb;
  text-align: center;
  min-height: 294px;
}

/*Testimonial-----------------------------*/

.sec-review {
  background: url("../images/patient-stories-bg.jpg") no-repeat center left;
  background-size: cover;
}

.sec-review .review-lan {
  position: relative;
  background-color: #9a65058c;
  padding: 20px;
}

.sec-review .item {
  padding: 20px 30px 50px 30px;
  background: white;
  border-top: 10px solid #f26b21;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 450px;
  text-align: center;
}

.sec-review .item i {
  font-size: 60px;
  color: #000;
  padding-bottom: 20px;
}

.sec-review .item h5 {
  margin-top: 17px;
}

.sec-review {
  position: relative;
}

.sec-review .item p {
  font-size: 16px;
  text-align: left;
}

.sec-review .owl-nav button.owl-prev,
.sec-review .owl-nav button.owl-next {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 30px;
  width: 30px;
  line-height: 15px;
  border-radius: 100%;
  background-color: transparent;
  text-align: center;
}

.sec-review .owl-nav button.owl-prev span {
  margin-left: -60px;
}

.sec-review .owl-nav button.owl-next span {
  margin-right: -60px;
}

.sec-review .owl-nav button.owl-prev span,
.sec-review .owl-nav button.owl-next span {
  font-size: 48px;
  color: #000;
}

.why-choose-sec {
  background: url("../images/why-choose-bgn.jpeg") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

.why-choose-sec ul li {
  margin-bottom: 10px;
}

.service-content img {
  /* box-shadow: 0 0 10px rgba(0,0,0,0.4); */
}

.service-content ul li b {
  font-weight: 600;
  font-size: 18px;
}

/*ABOUT PAGE
--------------------------------------*/

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #000 !important;
}

#accordion {
  padding-left: 80px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#accordion:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #36506c;
  position: absolute;
  top: 0;
  left: 22px;
  z-index: -1;
}

#accordion .panel {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 15px;
}

#accordion .panel-heading {
  padding: 0;
  border: none;
  border-radius: 0;
}

#accordion .panel-title a {
  display: block;
  padding: 10px 30px 15px 0;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  color: #202020;
  position: relative;
  transition: all 0.5s ease 0s;
}

#accordion .panel-title a:before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 50%;
  background: #cad5c2;
  text-align: center;
  font-size: 17px;
  color: #36506c;
  border: 6px solid #36506c;
  position: absolute;
  top: 0;
  left: -80px;
}

#accordion .panel-title a.collapsed:before {
  content: "\f067";
  background: #fff;
}

#accordion .panel-body {
  padding: 10px 15px;
  background: #f3f3f3;
  border: none;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgb(122 206 239) inset, 0 1px 2px rgb(122 206 239);
  color: #020202;
  line-height: 25px;
}

#accordion .panel-body li {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
}

#accordion .panel-body li i {
  font-size: 18px;
  color: #7ACEEF;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-exp {
  background: url("../images/about-bg.jpeg") no-repeat center center;
  background-size: cover;
}

.sec-exp .wrap-abt-content {
  position: relative;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  min-height: 703px;
}

.sec-exp .wrap-abt-content ul li:last-child {
  border-bottom: 0;
}

.sec-exp .wrap-abt-content:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 30px;
  background-color: #F26B21;
}

.sec-exp .wrap-abt-content:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 150px;
  background-color: #F26B21;
}

.sec-exp .wrap-abt-content li {
  border-bottom: 2px dotted #b4afaf;
  padding: 10px 0 10px 30px;
  position: relative;
}

.sec-exp .wrap-abt-content li i {
  font-size: 18px;
  color: #F26B21;
  position: absolute;
  top: 14px;
  left: 0;
}

.sec-exp .wrap-abt-content h2 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 30px;
  font-family: 'Sen', sans-serif;
}

.sec-membership .mem-wrap {
  text-align: center;
  padding: 20px 25px;
  background: #f3f3f3;
  border: none;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgb(188 117 28) inset, 0 1px 2px rgb(231 93 9);
  color: #020202;
  line-height: 25px;
}

.sec-membership h2 {
  margin-bottom: 30px;
  font-family: 'Sen', sans-serif;
}

.sec-membership .mem-wrap img {
  width: 200px;
  margin-bottom: 30px;
}


/*SERVICE LIST
--------------------------------------*/
.navbar1 p {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

.navbar1 ul li {
  background-color: #F26B21;
  padding: 15px 20px;
  text-align: center;
  margin-bottom: 20px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  position: relative;
  transition: all 0.6s;
}

.navbar1 ul li:after {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ffa52b;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 17px;
}

.navbar1 ul li:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-sizing: border-box;
  background-color: #fff;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.19);
}

.navbar1 ul li:hover a {
  color: #232323;
  font-weight: 600;
}

.navbar1 ul li a {
  display: inline-block;
  color: #fff;
  font-size: 17px;
  line-height: 22px;
  padding-left: 30px;
}

.navbar1 .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-sizing: border-box;
  background-color: #fff;
  background: #32afcd;
  border: 1px solid rgba(0, 0, 0, 0.19);
  padding: 5px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.service-content h2 {

  padding: 10px 0 10px 0;
    font-size: 25px;
    font-weight: 600;
    color: #1c1c1c;
  
}

.service-content h4 {
  padding-bottom: 15px;
  padding-top: 10px;
}

.service-content ul {
  padding-bottom: 15px;
  /* margin-left: 30px; */
}

.service-content p {
  padding-bottom: 15px;
  font-size:19px;
}

.service-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  /* font-size: 18px; */
  line-height: 26px;
  list-style: none;
}

.service-content ul li i {
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 17px;
  color: #F26B21;
}


.para-10 {
  padding-bottom: 10px;
}

.para-15 {
  padding-bottom: 15px;
}

.para-20 {
  padding-bottom: 20px;
}

/*CONTACT PAGE
--------------------------------------*/
:root {
  --main-color: #5557B4;
}

.serviceBox {
  color: #bc490b;
  text-align: center;
  padding: 10px 10px 30px;
  border: 3px solid #bc490b;
  position: relative;
  z-index: 1;
  min-height: 292px;
}

.serviceBox:before,
.serviceBox:after {
  content: "";
  background: #fff;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.serviceBox:after {
  background: #f26b21;
  width: 50%;
  height: 100%;
  box-shadow: none;
  transform: translateX(0) translateY(0);
  top: 0;
  left: auto;
  right: 0;
  z-index: -2;
}

.sec-contact .serviceBox .service-icon {
  color: #fff;
  background: #f68344;
  font-size: 40px;
  line-height: 85px;
  width: 85px;
  height: 85px;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.sec-consult .serviceBox .service-icon {
  color: #fff;
  line-height: 150px;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.sec-consult .serviceBox {
  min-height: 359px;
}

.serviceBox .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 10px 10px;
}

.serviceBox .description {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0 15px 0;
}

@media only screen and (max-width: 1199px) {
  .serviceBox {
    margin: 0 0 40px;
  }
}

/*--------------RESPONSIVE---------------
--------------------------------------*/
/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {}

@media (min-width: 768px) {
  .navbar .dropdown:hover .dropdown-menu {
    /* display: block; */
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

  h1 {
    font-size: 28px;
    line-height: 34px;
  }

  h2 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 20px;
  }

  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  section {
    padding: 40px 0;
  }

  .navbar-brand {
    margin-left: 0;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding: 9px 0;
  }

  .header p {
    font-size: 14px;
    line-height: 22px;
  }

  .header .call-icon i {
    margin-right: 4px;
  }

  .fixed-top .navbar-toggler {
    color: #fff;
  }

  .navbar-brand {
    width: 287px;
  }

  .carousel {
    margin-top: 5px;
  }

  .btn {
    padding: 5px 15px;
  }

  .page-banner {
 height: 156px;
    /*margin-top: 84px;*/
  }

  .page-banner .page-tittle {
    padding: 0 0;
  }

  .page-banner h1 {
    padding-top: 20px;
  }

  .page-banner h1 {
    padding-top: 20px;
  }

  .doctor-img:before {
    display: none;
  }

  .doctor-img:after {
    display: none;
  }

  .doctor-content {
    margin-left: 0;
  }

  .doctor-content .title-head {
    margin-top: 40px;
  }

  .treatment-1 {
    padding: 10px;
  }

  .sec-invasive {
    background: url(../images/orthopeadic-surgery-bg.jpg) no-repeat center right;
  }

  .sec-sport-inj {
    background: url(../images/sport-injuries-bg.jpeg) no-repeat center left;
    background-position: -140px 45px;
    padding-top: 59px;
    box-shadow: inset 0 0 0 1000px rgba(10, 31, 53, 0.9);
  }

  .sec-review {
    background: url(../images/patient-stories-bg.jpg) no-repeat center right;
  }

  .treatment-2 {
    padding: 10px;
  }

  .sec-membership .mem-wrap {
    margin-bottom: 20px;
  }

  .sec-treat {
    margin-top: 120px;
  }

  .sec-cta {
    height: auto;
  }

  .footer .col-md-4 {
    margin-bottom: 30px;
  }

  .footer {
    padding: 20px 0;
  }

  .footer-stick {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 85%;
    z-index: 100;
  }

  .footer-stick .call-btn {
    /*background-color: #008d86;*/
    padding: 10px 0;
    position: relative;
  }

  .footer-stick .call-btn span,
  .footer-stick .whats-btn span {
    position: absolute;
    top: 8px;
    left: 40px;
    z-index: -1;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 20px 10px 30px;
    width: 150px;
    text-align: center;

  }

  .footer-stick .call-btn span {
    background-color: #0b3a6d;
  }

  .footer-stick .whats-btn span {
    background-color: green;
  }

  .footer-stick a {
    font-size: 16px;
    line-height: 24px;
    display: block;
    width: 100%;
  }

  .footer-stick .whats-btn {
    /*background-color: #00e676;*/
    padding: 10px 0;
    position: relative;
  }

  .footer-stick img {
    width: 46px;
    margin-left: 30px;
  }

  .copyright-content {
    margin-bottom: 60px;
  }


}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {}

/* custom menu css */
.dropdown-menu-custom {
  border-top: 3px solid #61d1dc;
  border-bottom: 3px solid #61d1dc;
  background: #fff;
  border-top: 2px solid #32AFCD;
  border-bottom: 2px solid #32AFCD;
  border-radius: unset;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15) !important;
}

.dropdown-menu-custom .dropdown-item {
  padding: 10px 10px !important;
  font-size: 16px;
  font-family: 'Sen', sans-serif;
  border-bottom: 1px dashed #ededed;
}

.dropdown-menu-custom .dropdown-item i {
  padding-right: 12px;
  font-size: 14px;
}

.dropdown-menu-custom .dropdown-item1 {
  border-bottom: unset;
}

.copyright-content p {
  color: #fff;
  font-family: 'Sen', sans-serif;
  margin-bottom: unset;
}

.appointment-img {
  background-image: url(../images/appointment-img.jpg);
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .appointment-img {
    height: 400px;
  }

  .appointment-btn {
    padding: 33px 15px !important;
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appointment-img {
    height: 400px;
  }
}

.appointment-form {
  background-color: #f6b592;
  padding: 60px 60px;
  /* max-width: 808px; */
}

.appointment-form h2 {
  font-size: 27px;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: .1em;
  color: #2e2929;
  font-weight: 600;
}

.appointment-form .default-btn {
  width: 100%;
  display: block;
  font-family: 'Sen', sans-serif;
  background: #f96b1e;
  color: #fff;
}

.default-btn {
  background-color: #235d7c;
  border-color: #fff1ed;
  color: #ffffff;
  padding: 16px 50px;
  border-radius: 10px;
  font-weight: 600;
}

.appointment-form input {
  border-radius: 10px;
  padding: 24px;
  font-size: 16px;
  font-family: 'Sen', sans-serif;
}

.appointment-form textarea {
  border-radius: 10px;
  font-size: 16px;
}

.appointment-form .default-btn:hover {
  background-color: #000;
  color: #fff;
}

.appointment-form label {
  font-family: 'Sen', sans-serif;
  font-weight: 500 !important;
}

.appointment-btn {
  background: #272121;
  padding: 11px 18px;
  color: #fff;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}
.appointment-btn:hover {color: #fff !important;}
.paragraph-h3 {
  font-size: 16px;
  line-height: 26px;
  color: #272626;
  font-weight: 300;
  font-family: 'Sen', sans-serif;
}

.head-h1 {
  font-size: 24px;
  line-height: 38px;
  font-family: 'Sen', sans-serif;
  font-weight: 600;
  padding-bottom: 25px;
  color: #cd6d3e;
}

.head-h2 {
  font-size: 36px;
  line-height: 36px;
  font-family: 'Sen', sans-serif;
  font-weight: 500;
  padding-bottom: 25px;
}

.head-h4 {
  color: #000000;
  font-family: 'Sen', sans-serif;
  font-weight: 600 !important;
}

.offset-md-7.new {
  margin-left: 52.333333%;

}

.dropdown-menu-custom.sports-drop {
  top: 100%;
  left: -484px;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 50rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
}

h3.menu-txt {
  font-size: 18px;
  background: #61d1dc;
  color: #000;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  padding: 2px;

}

.dropdown-menu-custom.sports-drop.dropdown-menu-custom .dropdown-item {
  padding: 4px 10px !important;
}

.mobile-view-menu {
  display: none;
}

.desktop-view-menu {
  display: block;
}

.bann-subtxt {
  padding: 10px 0px 20px;
}

.bann-subtxt h3 {
  text-align: center;
  font-size: 30px;
  color: #d4530c;
}

/* ------------ */


/* ----------- */

.menu {
  margin: 0;
  padding: 0;
}

.menu ul {
  list-style: none;
  background-color: #333;
  text-align: center;
}

.menu ul li {
  display: inline-block;
  position: relative;
}

.menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

.main-head {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  padding: 24px 0;
  margin-left: 24px;
  font-size: 16px;
  color: #272626;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

/* .menu a:hover {
  background-color: #555;
} */

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 160px;
}

.submenu li {
  display: block;
}

.submenu li a {
  padding: 10px 0px;
}

.submenu-parent:hover .submenu {
  display: block;
}

.menu {
  margin: 0;
  padding: 0;
}

.menu ul {
  list-style: none;
  background-color: #333;
  text-align: center;
}

.menu ul li {
  display: inline-block;
  position: relative;
}

.menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  padding: 24px 0;
  margin-left: 21px;
  font-size: 16px;
  color: #272626;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

/* .menu a:hover {
  background-color: #555;
} */

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 160px;
}

.submenu li {
  display: block;
}



.submenu-parent:hover .submenu {
  display: block;
}

ul.submenu.sport-sub {
  width: 884px;
  text-align: left;
  position: absolute;
  left: -508px;
  /* height: 200px; */
  background: #fff;

}

li.submenu-parent {
  background: white;
  /* color: #000; */
}

.submenu.sub-sec {
  background-color: #61d1dc;

}

.submenu.sub-sec {
  background-color: #ffffff;
  border-top: 2px solid #61d1dc;
  text-align: left;
}

.submenu.sub-sec {
  /* width: 199px;
  left: -23px; */
}

.submenu.sub-sec a {
  padding: 3px 0px;

}

.navbar.fixed-top li.submenu-parent.colorr {
  background: #36506c;
}

.navbar.fixed-top .menu a.main-head {
  color: #fff !important;
}

.navbar.fixed-top.menu li {
  color: #fff;
}



/* --------------new navbar css */

.navbar.fixed-top a.top-txt {
  color: #fff;
}

.navbar-nav .dropdown-menu.sub-drop {
  top: 92%;
}

.dropdown-item {
  padding: 10px 10px !important;
  font-size: 14px;
  font-family: 'Sen', sans-serif;
  border-bottom: 1px dashed #ededed;
}

.dropdown-menu.mar-drop {
  margin: 0.125rem -53px 0;
  width: 230px;

}

.navbar-expand-lg.navbar-nav.main-nav1.nav-link {
  padding-left: 0px;
  padding-right: 0px;

}

.navbar-nav.main-nav1 {
  margin-right: 32px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgb(31 31 31);
}

a.nav-link {
  color: #000;
  padding: 24px 0;
  margin-left: 20px;
  font-size: 16px;
  color: #272626;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;

}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: 0px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.sport-serv {
  height: 440px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #f9c3a6;
}

.sport-serv h2 {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  background: #F26B21;
  color: #fff;
}

.sport-serv p {
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  line-height: 22px;
}

.sport-serv a {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.sport-serv-sec {
  height: 137px;
  padding: 10px 5px;
  background: #f9c3a6;
  text-align: center;
}

.last-serv-sec {
  margin-top: 30px;
}

.sports-sep-sec h2.title-head {
  margin-bottom: 50px;
}

.sports-sep-sec {
  padding: 60px 0 60px;
}

.dropdown-toggle1::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* .mobile-view-drop{
  display: none;
} */
/* .desk-view-drop{
  display: block;
} */
.h2-head {
  position: relative;
  padding-left: 30px !important;
  margin-bottom: 5px;
  /* font-size: 18px; */
  line-height: 26px;
  list-style: none;
}

.service-content h2.h2-head i {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 17px;
  color: #F26B21;
}

.sec-cta.desktop-view-ban {
  display: block;
}

.sec-cta.mobile-view-ban {
  display: none;

}

.sec-review .item img {
  width: 20%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* ---------- */
.nav .navbar11 {
  padding: 10px;
  background: #52cfdb;
}

.nav.navbar11 h3 {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 13px;
  line-height: 22px;

}

.nav.navbar11 h4 {
  font-size: 18px;
  line-height: 21px;
  /* text-align: center; */
  margin-top: 20px;

  color: #272529;
}

.nav.navbar11 {
  background: #F9C0A1;
  padding: 20px;
  border-radius: 3px;
}

.nav.navbar11 a {
  background: #F26B21;
  /* padding: 5px 20px; */
  width: 100%;
  padding: 6px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.container.faq-con {
  padding: 50px;
  background: #f8e6dd;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #f1f1ea;
}

.faq-sec {
  margin-bottom: 20px;
}

.faq-sec h5 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 13px;
  background: #F26B21;
  padding: 10px;
  color: #fff;
}

.faq-sec p {
  font-size: 17px;
  font-weight: 300;
}

.txt-faq {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  color: #000000;
}

.faq-a {
  color: #b74c18;
}

.FAQ--title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  color: #cd6d3e;
}

section.service-content.sports {
  padding: 40px 0px 20px;
}

.service-content h2.separet-txt1 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sport-medicine-area {
  background: linear-gradient(45deg, #e39a72, #dcfafbc4);
  padding: 50px 15px;
}

.service-content.sport-medicine-page {
  padding: 0px 0 20px;
}

.sport-medicine-area h1 {
  color: #000000;
  line-height: unset;
  font-size: 24px;
  padding-bottom: 15px;
  font-weight: 600;
}
h1.tittl-txt {
  padding-bottom: 6px;
  color: #F26B21;
}

.sport-medicine-area p {
  font-size: 16px;
  color: #464444;
  padding-bottom: 10px;
}

.sport-medicine-area h2 {
  padding: 0px 0 4px 0;
  font-size: 30px;
  font-weight: 600;
  color: #343434;
  padding-bottom: 13px;
}

section.sec-review.banntesti {
  background: none;
}

/* -------------- */
img {
  max-width: 100%;
  height: auto;
}

.chooseus-section {
  position: relative;
  background: #fff;
  padding: 20px 0px;


}

.chooseus-section .sec-title {
  margin-bottom: 8px;
  margin-top: 30px;
}

#video_block_01 .video-inner {
  position: relative;
  width: 100%;
  padding: 175px 0px 130px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
}

#video_block_01 .video-inner .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

#video_block_01 .video-inner .video-btn {
  position: relative;
  display: inline-block;
  width: 116px;
  height: 115px;
  line-height: 115px;
  text-align: center;
  margin-left: 40px;
  border-radius: 50%;
}

#video_block_01 .video-inner .video-btn .btn-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 116px;
  height: 115px;
  background-repeat: no-repeat;
}

#video_block_01 .video-inner .video-btn a {
  position: relative;
  display: inline-block;
  width: 116px;
  height: 115px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 1;
}

#video_block_01 .video-inner .video-btn a i {
  background: -webkit-linear-gradient(-45deg, #00bb6e, #0156d5 100%);
}

#video_block_01 .video-inner .video-btn a i {
  position: relative;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#content_block_04 .content-box .single-item {
  position: relative;
}

#content_block_04 .content-box .single-item:first-child {
  padding-left: 145px;
  margin-bottom: 67px;
}

#content_block_04 .content-box .single-item:last-child {
  padding-right: 142px;
}

#content_block_04 .content-box .single-item .icon-box {
  position: absolute;
    top: 14px;
    width: 100px;
    height: 100px;
    line-height: 96px;
    text-align: center;
    /* font-size: 70px; */
    border: 2px solid #fff1ea;
    border-radius: 4px;
    background: #fff2eb;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-style: inset;
    border-color: #e7d4ca;
    /* box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#content_block_04 .content-box .single-item .icon-box:before {
  /* position: absolute;
  content: '';
  background: #fbfbfb;
  width: 138px;
  height: 100%;
  left: 10px;
  border-radius: 10px; */
}

#content_block_04 .content-box .single-item:first-child .icon-box:before {
  top: 10px;
}

#content_block_04 .content-box .single-item:last-child .icon-box:before {
  top: -10px;
}

#content_block_04 .content-box .single-item .icon-box i {
  background: -webkit-linear-gradient(-45deg, #e273ff, #504bff 100%);
  position: relative;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#content_block_04 .content-box .single-item .icon-box .bg-layer {
  /* position: absolute;
  left: 0px;
  top: 0px;
  width: 158px;
  height: 158px;
  background-repeat: no-repeat; */
}

#content_block_04 .content-box .single-item:first-child .icon-box {
  left: 0px;
}

#content_block_04 .content-box .single-item:last-child .icon-box {
  right: 0px;
}

#content_block_04 .content-box .single-item .box h4 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 0px;
  color: #F26B21;
}
#content_block_04 .content-box .single-item .box h4:before {
  position: absolute;
  content: '';
  width: 55px;
  height: 2px;
  bottom: 0px;
}

#content_block_04 .content-box .single-item:first-child .box h4:before {
  left: 0px;
}

#content_block_04 .content-box .single-item:last-child .box h4:before {
  right: 0px;
}

#content_block_04 .content-box .single-item .box p {
  margin-bottom: 20px;
  line-height: 28px;
}

#content_block_04 .content-box .single-item .box a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Josefin Sans', Sans-serif;
  font-weight: 600;
  color: #040535;
}

#content_block_04 .content-box .single-item .box a:hover {
  color: #5167f9;
}

#content_block_04 .content-box .single-item:first-child .box a i {
  margin-right: 10px;
}

#content_block_04 .content-box .single-item:last-child .box a i {
  margin-left: 10px;
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}


@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-360deg);
  }
}

@-moz-keyframes rotateme {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(-360deg);
  }
}

@-o-keyframes rotateme {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(-360deg);
  }
}

.modal-body {
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  padding-top: 0;
  overflow: hidden;
}

.modal-body iframe,
.modal-body object,
.modal-body embed,
.modal-body video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button.close {
  position: absolute;
  right: -20px;
  top: -30px;
  border-radius: 50px;
  background: white;
  line-height: 1 !important;
  padding: 0px 6px 5px !important;
  opacity: 1;
}

/* -------conuter start------- */
.funfact-section {
  position: relative;
  padding-top: 5px;
  padding-bottom: 44px;
}

.funfact-section .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background: linear-gradient(45deg, #e2c6b7, #F26B21);
}

.funfact-section .sec-title {
  margin-bottom: 32px;
  margin-top: 25px;
}

.sec-title {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 62px;
  font-weight: 500;
  margin: 0px;
}

.sec-title.light h2 {
  color: #fff;
  text-align: center;
  font-size: 35px;
}

.funfact-section .inner-content {
  position: relative;
  display: block;
  /* background: #ffffff38;
  border: 1px solid #e6ebed52; */
  height: 100%;
}

.counter-box {
  display: block;
  background: #fafdfff5;
  padding: 10px 20px 10px;
  text-align: center;
  /* height: 236px; */
  border-radius: 2px;
  box-shadow: rgb(231 58 7) 1.95px 1.95px 2.6px;
}

.counter-img {
  background: #ffffff;
    width: 70px;
    padding: 4px;
    border-radius: 50%;
}

.counter {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  line-height: 35px;
  margin-top: 15px;
}

.counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 500;
}

/* ----------counter end--------------- */
/* type of treatment start*/
.type-treatment .item {
  padding: 30px 20px 30px 30px;
  background: linear-gradient(45deg, #ffffff, #f1aa83);
  border: 1px solid #c1c1b9;
  height: 100%;
  border-style: dotted;
  border-color: #408cd1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.type-treatment .item h5 a {
  font-size: 19px;
  font-weight: 500;
  color: #1c1b1b;
}

.type-treatment .item h5 {
  margin-bottom: 13px;
  margin-left: 20px;
}

/* type of treatment end*/
i.fas.fa-angle-double-right {
  font-size: 13px;
  margin-right: 7px;
  margin-left: -25px;
  color: #F26B21;
}

.type-treatment .item h3 {
  font-size: 25px;
  /* text-align: center; */
  padding: 10px;
  color: #F26B21;
  font-weight: 600;
  background: #d1e9ff40;
  margin-bottom: 10px;
  border-radius: 2px;
  border: 1px solid #faffff59;
  background: linear-gradient(45deg, #ffffff, #fdcfb6);
}

.type-treatment .item h5 a:hover {
  color: #1f6ca0;
}

.descktop-viewimg {
  display: block;
}

.mobile-viewimg {
  display: none;
}

.page-tittle.sportss {
  border: 1px solid #d7d7dd;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
}

.service-content ul li.title-big {
  font-size: 18px;
  font-weight: 500;
}
.why-choose-img{
  width: 75px;
}
img.why-choose-img {
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  border-radius: 2px;
}
.page-tittle.sportss p{
  padding-bottom: 10px;
}
img.counter-img{
  box-shadow: 0 0 10px rgba(0,0,0,0.4);

}

/* new testimonial start */
.col-center {
	margin: 0 auto;
	float: none !important;
}
.carousel.sports-med {
	padding: 0 70px;
}
.carousel.sports-med .carousel-item {
	color: #999;
	font-size: 14px;
	text-align: center;
	overflow: hidden;
	min-height: 290px;
}
.carousel.sports-med .carousel-item .img-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  padding: 3px;
  border: 1px solid #eeefef;
  border-radius: 50%;
  background: #e5f8f9;
}
.carousel.sports-med .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.carousel.sports-med .testimonial {
	padding: 30px 0 10px;
}
.carousel.sports-med .overview {	
	/* font-style: italic; */
}
.carousel.sports-med .overview b {
	text-transform: uppercase;
	color: #F26B21;
	font-size: 25px;
	font-family: 'Sen', sans-serif;
	font-weight: 600;
}
.carousel-control-prev, .carousel-control-next {
	width: 40px;
	/* height: 40px; */
	/* margin-top: -20px; */
	top: 50%;
	background: none;
}
.carousel-control-prev i, .carousel-control-next i {
	font-size: 36px;
	line-height: 42px;
	position: absolute;
	display: inline-block;
	color: #F26B21;
	text-shadow: 0 3px 3px #cd6c38, 0 0 0 #F26B21;
}
.carousel-indicators {
	bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 12px;
	height: 12px;
	margin: 1px 3px;
	border-radius: 50%;
	border: none;
}
.carousel-indicators li {	
	background: #c1bdbd;
	border-color: transparent;
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.carousel-indicators li.active {	
	background: #aff3f7;		
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
i.fa-solid.fa-star {
  color: #fdc225;
  padding: 0px 1px;
}
.sport-testi{
  background: #f8fdfd;
  border: 2px solid #c6e3e57a;
  padding: 20px 0px 60px; 
}
/* new testimonial end */
.funfact-section .sec-title.sec-title.light h2{
  line-height: 2px;
}
h2.cara-txt{
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}
h2.head-h2{
  text-align: left;
  color: #000 !important;

    line-height: 40px;
}
section.book-appt-section {
  background: #F26B21;
  padding: 45px 0px;
}
.book-appt-area h3{
  font-size: 34px;
  font-family: 'Sen', sans-serif;
  color: #fff;
  text-shadow: 1 5 #b13434;
  text-shadow: 1px 2px #dd8453;
  /* display: inline-block; */
}
.book-appt-area h4{
  display: inline-block;
}
.book-appt-area a h4 {
  font-size: 21px;
    font-family: 'Sen', sans-serif;
    color: #bf5c2f;
    /* display: inline-block; */
    /* float: right; */
    padding: 0px;
    background: #ffffff;
    padding: 6px 20px;
    border-radius: 27px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-left: 10px;
    border: 1px solid rgb(253, 253, 253);
}
.book-appt-area a h4:hover{
  color: #ffffff;
  background: #f6b591;
}
.book-appt-area.sec1
{
  float: right;
}
section.banntesti h2{
  position: relative;
  display: block;
  font-size: 35px;
  line-height: 62px;
  font-weight: 500;
  margin: 0px;
}
section.banntesti{
  padding: 20px 0 20px; 
}
.img--content{
  border-radius: 2px; 
    border: 1px solid #bbc4c7;
    padding: 2px;
}
.chooseus-section.sec-title h2{
  font-size: 35px;
}
.why-chose-span{
  font-size: 19px;
  color: #F26B21;
  font-weight: 500;
}
h2.why-chose-h2{
  position: relative;
    display: block;
    font-size: 40px;
    line-height: unset;
    font-weight: 500;
    margin: 10px 0px 50px;
  
}

.common-sports-img1{
  padding-top: 30px;
    padding-bottom: 30px;

}
.mt-30{
  margin-top: 30px;
}
section.book-appt-last{
  background: #fbc3a2;
  padding: 45px 0px;
}
.book-appt-area-last  h3 {
  font-size: 34px;
  font-family: 'Sen', sans-serif;
  color: #000;
  text-shadow: 1 5 #b13434;
  text-shadow:1px 2px #f3f2f2;
  /* display: inline-block; */
}
.book-appt-area-last a h4 {
  font-size: 21px;
  font-family: 'Sen', sans-serif;
  color: #000 !important;
  /* display: inline-block; */
  /* float: right; */
  padding: 0px;
  background: #fafcff;
  padding: 6px 20px;
  border-radius: 27px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-left: 10px;
}
.book-appt-area-last a h4 {
  display: inline-block;
}
.book-appt-area-last a h4:hover{
  color: #c15b29;
}
section.book-appt-section.common-sport {
  background: #F26B21;
  padding: 30px 0px;
}
.book-appt-area.common-sport h3
{
  font-size: 34px;
  font-family: 'Sen', sans-serif;
  color: #ffffff;
   text-shadow: 1px 2px #d77245;
 
}
.book-appt-area.common-sport a h4 {
  font-size: 21px;
  font-family: 'Sen', sans-serif;
  color: #bf5c2f;
  /* display: inline-block; */
  /* float: right; */
  padding: 0px;
  background: #ffffff;
  padding: 6px 20px;
  border-radius: 27px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-left: 10px;
  border: 1px solid rgb(253, 253, 253);
}
.common-txtt{
  text-align: center;
  padding: 40px 0px 0px;
  font-size: 35px;
  color: #000;
}
@media (max-width: 768px) {
.blog-col-set h3
{
    margin: 13px 25px;
}
  

  .book-appt-area a h4 {
    font-size: 19px;
  }
  .book-appt-area h3 {
    font-size: 25px;
  }
  .book-appt-area-last a h4 {
    font-size: 19px;
  }
  .book-appt-area-last h3 {
    font-size: 25px;
  }
  .book-appt-area-last a h4{
    margin-bottom: 10px;
  }
  .book-appt-area-last {
    margin-top: 10px;
}
  section.book-appt-last {
    padding: 15px 0px;
  }
  .book-appt-area-last h3 {
    line-height: 40px;
  }
  .common-txtt{
    padding: 30px 0px 0px;
    font-size: 30px;
  }
  section.book-appt-section.common-sport {
    padding: 21px 0px;
    height: 180px;
  }
  .book-appt-area.common-sport h3 {
    font-size: 26px;
  }
  .book-appt-area.common-sport a h4 {
    font-size: 18px;
  }
  .service-content h2 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0px;
  }

  h2.why-chose-h2{
    margin: 0px 0px 50px;
    line-height: unset;
  }
  .sport-medicine-area h1 {
    font-size: 20px;
    font-weight: 500;
  }
  .funfact-section .sec-title.sec-title.light h2{
    line-height: 30px;
  }
  section.banntesti h2{
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0px;
  }
  section.banntesti{
    padding: 0px 0;
  }
  .book-appt-area h3 {
    line-height: 40px;
  }
  .book-appt-area a h4 {
    float: left;
    margin-left: 0px;
    margin-top: 10px;
  }
  section.book-appt-section {
    height: 195px;
    padding: 27px 0px;
  }
  .container.faq-con {
    padding: 10px;
  }
  .chooseus-section .sec-title {
    margin-bottom: 0px;
}
.chooseus-section.sec-title h2{
  font-size: 35px;
}
  .service-content p{
    /*padding-bottom: 0px;*/
    padding:10px;
  }
  #content_block_04 .content-box .single-item:last-child .icon-box {
    right: unset;
    left: 35%;
}
  #content_block_04 .content-box .single-item:last-child {
    padding-right: 0px;
    text-align: left!important;
}
  #content_block_04 .content-box .single-item:first-child .icon-box {
    left: 35%;
}
  .box {
    margin-top: 20px;
}
  #content_block_04 .content-box .single-item .icon-box{
    position: relative;
  }
  #content_block_04 .content-box .single-item:first-child{
    padding-left: 0px;
    margin-bottom: 6px; 
  }
  .mobile-viewimg {
    display: block;
  }

  .descktop-viewimg {
    display: none;
  }

  .chooseus-section {
    padding: 0px 0px 20px;
  }

  section.service-content.sports {
    padding: 25px 0px 25px;
  }

  .head-h1 {
    font-size: 21px;
    line-height: 27px;
  }

  .navbar-collapse {
    overflow-y: scroll;
  }

  .navbar-nav.main-nav1 {
    margin-right: 0px;
  }

  .sec-review .item h5 {
    margin-top: 10px;
  }

  .sec-review .item {
    height: 485px;
    text-align: center;
    margin-top: 20px;
  }

  .sports-sep-sec h2.title-head {
    margin-bottom: 20px;
  }

  .bann-subtxt h3 {
    text-align: center;
    font-size: 27px;
    color: #d4530c;
    line-height: 31px;
  }

  .sec-trat-new {
    padding: 31px 0 80px;
  }

  .title-pd {
    margin-bottom: 3px;
  }

  .shoulder-page-banner {
    height: 140px;
  }

  .head-h2 {
    font-size: 25px;
  }

  .common-page-banner .page-tittle,
  .shoulder-page-banner .page-tittle,
  .page-banner .page-tittle {
    padding: 37px 0;
  }

  .last-serv-sec {
    margin-top: 0px;
  }

  /* .dropdown-item{
    overflow-y: scroll;
    -webkit-overflow-scrolling:touch;

  } */
  .tog-icon {
    color: #36506c;
    font-size: 26px;
    margin-left: -5px;
    line-height: 23px !important;
  }

  .navbar-toggler-icon {
    background-color: #36506c;
    width: 10%;
    margin-right: 20px;
  }

  .navbar {
    padding: 0;
    position: sticky;
    top: 0px;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    transition: 0.6s all;
  }

  .navbar-collapse {
    background: #e7f3ff;
  }

  .navbar-nav .dropdown-menu {
    width: 321px;
    margin-left: 16px;
  }

  .mobile-view-menu {
    display: block;
  }

  .offset-md-7.new {
    margin-left: unset;
  }

  h2.title-head {
    margin-bottom: 0px;
    font-size: 30px;
  }

  .desktop-view-menu {
    display: none;
  }

  .sec-invasive.one {
    background: url(../images/shoulder-injuries.jpg) no-repeat center left;
  }

  .menu ul {
    position: relative;
    background: white;
    text-align: left;

  }

  ul.submenu.sport-sub {
    width: 884px;
    text-align: left;
    position: absolute;
    left: 0px;
    /* height: 200px; */
    background: #fff;
  }

  .menu ul li {
    display: block;
  }

  .sub-txt {
    background: #61d1dc;
    width: 324px;
    border-radius: 9px;
    padding-left: 24px !important;
    margin-left: 0px !important;
  }

  .submenu {
    position: static;
    display: none;
  }

  .submenu-parent:hover .submenu {
    display: block;
  }

  .submenu.sub-sec {
    border-top: none
  }

  /* new navbar-mobile-view */
  a.nav-link {
    padding: 11px 0;
  }

  .navbar.fixed-top a.top-txt {
    color: #413a3a;
  }

  .sport-serv {
    height: 445px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #c8f4f7;
    margin-bottom: 20px;
  }

  .sports-sep-sec {
    padding: 10px 0;
  }

  .sec-cta.desktop-view-ban {
    display: none;
  }

  .sec-cta.mobile-view-ban {
    display: block;
    background: url(../images/sports-medicine-solution-banner-mobile.png);
    background-size: cover;
    height: 187px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
  }

  
  .service-content h2.separet-txt1 {
    font-size: 17px;
  }

  .nav.navbar11 {
    margin-bottom: 20px;
  }

  .conteiner.faq-con {
    padding: 17px;
  }

  .faq-sec h5 {
    font-size: 18px;
    line-height: 25px;
  }
.doc-img
    {
        padding:0px 0px 0px 0px !important;
    }

}

.navbar.fixed-top {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/*Blogs css*/
h1.heads-h2
{
    font-size: 30px;
    line-height: 36px;
    font-family: 'Sen', sans-serif!important;
    font-weight: 500;
    color: #000;
    padding-bottom: 25px;
}
.injuri-para p
{
 font-size: 19px;
    line-height: 30px;
    color: #272626;
    font-weight: 300;
    font-family: 'Sen', sans-serif;
        margin-bottom: 0px;
}
.injuri-para
{
    margin-top:20px;
}
.injuri-img img
{
    border-radius:13px;
    
    margin: 14px 0px;
        padding: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;

}
.injuri-list 
{
    /*padding-top:30px;*/
        margin: auto;
    
    
}
.service-contents h2 {
    padding: 20px 0 15px 0;
    font-size: 25px;
    font-weight: 600;
    color: #1c1c1c;
}
.rotator-set h3
{
       padding:15px 0px;
     font-size: 19px;
    line-height: 30px;
    color: #272626;
        font-weight: 700;
}
.rotator-set p
{
          padding:15px 0px;
       font-size: 19px;
    line-height: 30px;
    color: #272626;
}
.rotator-set img
{
border-radius: 13px;
    padding: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}


/* Blog css*/
.blog-col-set
{
    border-radius: 13px;
    /*padding: 8px;*/
    margin-bottom: 30px;
    border: 1px solid #e9e9e9;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}
.blog-col-set h3
{
      padding: 6px;
      font-size: 21px;
      line-height: 30px;
      color: #ffffff;
      font-weight: 700;
      border-radius: 23px;
      text-align: center;
      background: #f26b21;
      margin: 13px 135px;
}
.blog-col-set h2
{
              padding:15px 20px 0px;
       font-size: 19px;
    line-height: 30px;
    color: #272626;
    
 
}
.blog-col-set img
{

    padding: 0px!important;
   
}
/*Blog Css End*/
.back-set
{
    /*display:flex;*/
    margin:auto;
}




.warm-up h3
{
       padding:1px 0px;
     font-size: 19px;
    line-height: 30px;
    color: #272626;
        font-weight: 700;
}
.warm-up p
{
          padding:1px 0px;
       font-size: 19px;
    line-height: 30px;
    color: #272626;
}
.warm-up img
{
  padding: 3px;
 
  border: 1px solid #e9e9e9;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.warm-up {
    margin: auto;
    justify-content: center;
    align-items: center;
    display: inline-block;
}
/*Blogs css end*/

.injuri-list li
{
       line-height: 47px!important;
    font-size: 19px!important;

}
.h-set 
{
    padding:10px 0px;
}
.txt-set h2
{
    text-align:center;
    padding-left:10px;
}
.injuri-list i
{
    position: absolute;
    top: 16px!important;
    left: 0;
    font-size: 17px;
    color: #32afcd;
} 
.pt-20
{
    padding-top:30px;
}
.txt-set p
{
     font-size: 25px;
    font-weight: 600;  
}
.doc-title h3
{
    padding-top:33px;
     font-size: 25px;
    font-weight: 600; 
  
    
}
.doc-img
{
    padding: 0px 0px 30px 30px;
}
.list-set li
{
    padding-left:0px!important;
}
.doc-img .dr-img
{
       border-radius: 50%;
    width: 77%;
    margin:auto;
}
.injuri-lists li
{
   line-height: 34px!important;
    font-size: 19px!important;
    padding-left: 0px!important;
}
.blogs-area
{
   max-width: 1785px!important;
}
tr p
{
    padding:15px;
}
span.bold-set
{
      font-weight: 800;
    font-size: 19px;
}
span.bold-set-list
{
      font-weight: 600;
    font-size: 19px;
}
.img--set img
{
    width:56%;
        border: 1px solid #e9e9e9;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius:14px;
    margin:20px 0px;
}
.img--set 
{
display: flex;
    margin: auto;
    justify-content: center;
}
.head--set h3 {
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0px;
}
.injuri-list-content li
{
        line-height: 30px;
    font-size: 19px;
        position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
     font-size: 19px; 
    line-height:30px;
    list-style: none;
}
.pt-20 
{
    padding-top:20px;
}
.pb-20
{
    padding-bottom:20px;
}
.pb-30
{
    padding-bottom:30px;
}
.pt-30
{
    padding-top:30px;
}
.img---set img
{
    width: 39%;
    border: 1px solid #e9e9e9;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius: 14px;
    margin: 20px 0px;
}
.img---set {
    
    text-align: center;
}
.img-set-left
{
    
    display: flex;
    margin: auto;
   justify-content: left;

}
.img-set-left img {
    width: 56%;
    border: 1px solid #e9e9e9;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius: 14px;
    margin: 20px 0px;
}
@media (max-width: 768px) {
.blog-col-set h3
{
    margin: 13px 25px;
}
 .page-banner .page-tittle {
  padding: 0px ; 
    text-align: center;
}  
h1.heads-h2
{
        font-size: 21px;
    line-height: 36px;
    font-family: 'Sen', sans-serif!important;
    font-weight: 500;
    color: #fff;
    padding-bottom: 25px;
}
.page-banner {
    height: 108px;
    /* margin-top: 84px; */
}
.img--set img
{
    width:100%;
}

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

/*@media only screen and (max-width: 767px) {*/
/*  .injuri-img img{*/
/*      width:100% !important;*/
/*  }*/
/*}*/

/* scrollbar*/
#totop {
    font-weight: 900;
    color: #fff;
    display: none;
    position: fixed;
    right: 20px !important;
    bottom: 60px;
    z-index: 1;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: right;
    padding-top: 3px;
    line-height: 34px;
    border-radius: 3px;
      background-color:#007bff;
}

#totop.top-visible {   
    height: 40px;
    width: 40px;
    font-size: 22px;
    display: inline;
    background-color: #C4784F;
    text-align:center;
}
.injuri-lists ul li b a{color: #F26B21;}

/* new---------- */
.footer-social {
  margin-top: 10px;
}

.footer-icon {
  display: inline-block;
  margin-right: 20px;
  color: #fff;
  background-color: #4D5756;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.footer-icon i {
  font-size: 18px;
}

.footer-icon:hover {
  background-color: #c38b8b; /* Your common yellow or brand color */
  color: #fff;
}

.footer-icon.facebook {
  background-color: #3b5998;
}

.footer-icon.instagram {
  background-color: #e4405f;
}
/* nav */
.header-social {
  gap: 10px;
}

.header-icon {
  display: inline-block;
  color: #fff !important;
  /* background-color: #4D5756; */
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-left: 5px;
  transition: 0.3s;
}

.header-icon i {
  font-size: 14px;
  margin-right: 20px;
}

.header-icon:hover {
  background-color: #c38b8b; /* Your highlight color */
  color: #fff;
}
.header-icon i{
  font-size: 23px;
  padding-top: 4px;
}
/* .header-icon.facebook {
  background-color: #ffffff;
} */

/* .header-icon.instagram {
  background-color: #ffffff;
} */
.space-20
{
  padding: 20px;
}
.consult-now span
{
  font-weight: 600;
  font-size: 18px;
}
.consult-now span a
{
color:#000000;
font-weight: 600;
text-decoration: none;
font-family: 'Sen', sans-serif;
font-size: 19px !important;
}

.icon-img {
  width: 64px;
  height: 64px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
.doctor-content_ h3
{
  padding: 10px 0px 0px;
  text-align: center;
}
.btn-main_ {
  background-color: #c4784f;
  padding: 10px 15px;
  color: #fff!important;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 1px;
  justify-content: center;
  display: inline-block;
  margin: auto;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none !important;
  font-family: 'Sen', sans-serif;
}

a.btn-main_ {
  background-color: #c4784f;
  padding: 10px 15px;
  color: #fff !important;
  text-decoration: none !important;
}
.btn-main_ a:hover {
  background-color: #c4784f;
  padding: 10px 15px;
  color: #fff !important;
  text-decoration: none !important;
}
.doctor-content_ {

  justify-content: center;
  display: grid;
  padding: 1;
  margin-bottom: 21px;
}
.warm-up_
{
  padding: 3px;
    border-radius: 50%;
    
}
.warm-up_ img
{
 
  border: 1px solid #e9e9e9;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
  padding: 5px;
  background: #ffdecf;
}
.text-orange_{
  color:#c77a15;
font-weight: 600;
text-decoration: none !important;
font-family: 'Sen', sans-serif;
font-size: 19px !important;
}
.faq-section_
{
  padding: 10px!important;
}

/* Modern Featured Gallery Section */
.featured-gallery-section {
  padding: 5px 0;
  margin-bottom: 50px;
}

.featured-gallery-section .head-h2 {
  margin-bottom: 35px;
  padding-bottom: 10px;
  position: relative;
}

.featured-gallery-section .head-h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #F26B21 0%, #c77a15 100%);
  border-radius: 2px;
}

/* Modern Image Wrapper Styles - Unified Card Design */
.cricket-team-image-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
}

.cricket-team-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242, 107, 33, 0.02) 0%, rgba(199, 122, 21, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.cricket-team-image-wrapper:hover::before {
  opacity: 1;
}

.cricket-team-image-wrapper:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.cricket-team-image-wrapper .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  transition: none;
}

.cricket-team-image-wrapper .image-container::before {
  display: none;
}

.cricket-team-image-wrapper .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}

.cricket-team-image-wrapper:hover .image-container img {
  transform: scale(1.02);
}

/* Modern Caption Styles - Connected to Image */
.image-caption-modern {
  margin-top: 0;
  padding: 25px 35px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-top: 3px solid #F26B21;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.image-caption-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F26B21 0%, #c77a15 50%, #F26B21 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.image-caption-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242, 107, 33, 0.02) 0%, rgba(199, 122, 21, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cricket-team-image-wrapper:hover .image-caption-modern::after {
  opacity: 1;
}

.image-caption-modern:hover {
  box-shadow: none;
  transform: none;
  border-top-color: #c77a15;
}

.image-caption-modern .caption-text_ {
  font-size: 19px;
  line-height: 1.85;
  color: #2c3e50;
  font-weight: 400;
  margin: 0;
  font-family: 'Sen', sans-serif;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
  text-align: center;
}



/* Responsive Design */
@media (max-width: 992px) {
  .featured-gallery-section {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  
  .cricket-team-image-wrapper {
    border-radius: 14px;
  }
  
  .image-caption-modern {
    padding: 22px 28px 26px;
  }
  
  .image-caption-modern .caption-text_ {
    font-size: 18px;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .featured-gallery-section {
    padding: 25px 0;
    margin-bottom: 35px;
  }
  
  .featured-gallery-section .head-h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .featured-gallery-section .head-h2::after {
    width: 60px;
    height: 2px;
  }
  
  .cricket-team-image-wrapper {
    border-radius: 12px;
    margin-top: 12px;
  }
  
  .image-caption-modern {
    padding: 20px 22px 24px;
    border-top-width: 2.5px;
  }
  
  .image-caption-modern .caption-text_ {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
  
  
}

@media (max-width: 576px) {
  .featured-gallery-section {
    padding: 20px 0;
  }
  
  .cricket-team-image-wrapper {
    border-radius: 10px;
    margin-top: 10px;
  }
  
  .image-caption-modern {
    padding: 18px 20px 22px;
    border-top-width: 2px;
  }
  
  .image-caption-modern .caption-text_ {
    font-size: 15px;
    line-height: 1.65;
  }
  
  .image-caption-modern .caption-text_::first-letter {
    font-size: 1.1em;
  }
}