@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,500;1,400&display=swap');

/*Default-CSS*/
input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}

input[type="file"]::-moz-file-upload-button {
  cursor: pointer;
}

input[type="file"]::-ms-file-upload-button {
  cursor: pointer;
}

input[type="file"]::-o-file-upload-button {
  cursor: pointer;
}

input[type="file"] {
  cursor: pointer;
}

html body {
  margin: 0;
  padding-top: 78px;
}

body p {
  font-family: var(--wp--preset--font-family--body);
}

*::-moz-selection {
  color: #000;
  background: #fff;
}

*::-webkit-selection {
  color: #000;
  background: #fff;
}

*::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

*:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

*::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

a,
span,
div a:hover,
div a:active,
button {
  text-decoration: none;
}

*::after,
*::before,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

ul,
ul li,
ol,
li {
  list-style: outside none none;

  color: #000;
}

body ul {
  margin: 0;
  padding: 0;
}

body .clearfix,
body .clear {
  clear: both;
  line-height: 100%;
}

body .clearfix {
  height: auto;
}

* {
  outline: none !important;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  /* For some Androids */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clr:after,
ul:after,
.clearfix:after,
li:after {
  clear: both;
  display: block;
  content: "";
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: bold;
  margin: 0 0 15px;
}

body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child {
  margin-bottom: 0;
}

div select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div select option {
  font-size: 13px;
  padding: 2px 5px;
  font-family: var(--wp--preset--font-family--body);
}

img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/*img[src^="data:image/svg+xml"] {
    background-color: #f2f2f2;
    animation: skeleton-pulse 1.5s infinite;
    border-radius: 5px;
    overflow: hidden;
}

@keyframes skeleton-pulse {
    0% { background-color: #f2f2f2; }
    50% { background-color: #e0e0e0; }
    100% { background-color: #f2f2f2; }
}*/


/* main styles */
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 100%;
  color: #444;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
}

article {
  max-width: 40em;
  padding: 0 4em;
  margin: 0 auto;
}

h1,
h2 {
  font-weight: normal;
  margin-top: 1em;
}

h2+p {
  margin-top: 0;
}

ul,
ol {
  margin: 1em 0 0 2em;
}

li {
  margin-top: 0.5em;
}

pre {
  white-space: pre;
  padding: 2px 6px;
  margin-top: 1em;
  background-color: #ddd;
  border-radius: 3px;
  overflow: auto;
}

code {
  font-size: 1.1em;
}

img {
  max-width: 100%;
}

a.primary {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}

a.full {
  clear: both;
  width: 100%;
  box-shadow: 0 3px 4px #000;
}

a.boxout1,
a.boxout2 {
  clear: both;
  float: left;
  width: 60%;
  margin: 1em 1em 0 -4em;
  box-shadow: 0 3px 4px #000;
}

a.boxout2 {
  float: right;
  margin: 1em -4em 0 1em;
}

/* progressive image CSS */
a.progressive {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none;
}

a.progressive:not(.replace) {
  cursor: default;
}

a.progressive img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border: 0 none;
  border-radius: 15px;
  overflow: hidden;
}

a.progressive img.preview {
  filter: blur(0.1vw);
  transform: scale(1);
}

a.progressive img.reveal {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform, opacity;
  animation: reveal 0.2s ease-out;
}

@keyframes reveal {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


body p {
  margin: 0 0 15px;
  padding: 0;
}

body p:empty {
  margin: 0;
  line-height: 0;
}

body p:last-child {
  margin-bottom: 0;
}

p strong {
  font-weight: bold;
}

label em {
  color: var(--red);
  display: inline-block;
  font-style: normal;
  vertical-align: top;
  margin-left: 5px;
}

.hidden {
  display: none !important;
}

iframe {
  display: block;
  width: 100%;
}

.container:after {
  content: "";
  display: block;
  clear: both;
}

/*button*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

a.wp-element-button {
  border-radius: 6px;
  border: 1px solid var(--wp--preset--color--contrast-2);
  background: var(--wp--preset--color--contrast-2);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 14px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

a.wp-element-button img {
  margin-left: 11px;
  margin-right: 0;
  width: 25px !important;
  transition: all 0.4s ease;
  filter: unset;
  transform: rotate(0deg);
}

a.wp-element-button:hover {
  background: linear-gradient(90deg, #4677f0 0%, #0b4df1 100%);
  color: #fff !important;
  border: 1px solid #0b4df1 !important;
  border-radius: 4px;

}

a.wp-element-button:hover img {
  border-color: #4677f0 !important;
  transform: rotate(90deg);
  margin-left: 20px;
}

/* Button styles end */
figure.wp-lightbox-container img {
  cursor: default;
}

/*header*/
header.wp-block-template-part {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: #fff;
  right: 0;
}

.mega-menu-sec .wp-block-group.toggle-btn {
  flex-wrap: nowrap;
  margin-right: auto;
}

header>.wp-block-group.is-layout-constrained {
  padding: 30px 0 !important;
}

header .wp-block-site-logo {
  display: none;
}

header .wp-block-image {
  max-width: 108px;
  width: 100%;
  margin-right: 15px;
  line-height: 0;
}

ul.mega-sub-menu>li.mega-menu-column {
  border-right: 1px solid #F4F3F4 !important;
  padding: 0 15px !important;
}

ul.mega-sub-menu>li.mega-menu-column:last-child {
  border-right: none !important;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-megamenu>ul.mega-sub-menu {
  width: 1080px;
  top: 121%;
  left: -278%;
}

.mega-menu-columns-9-of-12 .main-menu {
  column-count: 3;
}

.mega-menu-columns-6-of-12 .main-menu {
  column-count: 2;
}

.main-menu li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #F4F3F4;
  padding-bottom: 20px;
}

.main-menu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;

}

.main-menu li a img {
  margin-right: 10px;
}

li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
li.mega-menu-item>a.mega-menu-link:hover,
li.mega-menu-item>a.mega-menu-link:active,
li.mega-menu-item>a.mega-menu-link:focus {
  color: #231F20 !important;
  font-family: var(--wp--preset--font-family--body);
  background-color: transparent !important;

}

.textwidget h6 {
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 30px;
}

ul.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: #231f20;
  font-family: var(--wp--preset--font-family--body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 114%;
  border: none;
  text-decoration: none;
}

ul.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--contrast-2);
}

.hero-section h1 {
  padding: 0 10px;
  background: linear-gradient(90deg, #00c6ff -0.7%, #0072ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  animation: anim 10s infinite linear;
  -webkit-animation: anim 10s infinite linear;
}

@-webkit-keyframes anim {
  from {
    -webkit-filter: hue-rotate(0deg);
  }

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

.login .wp-block-button .wp-block-button__link {
  display: flex;
  padding: 7px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-top: 0;
  border-color: #dedede !important;
  background: #fff;
  color: var(--Blacks-B1, #231f20);
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.6s ease;
}

.login .wp-block-button img {
  margin-left: 11px;
  width: 25px !important;
  transition: all 0.6s ease;
  filter: unset;
  transform: rotate(0deg);
}

.login .wp-block-button__link:hover {
  background: linear-gradient(90deg, #4677f0 0%, #0b4df1 100%);
  color: #fff !important;
}

.login .wp-block-button:hover img {
  border-color: #4677f0 !important;
  transform: rotate(90deg);
  filter: invert(1);
  margin-left: 20px;
}

p.whatsapp-link,
p.schedule-link {
  color: #231f20;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 128%;
  display: flex;
  align-items: center;
}

p.whatsapp-link img,
p.schedule-link img {
  width: 15px;
  margin-right: 5px;
}

p.schedule-link a {
  color: #231f20;
  display: flex;
  align-items: center;
}

p.whatsapp-link a {
  color: #65d83c;
  display: flex;
  align-items: center;
}

p.schedule-link a>img,
p.whatsapp-link a>img {
  width: 15px;
}

p.whatsapp-link:hover,
p.schedule-link:hover {
  opacity: 0.8;
}

p.whatsapp-link a>picture,
p.schedule-link a>picture {
  line-height: 0;
}

/*header*/

.hero-section>.wp-block-group.signup-group {
  margin-top: 18px;
}

.hero-section p {
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 155%;
}

.hero-section .wp-element-button {
  min-width: 315px;
  margin-top: 15px;
}

.hero-section>.svg-image {
  max-width: 820px !important;
  width: 100%;
  margin-top: 15px;
  margin-bottom: -280px !important;
}

.group-1 {
  padding-bottom: 166px !important;
}

.group-1-wrap h2 {
  font-size: 44px;
  line-height: 127.273%;
  padding-top: 88px;
  padding-bottom: 10px;
}

.group-1-wrap .wp-block-spacer {
  flex-basis: 0;
}

.group-1-wrap p {
  width: 77.26%;
}

.group-1-wrap .practice-col-all {
  gap: 20px;
  padding: 0 9px 0 9px;
  margin-top: -4px;
}

.group-1-wrap .wp-block-column.is-layout-flow {
  width: 100%;
  background: linear-gradient(94.06deg, #ffffff 0.27%, #fcfcfc 100%);
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 24px;
}

.group-1-wrap .practice-col-all h3 {
  font-weight: 700 !important;
  font-size: 22px !important;
  align-items: center;
  display: flex;
  margin-bottom: 15px;
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-top: 0 !important;
}

.group-1-wrap .practice-col-wrap figure {
  width: 100%;
  height: 30px;
  max-width: 30px;
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/* .group-1-wrap .practice-col-wrap h3 {
  margin-left: 0px !important;
  margin-right: 0px !important;
} */

.group-1-wrap .wp-block-column.is-layout-flow .wp-block-group {
  display: flex;
  gap: 20px
}

.group-1-wrap .wp-block-column.is-layout-flow p {
  font-size: 18px !important;
  line-height: 155.556%;
  color: #4F4C4D;
  margin-block-start: 0px !important;
  margin-left: 50px;
  width: 100%;
}

/* .group-1-wrap .practice-col-1 .wp-block-group figure {
  margin: 0;
  padding-right: 20px
} */

/* Journey Section start */
.doccine-journey {
  padding-bottom: 115px !important;
  padding-top: 75px !important;
  background: url(./images/journey-bg.png);
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.82);
  background-size: cover;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.doccine-journey h2 {
  font-family: var(--wp--preset--font-family--body);
  font-size: 40px !important;
  font-style: normal;
  line-height: 130%;
}

.doccine-journey-form .wpforms-container select.wpforms-field-medium {
  max-width: 100%;
  height: 55px;
  border-radius: 6px;
  color: #706D6E;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.doccine-journey-form .wpforms-field-medium.wpforms-smart-phone-field {
  max-width: 100%;
  width: 100%;
  color: var(--Blacks-B4, #706D6E);
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 55px;
}

.doccine-journey-form .wpforms-container .wpforms-submit-container,
.doccine-journey-form .wpforms-submit-container {
  padding: 0;
}

.wpforms-container .wpforms-submit-container br {
  display: none;
}

.doccine-journey-form .wpforms-submit-container .wpforms-submit {
  max-width: 100%;
  width: 100%;
  color: #FFF;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.group-3-wrap .wpforms-validate .wpforms-submit-container .wpforms-submit+.wpforms-submit-spinner,
.doccine-journey-form .wpforms-submit-container .wpforms-submit+.wpforms-submit-spinner {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: unset;
  margin: 0;
  background: #066aab;
  padding: 10px;
  border-radius: 5px;
}

.doccine-journey-form .wpforms-submit-container .wpforms-submit::after {
  content: "";
  background-image: url(./images/up-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 26px;
  height: 26px;
  transition: all .4s ease;
  margin-left: 10px;
  position: static;
  border: none !important;
  outline: none;
}

/* .doccine-journey-form .wpforms-submit-container .wpforms-submit::after {
  content: "";
  background-image: url(./images/up-arrow.svg);
  width: 25px;
  height: 25px;
  transition: all 0.4s ease;
  margin-left: 10px;
  transform: rotate(0deg);
} */

.doccine-journey-form .wpforms-submit-container .wpforms-submit:hover:after {
  transform: rotate(90deg);
  margin-left: 20px;

}

.doccine-journey-form .wpforms-submit-container .wpforms-submit:focus::after {

  position: static !important;

}

.doccine-journey-form .wpforms-container .wpforms-field {
  padding: 5px 0;

}

.doccine-row-points {
  max-width: 1080px !important;
  width: 100%;
  gap: 15px;
  margin: 75px auto 0 !important;
}

.doccine-row-points>div {
  max-width: 350px;
  width: 100%;
}

.doccine-row-points:last-child {
  margin-top: 52px !important;
}

.doccine-points h2.wp-block-heading {
  font-size: 18px !important;
  color: #FFF;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
}

.doccine-points .wp-block-group {
  margin-top: 9px;
}

.doccine-points p.has-text-align-center {
  font-size: 14px !important;
}

/* efficiens and care css start */

.group-2 h2 {
  font-size: 40px;
  font-family: var(--wp--preset--font-family--body);
  line-height: 130%;
}

.alignwide.efficiency-and-care {
  margin-top: 21px;
}

.efficiency-and-care .wp-block-group-is-layout-flex {
  gap: 0;
}

.efficiency-content {
  color: var(--Blacks-B1, #231F20);
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 145.455%;
  width: 906px;
  margin: 10px auto !important;
}

.care-heading {
  font-size: 32px;
  color: var(--Blacks-B1, #231F20);
  font-family: var(--wp--preset--font-family--body);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.25%;
  padding-bottom: 0 !important;
  margin-bottom: 10px;
}

.care-content {
  color: #231F20;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
}

.care-link a {
  color: #4677F0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  padding-top: 19px;
  /* 10s infinite linear */
}

.care-link a:hover {
  animation: carelink .5s forwards;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@keyframes carelink {
  0% {
    background: linear-gradient(90deg, #00C6FF -0.7%, #0072FF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  100% {
    background: linear-gradient(90deg, #00C6FF -0.7%, #0072FF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.efficiency-and-care .wp-block-columns {
  gap: 0;

}

.efficiency-and-care .wp-block-columns .wp-block-column:nth-child(2) {
  margin-left: auto;
}

.care-col-1 {
  margin-top: 92px !important;
}

.care-col-1 .wp-block-column.is-vertically-aligned-center {
  margin-top: -125px !important;
}

.care-col-2 {
  margin-top: 15px !important;
}

.care-col-3 {
  margin-top: 120px !important;
}

.care-col-3 .wp-block-column.is-vertically-aligned-center {
  margin-top: -211px;
}

.care-col-4 {
  margin-top: -50px !important;
}

.care-col-5 .wp-block-column:not(.is-vertically-aligned-center) {
  flex-basis: calc(52% - 28px) !important;
  margin-top: 15px !important;
  margin-left: -28px !important;
}

.care-col-5 {
  margin-top: 135px !important;
}

.care-col-5 .wp-block-column.is-vertically-aligned-center {
  margin-top: -184px;
}

.care-col-6 {
  justify-content: space-between;
  margin-top: 12px !important;
}

.care-col-7 {
  margin-top: 125px !important;
}


.care-link a::after {
  content: "";
  background-image: url(./images/blue-arrow.svg);
  width: 25px;
  height: 25px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  filter: unset;
}

.care-link a:hover:after {
  margin-left: 20px;
  transform: rotate(90deg);
}

/* practice journey start  css*/
.group-3 {
  padding-top: 132px !important;
}

h2.group-3-head {
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 44px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 127.273% !important;
  padding-left: 150px;
  padding-right: 150px;
  margin-bottom: 50px !important;
}

.group-3-wrap .is-layout-constrained {
  max-width: 1200px !important;
  position: relative;
}

/*.group-3-wrap .wpforms-container-full {
  max-width: 1200px !important;
}*/

.check-box-wrap ul {
  display: flex;
  justify-content: center;
  gap: 5px !important;
}

.check-box-wrap ul li {
  border-radius: 7px !important;
  border: 1px solid #F4F3F4 !important;
  background: #FFF !important;
  padding: 30px 14px 15px !important;
  flex-direction: row-reverse !important;
  transition: all .5s ease-in-out;
  overflow: hidden;

}

.check-box-wrap ul li:hover {
  background-position: top left !important;
  background-repeat: no-repeat !important;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all .5s ease;
}

.check-box-wrap ul li.choice-1:hover {
  background-image: url(./images/choice1.svg) !important;

}

.choice-1:has(input[type="checkbox"]:checked),
.choice-1:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/scissors-solid.svg) !important;
}

.check-box-wrap ul li.choice-2:hover {
  background-image: url(./images/nuerology.svg) !important;
}

.choice-2:has(input[type="checkbox"]:checked),
.choice-2:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/nuerology-solid.svg) !important;
}

.check-box-wrap ul li.choice-3:hover {
  background-image: url(./images/medicine.svg) !important;
}

.choice-3:has(input[type="checkbox"]:checked),
.choice-3:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/medicine-solid.svg) !important;
}

.check-box-wrap ul li.choice-4:hover {
  background-image: url(./images/dermetology.svg) !important;
}

.choice-4:has(input[type="checkbox"]:checked),
.choice-4:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/demetolgy-solid.svg) !important;
}

.check-box-wrap ul li.choice-5:hover {
  background-image: url(./images/paediatrcis.svg) !important;
}

.choice-5:has(input[type="checkbox"]:checked),
.choice-5:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/paediatrcis-solid.svg) !important;
}

.check-box-wrap ul li.choice-6:hover {
  background-image: url(./images/surgery.svg) !important;
}

.choice-6:has(input[type="checkbox"]:checked),
.choice-6:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/surgery-solid.svg) !important;
}

.check-box-wrap ul li.choice-7:hover {
  background-image: url(./images/surgeon.svg) !important;
}

.choice-7:has(input[type="checkbox"]:checked),
.choice-7:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/knife-bg.png) !important;
}

.check-box-wrap ul li.choice-8:hover {
  background-image: url(./images/surgeon.svg) !important;
}

.choice-8:has(input[type="checkbox"]:checked),
.choice-8:has(input[type="checkbox"]:checked):hover {
  background-image: url(./images/knife-bg.png) !important;
}

.check-box-wrap ul li .wpforms-payment-price {
  margin-left: 10px !important;
}

.check-box-wrap ul li:has(input[type="checkbox"]:checked) {
  background-color: #DAE4FC !important;

  background-position: top left !important;
  background-repeat: no-repeat !important;

}

.wpforms-payment-price:checked+label {
  color: #231F20 !important;
}

.check-box-wrap ul li .wpforms-field-label-inline {
  color: #9C9A9A;
  font-family: var(--wp--preset--font-family--body);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 22px !important;
  padding-left: 0 !important;
}

.check-box-wrap ul li .wpforms-field-label-inline::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  right: -70px;
  bottom: -70px;
}

.wpforms-field.wpforms-field-phone.cb-form-num {
  max-width: 315px !important;
  margin: 0 auto 20px;
  width: 100%;
  padding-top: 0;
}

.cb-form-num .wpforms-field-medium.wpforms-smart-phone-field {
  max-width: 100%;
  width: 100%;
  height: 56px;
  border-radius: 6px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  color: #9C9A9A;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.group-3-wrap .wpforms-validate .wpforms-submit-container {
  max-width: 315px;
  width: 100%;
  /*  margin: -11px auto 0 auto !important;*/
  padding-top: 0 !important;

}

.group-3-wrap .wpforms-field-select {
  max-width: 315px !important;
  width: 100%;
  margin: 0 auto;

}

.group-3-wrap .wpforms-field-select select.wpforms-field-medium {
  max-width: 100%;
  height: 56px;
  border-radius: var(--Radius-3-max, 6px);
  border: 1px solid #E9E9E9;
  color: #706D6E;


}

.group-3-wrap .wpforms-field-select select.wpforms-field-medium:placeholder-shown {
  color: #706D6E;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.group-3-wrap .wpforms-field-select select.wpforms-field-medium option.placeholder {
  color: #706D6E;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.group-3-wrap .wpforms-validate .wpforms-submit-container .wpforms-submit {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.group-3-wrap .wpforms-validate .wpforms-submit-container .wpforms-submit::after {
  content: "";
  background-image: url(./images/up-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 26px;
  height: 26px;
  transition: all .4s ease;
  margin-left: 10px;
  position: static;
  border: none !important;
  outline: none;
}

.group-3-wrap .wpforms-validate .wpforms-submit-container .wpforms-submit:hover:after {
  margin-left: 20px;
  transform: rotate(90deg);
}

.group-3-wrap .wpforms-validate .wpforms-submit-container .wpforms-submit:focus::after {
  position: static !important;
}



/* EMR Css starrt */
.emr-class {
  margin-top: 105px;
}

.group-3-head-2 {
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}

.emr-ul {
  display: flex;
  justify-content: center;
  max-width: 1200px !important;
  margin-top: 85px;
}

.emr-ul path[fill="#1C1C1C"] {
  transition: none;
}

.emr-ul path[fill="#1C1C1C"].a1 {
  animation: arrow1 1.8s infinite;
}

@keyframes arrow1 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(40%);
    opacity: 0;
  }

  90% {
    transform: translateY(40%);
    opacity: 1;
  }
  95% {
    transform: translateY(40%);
    opacity: 1;
  } */
  100% {
    transform: translateY(40%);
    opacity: 1;
  }
}

.emr-ul path[fill="#1C1C1C"].a2 {
  animation: arrow2 1.8s infinite;
}

@keyframes arrow2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(60%);
    opacity: 0;
  }
  90% {
    transform: translateY(60%);
    opacity: 1;
  }
  95% {
    transform: translateY(60%);
    opacity: 1;
  } */
  100% {
    transform: translateY(60%);
    opacity: 1;
  }
}

.emr-ul path[fill="#1C1C1C"].a3 {
  animation: arrow3 1.8s infinite;
}

@keyframes arrow3 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(63%);
    opacity: 0;
  }
  90% {
    transform: translateY(63%);
    opacity: 1;
  }
  95% {
    transform: translateY(63%);
    opacity: 1;
  } */
  100% {
    transform: translateY(63%);
    opacity: 1;
  }
}

.emr-ul path[fill="#1C1C1C"].a4 {
  animation: arrow4 1.8s infinite;
}

@keyframes arrow4 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(50%);
    opacity: 0;
  }
  90% {
    transform: translateY(50%);
    opacity: 1;
  }
  95% {
    transform: translateY(50%);
    opacity: 1;
  } */
  100% {
    transform: translateY(50%);
    opacity: 1;
  }
}

.emr-ul path[fill="#1C1C1C"].a5 {
  animation: arrow5 1.8s infinite;
}

@keyframes arrow5 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(45%);
    opacity: 0;
  }
  90% {
    transform: translateY(45%);
    opacity: 1;
  }
  95% {
    transform: translateY(45%);
    opacity: 1;
  } */
  100% {
    transform: translateY(45%);
    opacity: 1;
  }
}

.emr-ul path[fill="#1C1C1C"].a6 {
  animation: arrow6 1.8s infinite;
}

@keyframes arrow6 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(17%);
    opacity: 0;
  }
  90% {
    transform: translateY(17%);
    opacity: 1;
  }
  95% {
    transform: translateY(17%);
    opacity: 1;
  } */
  100% {
    transform: translateY(17%);
    opacity: 1;
  }
}

.emr-ul path[fill="#1C1C1C"].a7 {
  animation: arrow7 1.8s infinite;
}

@keyframes arrow7 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /* 5% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(33%);
    opacity: 0;
  }
  90% {
    transform: translateY(33%);
    opacity: 1;
  }
  95% {
    transform: translateY(33%);
    opacity: 1;
  } */
  100% {
    transform: translateY(33%);
    opacity: 1;
  }
}

/* .red ~ defs stop{
  transition: 1s;
}
.red:hover ~ defs stop:first-child {
  stop-color: #ffbbcc;
}
.red:hover ~ defs stop:last-child {
  stop-color: #0000ff;
} */
.emr-ul stop {
  transition: 1s;
}

.emr-ul stop:first-child {
  stop-color: #000;
  /* animation: fill-black 5s forwards infinite, line-anim 2s ease forwards; */
  /* animation: fill-black 0.5s infinite cubic-bezier(.95,.14,1,1) alternate; */
  animation: fill-black 0.9s infinite linear alternate;
  stop-opacity: 1;
}

@keyframes fill-black {
  0% {
    stop-color: black;
  }

  80% {
    stop-color: white;
    stop-opacity: 0;
  }

  100% {
    stop-color: white;
    stop-opacity: 0;
  }
}

.emr-ul stop:last-child {
  stop-color: #fff;
  /* animation: fill-white 5s forwards infinite, line-anim 2s ease forwards; */
  animation: fill-white 0.9s infinite linear alternate;
  stop-opacity: 1;
  /* animation-delay: 2s; */
}

@keyframes fill-white {
  0% {
    stop-color: white;
  }

  80% {
    stop-color: black;
  }


  100% {
    stop-color: black;
  }
}



@keyframes line-anim {
  to {
    stop-opacity: 1;
  }

  from {
    stop-opacity: 1;
  }
}





.emr-li {
  position: relative;
}

.emr-li::before {
  content: "";
  position: absolute;
  background-image: url(./images/down-arrow.svg);
  width: 15px;
  height: 15px;
  top: 42px;
  left: 6px;
  right: 0;
  margin: 0 auto;
  background-repeat: no-repeat;
  /* animation: arrow 5s forwards 2s linear infinite; */
}

/* @keyframes arrow {
  0%{
    top: 15%;
  }
  100%{
    top: 100%;
  }
} */
.emr-li::after {
  content: "";
  background-image: url(./images/line.svg);
  width: 2px;
  height: 100%;
  top: 48px;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  margin: 0 auto;
  background-repeat: no-repeat;

}

.emr-li:nth-child(1) {
  margin-top: 160px;

}

.emr-li:nth-child(2) {
  margin-top: 73px;
  margin-left: 13px;
  padding-bottom: 185px;
}

.emr-li:nth-child(4) {
  margin-top: 176px;
}

.emr-li:nth-child(5) {
  margin-top: 61px;
}

.emr-li:nth-child(7) {
  margin-top: 130px;
}

.emr-li:nth-child(8) {
  margin-top: 37px;
}

.emr-li:nth-child(9) {
  margin-top: 7px;
}

.emr-li:nth-child(2):after {
  content: "";

}

/* .doccine-box::before {
  content: "";
  background: linear-gradient(180deg, rgba(253, 253, 253, 0.00) 25.9%, #FAFAFA 91.48%);
  width: 100%;
  position: absolute;
  top: -123px;
  height: 121px;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
} */
.doccine-box {
  margin-top: -7px;
  border-radius: 20px;
  border: 1px solid #EDEDED;
  background: linear-gradient(276deg, #FFF 29.79%, #FCFCFC 98.86%);
  padding: 45px;
  position: relative;
}

.doccine-box-content {
  color: #231F20;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 60% !important;
  width: 100%;
  margin-top: 29px !important;
}

.doccine-box-btn {
  margin-top: 37px;
}

.doccine-box-btn-content {
  max-width: 315px !important;
  width: 100% !important;
}



/* Question css start */
.group-4 {
  padding-top: 18px !important;
  padding-bottom: 100px !important;
}

.group-4-head {
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 32px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 131.25% !important;
}

.group-4-wrap p {
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 145.455%;
  margin-top: 13px !important;
}

.is-style-arrow-icon-details summary {
  list-style-type: none;
  position: relative;
  color: #4F4C4D;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-right: 25px;
}

.is-style-arrow-icon-details summary::after {
  position: absolute;
  content: "";
  background-image: url(./images/plus.svg);
  width: 25px;
  height: 25px;
  right: 0;
  background-repeat: no-repeat;
  top: 3px;
}

.is-style-arrow-icon-details[open]>summary {
  list-style-type: none;
}

.is-style-arrow-icon-details[open]>summary::after {

  background-image: url(./images/minus.svg);
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
}

.group-4-wrap .wp-block-group .wp-block-details {
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 24px;
  margin-bottom: 17px;
}

.group-4-wrap .wp-block-group .wp-block-details {
  transition: height 0.3s ease-in-out;
  height: 60px;
}

.group-4-wrap .wp-block-group .wp-block-details[open=""] {
  height: 130px;
}

p.doccine-detail {
  color: #231F20;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 177.778%;
  text-align: left;
}

.group-4-wrap .wp-block-group {
  max-width: 716px;
  margin: 57px auto 0;
  width: 100%;
}


/* leading hospital css start */
.group-5 {
  padding-top: 0 !important;
}

.group-5-wrap h2 {
  font-size: 40px !important;
  color: var(--Blacks-B1, #231F20);
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 700;
  line-height: 130% !important;
}

.group-5-wrap p {
  margin-top: 15px;
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 22px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 145.455%;
}

.hospital-img .wp-block-group {
  display: flex;
  justify-content: space-between;
  margin-top: -8px;
  flex-wrap: wrap !important;
  margin-bottom: 50px !important;
}

.hospital-img .wp-block-group .wp-block-image.size-full {
  max-width: 18%;
  width: 100%;
}

.hospital-img .wp-block-group img {
  max-height: 115px;
}

/* practice section start css */
.practice-sec {
  margin-top: 46px !important;
}

.practice-sec h2 {
  margin-bottom: 13px;
  font-size: 40px;
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.practice-sec p {
  color: #000;
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 300;
  line-height: 145.455%;
}

.transform-img {
  gap: 25px;
  margin-top: 46px !important;
  margin-bottom: 43px;
}

/*.transform-img>div:hover h3 {
  color: #82A3F5;
  transition: all .5s ease;
}

.transform-img>div:hover svg path {
  fill: #82A3F5;
  transition: all .5s ease;
}
*/
.transform-img .wp-block-group {
  flex-direction: column;
  max-width: 150px !important;
  width: 100%;
  gap: 11px;
}

.transform-img h3 {
  font-size: 16px !important;
  color: var(--Blacks-B1, #231F20);
  text-align: center;
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 700;
  line-height: 137.5%;
}

.transform-btn a.wp-element-button.has-contrast-color {
  font-size: 18px;
}

.transform-btn a.wp-element-button.has-contrast-color:hover img {
  filter: brightness(100);
}


.wp-block-group.doctors-bg {
  position: relative;
}

.wp-block-group.doctors-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(253, 253, 253, 0.00) 25.9%, #FAFAFA 91.48%);
}


/* footer css start */
/* footer section css startt */
footer>.wp-block-group {
  padding-bottom: 30px !important;
  padding-top: 30px !important;
  margin-top: 30px;
}

.footer-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 50px;

}

.footer-wrap::before {
  position: absolute;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 175vw;
  height: 157vw;
  border-radius: 50%;
  background: #F3F8FF;
  transform: translateX(-50%);
  z-index: -1;
}

footer>.wp-block-group {
  margin-top: 17px;
}

.footer-link-ul {
  display: flex;
  justify-content: space-between;
  margin-top: 38px !important;
}

.footer-links {
  padding-bottom: 30px;
  border-bottom: 1px solid #D6E2FC;
}

.footer-link-li {
  margin-right: 30px !important;
  color: #000;
  text-align: center;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  transition: all .5s;
  cursor: pointer;
}

.footer-link-li:hover {
  color: #4677F0;
}

.footer-link-li a {
  cursor: pointer;
}

.footer-link-li:last-child {
  margin-right: 0 !important;
}

.footer-stp ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-stp ul li {
  padding-right: 10px;

  border-right: 1px solid #9C9A9A;
}

.footer-stp ul li a {
  margin-left: 10px;
  cursor: pointer;
}

.footer-stp ul li:first-child a {
  margin-left: 0;
}

.footer-stp ul li:last-child {
  border-right: none;
  padding-right: 0;
}

.footer-sl-ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
}

.footer-sl-li {
  margin-right: 15px;
  transition: all .5s ease;
}

.footer-sl-li a {
  cursor: pointer;
}

.footer-sl-li img:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all .5s ease;
}

footer .footer-last-row {
  padding-top: 0 !important;
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.286%;
  margin-top: 10px;
}

.copy-right {
  padding-top: 0
}

.emr-ul.mobile {
  display: none;
}


body .signup-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body .signup-modal.showModal {
  transition: all 0.5s ease;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

body .signup-modal.showModal::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

body .signup-modal.showModal::after {
  opacity: 1;
}

body .signup-modal .sign-upfree {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  background: #FFF;
  max-width: 400px;
  padding: 35px;
  box-shadow: 0 0px 41px 0 rgba(0, 0, 0, 0.1);
}

body .signup-modal .sign-upfree h2 {
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
  margin-bottom: 8px;
}

body .signup-modal .sign-upfree p {
  color: #000;
  margin-top: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

body .signup-modal .sign-upfree p.close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #fff;
  line-height: 30px;
  margin: 0;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
}

body .signup-modal .sign-upfree p.close-modal:hover {
  color: #fff;
  background-color: var(--wpforms-button-background-color);
}

body .signup-modal.doccine-journey-form .wpforms-submit-container .wpforms-submit {
  font-size: 0;
}

body .signup-modal.doccine-journey-form .wpforms-submit-container .wpforms-submit:before {
  content: "Sign up";
  font-size: 16px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
  display: flex;
}

.doccine-footer-wrap p {
  text-align: center;
  margin-top: 18px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
}

.doccine-footer-wrap .footer-links {
  flex-direction: column;
  margin-top: 43px;
}

.footer-links .footer-sl-ul {
  width: 100%;
  justify-content: center;
}

.footer-links .footer-sl-li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 10px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
}

.footer-links .footer-sl-li a svg {
  margin-right: 10px;
}

.footer-links .footer-sl-li a:hover svg path {
  fill: #4677F0;
}

.footer-links .footer-sl-li:nth-child(3) {
  border-right: 1px solid #cfcfcf;
  margin-right: 20px;
}

.footer-links p {
  margin-top: -5px;
}

.custom-logo-link .custom-logo {
  max-width: 30px;
}

/* privacy policy csss start */

.our-policy {
  background-color: #4677F0;
  padding-top: 65px;
  padding-bottom: 55px;
  color: white;
}

.our-policy h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 10px;
}

.our-policy .wp-block-columns .wp-block-column:nth-child(1) p {
  margin-right: 70px;
  font-size: 18px;
}

.our-policy .wp-block-columns .wp-block-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-size: 18px;
}

.our-policy .wp-block-columns .wp-block-column:nth-child(2) p:first-child {
  font-style: italic;
  font-size: 20px;
  font-family: var(--wp--preset--font-family--body);
  font-weight: 500;
  margin-bottom: 10px;
}

.content-group {
  max-width: 360px;
  width: 100%;
  position: sticky;
  top: 60px;
  right: 0;
  bottom: 0;
  background-color: #f3f8ff;
  padding: 0 20px 0 40px;
  align-self: flex-start !important;
}

.content-table-wrap h3 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
}

.content-table-wrap .content-list li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.content-main {
  position: relative;
  display: flex;
  justify-content: center;

}

.content-main::before {
  content: "";
  background-color: #f3f8ff;
  width: 33.2%;
  right: 0;
  position: absolute;
  height: 100%;
  bottom: 0;
  top: 0;
}

.cms-content {
  padding-top: 50px;
  padding-left: 75px;
  max-width: 1000px;
  width: 100%;
  padding-right: 110px;

}

.cms-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #464243;
  margin-bottom: 20px;
  line-height: 44px;
}

.cms-content p {
  font-size: 18px;
  line-height: 27px;
  font-style: normal;
  font-weight: normal;
  color: #464242;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.cms-content h6 {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.cms-content p a {
  color: #4677F0;
}

.content-table-wrap {
  padding-top: 60px;
}

.cms-content.terms-condition {
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.cms-content ol li {
  list-style: decimal !important;
  font-size: 18px;
  line-height: 27px;
  font-style: normal;
  font-weight: normal;
  color: #464242;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.cms-content ol li a {
  color: #4677F0;
}

.cms-content ol {
  margin-bottom: 20px;
}

.cms-content ol:last-child {
  margin-bottom: 0;
}

.cms-content ol li:last-child {
  margin-bottom: 0;
}

.wp-block-buttons.open-modal {
  display: table;
}


#wpforms-conversational-form-page div.iti__flag,
body .iti__flag,
div.wpforms-container .wpforms-form div.iti__flag,
div.wpforms-container-full .wpforms-form div.iti__flag {
  background-image: url('images/intl-tel-input-flags.png');
}

.wp-lightbox-container button.lightbox-trigger {
  display: none;
}

/* 404 page css start */
.doccine_404 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-image: url(images/Frame-1.png), url(images/Frame.png);
  background-size: 52.8%, 49.9%;
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  min-height: 100vh;
  height: 100%;
  margin-bottom: 0 !important;
  margin-top: 40px !important;
}

/* .wp-block-image.doccine_404_image {
	display: flex;
	justify-content: center;
	align-items: center;
} */
.doccine_404_heading {
  font-size: 28px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  line-height: 33.58px;
  color: #231F20;
}

.doccine_404_paragrapgh {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  font-family: 'Inter Tight', sans-serif;
  max-width: 496px !important;
  width: 100%;
  text-align: center;
  margin-top: 14px !important;
  padding: 0 15px;
}

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

.doccine_back_btn a {
  color: #4677F0;
  font-weight: 500;
}

.doccine_back_btn a:hover {
  animation: carelink .5s forwards;
}

/* 404 page css end */

/* blog page css start */
.doccine-blog-sec {
  background: linear-gradient(180deg, #FFF 0%, rgba(223, 229, 244, 0.28) 100%);
}

.doccine-blog-sec {
  background-color: #DFE5F447;
}

.doccine-blog-sec p {
  color: #706D6E;
  text-align: left;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 155%;
  max-width: 420px;
  width: 100%;
}

.doccine-blog-sec .wp-block-button {
  min-width: 315px;
}

.docc_blog-archive_main {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto !important;
}

.docc_blog-archive_main p:empty {
  display: none;
}

.docc_blog_head h3 {
  font-size: 40px;
  font-family: var(--wp--preset--font-family--body);
  line-height: 130%;
  font-weight: 700;
}

.docc_blog_archive_heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.docc_blog_archive_heading p {
  display: none;
}

.docc_blog_archive_posts {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.docc_blog_archive_posts li {
  max-width: 30.93%;
  width: 100%;
  margin-right: 3.6%;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-bottom: 45px;
  margin-top: 0;
}

.docc_blog_archive_posts li:nth-child(3n) {
  margin-right: 0;
}

.docc_blog_archive_posts li.doccine_form_section {
  background: linear-gradient(180deg, #4677F0 0%, #0636AE 100%);
  padding: 35px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.docc_blog_archive_posts li.doccine_form_section h4 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}

.blog_image_part .blog_fimg_href {
  display: block;
  margin: 0;
  line-height: 0;
  position: relative;
  padding-top: 88.7%;
}

.blog_image_part .blog_fimg_href>img,
.blog_fimg_href>picture,
.blog_fimg_href>picture>img {
  display: block;
  position: absolute;
  line-height: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.blog_image_part br {
  display: none;
}

.doc_blog_li p:empty {
  display: none;
}

.doc_blog_li .blog_content_part {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.doc_blog_li .blog_content_part .blog_category {
  font-size: 16px;
  margin-bottom: 20px;
}

.doc_blog_li .blog_title {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
}

.doccine_fbanner_blog .doccine_blog_child {
  border-radius: 28px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.doccine_fbanner_blog p:empty {
  display: none;
}

.doccine_blog_child .doccine_blog_fimg {
  width: 100%;
  line-height: 0;
}

.doccine_blog_child .doccine_blog_fimg picture {
  display: block;
  line-height: 0;
  width: 100%;
}

.doccine_blog_child .doccine_blog_fimg picture img {
  width: 100%;
}

.doccine_blog_child .doccine_blog_content {
  padding: 25px;
}

.doccine_blog_content .child_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.blog_time {
  display: flex;
  align-items: center;
}

.blog_time p {
  margin-bottom: 0;
}

.blog_time .dashicons::before {
  color: #9C9A9A;
  width: 20px;
  height: 20px;
  display: block;
}

.blog_time p {
  color: #4F4C4D;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}

.blog_title h3 {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 0;
}

.blog_category {
  color: #231F20;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 12px;
  border-radius: 9px;
}

.doccine_form_section input.wpforms-field-medium,
.doccine_form_section select.wpforms-field-medium {
  max-width: 100%;
}

.doccine_form_section .doccine-journey-form {
  margin-bottom: 0;
  margin-top: auto;
}

.doccine_form_section div.wpforms-container-full {
  margin: 0;
}

.doccine_form_section .doccine-journey-form .wpforms-submit-container {
  padding: 0;
}

.doccine_form_section br {
  display: none;
}

.doccine-journey-form .wpforms-submit-container .kd_cstm_btn {
  background: #4677F0 !important;
  max-width: 100%;
  width: 100%;
  color: #FFF;
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doccine-journey-form .wpforms-submit-container .kd_cstm_btn:hover {
  background: linear-gradient(90deg, #4677f0 0%, #0b4df1 100%) !important;
  background-color: rgba(0, 0, 0, 0);
  color: #fff !important;

  border-radius: 4px;
  transition: all .5s;
}

.doccine-journey-form .wpforms-submit-container .kd_cstm_btn:focus::after {

  position: static !important;

}

.doccine-journey-form .wpforms-submit-container .kd_cstm_btn::after {
  content: "";
  background-image: url(./images/up-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 26px;
  height: 26px;
  transition: all .4s ease;
  margin-left: 10px;
  position: static;
  border: none !important;
  outline: none;
}

.doccine-journey-form .wpforms-submit-container .kd_cstm_btn:hover::after {
  transform: rotate(90deg);
  margin-left: 20px;
}

.doccine_form_section .doccine-journey-form .wpforms-submit-container .wpforms-submit {
  background: #4677F0 !important;
}

.doccine_form_section .doccine-journey-form .wpforms-submit-container .wpforms-submit:hover {
  background: linear-gradient(90deg, #4677f0 0%, #0b4df1 100%) !important;
  background-color: rgba(0, 0, 0, 0);
  color: #fff !important;
  /* border: 1px solid #0b4df1 !important; */
  border-radius: 4px;
  transition: all .5s;
}

.load-more-wrap a.wp-element-button {
  background: #fff;
  color: #231F20;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  border-color: #DEDEDE;
  max-width: 170px;
  margin: 0 auto;
}

.load-more-wrap a.wp-element-button:hover {
  background: linear-gradient(90deg, #4677f0 0%, #0b4df1 100%);
}

.load-more-wrap a.wp-element-button picture {
  transform: scaleY(-1);
  margin-top: -4px;
}

.load-more-wrap a.wp-element-button:hover img {
  border-color: #4677f0 !important;
  transform: rotate(90deg);
  filter: invert(1);
  margin-left: 20px;
}

.load-more-wrap {
  position: relative;
}

.doccine_loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  display: none;
  pointer-events: none;
}

.doccine_loader img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.docc_blog_postssec {
  min-height: 100vh;
  align-items: flex-start !important;
  position: relative;
}

.doccine_loader_category {
  max-width: 100px;
  width: 100%;
  margin: auto;
  display: none;
  pointer-events: none;
}

/* .doccine_loader {
  width: 55px;
  margin: 10px auto;

} */


.dropdown {
  position: relative;
  font-size: 14px;
  color: #333;
}

.dropdown .dropdown-list {
  padding: 20px;
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: transform 0.15s ease-in-out 0.15s;
  max-height: 500px;
  overflow-y: auto;
  border-radius: 6px;
  border: 1px solid rgba(0, 8, 47, 0.28);
  background: #FFF;
  box-shadow: -10px 15px 35px 0px rgba(0, 0, 0, 0.10);
}

.dropdown .dropdown-list br {
  display: none;
}

.dropdown .dropdown-option {
  display: flex;
  padding: 6px 0;
  opacity: 0;
  margin-top: 0;
  transition: opacity 0.15s ease-in-out;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  position: relative;
  align-items: center;
}

.dropdown .dropdown-label {
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(0, 8, 47, 0.28);
  background: rgba(255, 255, 255, 0.90);
  padding: 6px 42px 6px 12px;
  cursor: pointer;
  display: flex;
  width: 274px;
  justify-content: space-between;
  color: rgba(0, 4, 24, 0.51);
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  overflow: auto;
}

.dropdown.on .dropdown-label {
  border-radius: 6px 6px 0 0;
}

.dropdown .dropdown-label:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("images/down-arrow.png") no-repeat center center;
}

.dropdown.on .dropdown-list {
  transform: scale(1, 1);
  transition-delay: 0s;
  border-radius: 0 0 6px 6px;
}

.dropdown.on .dropdown-list .dropdown-option {
  opacity: 1;
  transition-delay: 0.2s;
}

.dropdown.on .dropdown-label:before {
  transform: scale(-1);
}

.dropdown [type="checkbox"] {
  width: 20px;
  cursor: pointer;
  height: 20px;
  border: 1px solid #B5B7B8;
  padding: 6px 6px 6px 11px;
  background: #FFF;
  color: #96999D;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  border-radius: 4px;
  transition: all 0.15s;
  margin-right: 7px;
  align-self: flex-start;
  margin-top: 2px;
}

.dropdown [type="checkbox"]:checked {
  position: relative;
  border-color: #497DFC;
}

.dropdown [type="checkbox"]:checked::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: 3px;
  background: none #497DFC;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}


/* blog page css end */

/* blog detail page css start */
.wp-block-group.section_herobanner_parenrt {
  background: linear-gradient(180deg, #FFF 0%, rgba(223, 229, 244, 0.28) 100%);
  margin-top: 104px;
  margin-bottom: 95px;
  padding-bottom: 35px;
}

.wp-block-column.is-vertically-aligned-center.is-layout-flow.wp-block-column-is-layout-flow {
  padding-top: 0 !important;
}

.section_herobanner_parenrt h1 {
  font-size: 40px !important;
  max-width: 637px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.wp-block-group.section_first_single {
  max-width: 1200px;
  margin: 0 auto;
}

.doc_social_ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.doc_social_li {
  border: 1px solid #E9E9E9;
  width: 39px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  border-radius: 12px;
}

.doc_social_li:last-child {
  margin-right: 0;
  /* position: relative; */
}

.social_link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  width: 25px;
  height: 25px;
}

.doc_social_li:last-child:hover .tooltip-text {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.social_link:hover svg path {
  fill: #0072ff;
  transition: all .5s;
}

.tooltip-text {
  background: #0072ff;
  bottom: 80%;
  color: white;
  display: block;
  left: 21.7%;
  font-size: 12px;
  margin-bottom: 15px;
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  max-width: 200px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 99999;
  border-radius: 5px;
}

.tooltip-text::before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.tooltip-text::after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid #0072ff 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0;
}

.doc_single_posts {
  margin-bottom: 95px;
}

.bdoc_blog_content .wp-block-image.size-full {
  margin-bottom: 60px;
  margin-top: 45px;
}

.doc_single_posts .wp-block-post-featured-image {
  border-radius: 32px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.time_wrap p:not(.doc_single_posttime) {
  display: none;
}

.time_wrap {
  display: flex;
  align-items: center;
  margin-left: 30px !important;
}

.time_wrap svg {
  margin-right: 5px;
}

.doc_single_post_date a {
  color: #231F20;

}

.doc_single_post_date a:hover {
  text-decoration: none;

}

.dashicons.dashicons-clock {
  margin-right: 5px;
}



.taxonomy-category a {
  background-color: #DAE4FC;
  color: #231F20;
  border-radius: 9px;
  padding: 6px 12px 6px 12px;
  text-decoration: none;
}

.taxonomy-category a:hover {
  text-decoration: none;
}

.doc_single_posts .wp-block-columns {
  align-items: flex-start !important;
}

.doc_single_posts .wp-block-columns .wp-block-column {
  align-self: flex-start;
}

.bdoc_blog_content p:first-child {
  color: #231F20;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Inter';
}

.bdoc_blog_content p:nth-child(2),
.bdoc_blog_content p:nth-child(3) {
  font-size: 18px;
  font-weight: 400;
  color: #4F4C4D;
  line-height: 28px;
}

.doccine_detail_content .wp-block-group {
  align-items: flex-start;
}

.bdoc_blog_content p a {
  color: #4677F0;
}

.doc_arc_heads {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc_arc_heads h4 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

.doc_read_morebtn a:empty {
  display: none;
}



.doc_read_morebtn .wp-element-button {
  display: flex;
  padding: 7px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border-color: #dedede !important;
  background: #fff;
  background-color: rgb(255, 255, 255);
  color: #231f20;
  font-family: var(--wp--preset--font-family--body);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.6s ease;
  margin-top: 0;
}

.doc_read_morebtn .wp-element-button:hover img {
  filter: brightness(800%);
}

.doc_recent_arcchild ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.doc_recent_arcchild ul::after {
  display: none;
}

.doc_recent_arc_self {
  max-width: 30.9%;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.doc_arccategory {
  padding: 6px 12px 6px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
}

.doc_arc_title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 20px 0;
}

.doc_arc_time .time_wrap {
  margin-left: 0 !important;
}

.doc_single_posttime {
  font-size: 14px;
  color: #231F20;
}

.doccine_detail_content .docc_blog_archive_posts {
  max-width: 30.93%;
  position: sticky;
  top: 120px;
  bottom: 0;
  margin-left: auto;
  width: 100%;
}

.entry-content.alignfull.bdoc_blog_content {
  max-width: 755px;
  width: 100%;
}

.doccine_detail_content .docc_blog_archive_posts li.doccine_form_section {
  max-width: 100%;
  margin-bottom: 0;
  margin-right: 0;
}

.doccine_detail_content .docc_blog_archive_posts li.doccine_form_section .doccine_content {
  margin-top: 20px;
  margin-bottom: 82px;
}

.wp-block-group.doccine_detail_content {
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 50px;
}

.bdoc_blog_content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 40px;
}

.doc_arc_time {
  margin-top: auto;
}

/* pricing page css start */
.wp-block-group.price-header {
  background: linear-gradient(166deg, rgb(255, 255, 255) 0%, rgb(223, 229, 244) 100%);
  padding-bottom: 300px;
  padding-top: 90px;
}

.price-header p {
  background-color: #DAE4FC;
  max-width: 508px;
  border-radius: 9px;
  padding: 6px 12px 6px 37px;
  position: relative;
  font-size: 18px;
}

.price-header p::before {
  content: "";
  background-image: url(./images/smiley.png);
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 9px;
}

.price-header h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin-top: 10px;
}

.wp-block-group.tabination {
  margin-top: -230px;
  padding: 0 20px;
}

ul.price-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #D2DCF4;
  max-width: 326px;
  width: 100%;
  border-radius: 9px;
  padding: 8px;
}

ul.price-tab li {
  max-width: 144px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  /* display: flex;
	justify-content: center;
	align-items: center; */
  border-radius: 7px;
  color: #4677F0;
  cursor: pointer;
}

ul.price-tab li a span {
  background-color: #FFF3D3;
  padding: 5px;
  font-size: 12px;
  color: black;
  font-weight: 500;
  line-height: 14.52px;
  margin-left: 10px;
  border-radius: 6px;

}

ul.price-tab li a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 5px;

}

ul.price-tab li.active a {
  background-color: #4677F0;
  color: white;
  border-radius: 6px;
}

ul.price-tab li::after {
  content: unset !important;
}

ul.price-tab li.active a:hover {
  color: white;
}

ul.price-tab::after {
  content: unset;
}

.wp-block-group.tab-detail {
  max-width: 803px;
  width: 100%;
  background-color: white;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 50px 35px;
}

.tab-detail h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #393637;
  margin-bottom: 0;
}

.month-detail p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  max-width: 270px;
  width: 100%;
  color: #393637;
}

.month-detail ul {
  margin-top: 70px;
}

.month-detail ul li {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #393637;
  display: flex;
  align-items: center;
  font-family: 'Inter';
}

.month-detail ul li::before {
  content: "";
  background-image: url(./images/star.svg);
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
}

.tab-detail .wp-block-columns {
  width: 100%;
  justify-content: space-between;
}

.wp-block-columns.yearly-detail {
  display: none;
}

.wp-block-column.yearly-detail {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  max-width: 320px;
}

.yearly-detail h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #393637;
  margin-bottom: 0;
}

.yearly-detail h3 span:not(.grey) {
	font-size: 16px;
}
.yearly-detail h3 span.grey {
	color: #B2B1B1;
	text-decoration: line-through;
	font-weight: 400;
}

.des-fees {
  color: #9C9A9A;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.tab-content .wp-block-button {
  max-width: 300px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 15px;
}

.yearly-detail a.wp-element-button::after {
  background-image: url(./images/up-arrow.svg);
  content: "";
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 26px;
  height: 26px;
  transition: all .4s ease;
  margin-left: 10px;
  position: static;
  border: none !important;
  outline: none;
}

.yearly-detail a.wp-element-button:hover::after {
  transform: rotate(90deg);
  margin-left: 20px;
}

.para-italic {
  color: #231F20;
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.wp-block-group.beyond-sec {
  /* max-width: 715px; */
  /* width: 100%; */
  /* border: 1px solid #E2E8F0; */
  margin-top: -30px;
  position: relative;
  z-index: -1;
  /* padding: 63px 45px 45px; */
  /* border-radius: 24px; */
  margin-bottom: 120px;
  padding: 0 20px;
}

.wp-block-group.beyond-sec>.wp-block-group {
  max-width: 715px;
  width: 100%;
  border: 1px solid #E2E8F0;
  /* position: relative;
	z-index: -1; */
  padding: 63px 40px 45px;
  border-radius: 24px;

}

.beyond-sec p {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.78px;
  color: #393637;
}

.beyond-sec ol {
  list-style: decimal;
  columns: 2;
}

.group-4-wrap.pricing-faq {
  margin-bottom: 60px;
}

.group-4-wrap.pricing-faq p {
  color: #000;
  font-family: var(--wp--preset--font-family--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145.455%;
  margin-top: 10px !important;
  max-width: 750px;
  margin-bottom: 70px;
}

.group-4-wrap.pricing-faq p.doccine-detail {
  color: #231F20;
  font-size: 18px;
  font-weight: 400;
}

/* .beyond-sec ol li:first-child{
  margin-top: 0;
} */
.beyond-sec ol li {
  list-style: decimal;
  padding-left: 15px;
  color: #393637;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  border-bottom: 1px solid #F4F3F4;
  margin-right: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
  margin-top: 0;
  font-family: 'Inter';

}

.beyond-sec ol li:nth-child(4n) {
  border-bottom: 0;
}

/* for testimonial carousel start */
.wp-block-group.doc-testimonial {
  padding-bottom: 100px;
  padding-left: 74px;
  background: linear-gradient(166deg, rgb(255, 255, 255) 0%, rgb(223, 229, 244) 100%);
  padding-top: 70px;
}

.doc-testimonial h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #231F20;
  margin-bottom: 50px;
}



/* customize testimonial */
.wp-block-group.doc-test-row {
  flex-wrap: wrap;
  width: 100%;
}

.doc-test-item {
	background: white;
	border: 1px solid #E9E9E9;
	border-radius: 50px;
	padding: 50px !important;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
 .owl-carousel .owl-stage {

	display: flex;
}
 .owl-carousel .owl-item {

	height: auto;
}
.wp-block-group.doc-test-item p {
  font-size: 24px;
}

.wp-block-group.doc-test-item .wp-block-column p {
	font-size: 16px;
	font-weight: 400;
}

.doc-test-item .wp-block-columns {
	margin-top: 100px;
	align-items: center !important;
	gap: 20px;
	justify-content: space-between;
	width: 100%;
}

.doc-test-item .wp-block-column h5 {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
}

.owl-nav {
  position: absolute;
  right: 70px;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  background-image: url(./images/arrow-right-circle.png);
  width: 35px;
  height: 35px;
  display: block;
  filter: brightness(0) saturate(100%);
  font-size: 0;
}
.owl-carousel .owl-nav button.owl-prev {
	transform: rotate(-180deg);
  margin-right: 20px;
}
.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span{
  filter: unset;
}
.docc-label {
	border-left: 5px solid #4677F0;
	padding-left: 20px;
}
/* pricing page css end */

/* Responsive Start */
@media(max-width:1600px) {
  html body {
    margin: 0;
    padding-top: 60px;
  }

  header>.wp-block-group.is-layout-constrained {
    padding: 20px 15px !important;
  }

  .wp-block-group.hospital-img {
    padding: 0px 10px;
  }


  /* 404 page css start */
  .doccine_404 {
    padding-bottom: 100px;
  }
}

@media(max-width:1200px) {
  html body {
    margin: 0;
    padding-top: 60px;
  }

  p.whatsapp-link,
  p.schedule-link {
    margin-right: 0;
  }

  header .wp-block-image {
    max-width: 95px;
    width: 100%;
    margin-right: 0;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
    padding: 0px 5px 0px 5px;
  }

  a.wp-element-button {
    font-size: 16px;
  }

  .hero-section h1 {
    font-size: 41px !important;
  }

  .group-1 {
    padding-bottom: 125px !important;
  }

  .group-1-wrap h2 {
    font-size: 35px;

  }

  .group-1-wrap p {
    font-size: 18px !important;
  }

  .group-1-wrap .practice-col-all h3 {
    font-size: 20px !important;
    margin-bottom: 8px;
  }

  .group-1-wrap .wp-block-column.is-layout-flow p {
    font-size: 16px !important;
    width: 90%;
  }

  .doccine-journey {
    padding-bottom: 100px !important;
    padding-top: 59px !important;
    padding-left: 25px !important;
  }

  .doccine-journey h2 {
    font-size: 30px !important;
  }

  .group-2 {
    padding-top: 50px !important;
  }

  .group-2 h2 {
    font-size: 32px;
  }

  .efficiency-content {
    font-size: 17px !important;
    max-width: 744px;
    width: 100%;
    margin: 0 auto !important;
  }

  .care-col-1 {
    margin-top: 60px !important;
  }

  .care-heading {
    font-size: 25px;
  }

  .care-content {
    font-size: 16px;
  }

  .care-link a {
    font-size: 16px;
    padding-top: 10px;
  }

  .care-col-5 {
    margin-top: 90px !important;
  }

  .care-col-6 {
    margin-top: -40px !important;
  }

  .group-3 {
    padding-top: 80px !important;
    padding-bottom: 35px !important;
  }

  h2.group-3-head {
    font-size: 29px !important;
    margin-bottom: 35px !important;
  }

  .check-box-wrap ul li {
    margin-bottom: 5px !important;
  }

  .emr-class {
    margin-top: 60px;
  }

  .group-3-head-2 {
    font-size: 30px;
  }

  .emr-ul {
    margin-top: 35px;
  }

  .doccine-box-content {
    font-size: 18px;
    margin-top: 15px !important;
  }

  .doccine-box-btn {
    margin-top: 25px;
  }

  .doccine-box {
    padding: 30px;
  }

  .group-4 {
    padding-bottom: 60px !important;
  }

  .group-4-head {
    font-size: 28px !important;
  }

  .group-4-wrap p {
    font-size: 18px;
    margin-top: 0px !important;
  }

  .group-4-wrap .wp-block-group .wp-block-details {
    padding-bottom: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    padding-top: 15px;
  }

  .is-style-arrow-icon-details summary {
    font-size: 16px;
  }

  p.doccine-detail {
    font-size: 16px !important;
    padding-top: 10px !important;
  }

  .group-5 {
    padding-bottom: 30px !important;
  }

  .group-5-wrap h2 {
    font-size: 30px !important;
  }

  .group-5-wrap p {
    margin-top: 0;
    font-size: 16px !important;
  }

  .hospital-img .wp-block-group:last-child {
    margin-bottom: 20px;
  }

  .practice-sec h2 {
    margin-bottom: 0;
    font-size: 30px;
  }

  .practice-sec p {
    font-size: 18px !important;
  }

  .transform-img {
    gap: 10px;
    margin-top: 30px !important;
    margin-bottom: 30px;
  }

  .transform-img h3 {
    font-size: 14px !important;
  }

  .transform-btn a.wp-element-button.has-contrast-color {
    font-size: 16px;
  }

  footer>.wp-block-group {
    margin-top: 0;
    padding-top: 50px !important;
    padding-bottom: 20px !important;
  }

  .footer-link-ul {
    margin-top: 25px !important;
  }

  .footer-links {
    padding-bottom: 30px;
  }

  .copy-right {
    padding: 21px 40px;
  }

  footer .footer-last-row {
    padding-top: 10px !important;
  }

  .footer-link-li {
    margin-right: 25px !important;
    font-size: 14px;
  }

  .hero-section>.svg-image {
    margin-bottom: -180px !important;
    max-width: 620px !important;
  }

  .group-4-wrap .wp-block-group .wp-block-details {
    transition: height 0.3s ease-in-out;
    height: 55px;
  }

  .group-4-wrap .wp-block-group .wp-block-details[open=""] {
    height: 90px;
  }

  .is-style-arrow-icon-details summary::after {
    top: 0;
  }

  /* privacy policy css start */

  .our-policy .wp-block-columns {
    max-width: 95%;
  }

  .our-policy {
    padding-left: 20px;
  }

  .cms-content {
    padding-left: 15px;
    padding-right: 60px;
  }

  .cms-content.terms-condition {
    max-width: 1170px;
  }

  /* 404 page start */
  .doccine_404 {
    padding-bottom: 0;
    margin-top: 0 !important;
  }

  /* blog section css start */
  .doccine-blog-sec {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .doccine-blog-sec h1 {
    font-size: 41px;
  }

  .doccine-blog-sec p {
    font-size: 14px;
  }

  .blog_title h3 {
    font-size: 20px;
  }

  .docc_blog-archive_main {
    margin: 50px auto !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .docc_blog_head h3 {
    font-size: 30px;
  }

  .doc_blog_li .blog_content_part {
    padding: 15px;
  }

  .doc_blog_li .blog_content_part .blog_category {
    font-size: 14px;
  }

  .doc_blog_li .blog_title {
    font-size: 15px;
  }

  .blog_time p {
    font-size: 13px;
  }

  .docc_blog_archive_posts li.doccine_form_section {

    padding: 25px;
    font-size: 14px;
  }

  .docc_blog_archive_posts li.doccine_form_section h4 {

    font-size: 25px;
  }

  .doccine-journey-form .wpforms-container select.wpforms-field-medium {
    height: 45px;
    font-size: 14px;
  }

  .doccine-journey-form .wpforms-field-medium.wpforms-smart-phone-field {

    font-size: 14px;
    height: 45px;
  }

  .doccine-journey-form .wpforms-submit-container .wpforms-submit {
    font-size: 14px;
    height: 45px;
  }

  .blog_category {
    font-size: 16px;
  }

  /* blog detial page css start */
  .wp-block-group.section_first_single {
    padding: 0 15px 0 0;
  }

  /* .wp-block-group.doccine_detail_content {
    padding: 0 15px 50px;
  } */
  .doc_single_posts {
    margin-top: 60px;
    margin-bottom: 50px;
    padding: 0 15px;
  }

  .doc_single_posts .wp-block-columns {
    padding: 0 15px 0 0;
  }

  .doc_single_posts .wp-block-group:nth-child(3) {
    padding: 0 15px;
  }

  .doc_single_posts h1 {
    font-size: 26px !important;
    margin-top: 20px;
  }

  .bdoc_blog_content p:first-child {
    font-size: 22px;
    line-height: 32px;
  }

  .bdoc_blog_content p:nth-child(2),
  .bdoc_blog_content p:nth-child(3) {
    font-size: 16px;
  }

  .bdoc_blog_content h3 {
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 25px;
  }

  .doc_arc_heads h4 {
    font-size: 30px;
  }

  .doc_arc_heads h4 {
    font-size: 25px;
  }

  .doc_recent_arc_self {
    padding: 10px;
  }

  .doc_arc_title {
    font-size: 16px;

    margin: 15px 0;
  }

  .doc_arc_title {
    font-size: 16px;
    line-height: 24px;
  }

  .section_first_single .wp-block-post-title {
    margin-top: 20px;
    padding-bottom: 55px;
  }

  /* owl carousel css start */
  .wp-block-group.doc-testimonial {
    padding-bottom: 100px;
    padding-left: 74px;
    background: linear-gradient(166deg, rgb(255, 255, 255) 0%, rgb(223, 229, 244) 100%);
    padding-top: 40px;
  }
  .doc-test-item {
    padding: 30px !important;
  }
  .wp-block-group.doc-test-item p {
    font-size: 20px;
  }
  .doc-test-item .wp-block-columns {
    margin-top: 60px;
  }
  .doc-testimonial h3 {
    font-size: 26px;
  }
  .doc-test-item .wp-block-column h5 {
    font-size: 16px;
  }
  .wp-block-group.doc-test-item .wp-block-column p {
    font-size: 14px;
  }
  .owl-nav {
    right: 20px;
  }
}

@media(max-width:930px) {
  body .is-layout-constrained>.alignwide {
    max-width: 100% !important;
    width: 100%;
    /* text-align: center; */
  }

  .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }

  /* .wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
    display: none !important;
  } */
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    background-color: inherit;
    display: none;
    position: relative;
    width: 100%;
    z-index: auto;
  }

  /* .wp-block-navigation:not(.has-text-color).wp-block-navigation__responsive-container.is-menu-open{
color: #000;
  } */
  /* .wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
    background-color: inherit !important;
    color: inherit !important;
  } */
  .top-nav .wp-block-group {
    order: 2;
  }

  p.whatsapp-link img,
  p.schedule-link img {

    margin-right: 0;
  }

  p.whatsapp-link,
  p.schedule-link {
    margin-right: 0;
  }

  .is-responsive.wp-block-navigation-is-layout-flex {
    gap: 0 !important;
    order: 1;
  }

  p.schedule-link a strong {
    display: none;
  }

  p.whatsapp-link a strong {
    display: none;
  }

  .login .wp-block-button .wp-block-button__link {
    padding: 7px 14px;
    font-size: 14px !important;
  }

  .hero-section {
    padding-bottom: 0 !important;
    padding-top: 48px !important;
  }

  .hero-section>.svg-image {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .svg-image svg {
    height: auto;
  }

  .hero-section>.wp-block-group.signup-group {
    margin-top: 0;
  }

  .hero-section h1 {
    font-size: 30px !important;
    margin: 0 80px !important;
  }

  .hero-section p {
    font-size: 16px;
    margin: 0 125px !important;
  }

  a.wp-element-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-section .wp-element-button {

    margin-top: 5px;
  }

  .group-1 {
    padding-bottom: 70px !important;
  }

  .group-1-wrap h2 {
    font-size: 25px;
    padding-bottom: 5px;
  }

  .group-1-wrap p {
    font-size: 16px !important;
    width: 64.26%;
  }

  .group-1-wrap .practice-col-all h3 {
    font-size: 16px !important;
    margin-bottom: 0px;
    margin-top: 0;
  }

  .group-1-wrap .wp-block-column.is-layout-flow p {
    font-size: 14px !important;
  }

  .doccine-journey {
    padding-bottom: 70px !important;
    padding-top: 40px !important;
    padding-left: 10px !important;
  }

  .doccine-journey h2 {
    font-size: 25px !important;
  }

  .doccine-journey-form .wpforms-container select.wpforms-field-medium {
    height: 46px;
    font-size: 14px;
  }

  .doccine-journey-form .wpforms-field-medium.wpforms-smart-phone-field {
    font-size: 14px;
    height: 46px;
  }

  body .signup-modal.doccine-journey-form .wpforms-submit-container .wpforms-submit:before,
  .doccine-journey-form .wpforms-submit-container .wpforms-submit {
    font-size: 14px;
    height: 46px;
  }

  body .signup-modal.doccine-journey-form .wpforms-submit-container .wpforms-submit:before {
    display: flex;
    align-items: center;
  }

  .wp-block-group.Doccine-journey-points {

    margin-top: 0;
  }

  .doccine-row-points {
    gap: 20px;
    margin: 40px auto 0 !important;
  }

  .wp-block-group.doccine-points {
    gap: 5px;
  }

  .doccine-points p.has-text-align-center {
    font-size: 10px !important;
  }

  .doccine-points .wp-block-group {
    margin-top: 0;
  }

  .doccine-points h2.wp-block-heading {
    font-size: 16px !important;
  }

  .doccine-row-points:last-child {
    margin-top: 35px !important;
  }

  .efficiency-content {
    font-size: 15px !important;
  }

  .care-col-1 {
    margin-top: 50px !important;
  }

  .care-heading {
    font-size: 20px;
  }

  .care-content {
    font-size: 15px;
  }

  .care-link a {
    font-size: 14px;
    padding-top: 0;
  }

  .care-col-2 {
    margin-top: 0px !important;
  }

  .group-2 {
    padding-top: 30px !important;
    padding-bottom: 55px !important;
  }

  .group-2 h2 {
    font-size: 25px;
  }

  .group-3 {
    padding-top: 45px !important;
    padding-bottom: 20px !important;
  }

  h2.group-3-head {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }

  .check-box-wrap ul li {

    padding: 22px 12px 12px !important;
  }

  .check-box-wrap ul li .wpforms-field-label-inline {
    font-size: 13px !important;
  }

  .cb-form-num .wpforms-field-medium.wpforms-smart-phone-field {
    height: 46px;
    font-size: 14px;
  }

  .group-3-wrap .wpforms-validate .wpforms-submit-container .wpforms-submit {
    height: 46px;
    font-size: 14px;
    font-weight: 700;
  }

  .group-3-wrap .wpforms-field-select select.wpforms-field-medium {
    height: 46px;
  }

  .group-3-head-2 {
    font-size: 26px;
    line-height: 123.077%;
  }

  .doccine-icon img {
    max-width: 170px;
    width: 100%;
  }

  .doccine-box-content {
    font-size: 16px;
    margin-top: 0 !important;
  }

  .group-4 {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
  }

  .group-4-head {
    font-size: 23px !important;
  }

  .group-4-wrap p {
    font-size: 15px;

  }

  .group-4-wrap .wp-block-group {
    margin: 25px auto 0;
  }

  .group-4-wrap .wp-block-group .wp-block-details {
    padding-bottom: 15px;
    margin-top: 0px;
    padding-top: 10px;
    height: 46px;
  }

  /* .group-4-wrap .wp-block-group .wp-block-details[open=""] {
    height: 110px;
  } */
  .group-4-wrap .wp-block-group .wp-block-details[open=""] {
    height: auto;
  }

  .is-style-arrow-icon-details summary {
    font-size: 14px;
    font-weight: 600;
  }

  p.doccine-detail {
    font-size: 14px !important;
  }

  .group-5-wrap h2 {
    font-size: 22px !important;
  }

  .group-5-wrap p {
    font-size: 14px !important;
  }

  .hospital-img .wp-block-group {

    margin-bottom: 40px;
  }

  .doctors-bg img {
    max-width: 70%;
    margin: 0 auto;
    width: 100%;
    display: flex;
  }

  .practice-sec {
    margin-top: 40px !important;
  }

  .practice-sec h2 {
    font-size: 24px;
  }

  .practice-sec p {
    font-size: 15px !important;
    margin-top: 5px;
  }

  .practice-sec .wp-block-spacer {
    height: 0 !important;
  }

  .wp-block-buttons.transform-btn {
    margin-top: 0;
  }

  .footer-link-ul {
    margin-top: 5px !important;
  }

  .copy-right {
    padding: 0px 0;
  }

  footer .footer-last-row {
    padding-top: 0px !important;
    margin-top: 5px;
  }

  footer .footer-last-row {
    font-size: 12px;
  }

  .footer-links {
    padding-bottom: 20px;
  }

  footer>.wp-block-group {
    padding: 50px 20px 20px !important;
  }

  .doccine-footer-wrap p {

    font-size: 14px;
  }

  .doccine-footer-wrap .footer-links {
    margin-top: 23px;
  }

  .footer-sl-li {
    margin-right: 5px;
  }

  .footer-links .footer-sl-li a {

    font-size: 14px;
  }

  .footer-links .footer-sl-li:nth-child(3) {
    margin-right: 10px;
  }

  .our-policy h2 {
    font-size: 36px;
  }

  .our-policy .wp-block-columns .wp-block-column:nth-child(1) p {
    margin-right: 0;
    font-size: 16px;
  }

  .our-policy .wp-block-columns .wp-block-column:nth-child(2) p:first-child {
    font-size: 16px;
  }

  .our-policy .wp-block-columns .wp-block-column:nth-child(2) {
    font-size: 16px;
  }

  .cms-content {
    padding-left: 0;
    max-width: calc(100% - 220px - 70px);
    width: 100%;
  }

  .cms-content h3 {
    font-size: 28px;
  }

  .cms-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .content-group {
    max-width: 220px;
    padding: 0;
  }

  .content-table-wrap h3 {
    font-size: 20px;

  }

  .cms-content ol li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .content-table-wrap .content-list li {
    font-size: 14px;
  }

  .doccine_404_paragrapgh {
    padding: 0 36px;
  }

  /* blog page css start */
  .doccine-blog-sec h1 {
    font-size: 35px;
  }

  .doccine-blog-sec .wp-block-button {
    min-width: 255px;
  }

  .docc_blog_archive_posts li.doccine_form_section h4 {
    font-size: 22px;
  }

  .docc_blog_archive_posts li.doccine_form_section {
    padding: 20px;
  }

  .doc_single_posts .wp-block-columns {
    padding: 0 15px;
  }

  .wp-block-group.doccine_detail_content {
    margin-top: 0 !important;
  }

  .bdoc_blog_content p:first-child {
    font-size: 20px;
    line-height: 28px;
  }

  .bdoc_blog_content p:nth-child(2),
  .bdoc_blog_content p:nth-child(3) {
    font-size: 14px;
    line-height: 22px;
  }

  .bdoc_blog_content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
  }

  .doc_arc_heads h4 {
    font-size: 22px;
  }

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

  .doc_recent_arc_self {
    border-radius: 15px;
    padding: 10px;
    max-width: 31.99%;
  }

  /* Pricing page css start */
  .price-header p {

    max-width: 458px;
    font-size: 16px;
  }

  .price-header h1 {
    font-size: 35px;
  }

  .wp-block-group.tab-detail {

    padding: 30px 35px;
  }

  .yearly-detail h3 {
    font-size: 26px;
  }

  .tab-detail h4 {
    font-size: 22px;
  }

  .group-4-wrap.pricing-faq .group-4-head {
    font-size: 23px !important;
    margin-bottom: 5px;
  }
  .wp-block-group.doc-testimonial {
    padding-left: 20px;}
  .doc-test-item {
    padding: 25px !important;
    border-radius: 25px;
  }
  .wp-block-group.doc-test-item p {
    font-size: 18px;
  }
  /* Pricing page css end */
  .wp-block-group.doc-testimonial {
    padding-bottom: 60px;
    padding-top: 30px;
  }
  .doc-testimonial h3 {
    margin-bottom: 30px;
  }
}

@media(max-width:781px) {
  header .wp-block-group {
    background: linear-gradient(180deg, #FFF 0%, #F5F8FF 100%);
    /* padding: 20px !important; */
  }

  div#mega-menu-wrap-max_mega_menu_1 {
    background: transparent;
  }

  header>.wp-block-group.is-layout-constrained {
    padding: 20px 23px !important;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
    margin-left: 0;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated {
    transform: scale(1);
  }

  header .wp-block-site-logo {
    display: none;
    order: 1;
    max-width: 38px;
    width: 100%;
  }

  p.schedule-link a strong {
    display: none;
  }

  p.whatsapp-link a strong {
    display: none;
  }

  .wp-block-group.top-nav {
    width: 50%;
    gap: 20px;
  }

  .login .wp-block-button .wp-block-button__link {
    padding: 6px 9px;
    font-size: 14px !important;
  }

  .wp-block-site-logo a {
    width: 100%;
  }

  .custom-logo {
    min-width: 38px !important;
    width: 100%;
  }

  .is-responsive.wp-block-navigation-is-layout-flex {
    order: 0;
  }

  .top-nav .wp-block-group {
    order: 1;
    display: none;
  }

  .hero-section h1 {
    font-size: 26px !important;
    margin: 0 0 !important;
  }

  .hero-section p {
    font-size: 14px;
    margin: 0 0 !important;
    line-height: 157.143%;
    margin-bottom: 11px !important;
  }

  .group-1 {
    padding-bottom: 64px !important;
    padding-top: 117px !important;

  }

  .group-1-wrap .wp-block-spacer {
    display: none;
  }

  .group-1-head {
    margin-bottom: 18px;
  }

  .group-1-wrap .practice-col-all {
    gap: 15px;
    padding: 15px;
    margin-top: 0;
  }

  .practice-col-1,
  .practice-col-2,
  .practice-col-3,
  .practice-col-4 {
    padding-bottom: 0 !important;
  }

  .care-col-1 .wp-block-column.is-vertically-aligned-center {
    margin-top: -76px !important;
  }

  .group-1-wrap h2 {
    font-size: 26px;
    padding-top: 56px;
  }

  .group-1-wrap p {
    font-size: 14px !important;
    width: 100%;
    line-height: 157.143%;
    font-family: var(--wp--preset--font-family--body);
  }

  /* a.wp-element-button {
    padding: 9px 20px;
  } */
  .doccine-row-points {
    flex-direction: column;
  }

  .doccine-row-points>div {
    margin-bottom: 20px;
  }

  .doccine-row-points:last-child {
    margin-top: 13px !important;
  }

  .doccine-points p.has-text-align-center {
    font-size: 13px !important;
  }

  .doccine-journey {
    padding-bottom: 36px !important;
    padding-top: 54px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .doccine-journey h2 {
    font-size: 26px !important;
  }

  .wp-block-group.doccine-journey-form {
    margin-top: 40px;
  }

  .group-2 {
    padding-top: 55px !important;
    background: transparent !important;
    padding-bottom: 24px !important;
  }

  .group-2 h2 {
    font-size: 26px;
  }

  .efficiency-content {
    font-size: 14px !important;
    margin-top: 10px !important;
  }

  .care-heading {
    font-size: 22px;
    margin-bottom: 7px;
  }

  .care-content {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .care-link a {
    font-size: 16px;
    display: flex;
    justify-content: center;
  }

  .efficiency-and-care .wp-block-columns:nth-child(2n) {
    border-radius: 20px;
    background: linear-gradient(180deg, #FFF 31.88%, rgba(244, 223, 242, 0.28) 100%);
    padding: 20px;
    align-items: center;
    text-align: center;
    margin-bottom: 30px !important;
  }

  .efficiency-and-care .wp-block-columns:nth-child(2n+1) {
    border-radius: 20px;
    background: linear-gradient(180deg, #FFF 31.88%, rgba(244, 244, 223, 0.28) 100%);
    align-items: center;
    text-align: center;
    padding: 19px 19px 29px;
    flex-direction: column-reverse;
  }

  .care-col-1 .wp-block-column.is-vertically-aligned-center {
    margin-top: -83px !important;
  }

  .care-col-2 .wp-block-column.is-vertically-aligned-center {
    margin-top: 60px;
  }

  .care-col-3 .wp-block-column.is-vertically-aligned-center {
    margin-top: -110px;
  }

  .care-col-3 {
    margin-top: 72px !important;
  }

  .care-col-4 .wp-block-column.is-vertically-aligned-center {
    margin-top: 41px;
  }

  .care-col-4 {
    margin-top: 9px !important;
  }

  .care-col-5 .wp-block-column.is-vertically-aligned-center {
    margin-top: -122px;
  }

  .care-col-5 .wp-block-column:not(.is-vertically-aligned-center) {
    flex-basis: calc(52% - 28px) !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }

  .care-col-5 {
    margin-top: 77px !important;
  }

  .care-col-6 .wp-block-column.is-vertically-aligned-center {
    margin-top: 38px;
  }

  .efficiency-and-care .wp-block-columns .wp-block-column:nth-child(2) {
    margin-left: 0;
  }

  .care-col-6 {
    margin-top: 0px !important;
  }

  .care-col-7 .wp-block-column.is-vertically-aligned-center {
    margin-top: 24px;
  }

  .care-col-7 {
    margin-top: 77px !important;
  }

  .group-3 {
    padding-top: 0 !important;

  }

  h2.group-3-head {
    font-size: 26px !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px !important;
  }

  /* for select dropdwon in checkbox section */
  .group-3-wrap .wpforms-conditional-field {
    display: block !important;
  }

  /* for checkbox section */
  .wpforms-field.wpforms-field-payment-checkbox.check-box-wrap {
    display: none;
  }

  .emr-class {
    margin-top: 55px;
  }

  .doccine-icon img {
    max-width: 117px;
    width: 100%;
  }

  .doccine-box {
    padding: 25px;
  }

  .doccine-box-content {
    font-size: 14px;
    margin-top: 12px !important;
  }

  .group-4 {
    padding-top: 42px !important;
    padding-bottom: 30px !important;
  }

  .group-4-head {
    font-size: 26px !important;
  }

  .group-4-wrap p {
    font-size: 14px;
    margin-top: 10px !important;
  }

  .is-style-arrow-icon-details summary {
    font-weight: 700;
  }

  p.doccine-detail {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .group-5 {
    padding-top: 15px !important;
  }

  .group-5-wrap h2 {
    font-size: 26px !important;
  }

  .group-5-wrap p {
    margin-top: 10px;
  }

  .hospital-img .wp-block-group {
    flex-wrap: wrap;
    align-items: unset;
  }

  .hospital-img .wp-block-group .wp-block-image.size-full {
    max-width: 48%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .doctors-bg img {
    max-width: 60%;
  }

  .practice-sec {
    margin-top: 26px !important;
  }

  .practice-sec h2 {
    font-size: 26px;
  }

  .practice-sec p {
    font-size: 14px !important;
    margin-top: 5px;
  }

  .transform-img h3 {
    font-size: 16px !important;
  }

  .wp-block-buttons.transform-btn {

    flex-direction: column;
    width: 100%;
    padding: 15px 38px;
  }

  .wp-block-buttons.transform-btn>.wp-block-button {
    display: inline-block;
    margin: 0;
    width: 100%;
  }

  .transform-btn a.wp-element-button.has-contrast-color {
    font-size: 14px;
  }

  a.wp-element-button {
    font-size: 14px;
    padding: 8px 20px;
  }

  footer>.wp-block-group {
    padding: 55px 20px 20px !important;
  }

  .footer-links {
    padding-bottom: 47px;
    margin-top: 17px;
  }

  .copy-right {
    padding: 20px 0;
  }


  footer .footer-last-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .cms-content {
    max-width: calc(100% - 220px - 30px);
  }

  .cms-content p {
    font-size: 14px;
  }

  .our-policy .wp-block-columns {

    text-align: center;
  }

  .our-policy .wp-block-columns .wp-block-column:nth-child(1) p {
    margin-bottom: 20px;
  }

  .our-policy .wp-block-columns .wp-block-column:nth-child(2) {
    align-items: center;
  }

  /* 404 page css start */
  .doccine_404_heading {
    font-size: 24px;
  }

  .doccine_404_paragrapgh {
    font-size: 16px;
  }

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

  .doccine-blog-sec h1 {
    text-align: center;
    font-size: 26px;
  }

  .doccine-blog-sec p {
    text-align: center;
    margin: 0 auto;
  }

  .doccine-blog-sec .wp-block-buttons.open-modal {
    margin: 0 auto;
  }

  .docc_blog_archive_posts {

    justify-content: space-between;
  }

  .docc_blog_archive_posts li {
    max-width: 31.93%;
    margin-right: 0;
  }

  .wp-block-group.section_herobanner_parenrt {
    margin-top: 64px;
  }

  .section_first_single .wp-block-post-featured-image {
    padding: 15px 0 0 15px;
  }

  .wp-block-columns>.wp-block-column.month-detail {
    flex-basis: 50% !important;
  }

  /* pricing page css start */
  .price-header p {
    max-width: 408px;
    font-size: 14px;
  }

  .price-header h1 {
    font-size: 30px;
  }

  .tab-detail h4 {
    font-size: 20px;
  }

  .month-detail p {
    font-size: 16px;
  }

  .month-detail ul li {
    font-size: 16px;
  }

  .yearly-detail h3 {
    font-size: 22px;
  }

  .des-fees {
    font-size: 14px;
  }

  ul.price-tab li {
    font-size: 14px;
  }

  .group-4-wrap.pricing-faq {
    margin-bottom: 80px;
  }
  .doc-test-item .wp-block-columns .wp-block-column:first-child {
    flex-basis: 13.33% !important;
    flex-grow: unset;
  }
  .doc-test-item .wp-block-columns .wp-block-column:last-child {
    flex-basis:78.66% !important
  }
 
 
}


@media(max-width:768px) {
  html body {
    margin: 0;
    padding-top: 80px;
  }

  .d-logo>.wp-block-group {
    display: none;
  }

  .wp-block-site-title {
    display: none;
  }

  header .wp-block-site-logo {
    display: block;
    z-index: 1;
  }

  .mega-toggle-blocks-right {
    background-color: white;
  }

  .mega-toggle-animated-inner {
    top: -1px !important;
    background-color: #0B4DF1 !important;
  }

  .mega-toggle-animated-inner::before {
    top: 9px !important;
    background-color: #0B4DF1 !important;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item {
    border-bottom: 1px solid #F4F3F4;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
    padding: 0px 20px 0px 20px;
  }

  .mega-toggle-animated-inner::after {
    top: 18px !important;
    background-color: #0B4DF1 !important;
  }

  .wp-block-group.mega-menu-sec {
    justify-content: flex-start;
    gap: 10px;
  }

  .wp-block-group.d-logo {
    order: 1;
    gap: 0;
    margin-right: auto;
  }

  .mega-menu-sec .wp-block-group.toggle-btn {
    flex-wrap: nowrap;
    margin: 0;
    display: none;
  }

  .wp-block-group.toggle-btn {
    order: 0;
  }

  .wp-block-group.btn-grp {
    order: 2;
    margin-left: auto;
  }

  /* hamberger menu css start */
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle {
    background-color: transparent;
    z-index: 2;
    position: relative;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
    width: 35px;
    height: 17px;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before,
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
    width: 26px;
    height: 3px;
  }

  .toggle-btn .mega-toggle-block {
    margin-right: 0px !important;
  }

  li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
  li.mega-menu-item>a.mega-menu-link:hover,
  li.mega-menu-item>a.mega-menu-link:active,
  li.mega-menu-item>a.mega-menu-link:focus {
    color: #231F20 !important;

  }

  #mega-menu-max_mega_menu_1 {
    max-width: 390px !important;
    width: 100% !important;
    /* top: 150% !important; */
    min-height: 100vh !important;
    height: 100% !important;
    overflow: scroll !important;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle+#mega-menu-max_mega_menu_1 {
    background: white;
    box-shadow: navajowhite;
    left: -410px;
    transition: all .5s;
    position: fixed !important;
    top: 0;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    z-index: 1;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open+#mega-menu-max_mega_menu_1 {

    left: 0% !important;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
    color: #231F20;
    font-size: 16px;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
    color: #231F20;
    background: white;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-megamenu>ul.mega-sub-menu {
    background-color: white !important;
    color: #231F20 !important;
  }

  ul.mega-sub-menu>li.mega-menu-column {
    border-right: none !important;

  }

  .mega-menu-columns-9-of-12 .main-menu {
    column-count: 1;
  }

  .textwidget h6 {
    color: #231F20;
    margin-bottom: 12px;
  }

  .main-menu li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .main-menu li a {
    color: #231F20;
  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-megamenu>ul.mega-sub-menu {
    width: 100%;

  }

  #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding: 0;

  }

  .mega-menu-columns-6-of-12 .main-menu {
    column-count: 1;
  }

  .login .wp-block-button img {
    width: 20px !important;
  }

  p.whatsapp-link,
  p.schedule-link {
    margin-right: 0;
    width: 22px;
  }

  p.whatsapp-link img,
  p.schedule-link img {

    width: 15px !important;
  }

  .hero-section .wp-element-button {
    min-width: 255px;
    margin-top: 0;
  }

  .doccine-journey {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
    background-position: 100% center;
    background-size: cover;
    position: relative;
  }

  .doccine-journey::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(35, 31, 32, 0.85) 0%, #231F20 49%, #231F20 100%);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    transform: scaleX(-1);
  }

  .doccine-journey>div {
    position: relative;
    z-index: 1;
  }

  .care-col-1 {
    margin-top: 2px !important;
  }

  .care-col-1 .wp-block-column.is-vertically-aligned-center {
    margin-top: -47px !important;
  }

  .care-col-2 {
    margin-top: 0px !important;
  }

  .care-col-2 .wp-block-column.is-vertically-aligned-center {
    margin-top: 25px;
  }

  .care-col-3 {
    margin-top: 30px !important;
  }

  .care-col-5 {
    margin-top: 30px !important;
  }

  .care-col-7 {
    margin-top: 30px !important;
  }

  .hospital-img .wp-block-group {
    margin-bottom: 0px !important;
  }

  .footer-link-li {
    margin-right: 15px !important;
    font-size: 13px;
  }

  body .signup-modal .sign-upfree {
    max-width: 310px;
    padding: 25px;
  }

  body .signup-modal .sign-upfree h2 {
    font-size: 18px;
  }

  body .signup-modal .sign-upfree p {
    font-size: 14px;
  }

  div.wpforms-container-full {
    margin: 20px auto;
  }

  footer .footer-last-row {
    flex-direction: column;
  }

  .footer-sl-li {
    margin-bottom: 5px;
  }

  .footer-links .footer-sl-li:nth-child(3) {
    border-right: none;
  }

  .footer-links .footer-sl-li a svg {
    margin-right: 7px;
    width: 20px;
  }

  .footer-sl-li:nth-child(4),
  .footer-sl-li:nth-child(5) {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-sl-li a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .copy-right {
    padding: 0 0;
  }

  footer .footer-last-row {
    gap: 20px;
    margin-top: 10px;
  }

  .cms-content ol li {
    font-size: 14px;
  }

  /* for privacy policy css start */
  .content-main {
    flex-direction: column-reverse;
  }

  .content-main::before {
    content: none;
  }

  .cms-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .content-group {
    max-width: 96%;
    margin: 40px 10px !important;
    padding: 0 0 0 20px;
    max-height: 220px;
    overflow: auto;
    position: static;
    height: 100%;
  }

  .content-table-wrap {
    padding-top: 30px;
  }

  .content-table-wrap .content-list li {
    margin-bottom: 15px;
  }

  .cms-content {
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .cms-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .cms-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cms-content h6 {
    font-size: 18px;
  }

  /* blog page css start */
  .docc_blog_head h3 {
    font-size: 24px;
  }

  .dropdown .dropdown-label {
    height: 34px;
    padding: 3px 42px 4px 10px;
    width: 200px;
    font-size: 16px;
  }

  .docc_blog_archive_posts li {
    max-width: 48%;
    margin-bottom: 15px;
  }

  .doc_blog_li .blog_title {
    margin-bottom: 15px;
  }

  .docc_blog_archive_posts li.doccine_form_section h4 {
    font-size: 20px;
  }

  .docc_blog_archive_posts li.doccine_form_section {
    font-size: 12px;
  }

  .docc_blog_archive_posts li.doccine_form_section {
    padding: 20px 15px;
    font-size: 14px;
  }

  .docc_blog-archive_main {
    margin: 30px auto !important;
  }

  /* blog detail page start */
  .wp-block-group.section_herobanner_parenrt {
    margin-bottom: 55px;
    margin-top: 20px;
  }

  .doc_single_posts {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .section_first_single .wp-block-post-featured-image {
    padding: 15px 0 0 15px;
  }

  .doc_single_posts h1 {
    font-size: 22px !important;
    margin-top: 10px;
  }

  .doc_single_posts .wp-block-columns .wp-block-column {

    margin-bottom: 10px;
  }

  .doccine_detail_content .wp-block-group {

    flex-direction: column-reverse;
  }

  .doccine_detail_content .docc_blog_archive_posts {
    max-width: 100%;
    position: static;
    margin-bottom: 10px;
  }

  .doccine_detail_content .docc_blog_archive_posts li.doccine_form_section .doccine_content {
    margin-bottom: 52px;
    margin-top: 0;
  }

  .bdoc_blog_content p:first-child {
    font-size: 16px;
    line-height: 22px;
  }

  .bdoc_blog_content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 26px;
  }

  .doc_arc_heads h4 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .doc_recent_arcchild ul {
    flex-direction: column;
  }

  .doc_recent_arc_self {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .doc_single_posts {
    margin-bottom: 30px;
  }

  /* .wp-block-group.doccine_detail_content {
    padding: 0 15px 30px;
  } */
  .docc_blog_archive_posts li.doccine_form_section {
    border-radius: 15px;
  }

  .dropdown .dropdown-list {
    padding: 10px 12px;
    top: 33px;
    font-size: 14px;
  }

  .doc_social_ul {

    margin-top: 20px;
  }

  .doc_social_li {
    margin-right: 15px;
  }

  .section_first_single .wp-block-post-title {
    margin-top: 10px;
  }

  /* pricing page css start */
  .wp-block-group.price-header {
    padding-top: 60px;
    padding-bottom: 270px;
  }

  .price-header h1 {
    font-size: 26px;
    margin-top: 0;
  }

  .price-header p {
    max-width: 358px;
    font-size: 12px;
  }

  .wp-block-column.yearly-detail {
    align-items: center;
    margin: 0 auto;
  }

  .para-italic {
    text-align: center;
  }

  .wp-block-group.tab-detail {

    margin-top: 20px;
  }

  .tab-detail .wp-block-columns {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }

  .wp-block-columns>.wp-block-column.month-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .month-detail p {
    text-align: center;
  }

  .month-detail ul {
    margin-top: 20px;
  }

  .tab-detail .wp-block-buttons.is-layout-flex {
    width: 100%;
  }

  .tab-content .wp-block-button {
    margin-top: 20px;

  }

  .wp-block-group.beyond-sec {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .wp-block-group.beyond-sec>.wp-block-group {
    padding: 43px 45px 45px;
    margin-bottom: 50px;
  }

  .beyond-sec ol {
    columns: 1;
    margin-top: 5px;
    width: 100%;
  }

  .beyond-sec ol li:nth-child(4n) {
    border-bottom: 1px solid #F4F3F4;
  }

  .beyond-sec ol li:last-child {
    border-bottom: 0;
  }

  .group-4-wrap.pricing-faq {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .group-4-wrap.pricing-faq p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .group-4-wrap.pricing-faq .wp-block-group .wp-block-details {
    height: 55px;
  }

  .group-4-wrap.pricing-faq .wp-block-group .wp-block-details[open=""] {
    height: auto;
  }
  .doc-test-item .wp-block-columns .wp-block-column:last-child {
    flex-basis: 77.66% !important;
  }
  .doc-test-item .wp-block-columns {
    margin-top: 40px;
  }
  .wp-block-group.doc-test-item p {
    font-size: 15px;
  }
  .doc-test-item .wp-block-column h5 {
    font-size: 14px;
  }
  .wp-block-group.doc-test-item .wp-block-column p {
    font-size: 12px;
  }
  .doc-test-item .wp-block-columns .wp-block-column:first-child {
  
    flex-grow: unset;
  }
  .owl-nav {
    right: 20px;
  }
}

@media(max-width:475px) {
  .login .wp-block-button img {
    width: 20px !important;
  }

  p.whatsapp-link img,
  p.schedule-link img {

    width: 17px !important;
  }

  .entry-content.wp-block-post-content {
    overflow: hidden;
  }

  .hero-section>.svg-image {
    display: block;
    margin: 80px 33px -50px 23px !important;
    transform: scale(1.33);
  }

  .group-1 {
    padding-bottom: 60px !important;
    padding-top: 41px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /*  .svg-image picture {
    height: auto;
    max-width: 457px !important;
  }*/

  .group-1-head {
    margin-bottom: 38px;
  }

  .group-1-wrap .practice-col-all {
    padding: 0;
    margin-top: 19px;
    ;
  }

  .group-1-wrap .wp-block-column.is-layout-flow {
    padding: 15px;
  }

  /* .group-1-wrap .wp-block-column.is-layout-flow p {
    font-size: 16px !important;
    width: 87%;
  } */
  .group-1-wrap .wp-block-column.is-layout-flow p {
    margin-left: 40px;
    width: 87%;
  }

  .group-1-wrap .practice-col-wrap figure {
    height: 20px;
    max-width: 20px;
  }

  .doccine-journey h2 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .care-col-1 .wp-block-column.is-vertically-aligned-center {
    margin-top: -47px !important;
  }

  .care-col-2 .wp-block-column.is-vertically-aligned-center {
    margin-top: 20px;
  }

  .care-col-3 .wp-block-column.is-vertically-aligned-center {
    margin-top: -60px;
  }

  .care-col-4 .wp-block-column.is-vertically-aligned-center {
    margin-top: 25px;
  }

  .care-col-5 .wp-block-column.is-vertically-aligned-center {
    margin-top: -60px;
  }

  .care-col-6 .wp-block-column.is-vertically-aligned-center {
    margin-top: 25px;
  }

  .care-col-7 .wp-block-column.is-vertically-aligned-center {
    margin-top: 10px;
  }

  .doccine-box-content {

    max-width: 100% !important;
  }

  .group-4 {
    padding-top: 35px !important;
  }

  .group-4-wrap .wp-block-group {
    margin: 44px auto 0;
  }

  .doctors-bg img {
    max-width: 100%;
  }

  .wp-block-group.hospital-img {
    padding: 0 36px;
  }

  .practice-sec {
    margin-top: 53px !important;
  }

  .transform-img {
    flex-wrap: wrap !important;
    gap: 30px;
  }

  .hospital-img .wp-block-group {
    gap: 0;

  }

  .hospital-img .wp-block-group .wp-block-image.size-full {
    max-width: 40%;
  }

  .hospital-img .wp-block-group img {
    max-height: 100px;
  }

  .emr-ul.desktop {

    position: absolute;
    z-index: -1;
    opacity: 0;

    pointer-events: none;
  }

  .emr-ul.mobile {
    display: flex;
  }

  .emr-ul path[fill="#1C1C1C"] {
    transition: none;
  }

  .emr-ul path[fill="#1C1C1C"].ma1 {
    animation: arrow1 1.8s infinite;
  }

  @keyframes arrow1 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(40%);
      opacity: 0;
    }
  
    90% {
      transform: translateY(40%);
      opacity: 1;
    }
    95% {
      transform: translateY(40%);
      opacity: 1;
    } */
    100% {
      transform: translateY(24%);
      opacity: 1;
    }
  }

  .emr-ul path[fill="#1C1C1C"].ma2 {
    animation: arrow2 1.8s infinite;
  }

  @keyframes arrow2 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(60%);
      opacity: 0;
    }
    90% {
      transform: translateY(60%);
      opacity: 1;
    }
    95% {
      transform: translateY(60%);
      opacity: 1;
    } */
    100% {
      transform: translateY(40%);
      opacity: 1;
    }
  }

  .emr-ul path[fill="#1C1C1C"].ma3 {
    animation: arrow3 1.8s infinite;
  }

  @keyframes arrow3 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(63%);
      opacity: 0;
    }
    90% {
      transform: translateY(63%);
      opacity: 1;
    }
    95% {
      transform: translateY(63%);
      opacity: 1;
    } */
    100% {
      transform: translateY(66%);
      opacity: 1;
    }
  }

  .emr-ul path[fill="#1C1C1C"].ma4 {
    animation: arrow4 1.8s infinite;
  }

  @keyframes arrow4 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(50%);
      opacity: 0;
    }
    90% {
      transform: translateY(50%);
      opacity: 1;
    }
    95% {
      transform: translateY(50%);
      opacity: 1;
    } */
    100% {
      transform: translateY(29%);
      opacity: 1;
    }
  }

  .emr-ul path[fill="#1C1C1C"].ma5 {
    animation: arrow5 1.8s infinite;
  }

  @keyframes arrow5 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(45%);
      opacity: 0;
    }
    90% {
      transform: translateY(45%);
      opacity: 1;
    }
    95% {
      transform: translateY(45%);
      opacity: 1;
    } */
    100% {
      transform: translateY(25%);
      opacity: 1;
    }
  }

  .emr-ul path[fill="#1C1C1C"].ma6 {
    animation: arrow6 1.8s infinite;
  }

  @keyframes arrow6 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(17%);
      opacity: 0;
    }
    90% {
      transform: translateY(17%);
      opacity: 1;
    }
    95% {
      transform: translateY(17%);
      opacity: 1;
    } */
    100% {
      transform: translateY(9%);
      opacity: 1;
    }
  }

  .emr-ul path[fill="#1C1C1C"].ma7 {
    animation: arrow7 1.8s infinite;
  }

  @keyframes arrow7 {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    /* 5% {
      transform: translateY(0);
      opacity: 1;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    20% {
      transform: translateY(0);
      opacity: 0;
    }
    30% {
      transform: translateY(0);
      opacity: 0;
    }
    40% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      transform: translateY(33%);
      opacity: 0;
    }
    90% {
      transform: translateY(33%);
      opacity: 1;
    }
    95% {
      transform: translateY(33%);
      opacity: 1;
    } */
    100% {
      transform: translateY(56%);
      opacity: 1;
    }
  }

  .footer-wrap {
    margin-top: 30px;
  }

  .footer-links {
    padding-bottom: 30px;
  }

  .group-4-wrap p {
    margin-top: 10px !important;
  }

  div.wpforms-container .wpforms-form .iti--allow-dropdown div.iti__flag-container {
    right: 0;
  }

  footer .footer-last-row {
    font-size: 12px;
  }

  .footer-stp ul li {
    padding-right: 2px;
    border-right: none;
  }

  .our-policy {
    padding-top: 35px;
    padding-bottom: 25px;
    padding-left: 10px;
  }

  .our-policy h2 {
    font-size: 25px;
  }

  .cms-content ol li {

    font-size: 14px;
    line-height: 22px;
    font-style: normal;
  }


  .cms-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  /* 404 page css start */
  .doccine_404_image {
    max-width: 280px !important;
  }

  .doccine_404_heading {
    font-size: 20px;
  }

  .doccine_404_paragrapgh {
    padding: 0 15px;
  }

  /* blog page css start */
  .docc_blog-archive_main {
    margin: 20px auto !important;
  }

  .doccine-blog-sec h1 {
    font-size: 22px;
  }

  .doccine_blog_child .doccine_blog_content {
    padding: 5px 15px 15px;
  }

  .doccine_blog_content .child_wrap {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .blog_category {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .blog_title h3 {
    font-size: 17px;
  }

  .docc_blog_head h3 {
    font-size: 20px;
  }

  .dropdown .dropdown-label {
    padding: 5px 42px 4px 10px;
    width: 174px;
    font-size: 14px;
  }

  .docc_blog_archive_heading {
    margin-bottom: 20px;
  }

  .docc_blog_archive_posts li {
    max-width: 100%;
  }

  .doccine_form_section .doccine-journey-form {

    margin-top: 14px;
  }

  .doc_blog_li .blog_title {
    margin-bottom: 10px;
  }

  .doc_blog_li .blog_content_part .blog_category {

    margin-bottom: 10px;
  }

  .dropdown .dropdown-option {

    padding: 4px 0;
    font-size: 14px;
  }

  /* blog detail page start */
  .section_first_single .wp-block-post-title {
    font-size: 22px !important;
    margin-top: 10px;
  }

  .doc_single_posts .wp-block-columns .wp-block-column {
    margin-bottom: 20px;
    padding: 0 !important;
  }

  /* .doc_single_posts h1 {
    font-size: 20px !important;
    margin-bottom: 20px;
  } */
  .bdoc_blog_content p {
    font-size: 14px;
  }

  .doc_read_morebtn .wp-element-button {
    padding: 3px 10px;
    font-size: 13px;
  }

  .doc_arccategory {
    padding: 4px 10px 4px 10px;

    font-size: 14px;
  }

  .doc_arc_title {
    font-size: 13px;
    line-height: 18px;
    margin: 12px 0;
  }

  .doc_single_posttime {
    font-size: 12px;
  }

  .bdoc_blog_content p:nth-child(2),
  .bdoc_blog_content p:nth-child(3) {
    margin-bottom: 20px;
    line-height: 20px;
  }

  .doc_recent_arc_self {
    border-radius: 10px;

  }

  .dropdown .dropdown-label {
    width: 174px;
    font-size: 16px;
  }

  .doc_social_li {
    margin-right: 15px;
  }

  /* pricing page css start */
  .price-header p {
    font-size: 11px;
    padding: 7px 12px 7px 37px;
  }

  .wp-block-group.price-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price-header h1 {
    font-size: 20px;
  }

  .wp-block-group.tab-detail {
    padding: 20px 35px;
  }
  ul.price-tab li {
    max-width: 120px;
  }
  .tab-detail h4 {
    font-size: 18px;
  }

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

  .month-detail ul {
    margin-top: 10px;
  }

  .month-detail ul li {
    font-size: 14px;
  }

  .yearly-detail h3 {
    font-size: 20px;
  }

  .yearly-detail h3 span:not(.grey) {
    font-size: 12px;
  }

  .des-fees {

    text-align: center;
  }

  .para-italic {
    font-size: 12px;
  }

  .wp-block-group.beyond-sec {

    margin-bottom: 30px;
  }

  .wp-block-group.beyond-sec>.wp-block-group {
    padding: 23px 25px 25px;
    margin-bottom: 0;

  }

  .group-4-wrap.pricing-faq .group-4-head {
    font-size: 20px !important;
    margin-bottom: 0;
  }

  .group-4-wrap.pricing-faq p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .group-4-wrap.pricing-faq .wp-block-group {
    margin: 25px auto 0;
  }
  /* .owl-nav {
    right: 20px;
  } */
  .doc-test-item {
    padding: 18px !important;
  }
}