
/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 90px 0 120px;
    z-index: 1;
}

.about-three__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.about-three__img img {
    width: 100%;
    border-radius: 10px;
}

.about-three__img-two {
    position: absolute;
    top: 30px;
    right: -130px;
    z-index: 2;
}

.about-three__img-two img {
    width: auto;
    border: 7px solid var(--careon-primary);
    border-radius: 10px;
}

.about-three__trusted-patient-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px 20px 22px;
    max-width: 280px;
    width: 100%;
    z-index: 2;
}

.about-three__trusted-patient-review-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.about-three__trusted-patient-review-img-box li {
    position: relative;
    display: block;
}

.about-three__trusted-patient-review-img-box li+li {
    margin-left: -16px;
}

.about-three__trusted-patient-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    width: 45px;
}

.about-three__trusted-patient-img img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--careon-extra);
}

.about-three__trusted-patient-plus-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: var(--careon-base);
    border-radius: 50%;
    border: 2px solid var(--careon-extra);
}

.about-three__trusted-patient-plus-box p {
    font-size: 15px;
    color: var(--careon-white);
    font-weight: 500;
}

.about-three__trusted-patient-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--careon-black);
    line-height: 28px;
}

.about-three__trusted-patient-text span {
    font-family: var(--careon-font) !important;
}

.about-three__right {
    position: relative;
    display: block;
    margin-left: 110px;
}

.about-three__right .section-title {
    margin-bottom: 22px;
}

.about-three__text-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.about-three__text-box:before {
    content: "";
    position: absolute;
    top: 9px;
    bottom: 10px;
    left: 0;
    width: 2px;
    background-color: rgba(var(--careon-base-rgb), .60);
}

.about-three__point-one {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 28px;
    margin-bottom: 38px;
}

.about-three__point-one li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-three__point-one li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--careon-base);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
}

.about-three__point-one li .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careon-black);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.about-three__point-one li:hover .icon::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.about-three__point-one li .icon span {
    font-size: 22px;
    color: var(--careon-white);
    position: relative;
    display: inline-block;
}

.about-three__point-one li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__point-one li .text p {
    font-size: 18px;
    color: var(--careon-black);
    font-weight: 700;
    line-height: 18px;
}

.about-three__point-two-and-awards-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-three__point-two {
    position: relative;
    display: block;
}

.about-three__point-two li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-three__point-two li+li {
    margin-top: 10px;
}

.about-three__point-two li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__point-two li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-base);
}

.about-three__point-two li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__point-two li .text p {
    font-weight: 500;
}

.about-three__awards-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(var(--careon-base-rgb), .10);
    gap: 13px;
    border-left: 4px solid var(--careon-base);
    padding: 5px 30px 5px;
    padding-left: 26px;
}

.about-three__awards-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    background-color: var(--careon-white);
}

.about-three__awards-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__awards-icon img {
    width: auto;
}

.about-three__awards-content {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__awards-content h4 {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 18px;
    font-weight: 400;
}

.about-three__awards-content h4 span {
    font-weight: 700;
}

.about-three__btn-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
}

.about-three__btn-box {
    position: relative;
    display: block;
}

.about-three__btn-box .thm-btn {
    background-color: var(--careon-base);
}

.about-three__btn-box .thm-btn:before,
.about-three__btn-box .thm-btn:after {
    background-color: var(--careon-black);
}

.about-three__call {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    border: 1px solid var(--careon-bdr-color);
    border-radius: 50%;
}

.about-three__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--careon-base);
}

.about-three__call-number {
    margin-left: 20px;
}

.about-three__call-number p {
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    color: var(--careon-gray);
    font-weight: 400;
    margin-bottom: 11px;
}

.about-three__call-number h5 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.about-three__call-number h5 a {
    color: var(--careon-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-three__call-number a:hover {
    color: var(--careon-base);
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

.content-inner {
    padding-top: 100px;
    padding-bottom: 70px;
}
.content-wrapper.style-1 .content-media:not(.right) {
    padding-right: 71px;
    padding-left: 45px;
}
.content-wrapper.style-1 .content-media {
    position: relative;
}
.content-wrapper.style-1 .dz-media {
    border-radius: 30px;
    overflow: hidden;
}
.dz-media img, .dz-post-media img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.content-wrapper.style-1 .content-media .item1 {
    position: absolute;
    top: 40px;
    border-radius: 45px;
    background: #fff;
    left: 0;
}
.info-widget.style-7 {
    display: flex
;
    position: relative;
    overflow: hidden;
}
.info-widget.style-7 .widget-content {
    writing-mode: tb;
    transform: rotate(-180deg);
    border-radius: 0 25px 25px 0;
    color: #fff;
    text-align: center;
    padding: 15px 15px 15px 40px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: -30px;
}
.info-widget.style-7 .widget-media {
    border: 2px solid #fff;
    border-radius: 25px;
    overflow: hidden;
    width: 205px;
    position: relative;
}
.info-widget.style-7 .widget-media img {
    width: 100%;
}
.call-widget {
    position: absolute;
    bottom: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(60px);
    height: 35px;
    border-radius: 30px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}
.info-widget.style-7 .widget-media img {
    width: 100%;
}
.call-widget .active {
    background-color: #FF4747;
    width: 30px;
    height: 30px;
    padding: 6px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.content-wrapper.style-1 .content-media .item2 {
    position: absolute;
    bottom: 40px;
}
.content-wrapper.style-1 .content-media:not(.right) .item2 {
    right: 0;
}
.info-widget.style-6 {
    width: 270px;
    border-radius: 30px;
    padding: 30px 30px 25px;
    position: relative;
    margin: 30px 30px 0 0;
    background: #a1ceff;
}
.info-widget.style-6 .widget-content h4 {
    color: #3b3b3b;
    margin-bottom: 10px;
}
.info-widget.style-6 .widget-content ul{padding: 0;}
.info-widget.style-6 .info-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    position: absolute;
    right: -30px;
    top: -30px;
    padding: 10px;
}
.info-widget.style-6 ul li {
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}
.pd-0 {    margin: 0 !important;}


.dz-img-box.style-1 {
  display: flex;
  background-color: #fff;
  border-radius: 15px;
  padding: 18px 15px;
  gap: 12px;
  align-items: center;
  box-shadow: 0 0 35px rgba(var(--bs-secondary-rgb), 0.05);
}
.dz-img-box.style-1 .title {
  font-size: 18px;
  margin-bottom: 3px;
}
.dz-img-box.style-1 p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}
.dz-img-box.style-1 .btn-link {
  text-decoration: none;
  color: var(--bs-primary);
  font-size: 14px;
}
.dz-img-box.style-1.grid-bx {
  flex-direction: column;
}
.dz-img-box.style-1.box-lg {
  padding: 45px 35px;
}
.dz-img-box.style-1.box-lg .dz-media {
  width: 150px;
}
.dz-img-box.style-1.box-lg .title {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700;
}
.dz-img-box.style-1.box-lg p {
  font-size: 16px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .dz-img-box.style-1.box-lg {
    padding: 35px 25px;
  }
  .dz-img-box.style-1.box-lg .title {
    font-size: 20px;
  }
  .dz-img-box.style-1.box-lg p {
    font-size: 14px;
  }
  .dz-img-box.style-1.box-lg .btn-link {
    font-size: 13px;
  }
  .dz-img-box.style-1.box-lg .dz-media {
    width: 120px;
  }
}
.dz-img-box.style-2 {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: var(--radius-md);
  border: 2px solid var(--bs-primary);
  display: flex;
  align-items: end;
  gap: 25px;
  box-shadow: 0 0 30px rgba(var(--bs-secondary-rgb), 0.05);
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.dz-img-box.style-2 .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}
.dz-img-box.style-2 .title img {
  width: 24px;
}
.dz-img-box.style-2 .inner-content {
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.dz-img-box.style-2 .dz-footer {
  margin-top: auto;
  padding-top: 20px;
}
.dz-img-box.style-2 .dz-footer .btn-link {
  text-decoration: none;
  font-weight: 500;
}
.dz-img-box.style-2 .dz-media {
  width: 175px;
  min-width: 175px;
  height: 175px;
  border-radius: 50%;
  position: relative;
  overflow: unset;
  padding: 25px;
  margin-right: -10px;
  margin-bottom: -10px;
}
.dz-img-box.style-2 .dz-media img {
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}
.dz-img-box.style-2 .dz-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,<svg width='177' height='177' viewBox='0 0 177 177' fill='none' xmlns='http://www.w3.org/2000/svg'><circle opacity='0.05' cx='88.5' cy='88.5' r='88' stroke='black'/><circle opacity='0.2' cx='88.5' cy='88.5' r='72' stroke='black'/><circle opacity='0.1' cx='89' cy='89' r='80.5' stroke='black'/></svg>");
  height: 100%;
  width: 100%;
  z-index: 1;
  background-size: 100%;
  background-position: center;
}
@media only screen and (max-width: 575px) {
  .dz-img-box.style-2 {
    padding: 25px 25px;
    flex-direction: column-reverse;
  }
  .dz-img-box.style-2 .dz-media {
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
  }
}
.dz-img-box.style-2:hover {
  transform: translateY(-5px);
}
.dz-img-box.style-3 {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  margin-left: -70px;
  margin-right: -70px;
}
.dz-img-box.style-3 .dz-media {
  border-radius: var(--radius-xl);
  height: 500px;
  width: 600px;
  min-width: 600px;
}
.dz-img-box.style-3 .dz-media img {
  height: 100%;
  object-fit: cover;
}
.dz-img-box.style-3 .dz-content {
  position: relative;
  padding: 80px 80px 80px 125px;
}
.dz-img-box.style-3 .title {
  font-size: 40px;
  margin-bottom: 20px;
}
.dz-img-box.style-3 p {
  font-size: 18px;
  margin-bottom: 25px;
}
.dz-img-box.style-3 .dz-number {
  position: absolute;
  font-size: 300px;
  color: var(--bs-primary);
  opacity: 0.05;
  font-weight: 800;
  line-height: 1;
  right: 50px;
  top: -20px;
  z-index: -1;
}
.dz-img-box.style-3.right {
  flex-direction: row-reverse;
}
.dz-img-box.style-3.right .dz-number {
  left: 100px;
  right: auto;
}
.dz-img-box.style-3.right .dz-content {
  padding: 80px 125px 80px 80px;
}
@media only screen and (max-width: 1480px) {
  .dz-img-box.style-3 {
    margin-left: 0;
    margin-right: 0;
  }
  .dz-img-box.style-3 .dz-number {
    font-size: 200px;
  }
  .dz-img-box.style-3 .dz-content {
    padding: 50px 50px 50px 80px;
  }
  .dz-img-box.style-3.right .dz-content {
    padding: 50px 80px 50px 50px;
  }
}
@media only screen and (max-width: 1380px) {
  .dz-img-box.style-3 {
    margin-bottom: 50px;
  }
  .dz-img-box.style-3 .dz-media {
    height: 400px;
    width: 500px;
    min-width: 500px;
  }
  .dz-img-box.style-3 .dz-content {
    padding: 30px 30px 30px 50px;
  }
  .dz-img-box.style-3 .title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .dz-img-box.style-3 p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .dz-img-box.style-3.right .dz-content {
    padding: 30px 50px 30px 30px;
  }
  .dz-img-box.style-3.right .dz-number {
    left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .dz-img-box.style-3 .dz-media {
    height: 300px;
    width: 400px;
    min-width: 400px;
  }
  .dz-img-box.style-3 .title {
    font-size: 24px;
  }
  .dz-img-box.style-3 p {
    font-size: 14px;
  }
  .dz-img-box.style-3 .dz-content {
    padding: 30px;
  }
  .dz-img-box.style-3.right .dz-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .dz-img-box.style-3 {
    flex-direction: column;
  }
  .dz-img-box.style-3 .dz-media {
    height: 400px;
    width: 100%;
    min-width: 100%;
  }
  .dz-img-box.style-3 .dz-number {
    font-size: 100px;
    left: 0;
    top: 0;
  }
  .dz-img-box.style-3.right {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .dz-img-box.style-3 .dz-media {
    height: 320px;
  }
  .dz-img-box.style-3 .dz-content {
    padding: 20px;
  }
  .dz-img-box.style-3.right .dz-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .dz-img-box.style-3 .dz-media {
    height: 250px;
  }
  .dz-img-box.style-3 .dz-content {
    padding: 20px 0 0;
  }
  .dz-img-box.style-3.right .dz-content {
    padding: 20px 0 0;
  }
}
.dz-img-box.style-4 {
  background-color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(var(--bs-secondary-rgb), 0.05);
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dz-img-box.style-4:hover {
  transform: translateY(-5px);
}
.dz-img-box.style-4 .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}
.dz-img-box.style-4 .title img {
  width: 24px;
}
.dz-img-box.style-4 .dz-content {
  padding: 18px 15px;
}
.dz-img-box.style-4 .dz-head {
  padding: 5px 20px;
}
.dz-img-box.style-4 .dz-footer {
  padding: 18px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: auto -10px -10px;
}
.dz-img-box.style-4 .dz-footer .btn-link {
  text-decoration: none;
  font-weight: 500;
}
.dz-img-box.style-4 .dz-media {
  min-width: 190px;
  height: 190px;
  border-radius: var(--radius-lg);
}
.dz-img-box.style-4 .dz-media img {
  height: 100%;
  object-fit: cover;
}

.dz-img-wrapper {
  margin-left: -50px;
  margin-right: -50px;
  display: flex;
  animation: ticker 0s linear infinite 0s normal;
  animation-duration: 0s;
  animation-duration: 60s;
}
.dz-img-wrapper .dz-media {
  background-color: #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .dz-media {
    border-radius: 10px;
  }
}
.dz-img-wrapper .dz-media:not(.media-lg) {
  padding: 20px;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .dz-media:not(.media-lg) {
    padding: 10px;
  }
}
.dz-img-wrapper .dz-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .dz-media img {
    border-radius: 10px;
  }
}
.dz-img-wrapper .left-wrapper,
.dz-img-wrapper .right-wrapper {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  padding: 0 10px;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .left-wrapper,
  .dz-img-wrapper .right-wrapper {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .dz-img-wrapper .left-wrapper,
  .dz-img-wrapper .right-wrapper {
    flex: 0 0 80%;
    width: 80%;
  }
}
@media only screen and (max-width: 575px) {
  .dz-img-wrapper .left-wrapper,
  .dz-img-wrapper .right-wrapper {
    flex: 0 0 100%;
    width: 100%;
  }
}
.dz-img-wrapper .media-inner {
  position: relative;
  z-index: 1;
  width: 33%;
  min-width: 33%;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .media-inner {
    width: 30%;
    min-width: 30%;
  }
}
.dz-img-wrapper .media-sm {
  width: 100%;
  min-width: 100%;
  height: 245px;
}
.dz-img-wrapper .media-md {
  min-width: 100%;
  height: 445px;
  overflow: unset;
  position: relative;
}
.dz-img-wrapper .media-md::before, .dz-img-wrapper .media-md::after {
  content: "";
  width: 25px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M0 0V50H50C22.3858 50 0 27.6142 0 0Z' fill='white'/></svg>");
  position: absolute;
  z-index: 1;
  height: 25px;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .media-md::before, .dz-img-wrapper .media-md::after {
    width: 15px;
    height: 15px;
  }
}
.dz-img-wrapper .media-lg {
  min-width: 67%;
  height: 670px;
  width: 67%;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .media-lg {
    min-width: 70%;
    width: 70%;
  }
}
@media only screen and (max-width: 1480px) {
  .dz-img-wrapper .media-sm {
    height: 200px;
  }
  .dz-img-wrapper .media-md {
    height: 400px;
  }
  .dz-img-wrapper .media-lg {
    height: 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .media-sm {
    height: 150px;
  }
  .dz-img-wrapper .media-md {
    height: 280px;
  }
  .dz-img-wrapper .media-lg {
    height: 420px;
  }
}
@media only screen and (max-width: 991px) {
  .dz-img-wrapper .media-sm {
    height: 120px;
  }
  .dz-img-wrapper .media-md {
    height: 200px;
  }
  .dz-img-wrapper .media-lg {
    height: 310px;
  }
}
.dz-img-wrapper .left-wrapper .media-sm {
  margin-top: -20px;
  padding-right: 0;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .left-wrapper .media-sm {
    margin-top: -10px;
  }
}
.dz-img-wrapper .left-wrapper .media-md {
  margin-left: -120px;
  border-radius: 0 0 0 20px;
  padding-right: 0;
}
.dz-img-wrapper .left-wrapper .media-md:after {
  left: 95px;
  bottom: -25px;
  transform: rotate(180deg);
}
.dz-img-wrapper .left-wrapper .media-md:before {
  left: -25px;
  top: 0;
  transform: rotate(180deg);
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .left-wrapper .media-md:after {
    left: 105px;
    bottom: -15px;
  }
  .dz-img-wrapper .left-wrapper .media-md:before {
    left: -15px;
  }
}
@media only screen and (max-width: 991px) {
  .dz-img-wrapper .left-wrapper .media-md {
    margin-left: -50px;
  }
  .dz-img-wrapper .left-wrapper .media-md:after {
    left: 35px;
  }
}
.dz-img-wrapper .right-wrapper .media-sm {
  margin-bottom: -20px;
  padding-left: 0;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .right-wrapper .media-sm {
    margin-bottom: -10px;
  }
}
.dz-img-wrapper .right-wrapper .media-md {
  margin-right: -120px;
  padding-left: 0;
  border-radius: 0 20px 0 0;
}
.dz-img-wrapper .right-wrapper .media-md:after {
  right: -25px;
  bottom: 0;
}
.dz-img-wrapper .right-wrapper .media-md:before {
  right: 95px;
  top: -25px;
}
@media only screen and (max-width: 1199px) {
  .dz-img-wrapper .right-wrapper .media-md:after {
    right: -15px;
  }
  .dz-img-wrapper .right-wrapper .media-md:before {
    right: 105px;
    top: -15px;
  }
}
@media only screen and (max-width: 991px) {
  .dz-img-wrapper .right-wrapper .media-md {
    margin-right: -50px;
  }
  .dz-img-wrapper .right-wrapper .media-md:before {
    right: 35px;
  }
}
@keyframes ticker {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		
		100% {
			-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
		}
	}



.mission_vision {
    padding: 80px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #f3f3f3 100%);
}
.mission_vision .section-title {
    margin-bottom: 25px;
}
.mission_vision .description{}
.mission_vision .description p{}
.mission_vision .list_wh{}
.mission_vision .list_wh .box:hover {    transform: translateY(-5px);}
.mission_vision .list_wh .box{
    padding: 20px 25px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    margin-top: 20px;
    margin-right: 40px;
}
.mission_vision .list_wh .box:nth-child(2) {
    margin-left: 40px;
    margin-right: 0;
}
.mission_vision .list_wh .box .img{
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
}
.mission_vision .list_wh .box .img img{
    width: 100%;
}
.mission_vision .list_wh .box .desc {}
.mission_vision .list_wh .box .desc h3{
    font-size: 20px;
    margin-bottom: 10px;
}
.mission_vision .list_wh .box .desc p{}
.mission_vision .ab_img_m  {
    height: 700px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
} 
.mission_vision .ab_img_m img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 


.why_choose_us{
    background-image: url('../../../img/bg1.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
    }
.why_choose_us:before{content:'';background: var(--healthanza-light-blue);position: absolute;width: 100%;height: 100%;top: 0;opacity: 0.9;}

.why_choose_us .content-media {
    position: relative;
    margin-right: 50px;
}
.why_choose_us .content-media .dz-media {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.why_choose_us .content-media .dz-media img{-webkit-mask-image: url('../../../img/shape1.svg');mask-image: url('../../../img/shape1.svg');-webkit-mask-position: center center;mask-position: center center;-webkit-mask-repeat: no-repeat;mask-repeat: no-repeat;-webkit-mask-size: 99%;mask-size: 100%;}
.why_choose_us .item1 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
}
.why_choose_us .item1 .info-widget{
    border-radius: 20px;
    padding: 20px;
    background: #00BDE0;
    text-align: center;
}
.why_choose_us .item1 .info-widget .content-text{
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
    display: block;
}
.why_choose_us .item1 .info-widget .content-text .counter{}
.why_choose_us .item1 .info-widget h3{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.why_choose_us .icon-bx-wraper {
    border-radius: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    text-align: center;
}
.why_choose_us .icon-bx-wraper .icon-bx{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin: 0 auto 20px;
    background: #fff;
}
.why_choose_us .icon-bx-wraper .icon-bx span{}
.why_choose_us .icon-bx-wraper .icon-bx span i{}
.why_choose_us .icon-bx-wraper .icon-content{
}
.why_choose_us .icon-bx-wraper .icon-content h3{
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.why_choose_us .icon-bx-wraper .icon-content p{
    color: #fff;
    margin-bottom: 0;
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}
.why_choose_us .col-sm-6{position:relative}
.why_choose_us .row-wrapper > *:nth-child(1)::before {
    background: linear-gradient(to right, rgba(30, 87, 153, 0) 0%, rgb(255, 255, 255) 100%);
}
.why_choose_us .row-wrapper > *:nth-child(1)::before,
 .why_choose_us .row-wrapper > *:nth-child(2)::before {
    content: "";
    width: 100%;
    height: 1px;
    opacity: 0.2;
    position: absolute;
    right: 0;
    bottom: -20px;
}

 .why_choose_us .row-wrapper > *:nth-child(1)::after {
    background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgb(255, 255, 255) 100%);
    bottom: -20px;
}
 .why_choose_us .row-wrapper > *:nth-child(1)::after,
 .why_choose_us .row-wrapper > *:nth-child(3)::after {
    content: "";
    width: 1px;
    height: 100%;
    opacity: 0.2;
    right: 0;
    position: absolute;
}
 .why_choose_us .row-wrapper > *:nth-child(2)::before {
    background: linear-gradient(to left, rgba(30, 87, 153, 0) 0%, rgb(255, 255, 255) 100%);
}
 .why_choose_us .row-wrapper > *:nth-child(3)::after {
    background: linear-gradient(to top, rgba(30, 87, 153, 0) 0%, rgb(255, 255, 255) 100%);
    top: -29px;
}