/* 1 General */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Background Color */
  --bg-darkblue: #3e1911;
  --bg-white: #fff;
  --bg-light-white: #fcfcfc;
  --bg-light-2: #f2f7fa;
  --bg-dark-samantha: rgb(228, 120, 47);
  --bg-features-1: #fff6d6;
  --bg-features-2: #ebdcf9;
  --bg-features-3: #ddf5fc;
  --bg-features-4: #dcf6e8;
  --bg-features-5: #f8e4e1;
  --bg-features-6: #ecece7;

  /* Text Color */
  --text-black: #000;
  --text-white: #fff;
  --text-dark-gray: #4c535d;
  --text-light-2: #090b3c;
  --text-light-3: #5e5e72;
  --text-light-4: #a0a0a0;
  --text-samantha: rgb(76, 118, 72);
  --text-orange: #ff5d2a;
  --text-yellow: #ffc100;

  /* Fonts */
  --primary-font: Quicksand;
  --secondary-font: "Poppins", sans-serif;
  --normal-font-weight: 400;
  --bold-font-weight: 700;

  --red: hsl(0, 78%, 62%);
  --cyan: hsl(180, 62%, 55%);
  --orange: hsl(34, 97%, 64%);
  --blue: hsl(212, 86%, 64%);
  --varyDarkBlue: hsl(234, 12%, 34%);
  --grayishBlue: hsl(229, 6%, 66%);
  --veryLightGray: hsl(0, 0%, 98%);
  --weight1: 200;
  --weight2: 400;
  --weight3: 600;
  --decentBlue: rgb(11, 127, 171);
  --decentMagantha: rgb(150, 54, 148);
}
body {
  font-family: var(--primary-font);
  font-weight: var(--normal-font-weight);
  background-color: var(--bg-white);
}

/* patient story */

.ex1 {
  color: #090b3c;
}

section#tabs li {
  list-style-position: inside;
  border: 1px solid rgb(219, 192, 192);
  border-top-left-radius: 25px;
}

section#tabs li.active {
  border: 1px solid rgb(114, 34, 34);
}

ul.nav li.active a {
  color: red;
}

section#tabs img {
  padding: 25px;
}

section#tabs a {
  color: rgb(228, 120, 47);
  font-size: 14px;
  font-weight: bold;
}
.nav-tabs > li > a.adopt-tab.active {
  background-color: #04551f;
  color: white;
  border: none;
}
.nav-tabs .nav-link:not(.active) {
  border-color: transparent !important;
}

.nav-tabs > li > a:hover,
.nav > li > a:focus,
.nav > li > a:hover {
  background-color: #3d5188 !important;
  color: #ddf5fc !important;
}
.nav-tabs .nav-link.active {
  background-color: #3d5188 !important;
  color: #ddf5fc !important;
}

/* patient story */

/* side bar */
/* Zoom In #2 */
#enquiry {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 200px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#appointment {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 325px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#quiz {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 450px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#video {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 575px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#enquiry:hover {
  width: 120px;
}

#appointment:hover {
  width: 120px;
}

#quiz:hover {
  width: 120px;
}

#video:hover {
  width: 120px;
}

.modal-dialog {
  position: fixed;
  bottom: 300px;
  right: 120px;
  z-index: 10040;
  overflow: auto;
  overflow-y: auto;
}

/* side bar */

.removeul {
  color: var(--bg-darkblue);
  background-color: transparent;
  text-decoration: none;
  font-weight: var(--bold-font-weight);
}

.nounderline:link {
  color: var(--bg-darkblue);
  background-color: transparent;
  text-decoration: none;
  font-weight: var(--bold-font-weight);
}

.nounderline:visited {
  color: var(--bg-dark-samantha);
  background-color: transparent;
  text-decoration: none;
}

.nounderline:hover {
  color: var(--bg-darkblue);
  background-color: transparent;
  text-decoration: underline;
}

.nounderline:active {
  color: var(--bg-darkblue);
  background-color: transparent;
  text-decoration: underline;
}

/* Custom CSS */
.learn-more-btn {
  background-color: var(--bg-darkblue);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white) !important;
  padding: 12px 12px !important;
  border-radius: 10px;
  border: 2px solid var(--bg-darkblue);
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  display: inline-block;
  text-decoration: none;
  transition: 0.7s;
}
.btn-extra-header {
  color: var(--text-dark-gray) !important;
  background-color: transparent;
  border: 2px solid var(--text-dark-gray);
}

/* 1 Topbar */

#TopBar {
  background-color: var(--text-samantha);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 40px;
  font-weight: var(--bold-font-weight);
}

#TopBar #welcome {
  color: white;
  float: left;

  font-weight: bold;
  padding-right: 40px;
  padding-left: 500px;
  margin-top: 0px;
  font-size: 30;
}

#TopBar #email {
  color: var(--bg-darkblue);
  float: right;
  width: 350px;
  font-weight: bold;
  float: right;
  padding-right: 40px;
  margin-top: 1px;
  text-decoration: none;
  cursor: default;
}

#TopBar #phone {
  color: var(--bg-darkblue);
  float: right;
  width: 350px;
  font-weight: bold;
  float: right;
  padding-right: 40px;
  margin-top: 1px;
  text-decoration: none;
  cursor: default;
}

/* 2 Navbar */
.header_wrapper .navbar {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.header_wrapper .navbar-brand img {
  max-width: 100px;
  height: auto;
}
.header_wrapper .menu-navbar-nav {
  width: 70%;
  display: flex;
  justify-content: center;
}
.header_wrapper .nav-item {
  margin: 0 10px;
}
.header_wrapper .nav-item .nav-link {
  font-weight: var(--bold-font-weight);
  font-size: 18px;
  color: var(--bg-darkblue);
  line-height: 1;
}
.header_wrapper .nav-item .nav-link.active {
  color: var(--text-samantha);
}
.header-scrolled {
  position: fixed;
  margin-top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: var(--bg-white);
  -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}
.header-scrolled .navbar-brand img {
  width: 130px;
  height: auto;
  animation: animated 0.1s ease-in-out;
}
@keyframes animated {
  0% {
    width: 210px;
  }
  50% {
    width: 200px;
  }
  100% {
    width: 190px;
  }
}
.header-scrolled .nav-item .nav-link {
  font-size: 17px;
}

/* 3 Banner */

.banner_wrapper .banner-title-clinic {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 40px;
  text-transform: capitalize;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--bg-darkblue);
}

.banner_wrapper .banner-subtitle-clinic {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--bg-darkblue);
}

.banner_wrapper {
  display: flex;
  width: 100%;
  padding: 75px 0 25px;
  background: url(../images/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}
.banner_wrapper .banner-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--text-light-3);
}
.banner_wrapper .banner-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 45px;
  text-transform: capitalize;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--bg-darkblue);
}
.banner_wrapper .banner-title span {
  color: var(--text-samantha);
}
.banner_wrapper .banner-title-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 450px;
  color: var(--text-light-2);
}
.banner_wrapper .learn-more-btn-section {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
}
/* .banner_wrapper .header-img-section img {
    
    animation: float 5s ease-in-out infinite;
} */
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(20px);
  }
  100% {
    transform: translatey(0px);
  }
}

/* 4 Client */
.clients {
  padding: 80px 0 50px;
  background: var(--bg-light-2);
}
.clients h2 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 25px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 40px;
  color: var(--text-light-2);
}
.client-slider-section .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.client-slider-section img {
  width: auto !important;
  height: 50px;
  object-fit: cover;
}

/* 5 About */
.about_wrapper {
  padding: 100px 0 0;
}
.about_wrapper .about_number {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 24px;
  padding: 4px 4px;
  max-width: 425px;
  border-radius: 10px;
  margin-bottom: 25px;

  color: var(--text-white);
  background-color: var(--bg-dark-samantha);
}
.about_wrapper .about_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  max-width: 1000px;
  margin-bottom: 25px;
  color: var(--text-black);
}
.about_wrapper .about_text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  max-width: 700px;
  color: var(--text-light-2);
}
.about_wrapper .innovate {
  background: var(--bg-light-2);
  padding: 80px 0;
}
.about_wrapper .projects {
  padding: 30px 0;
}
.about_wrapper .projects h2 {
  color: var(--text-orange);
  font-family: Poppins;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.5;
  margin-bottom: 0;
}
.about_wrapper .projects p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

/* 6 Features */
.features_wrapper {
  padding: 100px 0 80px;
  background: var(--bg-light-2);
}
.features_wrapper img {
  width: 400px;
}
.features_wrapper .features_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}
.features_wrapper .features_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}
.features_wrapper h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
}
.features_wrapper .features_text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

.BulletList li {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}
.features_wrapper .ft-1 {
  background: var(--bg-features-1);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-1:before {
  content: url(../images/clinic/kyd/7.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}
.features_wrapper .ft-2 {
  background: var(--bg-features-2);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-2:before {
  content: url(../images/clinic/kyd/8.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}
.features_wrapper .ft-3 {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-3:before {
  content: url(../images/clinic/kyd/9.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}
.features_wrapper .ft-4 {
  background: var(--bg-features-4);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-4:before {
  content: url(../images/clinic/kyd/10.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}
.features_wrapper .ft-5 {
  background: var(--bg-features-5);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-5:before {
  content: url(../images/clinic/kyd/11.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}
.features_wrapper .ft-6 {
  background: var(--bg-features-6);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-6:before {
  content: url(../images/clinic/kyd/6.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

.features_wrapper .ft-7 {
  background: var(--bg-features-1);
  padding: 40px;
  border-radius: 15px;
}
.features_wrapper .ft-7:before {
  content: url(../images/clinic/kyd/5.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* 7 Pricing */
.price_wrapper {
  padding: 100px 0 0;
}
.price_wrapper .pricing_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}
.price_wrapper .pricing_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}
.price_wrapper .pricing_card {
  background-color: var(--bg-white);
  box-shadow: 0 1px 20px rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px 45px 40px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}
.price_wrapper .pricing_card:hover {
  box-shadow: 0 2px 29px rgb(0 0 0 / 20%);
  z-index: 5;
  cursor: pointer;
}
.price_wrapper .pricing_period {
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 0px;
  color: var(--text-light-2);
}
.price_wrapper .pricing_card img {
  max-width: 75%;
}
.price_wrapper .pricing_rate {
  color: var(--text-black);
  font-weight: 800;
  font-family: var(--secondary-font);
  font-size: 34px;
  line-height: 1.25;
}
.price_wrapper .pricing_text {
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--text-black);
  margin: 0;
}
.price_wrapper .pricing_all_plan {
  text-align: center;
  width: 100%;
  display: flex;
  margin: 15px 0;
}
.price_wrapper .pricing_all_plan ul {
  width: 100%;
  list-style: none;
  padding-inline-start: 0;
}
.price_wrapper .pricing_all_plan li {
  font-size: 14px;
  color: var(--text-dark-gray);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  margin-top: 5px;
}
.price_wrapper .pricing_all_plan li strike {
  color: var(--text-light-4);
}
.price_wrapper .learn-more-btn {
  background: var(--bg-dark-samantha);
  border-color: var(--bg-dark-samantha);
}
.price_wrapper .featured {
  box-shadow: 0 2px 40px rgb(0 0 0 / 5%);
  background-color: var(--bg-white);
  border: 5px solid var(--text-black);
  padding-top: 80px;
  padding-bottom: 80px;
}
.price_wrapper .pricing-ribbon {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 20;
}
.price_wrapper .pricing-ribbon span {
  font-family: var(--secondary-font);
  position: absolute;
  display: block;
  width: 225px;
  padding: 5px 0;
  background-color: var(--bg-darkblue);
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
  text-transform: uppercase;
  text-align: center;
  right: -45px;
  top: 30px;
  transform: rotate(-45deg);
}
.price_wrapper .btn-featured {
  background-color: var(--bg-darkblue);
  border-color: var(--bg-darkblue);
}
.price_wrapper .featured .pricing_rate {
  font-size: 40px;
}
.free_trial {
  background: var(--bg-light-2);
  padding: 80px 0;
  margin-top: 100px;
}
.free_trial .free_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 0;
  color: var(--text-black);
}
.free_trial .learn-more-btn {
  background: var(--bg-darkblue);
  border-color: var(--bg-darkblue);
}
.free_trial .learn-more-btn .fa {
  font-size: 22px;
  margin-right: 5px;
  vertical-align: bottom;
  color: var(--text-yellow);
}

/* 8 Reviews */
.testimonial_wrapper {
  padding: 100px 0;
}
.testimonial_wrapper .testimonials_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}
.testimonial_wrapper .testimonials_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 80px;
  color: var(--text-black);
}
.testimonial_wrapper .testimonials_card {
  border-radius: 15px;
  padding: 50px;
  background-color: var(--bg-white);
  box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
}
.testimonial_wrapper h3 {
  font-family: var(--secondary-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-black);
}
.testimonial_wrapper .testimonials_role {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
  color: var(--text-samantha);
}
.testimonial_wrapper .testimonials_text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.testimonial_wrapper .testimonials_calltype {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
  color: var(--text-yellow);
}

/* 9 Brands */
.brand_wrapper {
  padding: 100px 0;
  background: var(--bg-light-2);
}
.brand_wrapper .brand_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}
.brand_wrapper .brand_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}
.brand_wrapper .showcase_card img {
  width: 100%;
  border-radius: 15px;
  padding: 45px 25px;
  background-color: var(--bg-white);
  box-shadow: 0 5px 40px rgb(0 0 0 / 8%);
  transition: 0.7s;
}
.brand_wrapper .showcase_card img:hover {
  transform: scale(1.2);
  position: relative;
  z-index: 2;
}

/* 10 FAQs */
.faq_wrapper {
  padding: 100px 0 0;
}
.faq_wrapper .faq_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}
.faq_wrapper .faq_title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}
.faq_wrapper .accordion-button:hover,
.faq_wrapper .accordion-button:focus {
  box-shadow: none;
  color: var(--text-samantha);
}
.faq_wrapper .accordion-item {
  border: 0;
}
.faq_wrapper .accordion-button {
  font-size: 21px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--text-black);
  background-color: var(--text-white);
  border-radius: 0;
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--text-light-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.faq_wrapper .accordion-button::after {
  content: "\002B";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  display: inline-block;
  background-image: none;
}
.faq_wrapper .accordion-button:not(.collapsed)::after {
  content: "\2212";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  display: inline-block;
  background-image: none;
  transform: unset;
}
.faq_wrapper .accordion-body {
  color: var(--text-black);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 25px;
  line-height: 1.5;
}

/* 11 Footer */
.footer_wrapper {
  padding-top: 100px;
  padding-bottom: 25px;
  background: url(../images/bg_footer.png) no-repeat;
  background-size: cover;
  background-color: var(--bg-darkblue);
  color: var(--text-white);
}
.footer_wrapper .footer_logo img {
  max-width: 30%;
}
.footer_wrapper .footer_text,
.footer_wrapper .footer_text a {
  margin-top: 30px;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}
.footer_wrapper .footer_title {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-white);
  margin-bottom: 25px;
}
.footer_wrapper .footer_social_media_icon {
  padding-right: 30px;
  color: var(--text-white);
  font-size: 20px;
}
.footer_wrapper .footer_credits {
  color: var(--text-white);
  border-top: 1px solid var(--text-white);
  padding-top: 20px;
  margin-top: 30px;
}
.footer_wrapper .footer_credits a {
  color: var(--text-yellow);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* Zoom In #2 */
.hover02 #enquiry img {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 100px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover02 #appointment img {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 400px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover02 #quiz img {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 500px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover02 #video img {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 600px;
  z-index: 10039;
  right: 5px;
  margin: 0;
  padding: 5px 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hover02 figure:hover img {
  width: 120px;
}

.ExquiryModal {
  position: fixed;
  bottom: 300px;
  right: 120px;
  z-index: 10040;
  overflow: auto;
  overflow-y: auto;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
  }
  .navbar .nav-item:hover .nav-link {
    color: rgb(228, 120, 47);
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

.blockquote-custom {
  position: relative;
  font-size: 1.1rem;
}

.blockquote-custom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 19px;
}

.pdfcontainer {
  width: 800px;
  margin: 30px auto;
  font-family: helvetica, tahoma;
}
#viewpdf {
  width: 100%;
  height: 500px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

#demo {
  background: linear-gradient(112deg, #ffffff 50%, antiquewhite 50%);
  max-width: 900px;
  width: 550px;
  height: 480px;
  margin: auto;
  border-radius: 10px;
  border: 2px solid rgba(241, 241, 234, 0.856);
}

.carousel-caption {
  position: initial;
  z-index: 10;
  padding: 2rem 4rem;
  color: rgba(78, 77, 77, 0.856);
  text-align: left;
  font-size: 1rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1rem;
}

@media (max-width: 767px) {
  .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 3rem 2rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: left;
    font-size: 0.7rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1.5rem;
  }
}

.carousel-caption img {
  width: 3rem;
  border-radius: 5rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .carousel-caption img {
    width: 4rem;
    border-radius: 4rem;
    margin-top: 1rem;
  }
}

#image-caption {
  font-style: normal;
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  #image-caption {
    font-style: normal;
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }
}

#demo i {
  background-color: var(--bg-dark-samantha);
  padding: 0.8rem;
}

@media (max-width: 767px) {
  i {
    padding: 0.8rem;
  }
}

.carousel-control-prev {
  width: 25px;
  justify-content: flex-start;
}

.carousel-control-next {
  width: 25px;
  justify-content: flex-end;
}

.carousel-control-prev,
.carousel-control-next {
  transition: none;
  opacity: unset;
}

.toggledText span.trimmed {
  display: none;
}
.read-more .more::before {
  content: "Read More";
}
.showAll .toggledText span.morePoints {
  display: none;
}
.showAll .toggledText span.trimmed {
  display: inline;
}
.showAll .read-more .more::before {
  content: "Read Less";
}

.ex1 {
  color: #090b3c;
}

section#tabs li {
  list-style-position: inside;
  border: 1px solid rgb(219, 192, 192);
  border-top-left-radius: 25px;
}

section#tabs li.active {
  border: 1px solid rgb(114, 34, 34);
}

ul.nav li.active a {
  color: red;
}

section#tabs img {
  padding: 25px;
}

section#tabs a {
  color: rgb(228, 120, 47);
  font-size: 14px;
  font-weight: bold;
}
.nav-tabs > li > a.adopt-tab.active {
  background-color: #04551f;
  color: white;
  border: none;
}
.nav-tabs .nav-link:not(.active) {
  border-color: transparent !important;
}

.nav-tabs > li > a:hover,
.nav > li > a:focus,
.nav > li > a:hover {
  background-color: #3d5188 !important;
  color: #ddf5fc !important;
}
.nav-tabs .nav-link.active {
  background-color: #3d5188 !important;
  color: #ddf5fc !important;
}

/* Home Intro  */

.homeintro {
  display: table;
  height: 100%;
  width: 100%;
}

.homeintro .container-fostrap {
  display: table-cell;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
}
.homeintro .fostrap-logo {
  width: 100px;
  margin-bottom: 15px;
}
.homeintro h1.heading {
  color: #fff;
  font-size: 1.15em;
  font-weight: 900;
  margin: 0 0 0.5em;
  color: #505050;
}
@media (min-width: 450px) {
  .homeintro h1.heading {
    font-size: 3.55em;
  }
}
@media (min-width: 760px) {
  .homeintro h1.heading {
    font-size: 3.05em;
  }
}
@media (min-width: 900px) {
  .homeintro h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
}
.homeintro .card {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s;
}
.homeintro .card:hover {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.homeintro .img-card {
  width: 100%;
  height: 200px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  display: block;
  overflow: hidden;
}
.homeintro .img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.25s ease;
}
.homeintro .card-content {
  padding: 15px;
  text-align: left;
}
.homeintro .card-title {
  margin-top: 0px;
  font-weight: 700;
  font-size: 1.65em;
}
.homeintro .card-title a {
  color: #000;
  text-decoration: none !important;
}
.homeintro .card-read-more {
  border-top: 1px solid #d4d4d4;
}
.homeintro .card-read-more {
  text-decoration: none !important;
  padding: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bg-dark-samantha);
}

/* Home intro ends */

/* Home Testimonial */

/* NewReviewGoogle */

.NewReviewGoogle {
  display: table;
  height: 100%;
  width: 100%;
}

.NewReviewGoogle .container-fostrap {
  display: table-cell;

  text-align: center;
  vertical-align: middle;
}
.NewReviewGoogle .fostrap-logo {
  width: 100px;
  margin-bottom: 1px;
}
.NewReviewGoogle h1.heading {
  color: #fff;
  font-size: 1.15em;
  font-weight: 900;
  margin: 0 0 0.5em;
  color: #505050;
}
@media (min-width: 450px) {
  .NewReviewGoogle h1.heading {
    font-size: 3.55em;
  }
}
@media (min-width: 760px) {
  .NewReviewGoogle h1.heading {
    font-size: 3.05em;
  }
}
@media (min-width: 900px) {
  .NewReviewGoogle h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
}
.NewReviewGoogle .card {
  display: block;
  width: 200px;
  margin-bottom: 1px;
  line-height: 1.42857143;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s;
}
.NewReviewGoogle .card:hover {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.NewReviewGoogle .img-card {
  width: 200px;
  height: 100px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  display: block;
  overflow: hidden;
}
.NewReviewGoogle .img-card img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  transition: all 0.25s ease;
}
.NewReviewGoogle .card-content {
  padding: 1px;
  text-align: left;
}
.NewReviewGoogle .card-title {
  margin-top: 0px;
  font-weight: 700;
  font-size: 1.65em;
}
.NewReviewGoogle .card-title a {
  color: #000;
  text-decoration: none !important;
}

.homeTestimonial .ratings i {
  color: orange;
}

.homeTestimonial {
  /* padding: 1.5em .5em .5em; */
  border-radius: 2em;
  /* text-align: center; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  margin: 5px !important;
  /* padding-bottom: 0px !important; */
}

.homeTestimonial .lower-round {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  /* border-radius: 2em; */
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-left: 1px;
  margin-right: 1px;
  background-color: red;
}

.homeTestimonial .lower-round a {
  text-decoration: none;
  color: white;
  text-align: center;
}

.homeTestimonial .lower-round button:hover {
  background-image: none !important;
  background-color: #ff00ff !important;
}

.homeTestimonial .lower-round button:focus {
  outline: none;
  box-shadow: none;
}

/* margin-bottom: 10px; */

.reviewCenter {
  text-align: center;
  color: orange;
  font-weight: 600;
}
.reviewCenterBlue {
  text-align: center;
  color: var(--bg-darkblue);
  font-weight: 800;
}

.roundercorner {
  border-radius: 25px;
  background: #73ad21;
  padding: 20px;
  width: 200px;
  height: 150px;
}

/* new wrapper */

.NewWrapper .box p {
  color: var(--grayishBlue);
}
.NewWrapper .box h2 {
  font-size: 17px;
}

.NewWrapper .box {
  border-radius: 35px;
  box-shadow: 0px 30px 40px -20px var(--grayishBlue);
  padding: 5px 5px;
  margin: 5px 5px;
  width: 300px;
  height: 70px;
}

.NewWrapper img {
  width: 68px;
}

.homeTestimonial img {
  width: 300px;
}

.NewWrapper .cyan {
  border-top: 3px solid var(--cyan);
}
.NewWrapper .red {
  border-top: 3px solid var(--red);
}
.NewWrapper .blue {
  border-top: 3px solid var(--blue);
}
.NewWrapper .orange {
  border-top: 3px solid var(--orange);
}

.NewWrapper h2 {
  color: var(--varyDarkBlue);
  font-weight: var(--weight3);
  font-size: 22px;
}

.NewWrapper .row1-container {
  display: flex;
  align-items: center;
}

.NewWrapper .box:hover {
  border: 3px solid var(--cyan);
  padding: 0px;
}

/* NewPatientReview */

.NewPatientReview h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
}
.NewPatientReview p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

.NewPatientReview .features_head {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-dark-samantha);
  text-align: center;
}

/* new  */

/* NewPatientReview */

/* FirstAppointmentBody */

.FirstAppointmentBody h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
}
.FirstAppointmentBody p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

.FirstAppointmentBody .features_head {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-dark-samantha);
}

/* Expert Witness */

.ExpertWitness h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
  text-align: center;
}
.ExpertWitness p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
  text-align: center;
}

.ExpertWitness .features_head {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--bg-dark-samantha);
}
.ExpertWitness .features_head_next {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--text-black);
}

.ExpertWitness .features_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--bg-darkblue);
}

.ExpertWitness .features_text span {
  color: var(--text-yellow);
}

.ExpertWitness .takeleft {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--decentBlue);
  text-align: left;
}

.ExpertWitness .takeleftM {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--decentMagantha);
  text-align: left;
}

.ExpertWitness .takeright {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
  text-align: right;
}

.ExpertWitness .takeleftwhite {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
  text-align: left;
  background-color: yellowgreen;
}

/* Case Manager */

.CaseManagerSection h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
  text-align: center;
}
.CaseManagerSection p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
  text-align: left;
}

.CaseManagerSection .features_head {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--bg-dark-samantha);
}
.CaseManagerSection .features_head_next {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--text-black);
}

.CaseManagerSection .features_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--bg-darkblue);
}

.CaseManagerSection .features_text span {
  color: var(--text-yellow);
}

.CaseManagerSection .takeleft {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--decentBlue);
  text-align: left;
}

.CaseManagerSection .takeleftM {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--decentMagantha);
  text-align: left;
}

.CaseManagerSection .takeright {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
  text-align: right;
}

.CaseManagerSection .takeleftwhite {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
  text-align: left;
  background-color: yellowgreen;
}

/* Mini Gragh */

.MiniGraph .order-card {
  color: #fff;
}

.MiniGraph .bg-c-blue {
  background: linear-gradient(45deg, #4099ff, #73b4ff);
}

.MiniGraph .bg-c-green {
  background: linear-gradient(45deg, #2ed8b6, #59e0c5);
}

.MiniGraph .bg-c-yellow {
  background: linear-gradient(45deg, #ffb64d, #ffcb80);
}

.MiniGraph .bg-c-pink {
  background: linear-gradient(45deg, #ff5370, #ff869a);
}

.MiniGraph .card {
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
  box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
  border: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.MiniGraph .card .card-block {
  padding: 25px;
}

.MiniGraph .order-card i {
  font-size: 26px;
}

.MiniGraph .f-left {
  float: left;
}

.MiniGraph .f-right {
  float: right;
}

.MiniGraph .text-right {
  text-align: right !important;
}

/* ColorGraph */

.ColorGraph .card-big-shadow {
  /* max-width: 320px; */
  position: relative;
}

.ColorGraph .coloured-cards .card {
  margin-top: 30px;
}

.ColorGraph .card[data-radius="none"] {
  border-radius: 0px;
}
.ColorGraph .card {
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
  background-color: #ffffff;
  color: #252422;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* .ColorGraph .card[data-background="image"] .title, .card[data-background="image"] .stats, .card[data-background="image"] .category, .card[data-background="image"] .description, .card[data-background="image"] .content, .card[data-background="image"] .card-footer, .card[data-background="image"] small, .card[data-background="image"] .content a, .card[data-background="color"] .title, .card[data-background="color"] .stats, .card[data-background="color"] .category, .card[data-background="color"] .description, .card[data-background="color"] .content, .card[data-background="color"] .card-footer, .card[data-background="color"] small, .card[data-background="color"]  {
    color: #FFFFFF;
} */
.ColorGraph .card.card-just-text .content {
  padding: 4px 4px;
  text-align: center;
}
.ColorGraph .card .content {
  padding: 2px;
}
.ColorGraph .card[data-color="blue"] .category {
  color: #7a9e9f;
}

.ColorGraph .badge {
  font-size: large;
  color: var(--bg-darkblue);
}

.ColorGraph .card .category,
.card .label {
  font-size: 14px;
  margin-bottom: 0px;
}
.ColorGraph .card-big-shadow:before {
  background-image: url("http://static.tumblr.com/i21wc39/coTmrkw40/shadow.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: -12%;
  content: "";
  display: block;
  left: -12%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.ColorGraph h4,
.h4 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}
.ColorGraph h6,
.h6 {
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}
.ColorGraph .card .description {
  font-size: 16px;
  color: #66615b;
}
.ColorGraph .content-card {
  margin-top: 5px;
}
.ColorGraph a:hover,
a:focus {
  text-decoration: none;
}

/*======== COLORS ===========*/
.ColorGraph .card[data-color="blue"] {
  background: #b8d8d8;
}
.ColorGraph .card[data-color="blue"] .description {
  color: #506568;
}

.ColorGraph .card[data-color="green"] {
  background: #d5e5a3;
}
.ColorGraph .card[data-color="green"] .description {
  color: #60773d;
}
.ColorGraph .card[data-color="green"] .category {
  color: #92ac56;
}

.ColorGraph .card[data-color="yellow"] {
  background: #ffe28c;
}
.ColorGraph .card[data-color="yellow"] .description {
  color: #b25825;
}
.ColorGraph .card[data-color="yellow"] .category {
  color: #d88715;
}

.ColorGraph .card[data-color="brown"] {
  background: #d6c1ab;
}
.ColorGraph .card[data-color="brown"] .description {
  color: #75442e;
}
.ColorGraph .card[data-color="brown"] .category {
  color: #a47e65;
}

.ColorGraph .card[data-color="purple"] {
  background: #baa9ba;
}
.ColorGraph .card[data-color="purple"] .description {
  color: #3a283d;
}
.ColorGraph .card[data-color="purple"] .category {
  color: #5a283d;
}

.ColorGraph .card[data-color="orange"] {
  background: #ff8f5e;
}
.ColorGraph .card[data-color="orange"] .description {
  color: #772510;
}
.ColorGraph .card[data-color="orange"] .category {
  color: #e95e37;
}

/* Clinic Review */

.clinicTestimonial {
  /* padding: 1.5em .5em .5em; */
  border-radius: 2em;
  /* text-align: center; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  margin: 5px !important;
  /* padding-bottom: 0px !important; */
}

.clinicTestimonial .lower-round {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  /* border-radius: 2em; */
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-left: 1px;
  margin-right: 1px;
  background-color: red;
}

.clinicTestimonial .lower-round a {
  text-decoration: none;
  color: white;
  text-align: center;
}

.clinicTestimonial .lower-round button:hover {
  background-image: none !important;
  background-color: #ff00ff !important;
}

.clinicTestimonial .lower-round button:focus {
  outline: none;
  box-shadow: none;
}

/* ClinicReview */

.ClinicReview {
  /* padding: 1.5em .5em .5em; */
  border-radius: 2em;
  /* text-align: center; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  margin: 5px !important;
  /* padding-bottom: 0px !important; */
}

.ClinicReview .lower-round {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  /* border-radius: 2em; */
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-left: 1px;
  margin-right: 1px;
  background-color: red;
}

.ClinicReview .lower-round a {
  text-decoration: none;
  color: white;
  text-align: center;
}

.ClinicReview h5 {
  font-family: var(--secondary-font);
  text-decoration: none;
  color: rgb(0, 77, 128);
  font-size: 25px;
  font-weight: 600;
  text-align: left;
}

.ClinicReview .col h5 {
  text-decoration: none;
  color: var(--bg-dark-samantha);
  text-align: left;
}

.ClinicReview .col h4 {
  text-decoration: none;
  color: var(--red);
  text-align: left;
}

.ClinicReview .lower-round button:hover {
  background-image: none !important;
  background-color: #ff00ff !important;
}

.ClinicReview .lower-round button:focus {
  outline: none;
  box-shadow: none;
}

/* Case Manager Review */

/* ClinicReview */

.ClinicReviewCM {
  /* padding: 1.5em .5em .5em; */
  border-radius: 2em;
  /* text-align: center; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  margin: 5px !important;
  /* padding-bottom: 0px !important; */
}

.ClinicReviewCM .lower-round {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  /* border-radius: 2em; */
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-left: 1px;
  margin-right: 1px;
  background-color: red;
}

.ClinicReviewCM .lower-round a {
  text-decoration: none;
  color: white;
  text-align: center;
}

.ClinicReviewCM h5 {
  text-decoration: none;
  color: var(--text-yellow);
  text-align: center;
}

.ClinicReviewCM .col h5 {
  text-decoration: none;
  color: var(--bg-dark-samantha);
  text-align: center;
}

.ClinicReviewCM .col h4 {
  text-decoration: none;
  color: var(--red);
  text-align: center;
}

.ClinicReviewCM .lower-round button:hover {
  background-image: none !important;
  background-color: #ff00ff !important;
}

.ClinicReviewCM .lower-round button:focus {
  outline: none;
  box-shadow: none;
}

/* Take a Quiz */

/* ClinicReview */

.TakeAquiz {
  /* padding: 1.5em .5em .5em; */
  border-radius: 2em;
  /* text-align: center; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  margin: 5px !important;
  /* padding-bottom: 0px !important; */
}

.TakeAquiz .lower-round {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  /* border-radius: 2em; */
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-left: 1px;
  margin-right: 1px;
  background-color: red;
}

.TakeAquiz .lower-round a {
  text-decoration: none;
  color: white;
  text-align: left;
}

.TakeAquiz h5 {
  text-decoration: none;
  color: var(--text-yellow);
  text-align: left;
}

.TakeAquiz .col h5 {
  text-decoration: none;
  color: rgb(26, 10, 121);
  text-align: left;
}

.TakeAquiz .col h4 {
  text-decoration: none;
  color: var(--red);
  text-align: center;
}

.TakeAquiz .lower-round button:hover {
  background-image: none !important;
  background-color: #ff00ff !important;
}

.TakeAquiz .lower-round button:focus {
  outline: none;
  box-shadow: none;
}

.TakeAquiz .radio-inline {
  margin-left: 25px;
  margin-right: 25px;
  color: var(--bg-dark-samantha) !important;
  font-size: 25px;
}

.TakeAquiz input {
  margin-right: 15px;
}

/* radio button custome */

.radiotextsty {
  color: var(--bg-darkblue);
  font-size: 18px;
  font-weight: 800;
}

.rcorners1 {
  border-radius: 5px;
  border: 2px solid #b8b894;
  padding: 5px;
}

input[type="radio"] {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid darkgray;
  border-radius: 50%;
  outline: none;
  box-shadow: 0 0 5px 0px gray inset;
}
input[type="radio"]:hover {
  box-shadow: 0 0 5px 0px orange inset;
}
input[type="radio"]:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /*margin: 20% auto;    */
  border-radius: 50%;
}
input[type="radio"]:checked:before {
  background: rgb(36, 14, 160);
}
