@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  color: #1a191e;
  /* font-family: "SF Pro Display"; */
  background: var(--bg-light-blue, #deedf4);
}
a {
  text-decoration: none;
  color: unset;
}
.hide {
  display: none;
}
a:hover {
  color: unset;
}
button:focus {
  box-shadow: none;
}
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.navbar-light .navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.w-fit-content {
  width: fit-content;
}
.white-space-nw {
  white-space: nowrap;
}
.h-fit-content {
  height: fit-content;
}
.flex-1 {
  flex: 1;
}
.display-column {
  flex-direction: column;
}
.border-radius-10 {
  border-radius: 10px !important;
}
button {
  border: none;
}
.modal-header .btn-close:focus {
  box-shadow: none;
}
.form-control:focus {
  box-shadow: none;
  border: none;
}
.form-select:focus {
  box-shadow: none;
}
.form-check-input:focus {
  box-shadow: none;
}

.font_200 {
  font-weight: 200 !important;
}

.font_300 {
  font-weight: 300 !important;
}

.font_400 {
  font-weight: 400 !important;
}

.font_500 {
  font-weight: 500 !important;
}

.font_600 {
  font-weight: 600 !important;
}

.font_700 {
  font-weight: 700 !important;
}

.font_800 {
  font-weight: 800 !important;
}

.font_900 {
  font-weight: 900 !important;
}

.font_8 {
  font-size: 8px !important;
}

.font_10 {
  font-size: 10px !important;
}

.font_12 {
  font-size: 12px !important;
}

.font_14 {
  font-size: 14px !important;
}

.font_15 {
  font-size: 15px !important;
}

.font_16 {
  font-size: 16px !important;
}

.font_17 {
  font-size: 17px !important;
}

.font_18 {
  font-size: 18px !important;
}

.font_19 {
  font-size: 19px !important;
}

.font_20 {
  font-size: 20px !important;
}

.font_22 {
  font-size: 22px !important;
}

.font_24 {
  font-size: 24px !important;
}

.font_25 {
  font-size: 25px !important;
}

.font_26 {
  font-size: 26px !important;
}

.font_28 {
  font-size: 28px !important;
}

.font_30 {
  font-size: 30px !important;
}

.font_32 {
  font-size: 32px !important;
}

.font_36 {
  font-size: 36px !important;
}
.font_34 {
  font-size: 34px !important;
}
.font_40 {
  font-size: 40px !important;
}

.font_46 {
  font-size: 46px !important;
}

.font_48 {
  font-size: 48px !important;
}
.font_54 {
  font-size: 54px !important;
}
.font_64 {
  font-size: 64px !important;
}
.h-set {
  height: 100%;
}
/* login */
.text-green {
  color: #3eb7ba;
}
.text-blue {
  color: #216fc8 !important;
}
.text-gray {
  color: #727b89 !important;
}
.text-blue01 {
  color: #189cff !important;
}
.msh--main {
  padding-top: 90px;
}
.msh--main.flex-column {
  flex-direction: column;
  display: flex;
}
.msh--main.bg-img {
  /* background-color: #3eb7ba; */
  background: url("../images/v870-tang-36.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  width: 100%;
  position: relative;
  z-index: 0;
  height: 100%;
  max-height: max-content;
  background-attachment: fixed;
}
.msh--main.bg-img.signup-sec {
  height: max-content;
}
.msh--main.bg-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  /* background: rgba(0, 0, 0, 0.3); */
  /* background: rgb(158 158 158 / 30%); */
  background: rgb(61 110 134 / 70%);
}
.h-define {
  height: calc(100% - 105px);
}
.msh--main .login-sec {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 -3px 31px 0 rgba(0, 0, 0, 0.05),
    0 6px 20px 0 rgba(0, 0, 0, 0.02);
  padding: 45px;
  margin: 38px 0;
}
.login-sec .form-select.country-select {
  border: none;
  width: 80px;
  padding-left: 5px;
}
.login-sec .input-group {
  border-bottom: 1px solid #bdbdbd;
}
.input-group .input-group-text {
  background: transparent;
  border: none;
}
.login-sec .form-control {
  border: none;
  padding: 14px;
  padding-left: 8px;
}
.login-sec .form-check-input:checked {
  background-color: #216fc8;
  border-color: #216fc8;
  transition: 0.4s all ease;
}
.login-sec .form-check-input {
  border-radius: 2px;
}
.login-sec .login-btn {
  background-color: #216fc8;
  color: #fff;
  display: block;
  padding: 12px;
  border-radius: 5px;
  transition: 0.4s all ease-out;
  text-align: center;
}
.login-sec .login-btn:hover {
  background-color: #134b8a;

  color: #fff;
  transition: 0.4s all ease;
}
.login-sec .logo-size {
  height: 109px;
  width: 109px;
  margin: 0 auto;
}
.login-sec .logo-size img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.login-sec .form-check-input.radio {
  border-radius: 50px;
  border: 2px solid #216fc8;
  height: 20px;
  width: 20px;
  margin-top: 0;
}
.msh--main.bg-color {
  background: url("../images/banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  width: 100%;
  position: relative;
  z-index: 0;
  height: 100%;
  max-height: max-content;
  background-attachment: fixed;
}
.feedback-sec .form-control {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.feedback-sec .custom-tabs.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: #fff;
  color: #216fc8;
  border-bottom: 2px solid #216fc8;
  border-radius: 0;
  font-weight: 500;
}
.feedback-sec .custom-tabs.nav-pills .nav-link {
  color: #000;
  border-radius: 0;
  font-size: 17px;
}
.feedback-sec .custom-tabs.nav-pills .nav-link:hover {
  background-color: #eeeeee;
  transition: 0.3s;
}
.star-rating {
  direction: rtl;
  display: flex;
  justify-content: left;

  cursor: default;
  gap: 6px;
}
.star-rating input[type="radio"] {
  display: none;
}
.star-rating label {
  color: #7e879f;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid #7e879f47;
  border-radius: 2px;
  padding: 10px 8px;
}
.star-rating label:hover,
.star-rating input[type="radio"]:checked ~ label {
  color: #ffcf00;
}

.feedback-sec .form-label {
  font-size: 13px;
  font-weight: 500;
}
.code-display {
  width: 82px;
  height: 100%;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

.iti__selected-flag {
  padding: 0 !important;
}
/* header */
.header-nav {
  background: #ffffff;
  padding: 10px 0;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.06);
}
.header-nav .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.header-nav .dropdown {
  border: 1px solid #d2d6da;
  border-radius: 6px;
  margin-left: 12px;
}
.header-nav .dropdown-menu {
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.06);
  border: none;
}
.header-nav .dropdown-toggle::after {
  content: "";
  background-image: url("../images/icon/drop-vector.png");
  background-repeat: no-repeat;
  height: 9px;
  width: 15px;
  vertical-align: middle;
  border: none;
}
.header-nav .navbar-brand img {
  height: 60px;
}
.header-nav .logout-btn {
  background-color: #216fc8;
  color: #fff;
  padding: 10px 29px;
  border-radius: 6px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s all ease-out;
}
.header-nav .logout-btn:hover {
  background-color: #214a7a;
  transition: 0.4s ease all;
}
footer {
  margin-top: auto;
}
.footer-sec {
  padding: 18px 0;
}
.fix-footer footer.bottom-set {
  position: fixed;
  bottom: 0;
  background-color: #fff;
  width: 100%;
}
/* forgot password */
.verify-code {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 36px;
}
.verify-code .form-control {
  height: 50px;
  width: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-right: 16px;
  border: 1px solid rgba(126, 135, 160, 0.2);
}
.form-custom .form-check-input.radio {
  border-radius: 50px;
  border: 2px solid #216fc8;
  height: 20px;
  width: 20px;
  margin-top: 0;
}
.form-custom .form-check-input:checked {
  background-color: #216fc8;
  border-color: #216fc8;
  transition: 0.4s all ease;
}
/* home */
.banner-slider .slick-slide {
  height: auto;
}
.banner-slider button.slick-prev.slick-arrow {
  position: absolute;
  top: 48%;
  left: -8%;
  transform: translateX(-40px);
  z-index: 12;
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  outline: none;
  background: #f2f6f6;
  border: 0;
  border-radius: 51px;
  height: 30px;
  width: 30px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.2);
}
.banner-slider button.slick-prev.slick-arrow:before {
  content: "\f053";
  color: #216fc8;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
}
.banner-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 48%;
  right: -11%;
  z-index: 12;
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  outline: none;
  background: #f2f6f6;
  border: 0;
  border-radius: 51px;
  height: 30px;
  width: 30px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.2);
}
.banner-slider button.slick-next.slick-arrow:before {
  content: "\f105";
  color: #216fc8;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
}
.form-fields {
  border-radius: 12px;
  background: #fff;
  margin: 30px 0;
  padding: 30px 15px;
  margin-bottom: 55px;
}
.profle_input_fields .login_input_1 {
  /* background: #f2f7fd; */
  border-radius: 7px;
  padding: 10px 20px;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
}
.profle_input_fields .login_input_1 .form-control {
  /* background: #f2f7fd; */
  border: none;
  padding: 0 0 0 22px;
  color: #71859e;
}
.submit-btn {
  background-color: #216fc8;
  color: #fff;
  padding: 10px 29px;
  display: block;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  transition: 0.4s all ease-out;
}
.submit-btn:hover {
  background-color: #214a7a;
  transition: 0.4s ease all;
  color: #fff;
}
/* profile page */
.card-profile {
  border: 1px solid #e1e1f0;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0px 20px 25px rgb(0 0 0 / 5%);
  background: #fff;
  padding: 26px;
}
.card-profile .title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.card-profile .card-pic {
  width: 170px;
  height: 170px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.card-profile .card-pic img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1e1f0;
  background: #fff;
  padding: 20px 30px;
}
.card-title {
  font-size: 24px;
  margin-bottom: 0px;
}
.card .card-body {
  padding: 20px 30px;
  background: #fff;
  border-radius: 15px;
}
.drag-file-area {
  display: flex;
  flex-direction: column;
}
.breadcrumb {
  align-items: center;
}
.drag-file-area label .browse-files-text {
  color: #c293c7;
  font-weight: bolder;
  cursor: pointer;
}
.upload-files-container {
  position: relative;
  width: max-content;
  margin: 0 auto;
}
.browse-files span {
  position: absolute;
  bottom: 10%;
  right: 5%;
}

.browse-files-text img {
  height: 45px;
}
.default-file-input {
  opacity: 0;
}
.msh--main.sec-img {
  background: url("../images/Frame\ 48096442.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  width: 100%;
  position: relative;
  z-index: 0;

  max-height: max-content;
  background-attachment: fixed;
}
.msh--main.sec-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;

  background: rgb(158 158 158 / 30%);
}
.card-select {
  padding: 30px 20px;
  text-align: center;
  border: 2px solid rgba(89, 85, 84, 0.1);
  border-radius: 12px;
  background: #fff;
}
.card-select .title .arrow-height {
  height: 30px;
  margin-right: 5px;
}
.card-select:hover .vector-img img {
  transform: scale(1.2);
  transition: 0.4s all ease;
}
.card-select .start-btn {
  background-color: #216fc8;
  color: #fff;
  padding: 10px 100px;
  border-radius: 34px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  transition: 0.4s all ease-out;
}
.card-select .start-btn:hover {
  background-color: #0b2645;
  transition: 0.4s all ease;
}
.vector-img {
  height: 260px;
  width: 249px;
  overflow: hidden;
  margin: 0 auto;
}
.vector-img img {
  object-fit: contain;
  height: 100%;
  transition: 0.4s all ease-out;
  width: 100%;
}
.card-select .title {
  color: #000;
  font-size: 22px;
  padding-left: 6px;
  font-weight: 500;
  text-transform: capitalize;
}
.card-select .select_option {
  padding: 1em 0.5em 1em 0.5em;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #697f91;
  font-size: 16px;
  transition: 0.4s all ease;
  cursor: pointer;
}
.card-start .start-btn {
  background-color: #ffffff;
  color: #216fc8;
  padding: 10px 100px;
  border-radius: 34px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  transition: 0.4s all ease-out;
}
.card-select .select_option:hover {
  padding: 1em 0.3em 1em 0.3em;
  transition: 0.4s all ease;
  /* font-size: 20px; */
  color: #216fc8;
}
.card-select .select_option img {
  height: 25px;
}
.card-select .list_item {
  border-bottom: 1px solid #dbe9f0;
}
.modal-custom .modal-msg {
  text-align: center;
  color: #099409;
  font-size: 23px;
  padding: 23px;
  margin-bottom: 0;
  font-weight: 500;
}
.alert {
  display: none;
}
.link_join {
  display: block;
  color: #4141ff;
  padding: 15px 0;
  border-bottom: 1px solid #e1e1e1;
  font-size: 17px;
}
.modal-custom {
  border: none;
  border-radius: 10px;
  padding: 16px;
}
.modal-custom .instruct-detail {
  height: 80px;
  width: 80px;
}
.modal-custom .instruct-detail img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.modal-custom .instruct-detail.well-lit {
  padding: 12px;
}
.modal-custom .instruct-detail.well-lit img {
  filter: invert(96%) sepia(28%) saturate(7469%) hue-rotate(333deg)
    brightness(103%) contrast(93%);
}
.modal-button {
  width: 100%;
  background-color: #216fc8;
  color: #fff;
  padding: 10px 29px;
  border-radius: 6px;
  font-size: 22px;
  text-align: center;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  transition: 0.4s all ease-out;
}
#loadingDiv {
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  width: 100%;
  height: 100vh;
  background-color: #216fc8;
}
.img-load {
  height: 600px;
  width: 500px;
  margin: 30px auto;
}
.img-load img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/* home page */
.img {
  height: 338px;
  margin-bottom: -14px;
  cursor: pointer;
}

.img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  /* margin-top: 49px; */
}

.home-sec {
  padding: 40px 0;
  /* background-image: linear-gradient(45deg, #379cd2, #4cb1e7); */
  background: #216fc8;
}

.home-sec.sec-img {
  background: url("../images/bg-blue-arch.jpg");
  /* background: url("../images/home-10-banner.png"); */
  /* background-repeat: no-repeat; */
  background-size: cover;
  background-position: 100% 100%;
  width: 100%;
  position: relative;
  z-index: 0;

  /* height: 100%; */
  max-height: max-content;
  /* background-attachment: fixed; */
}

.subsec {
  padding: 24px 0;
  /* padding-bottom: 105px; */
}
.subsec .plus-medical-icon {
  height: 16px;
  margin-bottom: 14px;
}
/* .home-sec.sec-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;

  background: rgb(158 158 158 / 30%);
} */

.home-sec .start-btn {
  background-color: #fff;
  color: #0f77c5;
  padding: 7px 56px;
  /* border-radius: 6px; */
  display: inline-block;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  transition: 0.4s all ease-out;
  margin-top: 10px;
  box-shadow: 5px 4px 9px 0 rgba(0, 0, 0, 0.2);
}

.home-sec .start-btn:hover {
  background-color: #e6e6e6 !important;
}

.card-select--1 {
  /* box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1); */
  background: #fff;
  padding: 40px;
  color: #000;
  text-align: center;
  border-radius: 6px;
  transition: 0.4s all ease-out;
  border: 1px solid #e6e6e6;
  cursor: pointer;
}
.card-select--2 {
  background: #fff;
  padding: 20px;
  color: #000;
  /* 
  border-radius: 6px; */
  transition: 0.4s all ease-out;
  border: 1px solid #e6e6e6;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  justify-content: space-between;
}
.card-select--2 .text {
  text-transform: capitalize;
  display: flex;
  font-weight: 700;
  align-items: center;
  text-align: end;
}
.card-select--2:hover {
  background: #5b9bd5;
  transition: 0.4s all ease;
  color: #fff;
}
.card-draiva {
  background: #fff;
  /* border-radius: 6px; */
  padding: 16px;
}
.card-draiva .start-btn {
  background: #216fc8;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 7px;
}
.card-draiva .start-btn:hover {
  color: #216fc8;
}
.card-draiva .ai-img {
  max-height: 530px;
  width: 100%;
}
.card-draiva .ai-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.card-draiva .text {
  background-color: #ff8217;
  color: #fff;
  padding: 14px;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
}
/* .card-draiva .title {
  font-family: "Imprint MT Shadow";
} */
.card-draiva .title {
  font-family: "Roboto", sans-serif;
}
.card-draiva .icon {
  height: 150px;
  width: 150px;
}
.card-select--2 .icon-design {
  /* background: #f2f6f6;
  border: 1px solid #f2f6f6; */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 7px; */
}
.card-select--2 .icon-design i {
  color: #5b9bd5;
}
.card-select--2 img {
  height: 100%;
}
.card-select--2:hover {
  transition: 0.4s all ease;

  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.card-select--2:hover .icon-design img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(35deg) brightness(200%)
    contrast(102%);
}
.card-select--1:hover {
  transition: 0.4s all ease;

  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.card-select--1 .icon-design {
  background: #f2f6f6;
  border: 1px solid #f2f6f6;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px;
}
.card-select--1 .text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
.card-select--1 img {
  height: 100%;
  /* filter: invert(46%) sepia(21%) saturate(5557%) hue-rotate(188deg)
    brightness(106%) contrast(101%); */
}
/* poc */
.poc-sec {
  padding-top: 20px;
  padding-bottom: 40px;
}
.poc-sec .poc-card {
  border-radius: 30px;
  padding: 30px;
  background: #fff;
  text-align: center;
  transition: all 0.5s;
  margin-bottom: 24px;
  position: relative;
}
.poc-sec .poc-card .poc-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e82fd;
  margin: auto;
  box-shadow: 0 25px 50px rgba(14, 130, 253, 0.1);
  border-radius: 18px;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  padding: 25px;
}
.poc-sec .poc-card .poc-img img {
  height: 100%;
  width: 100%;
}
.poc-sec .poc-card .poc-img img {
  filter: invert(100%) sepia(0%) saturate(7491%) hue-rotate(243deg)
    brightness(105%) contrast(103%);
}
.poc-card .title {
  margin: 0;
  padding: 10px 0;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poc-card .text {
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  margin: 0;
}
.poc-card:hover .text {
  color: rgb(226, 225, 225);
}
.poc-card:hover .poc-img {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  background: #fff;
}
.poc-card:hover .poc-img img {
  filter: none;
}
.poc-card:hover {
  cursor: pointer;
  background: #334155;
  box-shadow: 0 20px 50px rgba(51, 65, 85, 0.05);
  transform: translateY(-10px);
  color: #fff;
}

/* report-generate */
/* roundslider */
#handle2 .rs-handle {
  background-color: transparent;
  border: 8px solid transparent;
  border-right-color: black;
  margin: -8px 0 0 14px !important;
}
/* #handle2 .rs-handle:before {
  display: block;
  content: " ";
  position: absolute;
  height: 12px;
  width: 12px;
  background: black;
  right: -6px;
  bottom: -6px;
  border-radius: 100%;
} */
#handle2 .rs-handle:after {
  display: block;
  content: " ";
  width: 106px;
  position: absolute;
  top: -1px;
  right: 0px;
  border-top: 2px solid black;
}
#handle2 .rs-range-color {
  background: linear-gradient(to right, green, gold);
}
#handle2 .rs-path-color {
  background: linear-gradient(to right, green, gold);
}

.tab-sec {
  padding: 30px 0;
}
.card-report {
  display: flex;
  padding: 20px;
  gap: 14px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: 0.4s all ease-out;
  border: 1px solid #5555;
  font-weight: 600;
  align-items: center;
}
.card-report:hover {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s all ease;
}
.card-report .icon {
  height: 45px;
}
.report-result-card .icon {
  height: 25px;
  width: 25px;
}
.report-result-card {
  background: #fff;
  padding: 32px;
  color: #000;
  text-align: center;
  border-radius: 6px;
  transition: 0.4s all ease-out;
  border: 1px solid #e6e6e6;
  cursor: pointer;
  margin-bottom: 18px;
  position: relative;
}
.report-result-card::after {
  background: linear-gradient(
    90deg,
    rgba(33, 111, 200, 1) 42%,
    rgba(0, 119, 255, 1) 100%
  );
  height: 4px;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.make-apointment-btn {
  padding: 10px;
  background: #5b9bd5;
  color: #fff;
  transition: 0.4s all ease;
}
.make-apointment-btn:hover {
  color: #000;
  background: #fff;
  transition: 0.4s all ease-in;
}
.result-icon {
  height: 50px;
  width: 50px;
}
.result-icon img {
  height: 100%;
  width: 100%;
}
.custom-tabs.nav-tabs .nav-link {
  color: #000;
  border: none;
  transition: 0.5s all ease-out;
  font-size: 18px;
  font-weight: 500;
  /* width: 50%; */
  padding: 10px 50px;
  text-transform: uppercase;
}
.custom-tabs.nav-tabs .nav-item.show .nav-link,
.custom-tabs.nav-tabs .nav-link.active {
  background: none;
  color: #216fc8;
  border: none;
  border-bottom: 1px solid #216fc8;
  transition: 0.5s all ease-in;
  background: hsl(210, 100%, 86%);
  color: #000;
  border-radius: 0;
}
.custom-tabs.nav-tabs .nav-link:hover {
  background: hsl(210, 100%, 86%);
  color: #000;
  border-radius: 0;
}
.info-sec {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
}
.report-sec {
  padding: 60px 0;
}
.progress-set {
  width: 100%;
  height: 10rem;
  background-color: #48abe0;
  border-radius: 10rem 10rem 0 0;
  border: 20px solid;

  /* width: 300px;
  height: 80px; */
  border: double 1em transparent;

  background-image: linear-gradient(white, white),
    linear-gradient(to right, green, gold);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-bottom: 0;
}
.card-progress-set {
  background: #fff;
  padding: 23px;
  box-shadow: 0px 20px 25px rgb(0 0 0 / 5%);
  border-radius: 10rem;
  margin-bottom: 30px;
  height: 19rem;
}
/* doctor list */
.doctorsec-pad {
  padding-bottom: 50px;
}
.doctor-list-table {
  box-shadow: 0px 20px 25px rgb(0 0 0 / 5%);
  background: #fff;
  padding: 10px;
  width: 100%;
}
.doc-details .doc-profile {
  height: 45px;
  width: 45px;
  border-radius: 50px;
}
.doc-details .doc-profile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50px;
}
.doc-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-size: 16px;
  white-space: nowrap;
}
.connect-btn {
  background-color: #fff;
  color: #216fc8;
  padding: 10px 29px;
  border-radius: 3px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s all ease-out;
  width: 200px;
  border: 1px solid #216fc8;
  transition: 0.4s all ease-out;
}
.connect-btn:hover {
  background-color: #216fc8;
  color: #fff;
  transition: 0.4s all ease;
}
.doctor-list-table thead tr {
  background-color: rgb(26 96 193);
  color: #fff;
}
.doctor-list-table thead tr th {
  padding: 12px;
  font-weight: 500;
}
.doctor-list-table tbody tr {
  border-bottom: 1px solid #9dadb947;
}
.doctor-list-table thead tr th {
  background-color: rgb(209 228 255);
  border-bottom-color: #ababab !important;
}
.doctor-list-table tbody tr td {
  padding: 15px;
  vertical-align: middle;
}
.page-link {
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  color: #555555;
  border: none;
  padding: 12px 20px;
}
.page-link:focus {
  background-color: #a7d8ff;
  box-shadow: none;
  border-radius: 5px;
  color: #000;
  box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.14);
}
.text-align-end {
  text-align: -webkit-right;
}
.doc-status {
  background-color: #7bb13c;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center;
  border-radius: 30px;
  width: 100px;
}
/* ==================
/* .banner-img {
  position: relative;
  padding: 20px;
  background: url("../images/v870-tang-36.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  width: 100%;
  position: relative;
  z-index: 0;
}
.banner-img::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;

  background: linear-gradient(
    180deg,
    #0e1728 7.47%,
    rgba(14, 23, 40, 0) 171.37%
  );
} */
/* ai */
/* .img-set {
  height: 700px;
  width: 700px;
} */
/* search sec */
.search-sec .input-group {
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  padding: 10px;
  background: #fff;
}
.search-sec {
  padding: 70px 0;
}
.search-sec .input-group-text {
  border-radius: 71px !important;
  background: #efefef;
  border: none;
  color: #626262;
}
.search-sec .search-btn {
  border-radius: 8px;

  padding: 17px;
  width: fit-content;
  height: fit-content;
  background: #216fc8;
  cursor: pointer;
}
.search-sec .search-btn:hover {
  background-color: #214a7a;
  transition: 0.4s ease all;
}
.search-sec .search-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.search-sec .ans-block {
  border-radius: 8px;
  border: 1px solid #dbdbdb;

  background: #fff;
}
.search-sec .que-block {
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-sec .ans-sub-block {
  border-radius: 0px 0px 8px 8px;
  border-top: 1px solid #dbdbdb;
  background: #f6f6f6;
  padding: 30px 75px;
}
.search-sec .que-block .profile {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.search-sec .input-group .form-control {
  background: transparent;
  border: none;
}
.img-set {
  height: calc(100% - 72px);
  position: relative;
  z-index: -1;
}
.img-set img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.age-ans {
  position: absolute;
  top: 10%;
  left: 0%;
  width: 100%;
  background: #ffffffc4;
  z-index: 12;
  
}
.age-ans p {
  font-size: 22px;
  padding: 17px;
  margin-bottom: 0;
}
.result-btn {
  background-color: #099409;
  padding: 10px 20px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 18px;
  width: fit-content;
}
/* terms of use */
.heading-section {
  background: #189cff;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/sub-header-bg.png) no-repeat #216fc8;
  background-size: cover;
}
.terms-use {
  margin-top: -40px;
  padding: 25px;
  background: #fff;
  border-radius: 4px;
}
.terms-use .text {
  color: #6b7280;
}
.list-link {
  word-break: break-word;
}
.liststyle {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-bottom: 8px;
}
/* about us */
.about-banner {
  height: 100%;
  width: 100%;
}
.about-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.details-about {
  padding: 28px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 35px;
}
.solution-sec {
  background: #fff;
  padding: 40px 45px;
}
.service-card {
  background-color: #fff;
  border: 1px solid #216fc8;
  border-radius: 3px;
  padding: 12px;
  text-align: center;
  margin-bottom: 70px;
  transition: 0.5s;
}
.primary-care-title {
  background-color: #216fc8;
  font-size: 35px;
  padding: 30px;
  color: #fff;
  text-align: center;
  margin: 30px 0;
  text-transform: capitalize;
}
.service-card .title {
  background-color: #216fc8;
  padding: 12px;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .icon {
  height: 200px;
  width: 266px;
  margin: 24px 0;
  /* filter: invert(34%) sepia(84%) saturate(1011%) hue-rotate(186deg)
    brightness(90%) contrast(93%); */
}
.service-card:hover {
  border: transparent;
  box-shadow: 0 0 20px #dadada;
  border: 1px solid #fff;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
  margin: 45px;
}
.slider .slide-track {
  animation: scroll 50s linear infinite;
  display: flex;
  width: calc(250px * 14);
  align-items: center;
}
.slider .slide {
  height: 100px;
  width: 250px;
}
.slider .slide img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.partners-sec {
  padding: 20px 45px;
  color: #555;
}
.teammate {
  text-align: center;
  padding: 30px 35px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 15px;
  border: 1px solid #c9e2ff;
  position: relative;
  margin-bottom: 25px;
}
.teammate:hover {
  box-shadow: 0px 10px 30px 0px rgba(73, 154, 250, 0.1);
}
.teammate .teammate-photo {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.teammate .teammate-photo img {
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(58, 65, 111, 0.3);
  box-shadow: 0px 39px 40px 0px rgb(152 159 191 / 0.3);
  object-fit: cover;
  border-radius: 50%;
  position: relative;
}
.linked-icon img {
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: 31%;
  right: 21%;
}
.accept-btn {
  color: #099409;
  border: 1px solid #099409;
  padding: 10px;
  text-align: center;
  width: 100%;
  border-radius: 4px;
  transition: 0.4s all ease-out;
}
.accept-btn:hover {
  background: #099409;
  color: #fff;
  transition: 0.4s all ease;
}
.reject-btn {
  color: #555;
  border: 1px solid #555;
  padding: 10px;
  text-align: center;
  width: 100%;
  border-radius: 4px;
  transition: 0.4s all ease-out;
}
.reject-btn:hover {
  background: #555;
  color: #fff;
}
.medical-panel {
  height: 100%;
  width: 100%;
}
.medical-panel img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}



.binah-card .heartbpm img {
  height: 24px;
  width: 24px;
}
.heartbpm img {
  height: 38px;
}
.binah-card .icon-rate {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  filter: invert(33%) sepia(2%) saturate(265%) hue-rotate(32deg) brightness(94%)
    contrast(88%);
}

.binah-card {
  /* position: absolute;
  top: 10%;
  left: 0%;
  width: 100%; */
  background: #fff;
  padding: 20px;
  margin-top: -38%;
  border-radius: 20px;
  display: block;
  cursor: pointer;
  transition: 0.4s all ease-out;
  position: absolute !important;
  width: 85%;
  bottom: -1%;
  margin-top: 0 !important;
  z-index: 1;
}
.binah-card:hover {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  transition: 0.4s all ease;
}
.binah-card .progress {
  height: 35px;
  border-radius: 20px;
}
.binah-card .progress-bar {
  color: #555;
  font-size: 16px;
  background-color: #64f464;
}
.binah-card .heartbpm {
  animation: heartbeat 1.3s infinite;
}
@keyframes heartbeat {
  0% {
    transform: scale(0.8);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1);
  }
  /* 80% {
    transform: scale(0.75);
  } */
  100% {
    transform: scale(0.8);
  }
}


.vital-icon {
  height: 120px;
}
/* splash screen */
.splash_screen {
  background-color: #216fc8;
}
.splash_screen .logo {
  background: #fff;
  width: 170px;
  height: 170px;
  margin-bottom: 10px;
}
.splash_screen .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.splash_screen .title {
  font-size: 60px;
}
.appointment-list {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.appointment-list .profile-info-widget {
  margin-right: auto;
  text-align: left;
  align-items: center;
}
.appointment-list .profile-info-widget .icon {
  height: 110px;
  width: 110px;
}
.appointment-list .profile-info-widget .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.patient-details p {
  margin-bottom: 0;
  color: #757575;
  font-size: 15px;
  font-weight: normal;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appointment-action .btn {
  display: inline-block;
}
.bg-success-light {
  background-color: rgba(15, 183, 107, 0.12) !important;
  color: #26af48 !important;
}
.bg-danger-light {
  background-color: rgba(242, 17, 54, 0.12) !important;
  color: #e63c3c !important;
}
.appointment-action .connect-btn {
  background-color: #216fc8;
  color: #fff;
  width: 100%;
}
/* share-medical */
.share-medical {
  padding: 30px 0;
  padding-bottom: 90px ;
}
.share-medical .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #216fc8;
  color: #fff;
  padding: 10px 29px;
  border-radius: 2px;
  display: block;
  text-align: center;

  font-weight: 500;
  transition: 0.4s all ease-out;
}
.share-medical .nav-pills .nav-link {
  padding: 10px 29px;
  color: #216fc8;
  font-size: 20px;
  font-weight: 500;
}
.share-medical .feedback-sec .form-label {
    font-size: 18px;
    font-weight: 500;
    color: #216fc8 ;
}
.share-medical .feedback-sec .form-control {
    font-size: 18px;
    background-color: #DEEDF4;
}
.share-medical .appointments .connect-btn {
    font-size: 18px;
}

  .connect-btn.download {
    background-color: #216fc8;
    color: #fff;
  }
  .connect-btn.download:hover {
    background-color: #214a7a;
    transition: 0.4s ease all;
  }
  .input--file {
    position: relative;
    color: #7f7f7f;
    border-radius: 11px;
    border: 2px dashed rgba(54, 135, 217, 0.4);
    width: 100%;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .input--file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
  }
  .input--file .input-icon img{
      height: 150px;
  }
 

  .share-medical .text-download img{
      height: 38px;
  }
 
  .share-medical .text-upload img{
      height: 38px;
  }
  .share-medical  .patient-details p{
    font-size: 18px;
    color: #000;
  }
@media (max-width: 1280px) {
  .font_48 {
    font-size: 43px !important;
  }
  .h-define {
    height: max-content;
  }
  .card-select--1 {
    padding: 30px;
  }
  .img {
    height: 292px;
    margin-bottom: 0;
  }

  .h-define.change-pass {
    height: calc(100% - 105px);
  }
  .banner-slider button.slick-prev.slick-arrow {
    left: 0;
    height: 24px;
    width: 24px;
  }
  .banner-slider button.slick-next.slick-arrow {
    right: 0;
    height: 24px;
    width: 24px;
  }
  .banner-slider button.slick-prev.slick-arrow:before,
  .banner-slider button.slick-next.slick-arrow:before {
    font-size: 13px;
  }
  #handle2 .rs-handle:after {
    width: 85px;
  }
  .poc-sec .poc-card .poc-img {
    width: 80px;
    height: 80px;

    padding: 18px;
  }
  .poc-sec .poc-card {
    padding: 20px;
  }
  .poc-card .title {
    font-size: 20px;
  }
  .card-progress-set {
    height: 17rem;
  }
  .connect-btn {
    width: 150px;
  }
  .card-profile {
    padding: 20px;
  }
  .home-sec .start-btn {
    margin-top: 0;
  }
  .teammate {
    padding: 30px 12px;
  }
  .teammate .teammate-photo {
    height: 150px;
    width: 150px;
  }
  .linked-icon img {
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 41%;
    right: 21%;
  }
  .binah-card {
    margin-top: -50%;
  }
  .share-medical .appointments .connect-btn {
    width: 180px;
  }
}
@media (max-width: 1200px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 14px !important;
  }

  .font_15 {
    font-size: 14px !important;
  }

  .font_16 {
    font-size: 15px !important;
  }

  .font_17 {
    font-size: 16px !important;
  }

  .font_18 {
    font-size: 16px !important;
  }

  .font_19 {
    font-size: 18px !important;
  }

  .font_20 {
    font-size: 18px !important;
  }

  .font_22 {
    font-size: 20px !important;
  }

  .font_24 {
    font-size: 22px !important;
  }

  .font_26 {
    font-size: 22px !important;
  }

  .font_25 {
    font-size: 22px !important;
  }

  .font_28 {
    font-size: 22px !important;
  }

  .font_30 {
    font-size: 23px !important;
  }

  .font_32 {
    font-size: 23px !important;
  }

  .font_36 {
    font-size: 24px !important;
  }

  .font_40 {
    font-size: 24px !important;
  }

  .font_46 {
    font-size: 32px !important;
  }

  .font_48 {
    font-size: 32px !important;
  }
  .font_54 {
    font-size: 34px !important;
  }
  .font_64 {
    font-size: 38px !important;
  }
}
@media (max-width: 1024px) {
  /* .msh--main.bg-img {
    height: auto;
  } */
  .report-result-card {
    padding: 18px;
  }
  .img {
    height: 242px;
  }
  .msh--main.bg-img {
    height: max-content;
  }
  .h-set {
    height: max-content;
  }
  .h-define {
    height: max-content;
  }
  .card-select--1 img {
    height: 100%;
  }

  .h-define.change-pass {
    height: 100%;
  }
  .img-load {
    height: 400px;
    width: 300px;
  }
  .card-progress-set {
    padding: 16px;

    height: 15rem;
  }
  .service-card .icon {
    height: 180px;
    width: 216px;
  }
  #handle2 .rs-handle:after {
    width: 62px;
  }
  .search-sec {
    padding: 30px 0;
  }
  .search-sec .input-group {
    padding: 8px;
  }
  .search-sec .search-btn {
    padding: 15px;
  }
  .search-sec .que-block .profile {
    height: 40px;
    width: 40px;
  }
  .search-sec .ans-sub-block {
    padding: 18px 66px;
  }
  .fix-footer footer.bottom-set {
    position: relative;
  }
  .card-profile {
    padding: 20px;
  }
  .home-sec .start-btn {
    font-size: 30px;
  }
  .binah-card {
    padding: 15px;
  }
  .card-draiva .title {
    font-size: 38px !important;
  }
}
@media (max-width: 992px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 14px !important;
  }

  .font_15 {
    font-size: 14px !important;
  }

  .font_16 {
    font-size: 15px !important;
  }

  .font_17 {
    font-size: 16px !important;
  }

  .font_18 {
    font-size: 16px !important;
  }

  .font_19 {
    font-size: 18px !important;
  }

  .font_20 {
    font-size: 18px !important;
  }

  .font_22 {
    font-size: 20px !important;
  }

  .font_24 {
    font-size: 22px !important;
  }

  .font_26 {
    font-size: 22px !important;
  }

  .font_25 {
    font-size: 22px !important;
  }

  .font_28 {
    font-size: 22px !important;
  }

  .font_30 {
    font-size: 23px !important;
  }

  .font_32 {
    font-size: 23px !important;
  }

  .font_36 {
    font-size: 24px !important;
  }

  .font_40 {
    font-size: 26px !important;
  }

  .font_46 {
    font-size: 30px !important;
  }

  .font_48 {
    font-size: 30px !important;
  }
  .font_54 {
    font-size: 32px !important;
  }
  .font_64 {
    font-size: 34px !important;
  }
  .msh--main.bg-img {
    height: 100%;
  }
  .msh--main.bg-img.signup-sec {
    height: 100%;
  }
  .header-nav .dropdown {
    margin-left: 0;
    width: fit-content;
  }
  .header-nav .logout-btn {
    display: inline-block;
  }
  .img {
    height: 219px;
  }

  .card-select--1 {
    margin-bottom: 20px;
    padding: 20px;
  }
  .card-select--1 .icon-design {
    width: 50px;
    height: 50px;

    padding: 10px;
  }
  .subsec {
    padding: 10px 0;
  }
  .poc-sec .poc-card .poc-img {
    width: 70px;
    height: 70px;
    padding: 18px;
  }
  .poc-card .title {
    font-size: 18px;
  }
  .home-sec .start-btn {
    padding: 7px 46px;
    font-size: 30px;
    margin-top: 3px;
  }
  .banner-slider .font_48 {
    font-size: 26px !important;
  }
  .banner-slider .font_25 {
    font-size: 17px !important;
  }
  .banner-slider button.slick-prev.slick-arrow {
    left: 9px;
    height: 18px;
    width: 18px;
  }
  .banner-slider button.slick-next.slick-arrow {
    height: 18px;
    width: 18px;
    right: -10px;
  }
  .banner-slider button.slick-prev.slick-arrow:before,
  .banner-slider button.slick-next.slick-arrow:before {
    font-size: 10px;
  }
  .card-progress-set {
    width: 300px;
  }
  .card-progress-set {
    padding: 23px;

    height: 19rem;
  }
  #handle2 .rs-handle:after {
    width: 100px;
  }
  .service-card {
    margin-bottom: 45px;
  }
  .service-card .title {
    padding: 6px;

    font-size: 14px;
  }
  .service-card .icon {
    height: 106px;
    width: 146px;
  }
  .primary-care-title {
    font-size: 20px;
    padding: 18px;
  }
  .solution-sec {
    padding: 20px 28px;
  }
  .binah-card {
    margin-top: -64%;
  }
  .img-set {
    height: 500px;
    width: 700px;
  }
  .msh--main.bg-img.signup-sec {
    height: max-content;
  }
  .login-sec .form-select.country-select {
    font-size: 14px;
  }
  .about-banner {
    display: none;
  }
  .home-sec .start-btn {
    padding: 10px 86px;
    font-size: 30px;
    margin-top: 3px;
  }
  .card-draiva .title {
    font-size: 38px !important;
  }
  .card-draiva .ai-img {
    max-height: 630px;
  }
  .card-report {
    padding: 12px;
    min-height: 87%;
  }
}
@media (max-width: 767.5px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 14px !important;
  }

  .font_15 {
    font-size: 14px !important;
  }

  .font_16 {
    font-size: 15px !important;
  }

  .font_17 {
    font-size: 15px !important;
  }

  .font_18 {
    font-size: 16px !important;
  }

  .font_19 {
    font-size: 16px !important;
  }

  .font_20 {
    font-size: 16px !important;
  }

  .font_22 {
    font-size: 16px !important;
  }

  .font_24 {
    font-size: 17px !important;
  }

  .font_26 {
    font-size: 17px !important;
  }

  .font_25 {
    font-size: 18px !important;
  }

  .font_28 {
    font-size: 18px !important;
  }

  .font_30 {
    font-size: 20px !important;
  }
  .font_34 {
    font-size: 20px !important;
  }
  .font_32 {
    font-size: 20px !important;
  }

  .font_36 {
    font-size: 20px !important;
  }

  .font_40 {
    font-size: 26px !important;
  }

  .font_46 {
    font-size: 28px !important;
  }

  .font_48 {
    font-size: 28px !important;
  }
  .font_54 {
    font-size: 28px !important;
  }
  .font_64 {
    font-size: 30px !important;
  }
  .subsec {
    padding: 40px 0;
  }
  .poc-sec .poc-card {
    padding: 14px;
  }

  .poc-sec .poc-card .poc-img {
    width: 60px;
    height: 60px;
    padding: 14px;
  }
  .poc-card .title {
    font-size: 18px;
  }
  /* .banner-card {
    padding-top: 20px;
  } */
  .banner-slider .font_48 {
    font-size: 20px !important;
  }
  .banner-slider .font_25 {
    font-size: 15px !important;
  }
  .connect-btn {
    font-size: 14px;

    width: 122px;
  }
  .doctor-table-card {
    padding: 10px !important;
  }
  .doc-details {
    font-size: 14px;
  }
  .doc-details .doc-profile {
    height: 35px;
    width: 35px;
  }
  .card-select--2 .icon-design {
    width: 50px;
    height: 50px;
    /* padding: 4px; */
  }
  .card-progress-set {
    padding: 15px;
    height: 14rem;
    width: 220px;
  }
  #handle2 .rs-handle:after {
    width: 65px;
  }
  .heading-section {
    height: 180px;
  }
  .terms-use {
    padding: 20px;
  }
  .solution-sec {
    padding: 25px;
  }
  .primary-care-title {
    font-size: 17px;
    padding: 16px;
  }
  .service-card .icon {
    height: 60px;
    width: 60px;
    margin: 18px 0;
  }
  .service-card .title {
    padding: 10px;
    font-size: 14px;
  }
  .slider {
    margin: 0;
  }
  .slider .slide {
    height: 70px;
    width: 140px;
  }
  .partners-sec {
    padding: 25px;
  }
  .service-card {
    margin-bottom: 20px;
  }
  .heading-section {
    height: 200px;
  }
  .binah-card {
    background: #fff;
    padding: 14px;
    margin-top: -43%;
  }
  .binah-card .progress {
    height: 24px;
  }
  .binah-card .progress-bar {
    font-size: 12px;
  }
  .img-set {
    height: 400px;
    width: 586px;
  }
  .linked-icon img {
    height: 23px;
    width: 23px;
    position: absolute;
    bottom: 48%;
    right: 21%;
  }
  .teammate {
    padding: 16px 8px;
  }
  .teammate .teammate-photo {
    height: 80px;
    width: 80px;
  }
  .splash_screen .logo {
    margin-bottom: 10px;
  }
  .splash_screen .title {
    font-size: 25px;
  }
  .splash_screen .logo {
    background: #fff;
    width: 120px;
    height: 120px;
  }
  .card-select--2 .icon-design {
    width: 50px;
    height: 50px;
    /* padding: 4px; */
  }
  .card-select--2 {
    padding: 6px;
    margin-bottom: 4px;
    gap: 6px;
  }
  .card-draiva .text {
    padding: 9px;
    font-size: 28px;
  }
  .service-card .icon {
    height: 160px;
    width: 180px;
  }
  .card-draiva .icon {
    height: 100px;
    width: 100px;
  }
  .card-draiva .ai-img {
    max-height: 430px;
  }
  .appointment-action {
    margin-top: 20px;
  }
  .appointment-action .btn.font_16 {
    font-size: 16px !important;
  }
  .share-medical .connect-btn {
    font-size: 17px;
    width: 152px;
    padding: 7px;
    margin-top: 10px;
  }
  .share-medical .nav-pills .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 12px !important;
  }

  .font_15 {
    font-size: 12px !important;
  }

  .font_16 {
    font-size: 13px !important;
  }

  .font_17 {
    font-size: 14px !important;
  }

  .font_18 {
    font-size: 14px !important;
  }

  .font_19 {
    font-size: 14px !important;
  }

  .font_20 {
    font-size: 15px !important;
  }

  .font_22 {
    font-size: 16px !important;
  }

  .font_24 {
    font-size: 16px !important;
  }

  .font_26 {
    font-size: 16px !important;
  }

  .font_25 {
    font-size: 16px !important;
  }

  .font_28 {
    font-size: 16px !important;
  }

  .font_30 {
    font-size: 20px !important;
  }

  .font_32 {
    font-size: 20px !important;
  }
  .font_34 {
    font-size: 20px !important;
  }
  .font_36 {
    font-size: 20px !important;
  }

  .font_40 {
    font-size: 22px !important;
  }

  .font_46 {
    font-size: 24px !important;
  }

  .font_48 {
    font-size: 24px !important;
  }
  .font_54 {
    font-size: 24px !important;
  }
  .font_64 {
    font-size: 26px !important;
  }
  .msh--main .login-sec {
    padding: 26px;
  }
  .login-sec .logo-size {
    height: 90px;
    width: 90px;
  }
  .poc-card .text {
    font-size: 12px;
  }
  .poc-card .title {
    font-size: 14px;
  }
  .poc-sec {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .poc-sec .poc-card .poc-img {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
  }
  .msh--main {
    padding-top: 65px;
  }
  .banner-slider button.slick-prev.slick-arrow {
    left: 35px;
  }
  .home-sec .start-btn {
    margin-top: 0px;
    padding: 4px 50px;
    font-size: 30px;
  }

  .banner-card .font_20 {
    font-size: 10px !important;
  }
  .banner-slider .font_48 {
    font-size: 12px !important;
  }
  .banner-slider .font_25 {
    font-size: 10px !important;
  }
}
@media (max-width: 576px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 12px !important;
  }

  .font_15 {
    font-size: 12px !important;
  }

  .font_16 {
    font-size: 13px !important;
  }

  .font_17 {
    font-size: 14px !important;
  }

  .font_18 {
    font-size: 14px !important;
  }

  .font_19 {
    font-size: 14px !important;
  }

  .font_20 {
    font-size: 15px !important;
  }

  .font_22 {
    font-size: 16px !important;
  }

  .font_24 {
    font-size: 16px !important;
  }

  .font_26 {
    font-size: 16px !important;
  }

  .font_25 {
    font-size: 16px !important;
  }

  .font_28 {
    font-size: 16px !important;
  }

  .font_30 {
    font-size: 20px !important;
  }

  .font_32 {
    font-size: 20px !important;
  }
  .font_34 {
    font-size: 20px !important;
  }
  .font_36 {
    font-size: 20px !important;
  }

  .font_40 {
    font-size: 22px !important;
  }

  .font_46 {
    font-size: 24px !important;
  }

  .font_48 {
    font-size: 24px !important;
  }
  .font_64 {
    font-size: 20px !important;
  }
  .login-sec .form-control {
    font-size: 12px;
  }
  .login-sec .input-group-text img {
    height: 18px;
  }
  .login-sec .form-check-input {
    height: 13px;
    width: 13px;
  }
  .login-sec .login-btn {
    font-size: 12px;
    padding: 8px;
  }
  .login-sec .form-control {
    padding: 8px;
  }
  .img {
    height: 131px;
    margin-bottom: 0;
  }

  .subsec {
    padding: 20px 0;
  }
  .card-select--1 .icon-design {
    width: 40px;
    height: 40px;

    padding: 8px;
  }
  .card-select--1 {
    padding: 13px;
    margin-bottom: 12px;
  }
  .modal-custom {
    padding: 0;
  }
  .modal-custom .modal-msg {
    font-size: 18px;
    padding: 10px;
  }
  .modal-button {
    font-size: 20px;
    padding: 5px;
  }
  .header-nav .navbar-brand img {
    height: 45px;
  }
  .header-nav .navbar-nav .dropdown-toggle {
    padding: 6px;
  }
  .home-sec {
    padding: 20px 0;
  }

  .header-nav .logout-btn {
    padding: 7px 29px;
    border-radius: 4px;

    font-size: 13px;
  }
  .login-sec .input-group .input-group-text {
    font-size: 12px;
  }
  .custom-tabs.nav-tabs .nav-link {
    font-size: 16px;

    padding: 10px 15px;
  }
  .banner-slider button.slick-prev.slick-arrow {
    left: 103%;
    /* right: 54px; */
    top: 83%;
    height: 15px;
    width: 15px;
  }
  .banner-slider button.slick-next.slick-arrow {
    height: 15px;
    width: 15px;
    right: -2%;
    top: 83%;
  }
  .header-nav .navbar-nav .nav-link {
    font-size: 12px;

    padding: 5px 0;
  }
  .search-sec .que-block .profile {
    height: 34px;
    width: 34px;
  }
  .search-sec .ans-sub-block {
    padding: 20px 25px;
  }
  .search-sec .input-group {
    padding: 6px;
  }
  .search-sec .search-btn {
    padding: 14px;
  }
  .feedback-sec .custom-tabs.nav-pills .nav-link {
    font-size: 14px;
  }
  .card-profile {
    margin-bottom: 12px;
  }
  .card-profile .title {
    text-align: center;
    font-size: 18px;
  }
  .card-profile .card-pic {
    width: 110px;
    height: 110px;
  }
  .card-profile .card-pic img {
    width: 110px;
    height: 110px;
  }
  .browse-files-text img {
    height: 30px;
  }
  .card-progress-set {
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .card-progress-set {
    padding: 14px;
    width: 178px;

    height: 12rem;
  }
  #handle2 .rs-handle:after {
    width: 45px;
  }
  .doctor-list-table thead tr th {
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
  }
  .doctor-list-table tbody tr td {
    padding: 12px;
  }
  .footer-sec {
    padding: 10px 0;
  }
  .terms-use .text {
    font-size: 14px;
  }
  .modal-custom .instruct-detail {
    height: 42px;
    width: 42px;
  }
  .modal-custom .instruct-detail.well-lit {
    padding: 3px;
  }
  .binah-card .icon-rate {
    height: 20px;
    margin-bottom: 10px;
  }
  .img-set {
    height: 400px;
    width: 484px;
  }
  .card-select--2 .font_22.text {
    font-size: 17px !important;
    font-weight: 700;
  }
  .card-draiva .title {
    font-size: 32px !important;
  }
  .card-draiva .ai-img {
    max-height: 440px;
  }
  .vital-icon {
    height: 90px;
  }
  .card-select--2 .icon-design i.font_34 {
    font-size: 23px !important;
  }
  .appointment-list .profile-info-widget {
    flex-direction: column;
    align-items: baseline;
  }
  .report-sec {
    padding: 10px 0;
  }
 
  .appointment-list {
    padding: 10px;
  }
}
@media (max-width: 530px) {
  .card-draiva .ai-img {
    max-height: 340px;
  }
  .img-set {
    width: 326px;
  }
  .vital-icon {
    height: 80px;
    width: 100%;
  }
  .input--file .input-icon img {
    height: 100px;
}
.input--file {
    height: 156px;
}
}
@media (max-width: 340px) {
  .card-select--2 .font_22.text {
    font-size: 14px !important;
    font-weight: 700;
  }
  .card-draiva .text {
    font-size: 24px;
  }
  .card-select--2 .icon-design {
    width: 35px;
    height: 35px;}
}

/* .error {
  color: red;
  margin: 10px;
  padding: 0px;
  border: 1px solid red;
  border-radius: 5px;
} */

/* binah webcam */

/* .webcam-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 0;
} */

.webcam-container {
}

.webcam-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: -24%;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  border-radius: 50%;
  width: 95%;
  height: 80%;
  margin: auto;
  transform: translateY(0%);
  z-index: 12;
}

.overlay::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  /* background: black; */
  border-radius: 50%;
  z-index: 12;
  border: 4px dashed #64f464;
}

.alert-msg {
  background-color: #f8d7da;
  border: 1px solid #f1aeb5;
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  z-index: 9999;
  position: relative;
}