/*bootstrap carousel css*/
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
/*bootstrap carousel css*/


.contact-point input[type=email]{margin-bottom: 15px;}
.slide-title {padding: 5px;margin: 15px 0 0;width: 100%;text-align: center;float: left;font-size: 18px;}
.pan { padding-left: 0!important; padding-right: 0!important;}
/*for mobile*/
@media screen and (max-width: 767px) {
  /*.review-hdr {background-color: #79d2ce;}*/
  /*.landing-msg {background-color: rgba(0,0,0,0.5);}*/
  .minsubtag {padding-left: 10px;}
  .form-horizontal .form-group {margin-left: 0!important; margin-right: 0 !important; margin-bottom: 10px;}
  #qform {margin: 30px 15px 0 0; padding: 0!important;}
  #qform .form-control:focus {outline: none!important; outline-offset: 0px;}
  .adjust-height.nyc-form.query-form {
    top: -1%!important;
    z-index: 10001;
  }
  .open-mobile-form.hide-mobi, .close-mobile-form.hide-mobi, .chat-wrap.hide-mobi {
    display: none !important;
  }
  #qform .hc-btn.mobile.open-mobile-form {
    position: absolute;
    bottom: 20px;
    left: 10px;
    width: 58%;
  }
  .close-mobile-form {
    position: absolute;
    top: 5px;
    right: 50px;
    width: 35px!important;
    height: 35px!important;
    opacity: 0.6;
  }
  
  #qform .form-group.hide-mobi {
    display: none;
  }

  #qform fieldset {
    display:block;
    width: 100%;
    padding: 10px 10px 10px 0;
    box-sizing: border-box;
  }

  #qform .form-group {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    height: 100%;
  }
  #qform .btn-submit {
    width: 40%;
    float: right;
  }
  #qform .form-group .ph {
    width: 50%;
    float: left;
    margin-left: 3px;
  }
  #qform .email-fld {width: 100%!important;}
  #qform .email-fld input[type=email] {left: 0!important;width: 89%!important;}
  #qform textarea.form-control {
    width: 89%;
    height: 65px;
    resize: none;
  }
  #qform input[type=phone], #qform textarea, #qform input[type=email] {border-radius: 3px!important;}
  #qform input[type=phone] {font-size: 11px; float: left; height: 20px;}
  
  /*WhatsApp css*/
  .chat-wrap {width: 29%; right: 10px; height: 40px; position: fixed; bottom: 20px; background-color: #009d97; border-radius: 4px;}
  .chat-wrap p {position: absolute; top: -10px; left: 10px; font-size: 18px;}
  .whatsapp-logo { position: absolute; top: 0; right: 0; background-image: url("../images/whatsapp-icon-3.png"); background-repeat: no-repeat; background-size: 100%; width: 40px; height: 40px; }
}



@media only screen and (max-width: 767px) {
  .imageWrap.home-replacement {background-image: url('../images/knee-replacement-mobi.jpg'); background-position-x: center;}
}
@media only screen and (max-device-width: 767px) and (orientation: landscape) {
  .imageWrap.home-replacement {background-image: url('../images/knee-replacement-mobi-wide.jpg'); background-color: #37444D;}
  #qform input[type=email], #qform input[type=phone] {width: 95.5%!important;left: -40px!important;}
  #qform .form-group.btn-submit {margin-right: 12px!important;}
  .close-mobile-form {right: 46px;}
}

/*for desktop*/
@media screen and (min-width: 768px) {
  /*.flt-text {width: 45%;}*/
  #client-testimonials {background-color: #DDD!important;}
  #qform .btn-submit {margin-top: 10px; margin-right: 5px;}
  .contact-point span {float: left; width: 35px; height: 34px;}
  #qform .email-fld {width: 108%; }
  .contact-point input[type=email], .contact-point input[type=phone] {width: 87%;}
  .form-group.btn-submit {margin-right: 0px!important;}
  #qform {margin-left: 8px;}
  #qform textarea {width: 97%;}
  .whatsapp-logo {opacity: 0;}
  .hero-banner .imageWrap.home-replacement {background-image: url('../images/knee-pain-doctors-banner.jpg')!important; margin-bottom: -109px; background-color: #37444D;}
  #home-nyc-form-wrap .banner-text{
    padding: 5px 20px;
    width: 530px;
    left: 50%!important;
    margin-left: -265px!important;
    font-size: 16px;
  }
  /*.mob-carousel-wrap { padding: 0 5px; }*/
}

input:focus, textarea:focus, keygen:focus, select:focus {outline-offset: 0px!important;}

/*mediaquery for whatsapp on mobiles*/

.show-in-android { display: block; }
/*.show-in-iphone { display: none; }*/
.navbar-toggle{margin-bottom: 0!important;}

.pull-rt {float: right!important;}
.flt-text {display: inline-block;padding: 10px;}
.th-img {width:30%; float: left;}
.grey-bg {background-color: #DDD;}
.second-opinion{background-position: 0 0;}
.treatment-option{background-position: -93px 0;}
.medical-procedure{background-position: -186px 0;}
.top-docs{background-position: -279px 0;}
.mob-carousel-wrap {width: 100%; height: 100%; display: inline-block;}
.mob-carousel-wrap .text-wrap {padding: 0 10px; min-height: 300px; float: left;}
.mob-carousel-wrap.md{width: 23%;padding: 20px 15px;background-color: #eee;border-radius: 5px;border: 1px solid #ccc;}
.btm-brdr{border-bottom: 1px solid #AAA;}
.pbxl{padding-bottom: 75px;}
@media screen and (min-width: 1024px){
  #home-nyc-form-wrap {bottom: 555px!important; margin-bottom: -85px!important;}
}
#how-it-works {height: 70vh!important;}

@media screen and (min-width: 1600px){#home-nyc-form-wrap {bottom: 645px!important;}}
#how-it-works {height: 70vh!important;}

/*new design css starts here*/
/*body {font-family: lato, serif!important;}*/
.list-view {
  padding-left: 50px;
}
.list-view li {
  list-style: square;
  padding-bottom: 5px;
}
.sub {font-size: 18px;}
.light-grey-bg {background-color: #2b3743; color:#FFF;}
.mvl {margin-top: 50px; margin-bottom: 50px;}
.mhns {margin: 0 -5px;}
.pan {padding: 0 0px!important;}
.mbl {margin-bottom: 30px;}
.pln {padding-left: 0!important;}
.pbm {padding-bottom: 20px;}
.prn {padding-right: 0!important;}
.phs {padding: 0 10px;}
.phm {padding: 0 20px!important;}
.pvl {padding-top: 30px; padding-bottom: 30px;}
.ptl {padding-top: 30px;}
.mtm {margin-top: 20px;}
.nyc-form {background-color: transparent; box-shadow: none;}
.f14 {font-size: 14px;}
.uppercase{text-transform: uppercase;}
.capitalize{text-transform: capitalize;}
.home-kneepain img {width: 100%;}
.home-cta{
  background-color: #26A6A7; 
  width: 300px;
  padding: 5px 20px;
  font-size: 24px;
  font-weight: 100; 
  margin: 0 5%;
  position: relative;
  left: 50%;
  margin-left: -170px;
  color: #fff;
  border: 1px solid #118b8c;
  cursor: pointer;
}
a {text-decoration: none!important;}
.sub-tag {font-variant: small-caps; font-size: 14px;}
.mbm {margin-bottom: 20px;}
.mbs {margin-bottom: 10px;}
.tag {font-size: 18px;}
.tac {text-align: center!important;}
.banner-text.landing-msg {font-weight: normal;}
.landing-tagline{
  position: absolute;
  left: 50%;
  width: 80%;
  margin-left: -40%;
  font-size: 18px;
  line-height: 24px;
}
.review-hdr span {color: #28A5A7;}
.review-sub-hdr {text-align: center;padding: 5px 10px 20px; font-size: 16px;}
.sub-hdr-underline {height: 3px; background-color: #2B3D51; width: 210px; position: relative; left: 50%; margin-left: -105px; margin-bottom: 35px;}
.sub-hdr-underline.inverse {background-color: #FFF;}
.sub-hdr-underline span {
  background-color: #26A6A7;
  height: 5px;
  width: 60px;
  display: block;
  position: relative;
  left: 50%;
  margin-left: -30px;
  top: -1px; 
}
.owl-item:nth-child(even) .mob-carousel-wrap .text-wrap{ background-color: #26A6A7;}
.owl-item:nth-child(odd) .mob-carousel-wrap .text-wrap{ background-color: #2D3E50;}
.owl-item:nth-child(even) .mob-carousel-wrap .mob-carousel.causes-img .more-btn { border-right: 6px solid #2D3E50; }
.owl-item:nth-child(even) .mob-carousel-wrap .mob-carousel.causes-img .more-btn a { background-color: #2D3E50; }
.owl-item:nth-child(odd) .mob-carousel-wrap .mob-carousel.causes-img .more-btn { border-right: 6px solid #26A6A7; }
.owl-item:nth-child(odd) .mob-carousel-wrap .mob-carousel.causes-img .more-btn a { background-color: #26A6A7; }

.owl-item:nth-child(even) .mob-carousel-wrap .causes-img {background-image: url("../images/knee-pain-rheumatoid-arthritis.jpg");}
.owl-item:nth-child(odd) .mob-carousel-wrap .causes-img {background-image: url("../images/knee-pain-knee bursitis.jpg");}
.owl-item:nth-child(1) .mob-carousel-wrap .causes-img {background-image: url("../images/knee-pain-rheumatoid-arthritis.jpg");}
.owl-item:nth-child(2) .mob-carousel-wrap .causes-img {background-image: url("../images/knee-pain-osteoarthritis.jpg");}
.owl-item:nth-child(3) .mob-carousel-wrap .causes-img {background-image: url("../images/knee-pain-knee bursitis.jpg");}
.causes-img {width: 100%; min-height: 185px;background-repeat: no-repeat;display: block; float: left; background-size: cover;}
.hc-kneepain-carousel { color: #FFF; }
.mob-carousel.causes-img {position: relative;}
.mob-carousel.causes-img .more-btn {
  position: absolute;
  width: 100px;
  height: 130px;
  right: 0;
  bottom: -10px;
}
.more-btn a {
  color: #FFF!important;
  font-size: 18px;
  text-align: center;
  float: left;
  width: 100%;
  padding: 3px 0;
  position: absolute;
  bottom: 0;
}

#testimonials-wrap {
  background-image: url("../images/knee-pain-reviews-collage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 10px;
  color: #FFF;
  min-height: 425px;
  margin: 30px 0;
}
#testimonials-wrap .carousel-caption {
  position: static;
}
#testimonials-wrap .fa {font-size: 20px; color: #FFF; padding: 0 5px; position: relative; top: -5px;}
#testimonials-wrap .flt-text { font-style: italic; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 100; width: 70%; }
.mobi-testimonials-wrap#testimonials-wrap .text-wrap {
  background-color: transparent!important;
}
.hdr-inverse.review-hdr {
  color: #FFF;
}
.mobi-testimonials-wrap .owl-pagination {display: none;}
.mobi-testimonials-wrap .owl-theme .owl-controls { position: absolute; top: 20%;}
.mobi-testimonials-wrap .owl-theme .owl-controls, .owl-buttons { width: 100%;}
.owl-buttons .owl-prev {float: left;}
.owl-buttons .owl-next {float: right;}
.owl-buttons .owl-prev, .owl-buttons .owl-next {
  visibility: hidden;
}
.owl-buttons .owl-prev:after, .owl-buttons .owl-next:after {
  content:"";
  visibility: visible;
  display: block;
  position: absolute;
  padding: 5px;
  font-size: 50px;
  top: 90px;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  background-size: contain;
}
.owl-buttons .owl-prev:after {
  background-image: url('../images/arrow-left.png'); 
}
.owl-buttons .owl-next:after {
  background-image: url('../images/arrow-right.png'); 
}
.home-cta.btn-md { 
  font-size: 16px;
  width: 210px;
  margin-bottom: 50px;
  padding: 12px 5px;
  border-radius: 5px;
  border: 1px solid #00a1a2;
  background-color: #26A6A7;
  cursor: pointer;
}
.blog-cta {
  display: inline-block;
  background-color: #28A5A7;
  padding: 15px 20px;
  color: #FFF;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  width: 200px;
}

.article-hdr {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.article-wrap {
  position: relative;
}
.hc-link, a.hc-link {color: #28A5A7;}
.hc-link:hover, a.hc-link:hover {color: #666;}
.article-img-wrap {z-index: 2;}
.article-img-wrap.hidden-xs {position: absolute;top: 100px;left: 15px;}
.article-img-wrap.hidden-xs img{width: 250px;}
.article-footer {
  padding: 10px 15px;
  background-color: #EBEBEB;
}  
.full-width-img {
  width: 100%;
}

/*Doctors section css*/
#DOC-carousel .thumbnail {
  border: none;
  text-align: center;
}
#DOC-carousel .owl-controls .owl-pagination {
  display: none!important;
}
#DOC-carousel .owl-prev:after, #DOC-carousel .owl-next:after {
  background-image: none;
  color: #333;
}
#DOC-carousel .owl-prev:after {
  content: "\2039";
}
#DOC-carousel .owl-next:after {
  content: "\203A";
}

.img-circle {
  border: 4px solid #28A5A7!important;
  transition: all .5s;
  border-radius: 50%;
}
.doc-details {
  font-size: 16px;
  font-family: lato, serif;
  color: #777;
  padding: 0 10px;
}
.doc-details .doc-hospital, .doc-details .doc-edu  {
  font-size: 14px;
  color: #333;
  margin-top: 15px;
}
.doc-details .doc-name {
  border-left: 3px solid #009d97;
  padding: 2px 10px 4px;
  background-color: #e4e4e4;
  line-height: 20px;
  position: relative;
  top: 9px;
  color: #000;
}

.thumbnail.loaded .doctor-img
{ display: inline-block; background-image: url('../images/knee-doctors.jpg'); overflow: hidden; text-indent: -9999px; text-align: left; min-height: 240px;}
 
/*doctore-sprite images css*/

.dr-a-k-venkatachalam { background-position: -2px -0px; width: 200px; height: 240px; }
.dr-anil-arora { background-position: -204px -0px; width: 200px; height: 240px; }
.dr-ashok-rajagopal { background-position: -406px -0px; width: 200px; height: 240px; }
.dr-hemant-kalyan { background-position: -2px -242px; width: 200px; height: 240px; }
.dr-ips-oberoi { background-position: -204px -242px; width: 200px; height: 240px; }
.dr-krishna-kiran { background-position: -406px -242px; width: 200px; height: 240px; }
.dr-m-n-basu-malik { background-position: -2px -484px; width: 200px; height: 240px; }
.dr-nithin-kumar { background-position: -204px -484px; width: 200px; height: 240px; }
.dr-prabhat-lakkireddi { background-position: -406px -484px; width: 200px; height: 240px; }
.dr-rakesh-rajput { background-position: -2px -726px; width: 200px; height: 240px; }
.dr-sachin-bhonsle { background-position: -204px -726px; width: 200px; height: 240px; }
.dr-satish-reddy { background-position: -406px -726px; width: 200px; height: 240px; }
.dr-sunil-dachepalli { background-position: -2px -968px; width: 200px; height: 240px; }


/*media query css*/
@media screen and (min-width: 1370px) and (max-width: 1440px){
  #DOC-carousel .owl-wrapper-outer {width: 90%; margin-left: 5%;}
}

@media screen and (max-width: 767px){
  .article-img-wrap img {width: 60%; margin-bottom: 15px; position: relative; left: 20%;}
  #DOC-carousel .thumbnail {width: 100%;}
  .mobi-v-pad {margin-top: 60px!important; margin-bottom: 40px!important;}
  .how-can-we-help img { width: 30%; margin: 0 5px; }
  .drs-img {max-height: 44vh!important;background-position: center 0px!important;}
  .banner-text.landing-msg {
    width: 100%;
    margin-left: -50%;
    top: 0;
    padding: 40% 0 50%;
  }
  .mobi-testimonials-wrap, .container{
    padding-left: 5px;
    padding-right: 5px;
  }
  .causes-img {
    height: 200px;
  }
  .article-wrap {margin-top: 50px;}
}

@media only screen and (max-device-width: 767px) and (orientation: landscape) {
  .banner-text.landing-msg {
    padding: 8% 0;
  }
}

@media screen and (min-width: 768px) {
  .mobi-testimonials-wrap#testimonials-wrap .text-wrap {
    height: 250px;
  }
  .sub {margin-top: 30px;}
  .article-footer {
    padding: 30px 15px;
  } 
  .blog-cta {
    margin: 60px 0;
    font-size: 18px;
  }
  .article-wrap {margin-top: 100px;}

  .article-wrap .text-wrap {
    z-index: 0;
    background-color: #FAFAFA;
    margin-bottom: 20px;
  }
  .home-cta.btn-md { 
    font-size: 16px;
  }
  .imgs-wrap {
    position: absolute;
    width: 715px;
    z-index: 10;
  }
  .causes-img {width: 97.5%;}
  .article-hdr { font-size: 20px; text-align: left; }
  .tal {text-align: left!important;}
  .tar {text-align: right!important;}
  #home-nyc-form-wrap .landing-tagline {
    top: 320px!important;
  }
  .query-form.home-form {
    position: absolute!important;
    left: 35%!important;
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0px 0px 3px #26A6A7;
    top: 240px!important;
  }
  .home-cta {
    width: 400px;
    padding: 5px 20px;
    margin-left: -200px;
  }
  .tag {font-size: 22px;text-transform: uppercase;}
  .sub-tag {font-variant: normal; text-transform: capitalize; font-size: 16px;}
  .landing-tagline {
    width: 100%;
    font-size: 24px!important;
    left: 0!important;
  }
  .review-hdr {font-size: 24px; font-weight: bold;}

  .owl-buttons .owl-prev:after, .owl-buttons .owl-next:after {
    height: 50px;
    width: 29px;
  }

  #causes-carousel .text-wrap {
    min-height: 270px;
    float: left;
  }


}