:root {
  --header-height: 124px;
  --banner-full: calc( 100vh - var(--header-height));
  --purple: #9F2E8E;
  --purple-d: #5A1B57;
  --white: #fff;
  --gray: #666;
  --l-gray: #e1e1e1;
  --black: #000;
  --circular: "Circular Pro Book";
  --optima: "Optima";
}
@media only screen and (max-width: 991px) {
  :root {
    --header-height: 68px;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --banner-full: calc(430px);
  }
}
@media only screen and (max-width: 675px) {
  :root {
    --banner-full: calc(330px);
  }
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: var(--circular);
  font-size: 16px;
  line-height: 1.4;
  font-optical-sizing: auto;
  color: var(--gray);
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 5px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: var(--purple);
}

body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

a, a[href=""] {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

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

.flex {
  display: flex;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: var(--optima);
  font-style: normal;
  line-height: 1;
}

h1 {
  font-size: 48px;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 675px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 40px;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}

h3 {
  font-size: 36px;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 520px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  h4 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 25px;
  }
}

h5 {
  font-size: 25px;
}
@media only screen and (max-width: 1024px) {
  h5 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 991px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  h6 {
    font-size: 16px;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

input, select, button, textarea {
  font-size: 16px;
  font-family: var(--circular);
  font-optical-sizing: auto;
  font-style: normal;
}

button, input[type=button], input[type=submit] {
  cursor: pointer;
  border: 0;
  outline: none;
}

.heading.text-center {
  text-align: center;
}
.heading h2 {
  font-size: 48px;
  color: var(--black);
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .heading h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 675px) {
  .heading h2 {
    font-size: 28px;
  }
}
.heading p {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .heading p {
    font-size: 18px;
  }
}

.link_arrow a {
  display: inline-block;
  color: var(--white);
  padding: 8px 20px;
  border: 1px solid transparent;
  transition: 0.5s ease;
}
.link_arrow a span, .link_arrow a svg {
  display: inline-block;
  vertical-align: middle;
}
.link_arrow a svg {
  margin-left: 13px;
  transition: 0.5s ease;
}
.link_arrow a svg path {
  stroke: var(--white);
  transition: 0.5s ease;
}
.link_arrow a:hover {
  background: var(--purple);
  border-color: var(--purple);
}
.link_arrow a:hover svg {
  margin-left: 8px;
}

.link_btn a, .link_btn button, .link_btn input[type=button], .link_btn input[type=submit] {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid transparent;
  transition: 0.5s ease;
  margin-right: 10px;
}
@media only screen and (max-width: 520px) {
  .link_btn a, .link_btn button, .link_btn input[type=button], .link_btn input[type=submit] {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}
.link_btn a span, .link_btn a svg, .link_btn button span, .link_btn button svg, .link_btn input[type=button] span, .link_btn input[type=button] svg, .link_btn input[type=submit] span, .link_btn input[type=submit] svg {
  display: inline-block;
  vertical-align: middle;
}
.link_btn a svg, .link_btn button svg, .link_btn input[type=button] svg, .link_btn input[type=submit] svg {
  margin-left: 13px;
  transition: 0.5s ease;
}
.link_btn a:hover svg, .link_btn button:hover svg, .link_btn input[type=button]:hover svg, .link_btn input[type=submit]:hover svg {
  margin-left: 8px;
}
.link_btn a.btn_white, .link_btn button.btn_white, .link_btn input[type=button].btn_white, .link_btn input[type=submit].btn_white {
  border: 1px solid var(--purple);
  background: var(--white);
  color: var(--purple);
}
.link_btn a.btn_white svg path, .link_btn button.btn_white svg path, .link_btn input[type=button].btn_white svg path, .link_btn input[type=submit].btn_white svg path {
  stroke: var(--purple);
}
.link_btn a.btn_white:hover, .link_btn button.btn_white:hover, .link_btn input[type=button].btn_white:hover, .link_btn input[type=submit].btn_white:hover {
  background: var(--purple);
  color: var(--white);
}
.link_btn a.btn_white:hover svg path, .link_btn button.btn_white:hover svg path, .link_btn input[type=button].btn_white:hover svg path, .link_btn input[type=submit].btn_white:hover svg path {
  stroke: var(--white);
}
.link_btn a.btn_purpule, .link_btn button.btn_purpule, .link_btn input[type=button].btn_purpule, .link_btn input[type=submit].btn_purpule {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
}
.link_btn a.btn_purpule svg path, .link_btn button.btn_purpule svg path, .link_btn input[type=button].btn_purpule svg path, .link_btn input[type=submit].btn_purpule svg path {
  stroke: var(--white);
}
.link_btn a.btn_purpule:hover, .link_btn button.btn_purpule:hover, .link_btn input[type=button].btn_purpule:hover, .link_btn input[type=submit].btn_purpule:hover {
  background: var(--white);
  color: var(--purple);
}
.link_btn a.btn_purpule:hover svg path, .link_btn button.btn_purpule:hover svg path, .link_btn input[type=button].btn_purpule:hover svg path, .link_btn input[type=submit].btn_purpule:hover svg path {
  stroke: var(--purple);
}

.img_hover .img {
  overflow: hidden;
}
.img_hover .img img {
  transform: scale(1);
  transition: 2s ease;
}
.img_hover:hover .img img {
  transform: scale(1.1);
}

.videoIcon {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 60px;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .videoIcon {
    width: 47px;
    height: 47px;
  }
}
.videoIcon:before {
  width: 55px;
  height: 55px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media only screen and (max-width: 767px) {
  .videoIcon:before {
    width: 47px;
    height: 47px;
  }
}
.videoIcon img, .videoIcon svg {
  width: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .videoIcon img, .videoIcon svg {
    width: 10px;
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.model-open {
  cursor: pointer;
}

.inpu_con {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aisdeWidget {
  position: fixed;
  right: -100px;
  bottom: 60px;
  transition: 0.5s ease;
}
.aisdeWidget.show {
  right: 20px;
}
.aisdeWidget .quicEnq {
  margin-bottom: 20px;
}

#back-to-top {
  width: 43px;
  height: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid var(--purple);
  z-index: 4;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #back-to-top {
    bottom: 60px;
  }
}
#back-to-top.show {
  right: 20px;
}
#back-to-top svg {
  width: 15px;
}
#back-to-top svg path {
  fill: var(--purple);
}

.mob_strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--purple);
  z-index: 11;
  display: none;
  transform: translateY(80px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .mob_strip {
    display: block;
  }
}
.mob_strip ul {
  display: flex;
}
.mob_strip ul li {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
}
.mob_strip ul li:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.2901960784);
  border-right: 1px solid rgba(255, 255, 255, 0.2901960784);
}
.mob_strip ul li a {
  color: var(--white);
  display: block;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
}

header.header-fixed ~ .mob_strip {
  transform: translateY(0);
}

.socialLinks ul {
  display: flex;
}
.socialLinks ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.socialLinks ul li a:hover svg path {
  fill: var(--purple);
}

.close {
  position: absolute;
  right: 15px;
  top: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.close svg {
  color: var(--white);
}
.close svg path {
  fill: var(--white);
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 11;
  background: var(--black);
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video.is-open .modelBody iframe {
  display: block;
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
  display: none;
}

.overlay {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: var(--black);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.overlay.open {
  opacity: 0.8;
  pointer-events: all;
}

@media only screen and (min-width: 992px) {
  .header-overlay {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .header-overlay {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    background: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
  }
  .header-overlay.open {
    opacity: 0.8;
    pointer-events: all;
  }
}

.form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.form .form-group .form-control {
  height: 48px;
  outline: none;
  border: 0;
  width: 100%;
  color: var(--gray);
  padding-top: 10px;
  border-bottom: 1px solid var(--gray);
}
.form .form-group .form-control:focus {
  border-color: var(--brown);
}
.form .form-group .form-control:focus ~ label {
  top: 0;
  font-size: 14px;
  opacity: 0.6;
}
.form .form-group textarea.form-control {
  min-height: 80px;
  padding-top: 15px;
}
.form .form-group label {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  font-weight: normal;
  pointer-events: none;
  transition: 0.5s ease;
}
.form .form-group.valid label {
  top: 0;
  font-size: 14px;
  opacity: 0.6;
}

.custom-dropdown {
  position: relative;
}
.custom-dropdown .selectedBox {
  position: relative;
  padding: 13px 0 10px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray);
}
.custom-dropdown .selectedBox .icon {
  position: absolute;
  bottom: 16px;
  right: 0;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-dropdown .selectedBox .defultText {
  display: block;
}
.custom-dropdown .selectedBox .selectedText {
  display: block;
}
.custom-dropdown .dropdownWrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  z-index: 1;
  max-height: 180px;
  pointer-events: none;
  overflow-y: scroll;
  visibility: hidden;
  transition: 0.5s ease;
}
.custom-dropdown .dropdownWrapper::-webkit-scrollbar {
  width: 2px;
}
.custom-dropdown .dropdownWrapper::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
.custom-dropdown .dropdownWrapper::-webkit-scrollbar-thumb {
  background-color: var(--black);
}
.custom-dropdown .dropdownWrapper .DropOptions {
  padding: 10px 0;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.5s ease;
}
.custom-dropdown .dropdownWrapper .DropOptions .option {
  display: block;
  cursor: pointer;
  background: var(--white);
  padding: 6px 8px;
  font-size: 14px;
}
.custom-dropdown .dropdownWrapper .DropOptions .option:hover {
  background: #fff4fd;
}
.custom-dropdown.active .dropdownWrapper {
  visibility: visible;
  pointer-events: all;
}
.custom-dropdown.active .dropdownWrapper .DropOptions {
  transform: translateY(0px);
  opacity: 1;
}
.custom-dropdown.selcted .selectedBox .defultText {
  top: -7px;
  font-size: 14px;
  opacity: 0.6;
  position: absolute;
}

.modelAppointment {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  max-width: 480px;
  background: var(--white);
  z-index: 111;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.modelAppointment.is-open {
  transform: translate(0);
}
.modelAppointment .close_model svg {
  color: var(--black);
  width: 23px;
}
.modelAppointment .close_model svg path {
  fill: var(--black);
}
.modelAppointment .modelBody {
  padding: 35px;
  height: 100%;
  padding-right: 23px;
  padding-top: 40px;
}
@media only screen and (max-width: screen-420) {
  .modelAppointment .modelBody {
    padding: 35px 15px;
  }
}
.modelAppointment .modelBody .modelAppointForm {
  overflow-y: scroll;
  height: 100%;
  padding-right: 20px;
}
.modelAppointment .modelBody .modelAppointForm::-webkit-scrollbar {
  width: 5px;
}
.modelAppointment .modelBody .modelAppointForm::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
.modelAppointment .modelBody .modelAppointForm::-webkit-scrollbar-thumb {
  background-color: var(--purple);
}
.modelAppointment .modelBody .modelAppointForm .form-title {
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.modelAppointment .modelBody .modelAppointForm .form-title h2 {
  color: var(--black);
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 10px;
}
@media only screen and (max-width: screen-420) {
  .modelAppointment .modelBody .modelAppointForm .form-title h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
.modelAppointment .modelBody .modelAppointForm .form-title p {
  color: var(--gray);
  line-height: 1.3;
  padding: 0 35px;
}
.modelAppointment .modelBody .form .flex {
  flex-wrap: wrap;
}
.modelAppointment .modelBody .form .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 8px;
}
.modelAppointment .modelBody .form .col1 {
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 8px;
}
.modelAppointment .modelBody .form .custom-dropdown {
  margin-bottom: 20px;
}
.modelAppointment .modelBody .form .link_btn {
  margin-top: 15px;
  padding: 0 8px;
  text-align: center;
}
.modelAppointment .modelBody .form .link_btn button.btn_purpule {
  padding: 8px 40px;
}
.modelAppointment .modelBody .form .form-group .form-control {
  background: var(--white);
}
.modelAppointment .modelBody .form .custom-dropdown .dropdownWrapper {
  background: var(--white);
  border: 1px solid #f1f1f1;
  border-top: 0px;
  border-right: 0px;
}

main {
  margin-top: var(--header-height);
}
@media only screen and (max-width: 675px) {
  main {
    margin-top: 68px;
  }
}

.form-filterDoc.exWidth {
  max-width: 320px;
  width: 100%;
  margin: 0rem auto 4rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  header {
    border-bottom: 1px solid #f1f1f1;
  }
}

.topHeader {
  padding: 10px 0;
}
.topHeader .flex {
  align-items: center;
}
.topHeader .logo {
  flex: 0 1 300px;
  max-width: 300px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .topHeader .logo {
    flex: 0 1 200px;
    max-width: 200px;
    width: 100%;
  }
}
.topHeader .logo a {
  line-height: 0;
  display: block;
}
.topHeader .logo a img {
  max-width: 100px;
}
@media only screen and (max-width: 991px) {
  .topHeader .logo a img {
    max-width: 80px;
  }
}
.topHeader .quickNav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}
@media only screen and (max-width: 991px) {
  .topHeader .quickNav {
    gap: 12px;
    align-items: center;
  }
}
.topHeader .quickNav p {
  color: var(--black);
  font-size: 18px;
  line-height: 18px;
  font-style: normal;
  font-weight: 450;
}
@media only screen and (max-width: 767px) {
  .topHeader .quickNav p {
    white-space: nowrap;
    font-size: 16px;
  }
}
.topHeader .quickNav .whats {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 0 10px;
}
@media only screen and (max-width: 675px) {
  .topHeader .quickNav .whats {
    display: none;
  }
}
.topHeader .quickNav .whats a {
  display: block;
}
.topHeader .quickNav .whats a span {
  display: block;
  color: var(--gray);
  margin-bottom: 2px;
  font-size: 14px;
}
.topHeader .quickNav .bookAppoin {
  position: relative;
  cursor: pointer;
  padding: 0 10px;
  padding-top: 22px;
}
@media only screen and (max-width: 991px) {
  .topHeader .quickNav .bookAppoin {
    padding-top: 13px;
  }
}
@media only screen and (max-width: 520px) {
  .topHeader .quickNav .bookAppoin {
    display: none;
  }
}
.topHeader .quickNav .bookAppoin img {
  display: block;
  max-width: 60px;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .topHeader .quickNav .bookAppoin img {
    top: -7px;
  }
}
.topHeader .quickNav .humburger {
  width: 36px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 15px;
  cursor: pointer;
}
.topHeader .quickNav .humburger span {
  display: block;
  width: 80%;
  height: 2px;
  background: var(--black);
  position: relative;
}
.topHeader .quickNav .humburger span::before, .topHeader .quickNav .humburger span::after {
  content: "";
  position: absolute;
  left: -20%;
  right: 0;
  height: 2px;
  background: var(--black);
}
.topHeader .quickNav .humburger span::before {
  top: -9px;
}
.topHeader .quickNav .humburger span::after {
  bottom: -9px;
}

@media only screen and (max-width: 991px) {
  .header-nvList {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .header-nvList {
    background: linear-gradient(90deg, var(--purple) 0%, var(--purple-d) 100%);
  }
  .header-nvList ul {
    text-align: center;
  }
  .header-nvList ul li {
    display: inline-block;
  }
  .header-nvList ul li a {
    display: block;
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    padding: 13px 25px;
    line-height: normal;
  }
}

.modelHumburger {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 420px;
  width: 100%;
  z-index: 11;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.5s ease;
}
.modelHumburger::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 189px;
  height: 323px;
  background: url(../images/Frame.png);
  filter: grayscale(1) opacity(0.04);
}
.modelHumburger.is-open {
  transform: translateX(0);
}
.modelHumburger .close::before {
  content: "Close";
  position: absolute;
  top: 18px;
  left: -30px;
  font-size: 14px;
}
.modelHumburger .close svg {
  color: var(--black);
}
.modelHumburger .close svg path {
  fill: var(--black);
}
.modelHumburger .modelBody {
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}
.modelHumburger .topNav {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.4392156863);
}
.modelHumburger .topNav ul li {
  display: block;
}
.modelHumburger .topNav ul li a {
  display: block;
  color: var(--black);
  font-family: var(--optima);
  font-size: 30px;
  padding: 6px 0;
  line-height: 1.3;
  transition: 0.5s ease;
}
.modelHumburger .topNav ul li a:hover {
  color: var(--purple);
}
.modelHumburger .botNav ul li {
  display: block;
}
.modelHumburger .botNav ul li a {
  display: block;
  color: var(--gray);
  font-size: 16px;
  padding: 4px 0;
  line-height: 1.3;
  transition: 0.5s ease;
}
.modelHumburger .botNav ul li a:hover {
  color: var(--purple);
}
.modelHumburger .socialLinks {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 25px;
  border-top: 1px solid rgba(225, 225, 225, 0.4392156863);
  border-bottom: 1px solid rgba(225, 225, 225, 0.4392156863);
}
@media only screen and (max-width: 520px) {
  .modelHumburger .socialLinks {
    gap: 8px;
  }
}
.modelHumburger .socialLinks .con_lik {
  border-right: 1px solid rgba(225, 225, 225, 0.4392156863);
  padding-right: 20px;
}
@media only screen and (max-width: 520px) {
  .modelHumburger .socialLinks .con_lik {
    padding-right: 8px;
  }
}
.modelHumburger .socialLinks .con_lik a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--gray);
}
.modelHumburger .socialLinks .con_lik a svg {
  width: 22px;
}
.modelHumburger .socialLinks .con_lik a svg path {
  fill: var(--gray);
}
.modelHumburger .socialLinks ul li {
  margin-right: 8px;
}
@media only screen and (max-width: 520px) {
  .modelHumburger .socialLinks ul li {
    margin-right: 2px;
  }
}
.modelHumburger .socialLinks ul li a {
  width: 30px;
  height: 30px;
}
.modelHumburger .socialLinks ul li a svg {
  width: 22px;
}

.banner-home {
  position: relative;
}
.banner-home .video {
  line-height: 0;
  position: relative;
}
.banner-home .video::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.05%, rgba(0, 0, 0, 0.8) 64.23%);
}
.banner-home .video video {
  width: 100%;
  height: var(--banner-full);
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-home .banner-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 675px) {
  .banner-home .banner-content {
    bottom: 18%;
  }
}
.banner-home .banner-content .content {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
@media only screen and (max-width: 675px) {
  .banner-home .banner-content .content {
    max-width: 460px;
  }
}
.banner-home .banner-content .content h1 {
  color: var(--white);
}
@media only screen and (max-width: 675px) {
  .banner-home .banner-content .content .icon img {
    width: 20px;
  }
}
.banner-home .banner-content .link_arrow {
  margin-top: 30px;
}
@media only screen and (max-width: 675px) {
  .banner-home .banner-content .link_arrow {
    display: none;
  }
}

.homeCSecA {
  background: var(--l-gray);
}
@media only screen and (max-width: 767px) {
  .homeCSecA {
    display: none;
  }
}
.homeCSecA .flex {
  flex-wrap: wrap;
}
.homeCSecA .colA {
  flex: 0 1 45%;
  max-width: 45%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .homeCSecA .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 20px;
    padding-bottom: 0;
  }
}
.homeCSecA .colB {
  flex: 0 1 55%;
  max-width: 55%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .homeCSecA .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.homeCSecA .imgCover {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .homeCSecA .imgCover {
    height: 100%;
  }
}
.homeCSecA .imgCover .videoIcon {
  background: transparent;
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .homeCSecA .imgCover .videoIcon {
    bottom: auto;
    top: 50%;
    right: auto;
    left: 50%;
    translate: -50% -50%;
  }
}
.homeCSecA .imgCover .img {
  line-height: 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .homeCSecA .imgCover .img {
    height: 100%;
  }
}
.homeCSecA .imgCover .img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 22.32%, rgba(0, 0, 0, 0.8) 83.96%), url("../images/img1.jpg") lightgray 50%/cover no-repeat;
  background-blend-mode: normal, luminosity;
}
.homeCSecA .imgCover .img img {
  width: 100%;
}
.homeCSecA .imgCover .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  padding: 30px;
  padding-right: 170px;
}
@media only screen and (max-width: 991px) {
  .homeCSecA .imgCover .text {
    padding: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 675px) {
  .homeCSecA .imgCover .text {
    max-width: 450px;
    margin: 0 auto;
  }
}
.homeCSecA .imgCover .text h4 {
  color: var(--white);
  line-height: 1.3;
}
@media only screen and (max-width: 675px) {
  .homeCSecA .imgCover .text h4 {
    line-height: 1.1;
  }
}
.homeCSecA .content {
  height: 100%;
  padding: 55px;
}
@media only screen and (max-width: 1024px) {
  .homeCSecA .content {
    padding: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .homeCSecA .content {
    text-align: center;
  }
}
@media only screen and (max-width: 675px) {
  .homeCSecA .content {
    padding: 35px 15px;
  }
}
.homeCSecA .content h3 {
  color: var(--black);
  margin-bottom: 9px;
}
.homeCSecA .content .listhosServi {
  margin-top: 35px;
}
@media only screen and (max-width: 991px) {
  .homeCSecA .content .listhosServi {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 675px) {
  .homeCSecA .content .listhosServi {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 675px) {
  .homeCSecA .link_btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .homeCSecA .link_btn a.btn_purpule {
    display: none;
  }
}

.casrdServiceH .flex {
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .casrdServiceH .flex {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .casrdServiceH .flex {
    align-items: center;
    justify-content: center;
  }
}
.casrdServiceH .flex .col {
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
  padding: 10px;
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .casrdServiceH .flex .col {
    padding: 10px;
    max-width: unset;
    flex: 1;
  }
}
@media only screen and (max-width: 675px) {
  .casrdServiceH .flex .col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    width: 100%;
  }
}
.casrdServiceH .item a {
  display: block;
  text-align: center;
}
.casrdServiceH .item a .icon img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .casrdServiceH .item a .icon img {
    width: auto;
    height: 60px;
  }
}
.casrdServiceH .item a p {
  color: var(--black);
  margin: 12px 0;
}
@media only screen and (max-width: 1024px) {
  .casrdServiceH .item a p {
    margin: 6px 0;
    line-height: 18px;
    font-size: 14px;
  }
}

.homeCSecB {
  padding: 70px 0;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .homeCSecB {
    padding: 40px 0;
  }
}
.homeCSecB .heading {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .homeCSecB .heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 675px) {
  .homeCSecB .heading {
    margin-bottom: 20px;
  }
}

.HomeStoryCOntent {
  max-width: 926px;
  width: 100%;
  margin: 0 auto;
}
.HomeStoryCOntent .wrap {
  position: relative;
  display: flex;
}
.HomeStoryCOntent .wrap .img {
  flex: 0 1 40%;
  max-width: 40%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .HomeStoryCOntent .wrap .img {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .HomeStoryCOntent .wrap .img svg {
    width: 180px;
    height: 300px;
    display: block;
    margin: 0 auto;
  }
}
.HomeStoryCOntent .wrap .content {
  flex: 0 1 60%;
  max-width: 60%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .HomeStoryCOntent .wrap .content {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.HomeStoryCOntent .strCounter {
  margin: 50px 0;
}
@media only screen and (max-width: 1024px) {
  .HomeStoryCOntent .strCounter {
    margin: 20px 0;
  }
}
.HomeStoryCOntent .strCounter ul {
  display: flex;
}
@media only screen and (max-width: 520px) {
  .HomeStoryCOntent .strCounter ul {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.HomeStoryCOntent .strCounter ul li {
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
}
@media only screen and (max-width: 520px) {
  .HomeStoryCOntent .strCounter ul li {
    flex: 0 1 48%;
    max-width: 48%;
    width: 100%;
    border: 1px solid #d5d5d5;
    padding: 10px 0;
    border-radius: 4px;
  }
}
.HomeStoryCOntent .strCounter .count {
  font-size: 30px;
  color: var(--black);
  font-family: var(--optima);
}
@media only screen and (max-width: 520px) {
  .HomeStoryCOntent .strCounter .count {
    font-size: 25px;
  }
}
.HomeStoryCOntent .strCounter p {
  color: var(--black);
}
@media only screen and (max-width: 520px) {
  .HomeStoryCOntent .strCounter p {
    color: #666;
  }
}
.HomeStoryCOntent .link_arrow a {
  color: var(--purple);
  padding-left: 0;
  border: 0;
}
.HomeStoryCOntent .link_arrow a:hover {
  background: var(--white);
}
.HomeStoryCOntent .link_arrow a svg path {
  stroke: var(--purple);
}

.homeCSecC {
  background: var(--l-gray);
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .homeCSecC {
    padding: 40px 0;
  }
}
.homeCSecC .heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .homeCSecC .heading {
    margin-bottom: 40px;
  }
}
.homeCSecC .link_arrow {
  margin-top: 35px;
  text-align: center;
}
.homeCSecC .link_arrow a {
  color: var(--purple);
}
.homeCSecC .link_arrow a svg path {
  stroke: var(--purple);
}
.homeCSecC .link_arrow a:hover {
  color: var(--white);
}
.homeCSecC .link_arrow a:hover svg path {
  stroke: var(--white);
}
.homeCSecC .owl-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
  gap: 14px;
}
.homeCSecC .owl-carousel .owl-nav button {
  width: 59px;
  height: 59px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  border-radius: 60px;
}
.homeCSecC .owl-carousel .item {
  position: relative;
}
.homeCSecC .owl-carousel .item .img {
  overflow: hidden;
  border-radius: 8px;
}
.homeCSecC .owl-carousel .item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  text-align: center;
}
.homeCSecC .owl-carousel .item .content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(217, 217, 217, 0.55);
  -webkit-backdrop-filter: blur(8.1499996185px);
          backdrop-filter: blur(8.1499996185px);
}
.homeCSecC .owl-carousel .item .content .name, .homeCSecC .owl-carousel .item .content .desig {
  position: relative;
  z-index: 1;
  color: var(--black);
}
.homeCSecC .owl-carousel .item .content .name {
  font-size: 24px;
}
@media only screen and (max-width: 675px) {
  .homeCSecC .owl-carousel .item .content .name {
    font-size: 20px;
  }
}
.homeCSecC .owl-carousel .item .content .desig {
  font-size: 14px;
}

.homeCSecD {
  padding: 60px 0 70px;
}
@media only screen and (max-width: 991px) {
  .homeCSecD {
    padding: 40px 0 20px;
  }
}
.homeCSecD .heading {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .homeCSecD .heading {
    margin-bottom: 30px;
  }
}
.homeCSecD .ListHospCar .flex {
  flex-wrap: wrap;
}
.homeCSecD .ListHospCar .flex .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width: 991px) {
  .homeCSecD .ListHospCar .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .homeCSecD .ListHospCar .flex .col {
    padding: 10px;
  }
}
@media only screen and (max-width: 520px) {
  .homeCSecD .ListHospCar .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.homeCSecD .link_btn {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 520px) {
  .homeCSecD .link_btn {
    margin-top: 22px;
  }
}

.ListHospCar .card {
  height: 100%;
}
.ListHospCar .card a {
  display: flex;
  border-radius: 10px;
  background: #FFF;
  overflow: hidden;
  box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.15);
  transition: 0.5s ease;
  height: 100%;
}
@media only screen and (max-width: 675px) {
  .ListHospCar .card a {
    flex-wrap: wrap;
  }
}
.ListHospCar .card a:hover {
  box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.3);
}
.ListHospCar .card a .img {
  flex: 0 1 129px;
  max-width: 129px;
  width: 100%;
}
@media only screen and (max-width: 1100px) {
  .ListHospCar .card a .img {
    flex: 0 1 109px;
    max-width: 109px;
    width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .ListHospCar .card a .img {
    line-height: 0;
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    height: 130px;
  }
}
@media only screen and (max-width: 520px) {
  .ListHospCar .card a .img {
    flex: 0 1 115px;
    max-width: 115px;
    width: 100%;
    height: auto;
  }
}
.ListHospCar .card a .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 675px) {
  .ListHospCar .card a .img img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.ListHospCar .card a .text {
  flex: 1;
  padding: 15px;
}
@media only screen and (max-width: 675px) {
  .ListHospCar .card a .text {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .ListHospCar .card a .text {
    max-width: none;
    flex: 1;
  }
}
.ListHospCar .card a .content h5 {
  line-height: 25px;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 6px;
  font-family: var(--circular);
}
@media only screen and (max-width: 520px) {
  .ListHospCar .card a .content h5 {
    line-height: 22px;
  }
}
.ListHospCar .card a .content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .ListHospCar .card a .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
  }
}

.homeCSecE {
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .homeCSecE {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 520px) {
  .homeCSecE {
    padding: 20px 0;
  }
}
.homeCSecE .heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .homeCSecE .heading {
    margin-bottom: 40px;
  }
}

.HapyPatList .col {
  flex: 0 1 17%;
  max-width: 17%;
  width: 100%;
  padding: 8px;
  transition: 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 675px) {
  .HapyPatList .col {
    flex: 0 1 10%;
    max-width: 10%;
    width: 100%;
    padding: 3px;
  }
}
.HapyPatList .col.active {
  flex: 0 1 49%;
  max-width: 49%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .HapyPatList .col.active {
    flex: 0 1 75%;
    max-width: 75%;
    width: 100%;
  }
}
.HapyPatList .col.active .card .videoIcon {
  right: 20px;
}
.HapyPatList .card {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.HapyPatList .card .img {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  line-height: 0;
}
.HapyPatList .card .img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.31%, rgba(0, 0, 0, 0.8) 92.04%);
}
.HapyPatList .card .img img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 675px) {
  .HapyPatList .card .img img {
    height: 260px;
  }
}
.HapyPatList .card .text {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  padding: 20px;
}
.HapyPatList .card .text .name {
  color: var(--white);
  font-size: 24px;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .HapyPatList .card .text .name {
    font-size: 20px;
  }
}
.HapyPatList .card .text .loc {
  color: var(--white);
  font-size: 14px;
  white-space: nowrap;
}
.HapyPatList .card .videoIcon {
  position: absolute;
  bottom: 30px;
  right: -300px;
  background: transparent;
  transition: 0.5s ease;
}

.banner-services {
  position: relative;
}
.banner-services .bg {
  line-height: 0;
  position: relative;
}
.banner-services .bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.05%, rgba(0, 0, 0, 0.8) 64.23%);
}
.banner-services .bg img {
  width: 100%;
  height: var(--banner-full);
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-services .banner-content {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
}
.banner-services .banner-content .content {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.banner-services .banner-content .content h1 {
  color: var(--white);
}
.banner-services .banner-content .content p {
  color: var(--white);
  margin: 15px 0;
  font-size: 18px;
}

.servInnSecA {
  padding: 45px 0;
  background: var(--white);
}
@media only screen and (max-width: 767px) {
  .servInnSecA {
    padding: 40px 0;
  }
}
.servInnSecA .form-filterDoc.exWidth {
  margin-bottom: 3rem;
}
.servInnSecA .flex {
  flex-wrap: wrap;
}
.servInnSecA .flex .col {
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
  padding: 10px;
}
@media only screen and (max-width: 1024px) {
  .servInnSecA .flex .col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .servInnSecA .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .servInnSecA .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}

.ServiCardDesi .card {
  height: 100%;
}
.ServiCardDesi .card a {
  display: block;
  position: relative;
  padding: 17px 15px;
  border-radius: 12px;
  border: 1px solid #CDCACA;
  background: #FFF;
  height: 100%;
  box-shadow: 1px 1px 15.7px 2px transparent;
  transition: 0.5s ease;
}
.ServiCardDesi .card a .SerName {
  color: #000;
  font-style: normal;
  font-weight: 450;
  font-size: 22px;
  line-height: 26px;
  position: relative;
  padding-bottom: 20px;
  padding-right: 70px;
}
@media only screen and (max-width: 991px) {
  .ServiCardDesi .card a .SerName {
    font-size: 20px;
    line-height: 23px;
  }
}
.ServiCardDesi .card a .SerName::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 5px;
  left: 0;
  width: 39px;
  background: var(--purple);
}
.ServiCardDesi .card a .icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
.ServiCardDesi .card a .icon img {
  width: 65px;
}
.ServiCardDesi .card a p {
  color: var(--gray);
  margin: 30px 0;
  font-size: 15px;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .ServiCardDesi .card a p {
    margin: 20px 0;
  }
}
.ServiCardDesi .card a .crlIcon {
  margin-bottom: 9px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background: var(--l-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.ServiCardDesi .card:hover a {
  box-shadow: 1px 1px 15.7px 2px rgba(0, 0, 0, 0.15);
}
.ServiCardDesi .card:hover .crlIcon {
  background: var(--purple);
}
.ServiCardDesi .card:hover .crlIcon svg path {
  fill: var(--white);
}

.banner-servDet .bg {
  line-height: 0;
  position: relative;
}
.banner-servDet .bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  top: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5803921569), rgba(0, 0, 0, 0.768627451), transparent);
}
.banner-servDet .bg img {
  width: 100%;
  height: var(--banner-full);
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-servDet .banner-content {
  position: absolute;
  top: 66%;
  transform: translateY(-66%);
  left: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .banner-servDet .banner-content {
    top: 46%;
  }
}
.banner-servDet .banner-content .content {
  max-width: 660px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .banner-servDet .banner-content .content {
    text-align: center;
  }
}
@media only screen and (max-width: 675px) {
  .banner-servDet .banner-content .content {
    padding: 0 10px;
  }
}
.banner-servDet .banner-content .content h1 {
  color: var(--white);
}
.banner-servDet .banner-content .content p {
  color: var(--white);
  margin: 15px 0;
  font-size: 18px;
}
@media only screen and (max-width: 675px) {
  .banner-servDet .banner-content .content p {
    line-height: 1.2;
  }
}

.serviseDetails {
  padding: 80px 0;
}
@media only screen and (max-width: 991px) {
  .serviseDetails {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 675px) {
  .serviseDetails {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .serviseDetails .flex {
    flex-wrap: wrap;
  }
}
.serviseDetails .flex .col1 {
  flex: 0 1 70%;
  max-width: 70%;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .serviseDetails .flex .col1 {
    flex: 0 1 65%;
    max-width: 65%;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .serviseDetails .flex .col1 {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.serviseDetails .flex .col2 {
  padding-left: 25px;
  flex: 0 1 30%;
  max-width: 30%;
  width: 100%;
  flex: 0 1 35%;
  max-width: 35%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .serviseDetails .flex .col2 {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 0px;
  }
}
.serviseDetails .content {
  max-width: 750px;
}
.serviseDetails .content h2, .serviseDetails .content h3, .serviseDetails .content h4, .serviseDetails .content h5, .serviseDetails .content h6 {
  color: var(--black);
}
.serviseDetails .content h2, .serviseDetails .content h3, .serviseDetails .content h4, .serviseDetails .content h5, .serviseDetails .content h6, .serviseDetails .content p, .serviseDetails .content ul, .serviseDetails .content ol {
  margin-bottom: 25px;
}
.serviseDetails .content p {
  line-height: 30px;
  text-align: justify;
}
.serviseDetails .content ul {
  padding-left: 20px;
}
.serviseDetails .content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.serviseDetails .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 20px;
}

.sideBarQukAcForm {
  position: sticky;
  top: 130px;
}
@media only screen and (max-width: 991px) {
  .sideBarQukAcForm {
    position: static;
    margin-top: 40px;
  }
}
.sideBarQukAcForm .form-wrap {
  background: var(--l-gray);
  padding: 33px;
  border-radius: 8px;
}
.sideBarQukAcForm .form-wrap h3 {
  color: var(--black);
  text-align: center;
  margin-bottom: 28px;
}
@media only screen and (max-width: 991px) {
  .sideBarQukAcForm .form {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 991px) {
  .sideBarQukAcForm .form .form-group {
    padding: 0 8px;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .sideBarQukAcForm .form .form-group {
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .sideBarQukAcForm .form .form-group:first-child, .sideBarQukAcForm .form .form-group:nth-child(2) {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .sideBarQukAcForm .form .form-group:first-child, .sideBarQukAcForm .form .form-group:nth-child(2) {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.sideBarQukAcForm .form .form-group .form-control {
  background: transparent;
}
.sideBarQukAcForm .form .link_btn button.btn_purpule {
  width: 100%;
}

.serVTretOption {
  padding: 60px 0;
  background: var(--l-gray);
}
@media only screen and (max-width: 991px) {
  .serVTretOption {
    padding: 40px 0;
  }
}
.serVTretOption .flex {
  flex-wrap: wrap;
}
.serVTretOption .flex .colA {
  flex: 0 1 45%;
  max-width: 45%;
  width: 100%;
  padding-right: 25px;
}
@media only screen and (max-width: 991px) {
  .serVTretOption .flex .colA {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .serVTretOption .flex .colA {
    padding: 0;
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    order: 2;
  }
}
.serVTretOption .flex .colB {
  padding-left: 25px;
  flex: 0 1 55%;
  max-width: 55%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .serVTretOption .flex .colB {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .serVTretOption .flex .colB {
    padding: 0;
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    order: 1;
  }
}
@media only screen and (max-width: 991px) {
  .serVTretOption .img {
    position: sticky;
    top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .serVTretOption .img {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .serVTretOption .img img {
    position: static;
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
}
.serVTretOption .serTreOpTab h2 {
  color: var(--black);
}
@media only screen and (max-width: 520px) {
  .serVTretOption .serTreOpTab h2 {
    text-align: center;
  }
}
.serVTretOption .serTreOpTab .tabwrap {
  display: flex;
  gap: 50px;
  margin: 30px 0;
}
@media only screen and (max-width: 991px) {
  .serVTretOption .serTreOpTab .tabwrap {
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 10px;
    gap: 20px;
  }
}
.serVTretOption .serTreOpTab .tabwrap .tab {
  color: var(--gray);
  position: relative;
  padding: 10px 0 8px;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .serVTretOption .serTreOpTab .tabwrap .tab {
    white-space: nowrap;
  }
}
.serVTretOption .serTreOpTab .tabwrap .tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--purple);
  width: 0%;
  transition: 0.6s ease;
}
.serVTretOption .serTreOpTab .tabwrap .tab.active {
  color: var(--purple);
}
.serVTretOption .serTreOpTab .tabwrap .tab.active::after {
  width: 100%;
}
.serVTretOption .serTreOpTab .tabwrap .tab:hover {
  color: var(--purple);
}
.serVTretOption .serTreOpTab .tabwrap .tab:hover::after {
  width: 100%;
}
.serVTretOption .tratContWra .tab {
  display: none;
}
.serVTretOption .tratContWra .tab .content p {
  line-height: 24px;
  text-align: justify;
}
.serVTretOption .link_btn {
  margin-top: 45px;
}
@media only screen and (max-width: 991px) {
  .serVTretOption .link_btn {
    margin-top: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .serVTretOption .link_btn a {
    margin-right: 8px;
    padding: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .serVTretOption .link_btn a svg {
    margin-left: 5px;
  }
}

.SerDet-FaqPage {
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .SerDet-FaqPage {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 675px) {
  .SerDet-FaqPage {
    padding: 30px 0;
  }
}
.SerDet-FaqPage .heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .SerDet-FaqPage .heading {
    margin-bottom: 40px;
  }
}
.SerDet-FaqPage .colA {
  max-width: 300px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .SerDet-FaqPage .colA {
    display: none;
  }
}
.SerDet-FaqPage .colB {
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .SerDet-FaqPage .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.SerDet-FaqPage .img {
  position: sticky;
  top: 135px;
}

.faqListQA .list {
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #CCC;
}
.faqListQA .list .faqQ {
  color: #000;
  font-size: 20px;
  font-style: normal;
  line-height: 26px;
  padding: 17px;
  cursor: pointer;
  position: relative;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .faqListQA .list .faqQ {
    padding: 10px;
    padding-right: 40px;
    line-height: 20px;
    font-size: 14px;
  }
}
.faqListQA .list .faqQ::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 16px;
  width: 29px;
  height: 29px;
  background: url("../icons/serv.svg");
  transform: rotate(0deg);
  transition: 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .faqListQA .list .faqQ::after {
    right: 10px;
  }
}
.faqListQA .list .faqQ.active::after {
  transform: rotate(-90deg);
}
.faqListQA .list .faqA {
  display: none;
}
.faqListQA .list .faqA .content {
  padding: 20px;
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .faqListQA .list .faqA .content {
    padding: 8px;
  }
}
.faqListQA .list .faqA .content h4, .faqListQA .list .faqA .content h5, .faqListQA .list .faqA .content h6, .faqListQA .list .faqA .content ul, .faqListQA .list .faqA .content ol, .faqListQA .list .faqA .content p {
  margin: 0 0 24px;
  line-height: 1.5;
}
.faqListQA .list .faqA .content h4 {
  font-size: 18px;
}
.faqListQA .list .faqA .content h5 {
  font-size: 17px;
}
.faqListQA .list .faqA .content h6 {
  font-size: 16px;
}
.faqListQA .list .faqA .content p, .faqListQA .list .faqA .content li {
  color: var(--gray);
}
.faqListQA .list .faqA .content p {
  text-align: justify;
}
.faqListQA .list .faqA .content ul {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .faqListQA .list .faqA .content ul {
    padding-left: 0;
  }
}
.faqListQA .list .faqA .content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.faqListQA .list .faqA .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 20px;
}

.faqListTab .tab {
  display: none;
}

.servRelated {
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .servRelated {
    padding: 40px 0;
  }
}
.servRelated .heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .servRelated .heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .servRelated .heading {
    margin-bottom: 20px;
  }
}
.servRelated .relatedSerSlide .item {
  padding: 10px;
}
.servRelated .relatedSerSlide .item .card a {
  padding: 18px;
}
.servRelated .relatedSerSlide .item .card:hover a {
  box-shadow: none;
}
.servRelated .relatedSerSlide .owl-nav {
  position: absolute;
  right: 10px;
  top: -100px;
  display: flex;
  gap: 30px;
}
.servRelated .relatedSerSlide .owl-nav button {
  width: 59px;
  height: 59px;
  border: 1px solid var(--gray);
  border-radius: 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.servRelated .relatedSerSlide .owl-nav button:hover {
  border-color: var(--purple);
  background: var(--purple);
}
.servRelated .relatedSerSlide .owl-nav button:hover img {
  filter: grayscale(1) brightness(0) invert(1);
}

.findDocHerSe {
  margin-top: 124px;
  padding: 75px 0 30px;
  background: var(--white);
}
@media only screen and (max-width: 767px) {
  .findDocHerSe {
    padding: 20px 0 50px;
  }
}
.findDocHerSe .filterDoc {
  max-width: 735px;
  margin: 0 auto;
}
.findDocHerSe .filterDoc h1 {
  color: var(--black);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 30px;
}
.findDocHerSe .form-filterDoc .flex {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .findDocHerSe .form-filterDoc .flex {
    flex-wrap: wrap;
  }
}
.findDocHerSe .form-filterDoc .colA, .findDocHerSe .form-filterDoc .colB, .findDocHerSe .form-filterDoc .colC {
  padding: 1.2rem;
}
@media only screen and (max-width: 520px) {
  .findDocHerSe .form-filterDoc .colA, .findDocHerSe .form-filterDoc .colB, .findDocHerSe .form-filterDoc .colC {
    padding: 1rem 0;
  }
}
.findDocHerSe .form-filterDoc .colA {
  flex: 0 1 40%;
  max-width: 40%;
  width: 100%;
}
@media only screen and (max-width: 520px) {
  .findDocHerSe .form-filterDoc .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding-bottom: 0;
  }
}
.findDocHerSe .form-filterDoc .colB {
  flex: 0 1 40%;
  max-width: 40%;
  width: 100%;
}
@media only screen and (max-width: 520px) {
  .findDocHerSe .form-filterDoc .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding-bottom: 0;
  }
}
.findDocHerSe .form-filterDoc .colC {
  flex: 0 1 20%;
  max-width: 20%;
  width: 100%;
}
@media only screen and (max-width: 520px) {
  .findDocHerSe .form-filterDoc .colC {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 0rem;
  }
}
.findDocHerSe .form-filterDoc .btnSearch .btn {
  display: inline-flex;
  height: 42px;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--purple);
  transition: 0.5s ease;
}
.findDocHerSe .form-filterDoc .btnSearch .btn:hover {
  background: var(--purple-d);
}

.CanCarFindDocPag {
  padding-bottom: 60px;
}
.CanCarFindDocPag .flex {
  flex-wrap: wrap;
}
.CanCarFindDocPag .flex .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 10px;
}
@media only screen and (max-width: 834px) {
  .CanCarFindDocPag .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .CanCarFindDocPag .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 10px 0;
  }
}
.CanCarFindDocPag .flex .record-not-found {
  margin: 0 auto;
  font-size: 20px;
  color: #000;
}
.CanCarFindDocPag .item {
  position: relative;
  cursor: pointer;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}
.CanCarFindDocPag .item .img {
  overflow: hidden;
  line-height: 0;
}
.CanCarFindDocPag .item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  text-align: center;
}
.CanCarFindDocPag .item .content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(217, 217, 217, 0.55);
  -webkit-backdrop-filter: blur(8.1499996185px);
          backdrop-filter: blur(8.1499996185px);
}
.CanCarFindDocPag .item .content .name, .CanCarFindDocPag .item .content .desig {
  position: relative;
  z-index: 1;
  color: var(--black);
}
.CanCarFindDocPag .item .content .name {
  font-size: 24px;
}
.CanCarFindDocPag .item .content .desig {
  font-size: 14px;
}

.modelTeamDetails {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 645px;
  z-index: 11;
  background: var(--white);
  width: 100%;
  padding: 50px;
  transform: translateX(100%);
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  .modelTeamDetails {
    padding: 50px 15px;
  }
}
.modelTeamDetails.is-open {
  transform: translateX(0%);
}
.modelTeamDetails .close::before {
  content: "Close";
  position: absolute;
  top: 18px;
  left: -30px;
  font-size: 14px;
}
.modelTeamDetails .close svg {
  color: var(--black);
}
.modelTeamDetails .close svg path {
  fill: var(--black);
}
.modelTeamDetails .modelBody {
  height: 100%;
}
.modelTeamDetails .modelTemWrap {
  height: 100%;
  overflow-y: scroll;
}
.modelTeamDetails .modelTemWrap::-webkit-scrollbar {
  width: 5px;
}
.modelTeamDetails .modelTemWrap::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
.modelTeamDetails .modelTemWrap::-webkit-scrollbar-thumb {
  background-color: var(--purple);
}
.modelTeamDetails .modelTemWrap .TemWrap .img {
  padding-bottom: 20px;
}
.modelTeamDetails .modelTemWrap .TemWrap .img img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
.modelTeamDetails .modelTemWrap .TemWrap .docSo {
  text-align: center;
}
.modelTeamDetails .modelTemWrap .TemWrap .docSo .name {
  color: var(--black);
  font-family: var(--optima);
  font-size: 30px;
  font-style: normal;
  line-height: normal;
}
.modelTeamDetails .modelTemWrap .TemWrap .docSo .desig {
  color: var(--black);
  line-height: normal;
  margin: 5px 0 6px;
}
.modelTeamDetails .modelTemWrap .TemWrap .docSo .quali {
  color: var(--gray);
}
.modelTeamDetails .modelTemWrap .link_btn {
  margin: 30px 0;
  text-align: center;
}
.modelTeamDetails .modelTemWrap p {
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .modelTeamDetails .modelTemWrap p {
    text-align: center;
  }
}

.findHospitalPag {
  margin-top: var(--header-height);
  background: var(--white);
}
.findHospitalPag .heading {
  padding: 80px 0 50px;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .findHospitalPag .heading {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 991px) {
  .findHospitalPag .heading {
    max-width: 520px;
  }
}
.findHospitalPag .heading h1 {
  color: var(--black);
}
@media only screen and (max-width: 991px) {
  .findHospitalPag .heading h1 {
    font-size: 35px;
  }
}
.findHospitalPag .flex {
  flex-wrap: wrap;
}
.findHospitalPag .flex .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .findHospitalPag .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .findHospitalPag .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}

.FindHoCard .col, .FindHoCard .item {
  padding: 13px;
}
@media only screen and (max-width: 1100px) {
  .FindHoCard .col, .FindHoCard .item {
    padding: 8px;
  }
}
@media only screen and (max-width: 520px) {
  .FindHoCard .col {
    padding: 10px 0;
  }
}
.FindHoCard .card {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(189, 189, 189, 0.5803921569);
}
.FindHoCard .card .img {
  position: relative;
}
.FindHoCard .card .img a {
  display: block;
  line-height: 0;
}
.FindHoCard .card .cardCOntent {
  padding: 14px;
}
.FindHoCard .card .cardCOntent > a {
  display: block;
}
.FindHoCard .card .cardCOntent .HosTitle {
  color: var(--black);
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 6px;
}
.FindHoCard .card .cardCOntent .hosLoc {
  color: var(--gray);
  font-size: 14px;
  line-height: 19px;
}
.FindHoCard .card .cardCOntent .line {
  height: 1px;
  background: #C5C5C5;
  margin: 25px 0 16px;
}
.FindHoCard .card .cardCOntent .amin {
  display: flex;
  margin: 0 0 30px;
}
.FindHoCard .card .cardCOntent .amin li {
  flex: 1;
}
.FindHoCard .card .cardCOntent .amin .title {
  color: var(--gray);
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 1px;
}
.FindHoCard .card .cardCOntent .amin .coun {
  color: var(--gray);
  white-space: nowrap;
  font-size: 15px;
}
.FindHoCard .card .cardCOntent .link_btn {
  display: flex;
  gap: 8px;
}
.FindHoCard .card .cardCOntent .link_btn a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 14px;
}
@media only screen and (max-width: 1100px) {
  .FindHoCard .card .cardCOntent .link_btn a {
    width: 100%;
    margin: 0;
  }
}
.FindHoCard .card .cardCOntent .link_btn a svg {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}
@media only screen and (max-width: 1100px) {
  .FindHoCard .card .cardCOntent .link_btn a.btn_purpule {
    display: none;
  }
}

.banner-hospDetail {
  position: relative;
}
.banner-hospDetail .bg {
  line-height: 0;
  position: relative;
}
.banner-hospDetail .bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.05%, rgba(0, 0, 0, 0.8) 64.23%);
}
.banner-hospDetail .bg img {
  width: 100%;
  height: var(--banner-full);
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-hospDetail .banner-content {
  position: absolute;
  bottom: 66px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .banner-hospDetail .banner-content {
    bottom: 30px;
  }
}
.banner-hospDetail .banner-content .content {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .banner-hospDetail .banner-content .content {
    text-align: center;
  }
}
.banner-hospDetail .banner-content .content h1 {
  color: var(--white);
  max-width: 420px;
}
@media only screen and (max-width: 1100px) {
  .banner-hospDetail .banner-content .content h1 {
    max-width: 355px;
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-hospDetail .banner-content .content h1 {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail .banner-content .content h1 {
    margin-top: auto;
  }
}
.banner-hospDetail .banner-content .content p {
  color: var(--white);
  margin: 10px 0;
  font-size: 18px;
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail .banner-content .content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-hospDetail .banner-content .content p {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 16px;
  }
}
.banner-hospDetail .counterWrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 647px;
}
@media only screen and (max-width: 1100px) {
  .banner-hospDetail .counterWrap {
    max-width: 590px;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .banner-hospDetail .counterWrap {
    max-width: none;
    position: static;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-hospDetail .counterWrap {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-hospDetail .counterWrap .flex {
    flex-wrap: wrap;
  }
}
.banner-hospDetail .counterWrap .flex .col {
  flex: 1;
  padding: 0 15px;
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail .counterWrap .flex .col {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-hospDetail .counterWrap .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    padding: 8px;
  }
}
.banner-hospDetail .counterWrap .li {
  color: var(--white);
  font-family: var(--optima);
  font-weight: 400;
  text-align: center;
  font-size: 36px;
  line-height: 50px;
}
@media only screen and (max-width: 1100px) {
  .banner-hospDetail .counterWrap .li {
    font-size: 25px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail .counterWrap .li {
    font-size: 22px;
    line-height: 23px;
  }
}
.banner-hospDetail .counterWrap p {
  white-space: nowrap;
  font-size: 18px;
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  .banner-hospDetail .counterWrap p {
    font-size: 16px;
  }
}

.HosPDetMoreHosp {
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .HosPDetMoreHosp {
    padding: 0 0 30px 0;
  }
}
.HosPDetMoreHosp .heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .HosPDetMoreHosp .heading {
    margin-bottom: 30px;
  }
}
.HosPDetMoreHosp .owl-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
  gap: 14px;
}
.HosPDetMoreHosp .owl-carousel .owl-nav button {
  width: 59px;
  height: 59px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  border-radius: 60px;
}

.homeCSecB.About-in-secA {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .homeCSecB.About-in-secA {
    padding: 40px 0;
  }
}

.relatedSerSlide .owl-stage {
  display: flex;
}
.relatedSerSlide .owl-stage .item, .relatedSerSlide .owl-stage .card, .relatedSerSlide .owl-stage .card a {
  height: 100%;
}

.About-in-secB {
  background: var(--l-gray);
}
.About-in-secB .img {
  line-height: 0;
}
@media only screen and (max-width: 991px) {
  .About-in-secB .img {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .About-in-secB .flex {
    flex-wrap: wrap;
  }
}
.About-in-secB .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .About-in-secB .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.About-in-secB .visionMission {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.About-in-secB .visionMission .wrap {
  max-width: 450px;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  .About-in-secB .visionMission .wrap {
    max-width: 100%;
    padding: 25px;
    padding-bottom: 30px;
  }
}
.About-in-secB .visionMission .tablist {
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1100px) {
  .About-in-secB .visionMission .tablist {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 675px) {
  .About-in-secB .visionMission .tablist {
    justify-content: center;
    align-items: center;
  }
}
.About-in-secB .visionMission .tablist .tab {
  padding: 10px 0;
  margin-right: 30px;
  cursor: pointer;
  font-size: 40px;
  line-height: 30px;
  color: var(--gray);
}
@media only screen and (max-width: 991px) {
  .About-in-secB .visionMission .tablist .tab {
    font-size: 25px;
    line-height: 30px;
  }
}
.About-in-secB .visionMission .tablist .tab.active {
  color: var(--black);
}
@media only screen and (max-width: 675px) {
  .About-in-secB .tabContent .content {
    text-align: center;
  }
}
.About-in-secB .tabContent .content p {
  font-size: 30px;
  line-height: 36px;
  color: var(--gray);
}
@media only screen and (max-width: 1100px) {
  .About-in-secB .tabContent .content p {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .About-in-secB .tabContent .content p {
    font-size: 18px;
    line-height: 23px;
  }
}
.About-in-secB .tabContent .tab:not(:last-child) {
  display: none;
}

.About-in-secC {
  padding: 100px 0;
}
.About-in-secC .heading {
  margin-bottom: 70px;
}

.ContactInSecA {
  background: var(--white);
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .ContactInSecA {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 520px) {
  .ContactInSecA {
    padding: 30px 0;
  }
}
.ContactInSecA .contactAddress {
  position: relative;
  padding-left: 180px;
}
@media only screen and (max-width: 991px) {
  .ContactInSecA .contactAddress {
    padding: 0;
  }
}
@media only screen and (max-width: 675px) {
  .ContactInSecA .contactAddress .flex {
    flex-wrap: wrap;
  }
}
.ContactInSecA .contactAddress .img {
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .ContactInSecA .contactAddress .img {
    display: none;
  }
}
.ContactInSecA .contactAddress .img img {
  max-width: 135px;
}
.ContactInSecA .contactAddress .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 4px 14px;
  padding-right: 0;
}
@media only screen and (max-width: 675px) {
  .ContactInSecA .contactAddress .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    padding: 6px;
  }
}
@media only screen and (max-width: 520px) {
  .ContactInSecA .contactAddress .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .ContactInSecA .contactAddress .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.ContactInSecA .contactAddress .item {
  position: relative;
  text-align: center;
  height: 100%;
  border: 1px solid #d1d0d0;
  border-radius: 12px;
  padding: 20px 15px;
}
.ContactInSecA .contactAddress .item .icon {
  display: block;
  text-align: center;
}
.ContactInSecA .contactAddress .item .icon svg {
  display: inline-block;
}
.ContactInSecA .contactAddress .item .title {
  font-size: 24px;
  color: var(--black);
  margin: 4px 0 8px;
}
.ContactInSecA .contactAddress .item p {
  color: var(--gray);
  font-size: 16px;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  .ContactInSecA .contactAddress .item p {
    line-height: 22px;
  }
}
.ContactInSecA .contactAddress .item p a {
  color: inherit;
  transition: 0.5s ease;
}
.ContactInSecA .contactAddress .item p a:hover {
  color: var(--purple);
}
.ContactInSecA .contactAddress .item .link_arrow {
  margin-top: 12px;
}
.ContactInSecA .contactAddress .item .link_arrow a {
  color: var(--purple);
  font-size: 16px;
  border: 0;
}
@media only screen and (max-width: 767px) {
  .ContactInSecA .contactAddress .item .link_arrow a {
    font-size: 14px;
    padding: 6px 8px;
  }
}
.ContactInSecA .contactAddress .item .link_arrow a svg path {
  stroke: var(--purple);
}
.ContactInSecA .contactAddress .item .link_arrow a:hover {
  background: transparent;
}

.ContactInSecB {
  padding: 80px 0;
  background: var(--l-gray);
}
@media only screen and (max-width: 675px) {
  .ContactInSecB {
    padding: 40px 0;
  }
}
.ContactInSecB .container {
  max-width: 770px;
}
.ContactInSecB .heading {
  margin-bottom: 50px;
}
.ContactInSecB .heading h2 {
  margin-bottom: 25px;
}
.ContactInSecB .heading p {
  color: var(--black);
}
.ContactInSecB .flex {
  flex-wrap: wrap;
}
.ContactInSecB .col1 {
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 8px;
}
.ContactInSecB .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 8px;
}
@media only screen and (max-width: 520px) {
  .ContactInSecB .col2 {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.ContactInSecB .form .form-group .form-control {
  background: transparent;
}
.ContactInSecB .form .link_btn {
  text-align: center;
  margin-top: 20px;
}

.MapSection {
  line-height: 0;
}
.MapSection iframe {
  width: 100%;
  height: 510px;
  filter: grayscale(1);
}
@media only screen and (max-width: 991px) {
  .MapSection iframe {
    height: 425px;
  }
}
@media only screen and (max-width: 675px) {
  .MapSection iframe {
    height: 325px;
  }
}

.blogListingPage {
  margin-top: var(--header-height);
  padding-bottom: 80px;
  background: var(--white);
}
@media only screen and (max-width: 1024px) {
  .blogListingPage {
    padding-bottom: 50px;
  }
}
.blogListingPage .heading {
  padding: 80px 0;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .blogListingPage .heading {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 675px) {
  .blogListingPage .heading {
    padding: 30px 0;
  }
}
.blogListingPage .heading h1 {
  color: var(--black);
}

.blogCardSty .flex {
  flex-wrap: wrap;
}
.blogCardSty .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .blogCardSty .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blogCardSty .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 675px) {
  .blogCardSty .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.blogCardSty .col, .blogCardSty .item {
  padding: 13px;
}
@media only screen and (max-width: 1024px) {
  .blogCardSty .col, .blogCardSty .item {
    padding: 10px;
  }
}
@media only screen and (max-width: 675px) {
  .blogCardSty .col {
    padding: 10px 0;
  }
}
.blogCardSty .card {
  box-shadow: 0 0 5px #a8a8a8;
  border-radius: 10px;
  overflow: hidden;
}
.blogCardSty .card .img a {
  line-height: 0;
  display: block;
}
.blogCardSty .card .img a img {
  width: 100%;
}
.blogCardSty .card .content {
  padding: 15px;
  padding-bottom: 30px;
  position: relative;
}
.blogCardSty .card .content h5 {
  color: var(--black);
  font-size: 24px;
  font-family: var(--circular);
  margin-bottom: 13px;
  line-height: 26px;
}
.blogCardSty .card .content h5 a {
  color: inherit;
  font-size: inherit;
}
.blogCardSty .card .content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 24px;
}
.blogCardSty .card .content .link_btn {
  margin-top: 20px;
}
@media only screen and (max-width: 675px) {
  .blogCardSty .card .content .link_btn {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .blogCardSty .card .content .link_btn .btn_white {
    padding: 8px 10px;
  }
}
@media only screen and (max-width: 675px) {
  .blogCardSty .card .content .link_btn .btn_white {
    text-align: center;
  }
}
.blogCardSty .card .content .postDate {
  position: absolute;
  right: 22px;
  font-size: 16px;
  color: rgba(102, 102, 102, 0.6980392157);
  bottom: 40px;
}
@media only screen and (max-width: 675px) {
  .blogCardSty .card .content .postDate {
    position: static;
    margin-top: 20px;
  }
}

.banner-hospDetail.bannerBlogDetail .container {
  position: relative;
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail.bannerBlogDetail .banner-content {
    bottom: 20%;
  }
}
.banner-hospDetail.bannerBlogDetail .banner-content .content {
  max-width: 530px;
  position: static;
}
@media only screen and (max-width: 767px) {
  .banner-hospDetail.bannerBlogDetail .banner-content .content {
    max-width: 430px;
  }
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail.bannerBlogDetail .banner-content .content {
    margin: 0 auto;
  }
}
.banner-hospDetail.bannerBlogDetail .banner-content .content h1 {
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .banner-hospDetail.bannerBlogDetail .banner-content .content h1 {
    font-size: 32px;
    text-align: left;
  }
}
@media only screen and (max-width: 675px) {
  .banner-hospDetail.bannerBlogDetail .banner-content .content h1 {
    font-size: 28px;
    text-align: center;
  }
}
.banner-hospDetail.bannerBlogDetail .share_post {
  position: absolute;
  bottom: 10px;
  right: 30px;
  z-index: 1;
}
@media only screen and (max-width: 520px) {
  .banner-hospDetail.bannerBlogDetail .share_post {
    bottom: -35px;
  }
}
.banner-hospDetail.bannerBlogDetail .share_post .btnsharepost {
  cursor: pointer;
}
.banner-hospDetail.bannerBlogDetail .share_post .btnsharepost span, .banner-hospDetail.bannerBlogDetail .share_post .btnsharepost svg {
  display: inline-block;
  vertical-align: middle;
}
.banner-hospDetail.bannerBlogDetail .share_post .btnsharepost svg {
  width: 30px;
  height: 30px;
}
.banner-hospDetail.bannerBlogDetail .share_post .btnsharepost svg path {
  fill: var(--white);
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink {
  background: var(--white);
  padding: 8px 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.0901960784);
  width: 150px;
  border-radius: 5px;
  text-align: left;
  position: absolute;
  bottom: 50px;
  right: 0px;
  display: none;
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li {
  display: block;
  margin: 0;
  vertical-align: middle;
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a {
  width: 100%;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  color: var(--black);
  transition: 0.5s ease;
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a svg, .banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a span {
  display: inline-block;
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a span {
  font-size: 14px;
  color: #666;
  font-family: var(--circular);
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a .svg {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a svg {
  width: 20px;
  height: 20px;
}
.banner-hospDetail.bannerBlogDetail .share_post .postLink ul li a svg path {
  fill: var(--purple-d);
}

.otherPages {
  margin-top: var(--header-height);
  background: var(--white);
  padding: 100px 0;
}
.otherPages .container {
  max-width: 675px;
}
.otherPages .content {
  text-align: center;
}
.otherPages .content h1 {
  color: var(--black);
  margin-bottom: 20px;
}
.otherPages .content p {
  color: var(--gray);
  margin-bottom: 40px;
}
.otherPages .content svg {
  width: 26px;
  height: 26px;
}

.policyPage {
  margin-top: var(--header-height);
}
.policyPage .bg {
  background: var(--l-gray);
  padding: 60px 0;
}
.policyPage .bg .content {
  text-align: center;
}

.privacyPolicyPage {
  padding: 60px 0;
}
.privacyPolicyPage .content h2, .privacyPolicyPage .content h3, .privacyPolicyPage .content h4, .privacyPolicyPage .content h5, .privacyPolicyPage .content h6 {
  color: var(--black);
}
.privacyPolicyPage .content h2, .privacyPolicyPage .content h3, .privacyPolicyPage .content h4, .privacyPolicyPage .content h5, .privacyPolicyPage .content h6, .privacyPolicyPage .content ul, .privacyPolicyPage .content ol, .privacyPolicyPage .content p {
  margin-bottom: 13px;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .privacyPolicyPage .content h2, .privacyPolicyPage .content h3, .privacyPolicyPage .content h4, .privacyPolicyPage .content h5, .privacyPolicyPage .content h6 {
    line-height: 1;
  }
}
.privacyPolicyPage .content p {
  line-height: 22px;
}
.privacyPolicyPage .content p b {
  font-weight: normal;
}
.privacyPolicyPage .content h2 {
  font-size: 42px;
}
@media only screen and (max-width: 991px) {
  .privacyPolicyPage .content h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 675px) {
  .privacyPolicyPage .content h2 {
    font-size: 32px;
  }
}
.privacyPolicyPage .content h3 {
  font-size: 36px;
}
@media only screen and (max-width: 991px) {
  .privacyPolicyPage .content h3 {
    font-size: 30px;
  }
}
.privacyPolicyPage .content h4 {
  font-size: 33px;
}
@media only screen and (max-width: 991px) {
  .privacyPolicyPage .content h4 {
    font-size: 26px;
  }
}
.privacyPolicyPage .content h5 {
  font-size: 26px;
}
@media only screen and (max-width: 991px) {
  .privacyPolicyPage .content h5 {
    font-size: 20px;
  }
}
.privacyPolicyPage .content h6 {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .privacyPolicyPage .content h6 {
    font-size: 16px;
  }
}
.privacyPolicyPage .content ul {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .privacyPolicyPage .content ul {
    padding-left: 0;
  }
}
.privacyPolicyPage .content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}
.privacyPolicyPage .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 20px;
}

.testimonialPage {
  margin-top: var(--header-height);
  padding-bottom: 80px;
  background: var(--white);
}
@media only screen and (max-width: 1024px) {
  .testimonialPage {
    padding-bottom: 50px;
  }
}
.testimonialPage .heading {
  padding: 50px 0 20px;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .testimonialPage .heading {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 675px) {
  .testimonialPage .heading {
    padding: 30px 0;
  }
}
.testimonialPage .heading h1 {
  color: var(--black);
}
.testimonialPage .testITab {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media only screen and (max-width: 520px) {
  .testimonialPage .testITab {
    gap: 20px;
  }
}
.testimonialPage .testITab .tab {
  font-weight: 500;
  color: var(--gray);
  font-size: 18px;
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  transition: 0.5s ease;
}
.testimonialPage .testITab .tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--purple-d);
  height: 1px;
  width: 0%;
  transition: 0.5s ease;
}
.testimonialPage .testITab .tab.active, .testimonialPage .testITab .tab:hover {
  color: var(--purple-d);
}
.testimonialPage .testITab .tab.active::after, .testimonialPage .testITab .tab:hover::after {
  width: 100%;
}

.testiMonialListin {
  background: var(--white);
  padding: 60px 0 0;
  margin: 0 auto;
}
@media only screen and (max-width: 675px) {
  .testiMonialListin {
    padding: 40px 0 0;
  }
}
.testiMonialListin .wrap {
  position: relative;
}
.testiMonialListin .wrap .quote {
  position: absolute;
  right: 15px;
  bottom: 0;
  opacity: 0.1;
  filter: opacity(0.3);
  pointer-events: none;
}
.testiMonialListin .wrap .quote img {
  max-width: 80px;
}
.testiMonialListin .listTab:not(:first-child) {
  display: none;
}
.testiMonialListin .serviseDetails {
  padding: 14px 30px;
  max-width: 775px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 675px) {
  .testiMonialListin .serviseDetails {
    padding: 15px;
  }
}
.testiMonialListin .serviseDetails p {
  line-height: 1.4;
  margin-bottom: 20px;
}
@media only screen and (max-width: 675px) {
  .testiMonialListin .serviseDetails p {
    font-size: 14px;
  }
}
.testiMonialListin .serviseDetails .name {
  font-weight: 500;
  color: var(--black);
  font-size: 18px;
}
.testiMonialListin .serviseDetails .desg {
  color: var(--gray);
  font-size: 14px;
}

.textTestionial .item {
  position: relative;
  margin-bottom: 15px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
}
.textTestionial .item .img {
  line-height: 0;
}
@media only screen and (max-width: 991px) {
  .textTestionial .item .img {
    height: 100%;
  }
}
.textTestionial .item .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.textTestionial .owl-carousel .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
  display: flex;
  gap: 14px;
}
.textTestionial .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  border-radius: 60px;
  transition: 0.5s ease;
}
.textTestionial .owl-carousel .owl-nav button.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.textTestionial .owl-carousel .owl-nav button img {
  width: 18px;
}
.textTestionial .owl-carousel .owl-nav button:hover {
  background: var(--purple);
  border-color: var(--purple);
}
.textTestionial .owl-carousel .owl-nav button:hover img {
  filter: grayscale(1) brightness(0) invert(1);
}
.textTestionial .flex {
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .textTestionial .flex {
    align-items: unset;
  }
}
.textTestionial .flex .colA {
  flex: 0 1 30%;
  max-width: 30%;
}
@media only screen and (max-width: 675px) {
  .textTestionial .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.textTestionial .flex .colB {
  flex: 0 1 70%;
  max-width: 70%;
}
@media only screen and (max-width: 675px) {
  .textTestionial .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.videoTestimoni .flex {
  flex-wrap: wrap;
}
.videoTestimoni .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 8px;
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .col {
    padding: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .videoTestimoni .col {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 520px) {
  .videoTestimoni .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.videoTestimoni .texstCard {
  position: relative;
}
.videoTestimoni .img {
  position: relative;
  line-height: 0;
}
.videoTestimoni .img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, var(--black), transparent);
  opacity: 0.9;
}
.videoTestimoni .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .content {
    padding: 8px;
  }
}
@media only screen and (max-width: 520px) {
  .videoTestimoni .content {
    padding: 15px;
    bottom: 0px;
  }
}
.videoTestimoni .content .name, .videoTestimoni .content .desg {
  color: var(--white);
}
.videoTestimoni .content .name {
  font-weight: 500;
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .content .name {
    font-size: 16px;
  }
}
.videoTestimoni .content .desg {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .content .desg {
    font-size: 12px;
  }
}
.videoTestimoni .videoIcon {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  background: transparent;
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .videoIcon {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .videoIcon::before {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .videoTestimoni .videoIcon svg {
    width: 11px;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    margin-bottom: 42px;
  }
}
footer .logo img {
  max-width: 150px;
}
footer .footerStrip {
  background: var(--l-gray);
}
@media only screen and (max-width: 675px) {
  footer .footerStrip .flex {
    flex-wrap: wrap;
  }
}
footer .footerStrip .flex .col {
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  footer .footerStrip .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  footer .footerStrip .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    border-bottom: 1px solid #D4D4D4;
  }
}
footer .footerStrip .flex .col:nth-child(2) {
  border-left: 1px solid #D4D4D4;
  border-right: 1px solid #D4D4D4;
}
@media only screen and (max-width: 675px) {
  footer .footerStrip .flex .col:nth-child(2) {
    border-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  footer .footerStrip .flex .col:nth-child(2) {
    border-left: 0;
  }
}
footer .footerStrip .flex .col:nth-child(3) {
  border-right: 1px solid #D4D4D4;
}
@media only screen and (max-width: 675px) {
  footer .footerStrip .flex .col:nth-child(3) {
    border-right: 0;
    border-top: 1px solid #D4D4D4;
  }
}
@media only screen and (max-width: 520px) {
  footer .footerStrip .flex .col:nth-child(3) {
    border-top: 0;
  }
}
footer .footerStrip .flex .col:nth-child(4) {
  border-right: 1px solid #D4D4D4;
}
@media only screen and (max-width: 675px) {
  footer .footerStrip .flex .col:nth-child(4) {
    border-top: 1px solid #D4D4D4;
    border-left: 1px solid #D4D4D4;
    border-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  footer .footerStrip .flex .col:nth-child(4) {
    border: 0;
  }
}
footer .footerStrip .item {
  position: relative;
}
footer .footerStrip .item a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 20px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  footer .footerStrip .item a {
    gap: 5px;
    padding: 18px 8px;
  }
}
@media only screen and (max-width: 991px) {
  footer .footerStrip .item .icon svg {
    width: 25px;
    height: 25px;
  }
}
footer .footerStrip .item .titl {
  color: var(--black);
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  footer .footerStrip .item .titl {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 8px;
  }
}
footer .footerStrip .item p {
  font-size: 12px;
  color: var(--gray);
}
footer .footer-wrapper {
  padding: 55px 0 25px;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-wrapper {
    padding-bottom: 15px;
  }
}
footer .footer-wrapper .flex {
  flex-wrap: wrap;
}
footer .footer-wrapper .colA {
  flex: 0 1 32%;
  max-width: 32%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .colA {
    flex: 0 1 16%;
    max-width: 16%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-wrapper .colA {
    display: none;
  }
}
footer .footer-wrapper .colB {
  flex: 0 1 68%;
  max-width: 68%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .colB {
    flex: 0 1 84%;
    max-width: 84%;
    width: 100%;
    padding-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-wrapper .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  footer .logo img {
    width: 100%;
  }
}
footer .navWrap .navList {
  display: flex;
  padding-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  footer .navWrap .navList {
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 675px) {
  footer .navWrap .navList {
    flex-wrap: wrap;
  }
}
footer .navWrap .navList .col1 {
  flex: 0 1 22%;
  max-width: 22%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  footer .navWrap .navList .col1 {
    flex: 0 1 33.33%;
    max-width: 33.33%;
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  footer .navWrap .navList .col1 {
    flex: 0 1 50%;
    max-width: 50%;
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .navWrap .navList .col2 {
  flex: 0 1 34%;
  max-width: 34%;
  width: 100%;
}
@media only screen and (max-width: 675px) {
  footer .navWrap .navList .col2 {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    margin-top: 25px;
  }
}
footer .navWrap .navList ul li a {
  color: var(--gray);
  display: inline-block;
  padding: 3px 0px;
  transition: 0.5s ease;
}
footer .navWrap .navList ul li a:hover {
  color: var(--purple);
}
footer .navWrap .navList .socialLinks ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .navWrap .title {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  margin-bottom: 15px;
}
@media only screen and (max-width: 520px) {
  footer .navWrap .title {
    margin-bottom: 8px;
  }
}
footer .copyRight {
  border-top: 2px solid var(--purple);
  padding: 25px 0 0;
  text-align: center;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  footer .copyRight {
    padding-top: 15px;
  }
}
footer .copyRight p span {
  padding: 0 10px;
}
footer .copyRight p span:last-child {
  border-left: 1px solid var(--gray);
}
@media only screen and (max-width: 520px) {
  footer .copyRight p span:last-child {
    border: 0;
  }
}
footer .copyRight span, footer .copyRight em, footer .copyRight img, footer .copyRight a {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  color: inherit;
}
footer .copyRight a {
  transition: 0.5s ease;
}
footer .copyRight a:hover {
  color: var(--purple);
}
footer .copyRight a img {
  margin-left: 6px;
}/*# sourceMappingURL=style.css.map */