﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
@font-face {
  font-family: Work Sans;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/WorkSans-Regular.woff2") format("woff2"), url("../fonts/WorkSans-Regular.woff") format("woff"), url("../fonts/WorkSans-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
@font-face {
  font-family: Yeseva One;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/YesevaOne-Regular.woff2") format("woff2"), url("../fonts/YesevaOne-Regular.woff") format("woff"), url("../fonts/YesevaOne-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/*Color Variables*/
/*Font Variable*/
/*Font Weight Variables*/
/*Font Size Variables*/
/*Border Radius Variable*/
body {
  font-family: Work Sans !important;
  overflow-x: hidden;
  background-color: #fcfefe;
  font-size: 1.063rem !important;
  line-height: 28px;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5 {
  font-family: Yeseva One !important;
}

h1 {
  font-size: 3rem;
  line-height: 55px;
}

h2 {
  font-size: 2rem;
  line-height: 37px;
}

a {
  text-decoration: none !important;
}

/*navbar style starts here*/
.navbar {
  background-color: #1f2b6c;
  padding: 0.5rem 0.5rem !important;
}

.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  margin-top: 5px;
  background-color: #ffffff;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  border-radius: 2px;
}

.navbar .nav-item {
  padding-top: 6px;
}

.navbar .nav-item a {
  padding-bottom: 0px;
}

.navbar .navbar-nav .nav-item:hover .nav-link::after {
  width: 100%;
}

.navbar a {
  color: #ffffff !important;
  font-weight: 600;
}

.navbar .navbar-collapse a span:hover {
  color: #91cb68 !important;
  text-decoration: none;
}

.dropdown-menu {
  background-color: #1f2b6c;
}

.dropdown-item:hover {
  background-color: #ffffff;
  color: #76bf43 !important;
}

.crilogo {
  width: 40%;
}

/*navbar style ends here*/
/* footer style starts here*/
footer {
  padding: 40px;
  background-color: #1f2b6c;
}

footer h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-family: Work Sans !important;
  font-weight: 600;
}

footer ul li a {
  color: #ffffff;
  text-decoration: none !important;
}

footer a {
  text-decoration: none !important;
}

footer ul li a:hover {
  color: #91cb68;
  text-decoration: none;
}

.cmmniconstyle {
  font-size: 1.25rem;
  padding-right: 8px;
  vertical-align: middle;
}

/* footer style ends here*/
/*Animation effect for nav-bar sub menu hide unhide*/
@-webkit-keyframes animatemymove {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes animatemymove {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes animatemoveLeftRight {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes animatemoveLeftRight {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes animatemoveUpDown {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes animatemoveUpDown {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes animatewiggle {
  0% {
    -webkit-transform: rotate(9deg);
    transform: rotate(9deg);
    color: #1f2b6c;
  }
  10% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
    color: #1f2b6c;
  }
  20% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
    color: #1f2b6c;
  }
  30% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
    color: #1f2b6c;
  }
  40% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    color: #1f2b6c;
  }
  50% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    color: #1f2b6c;
  }
  60% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    color: #1f2b6c;
  }
  70% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    color: #76bf43;
  }
  80% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    color: #76bf43;
  }
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #76bf43;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #76bf43;
  }
}
@keyframes animatewiggle {
  0% {
    -webkit-transform: rotate(9deg);
    transform: rotate(9deg);
    color: #1f2b6c;
  }
  10% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
    color: #1f2b6c;
  }
  20% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
    color: #1f2b6c;
  }
  30% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
    color: #1f2b6c;
  }
  40% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    color: #1f2b6c;
  }
  50% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    color: #1f2b6c;
  }
  60% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    color: #1f2b6c;
  }
  70% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    color: #76bf43;
  }
  80% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    color: #76bf43;
  }
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #76bf43;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #76bf43;
  }
}
@-webkit-keyframes animatereveal {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  75% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes animatereveal {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  75% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes animateblink {
  from, to {
    color: transparent;
  }
  50% {
    color: #000000;
  }
}
@keyframes animateblink {
  from, to {
    color: transparent;
  }
  50% {
    color: #000000;
  }
}
.infiniteFloatUpDown {
  -webkit-animation-name: animatemoveUpDown;
  animation-name: animatemoveUpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.textreveal {
  display: inline-block;
  -webkit-animation-name: animatereveal;
  animation-name: animatereveal;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.infiniteFloatLeftRight {
  -webkit-animation-name: animatemoveLeftRight;
  animation-name: animatemoveLeftRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.textwiggle {
  display: inline-block;
  -webkit-animation-name: animatewiggle;
  animation-name: animatewiggle;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.animate-bottom {
  position: relative;
  -webkit-animation: animatebottom 0.5s;
  animation: animatebottom 0.5s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.animateslideup {
  -webkit-transition: transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.animateslideup:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* -----------------Custom CSS styles----------------- */
/*icon css style starts here*/
.icon {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.icontelephone, .iconemail, .iconlogin {
  height: 20px;
  width: 20px;
}

.iconbagplus, iconhospital, iconcloud, .iconhospital, .iconcloud, .iconheart,
.iconclipboard, .iconshield, .iconbuilding, .iconclipboardpulse, .iconcalendar,
.iconclock, .icongeolocation, .iconfb, .icontwitter, .iconinstagram, .iconlinkedin,
.icontelephonewhite, .iconenve, .iconemailwhite {
  height: 30px;
  width: 30px;
}

.icontelephone {
  background-image: url(../Images/icons/telephone.svg);
  background-size: 100%;
}

.icontelephonewhite {
  background-image: url(../Images/icons/telephonewhite.svg);
  background-size: 100%;
}

.iconemail {
  background-image: url(../Images/icons/envelope.svg);
  background-size: 100%;
}

.iconemailwhite {
  background-image: url(../Images/icons/envelopewhite.svg);
  background-size: 100%;
}

.iconlogin {
  background-image: url(../Images/icons/person-circle.svg);
  background-size: 100%;
}

.iconbagplus {
  background-image: url(../Images/icons/bag-plus.svg);
  background-size: 100%;
}

.iconhospital {
  background-image: url(../Images/icons/hospital.svg);
  background-size: 100%;
}

.iconcloud {
  background-image: url(../Images/icons/cloud-plus.svg);
  background-size: 100%;
}

.iconheart {
  background-image: url(../Images/icons/heart-pulse.svg);
  background-size: 100%;
}

.iconclipboard {
  background-image: url(../Images/icons/clipboard-plus.svg);
  background-size: 100%;
}

.iconclipboardpulse {
  background-image: url(../Images/icons/clipboard2-pulse.svg);
  background-size: 100%;
}

.iconshield {
  background-image: url(../Images/icons/shield-plus.svg);
  background-size: 100%;
}

.iconbuilding {
  background-image: url(../Images/icons/building-add.svg);
  background-size: 100%;
}

.iconcalendar {
  background-image: url(../Images/icons/calendar-plus.svg);
  background-size: 100%;
}

.iconclock {
  background-image: url(../Images/icons/clockwhite.svg);
  background-size: 100%;
}

.icongeolocation {
  background-image: url(../Images/icons/geo-altwhite.svg);
  background-size: 75%;
}

.iconfb {
  background-image: url(../Images/icons/facebook.svg);
  background-size: 100%;
}

.icontwitter {
  background-image: url(../Images/icons/twitter.svg);
  background-size: 100%;
}

.iconlinkedin {
  background-image: url(../Images/icons/linkedin.svg);
  background-size: 100%;
}

.iconinstagram {
  background-image: url(../Images/icons/instagram.svg);
  background-size: 100%;
}

/*icon css style ends here*/
.dvclearboth {
  clear: both;
}

.topfixednavbar {
  background-color: #ffffff;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: -8px;
  font-weight: 600;
}

.topfixednavbar span img {
  width: 5%;
}

.topfixednavbar span {
  font-size: 0.75rem;
  padding-right: 10px;
}

.topfixednavbar a {
  color: #000000 !important;
  text-decoration: none;
}

.navbararrowicon {
  display: inline-block;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/*button custom style starts here*/
.btn-onlinebooking {
  padding: 15px 15px;
  background-color: #ffffff;
  border: none;
}

.btn-onlinebookingdropdown {
  background-color: #f8f6f4 !important;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.btn-onlinebookingsubmenu {
  color: #1f2b6c !important;
  font-weight: 600;
}

.btn-outline-primary {
  height: 61px;
  width: 90%;
  background-color: #ffffff;
  border: none;
  color: #000000;
}

.btn-outline-primary:hover {
  background-color: #1f2b6c !important;
}

.cmnbtnclrone {
  background-color: #1f2b6c !important;
  color: #91cb68 !important;
  border: none !important;
  font-weight: 600 !important;
}

.cmnbtnclrone:hover {
  background-color: #91cb68 !important;
  color: #1f2b6c !important;
}

.cmnbtnclrtwo {
  background-color: #91cb68 !important;
  color: #1f2b6c !important;
  border: none;
  font-weight: 600 !important;
}

.cmnbtnclrtwo:hover {
  background-color: #1f2b6c !important;
  color: #91cb68 !important;
  border: none;
}

.cmnbtnclrthree {
  background-color: #ffffff !important;
  color: #1f2b6c !important;
  border: none;
  font-weight: 600 !important;
}

.cmnbtnclrthree:hover {
  background-color: #91cb68 !important;
  color: #1f2b6c !important;
  border: none !important;
}

.cmnbtnclrfour:hover {
  background-color: #1f2b6c !important;
  color: #91cb68 !important;
  border: none !important;
}

.cmnbtnclrfive:hover {
  background-color: #ffffff !important;
  color: #1f2b6c !important;
  border: none !important;
}

.dropdownonlinebooking {
  left: auto !important;
  right: 0 !important;
}

.dropdownmenuhome li a {
  color: #ffffff;
  font-weight: 600;
}

.dropdownmenuhome {
  transform: translate3d(0px, -62.6667px, 0px) !important;
  width: 90%;
}

/*button custom style ends here*/
/*banner section design*/
.dvheadersection {
  height: 400px;
  background-image: url(../images/herohomepage_v1.webp);
  background-size: cover;
  background-position: 50% 4%;
  margin-top: 120px;
  image-rendering: pixelated;
}

.dvheadersection h1 {
  color: #1f2b6c;
}

.dvheadersectioncaption {
  padding: 10px;
  background: rgba(252, 252, 252, 0.7);
  border-radius: 0.5rem;
}

.dvheadersectionaboutusimg {
  background-image: url(../images/heroaboutus_v1.webp);
  background-position: 50% 40%;
}

.dvheadersectionprimaryhealthimg {
  background-image: url(../images/heroprimaryhealth.webp);
  background-position: 50% 0%;
}

.dvheadersectionvirtualclinicimg {
  background-image: url(../images/herovirtualclinics_v1.webp);
  background-position: 50% 36%;
}

.dvheadersectionmentalhealthimg {
  background-image: url(../images/heromentalhealth_v1.webp);
  background-position: 50% 36%;
}

.dvheadersectionmedicalassistanceimg {
  background-image: url(../images/heromedicalassistance_v1.webp);
  background-position: 50% 23%;
}

.dvheadersectionoccupationalimg {
  background-image: url(../images/herooccupationalhealth_v1.webp);
  background-position: 50% 12%;
}

.dvheadersectionlocationimg {
  background-image: url(../images/herolocation_v1.webp);
  background-position: 50% 12%;
}

.dvheadersectionhelpsupportimg {
  background-image: url(../images/herohelpsupport_v1.webp);
  background-position: 50% 12%;
}

.dvheadersectioncriticalillnesscoverimg {
  background-image: url(../images/herocriticare1.webp);
  background-position: 50% 12%;
}

.dvheadersectionacccoverimg {
  background-image: url(../images/herocriticare2.webp);
  background-position: 50% 12%;
}

.dvheadersection span {
  font-family: Work Sans;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.16em;
  color: #357dbf;
}

.dvheadersectionline {
  background: #357dbf;
  position: relative;
  height: 8px;
}

.dvheadersectionline:before {
  content: "";
  background: #76bf43;
  width: 25%;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.dvheadersectionline:after {
  content: "";
  background: #FFA500;
  width: 10%;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

/*banner section design*/
.subcontainer {
  padding: 0px 140px 0px 140px !important;
}

.aboutusmissioncontainer {
  padding: 0px 260px 0px 260px !important;
}

.featuresectionbackclrone {
  background-color: #1f2b6c;
  color: #ffffff;
}

.featuresectionbackclrtwo {
  background-color: #76bf43;
  color: #ffffff;
}

.featuresectionbackclrtwo p {
  color: #ffffff;
}

.featuresectionbackclrthree {
  background-color: #fcfefe;
  color: #000000;
}

.featuresectionbackclrfour {
  background-color: #ebfafe;
}

.featuresectionbackclrfive {
  background-color: #1c3965;
  color: #ffffff;
}

.featuresectionbackclrfive h1 {
  letter-spacing: 0.16em;
}

.cmntxtclrone {
  color: #1f2b6c !important;
}

.cmntxtclrtwo {
  color: #91cb68 !important;
}

.cmntxtclrthree {
  color: #357cbf;
}

.cmntxtclrfour {
  color: #76bf43;
}

.existsectionheader h3 {
  font-family: Work Sans !important;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 30px;
}

.iconexistsection {
  width: 20%;
  position: absolute;
  top: 37%;
  left: 75%;
}

.servicesboxdesign {
  height: 196px;
  padding: 10px;
}

.servicesboxdesign2 {
  height: 230px;
}

.servicesboxdesign i {
  font-size: 1.875rem;
}

.servicesboxdesign2 p:last-child {
  font-size: 0.75rem;
  line-height: 14px;
}

.overflowservicegrid {
  overflow-x: scroll;
  overflow-y: hidden;
}

.primaryhealthservicegrid {
  color: #000000;
  height: 349px;
  margin: 0 0.5em;
}

.primaryhealthservicegridbackgrnd {
  background-image: url(../images/plus.webp);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: -110px -110px;
}

.primaryhealthservicegridbackgrnd2 {
  background-position: center -154px;
}

.primaryhealthservicegridbackgrnd3 {
  background-position: 151px -112px;
}

.primaryhealthservicegrid:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transition: 300ms ease-in-out;
  -webkit-transition: 300ms ease-in-out;
}

.primaryhealthservicegrid p {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0px;
}

.primaryhealthservicegrid .dvcard {
  height: 200px;
}

.primaryhealthservicegrid i {
  font-size: 1.875rem;
  padding: 10px;
  border-radius: 50%;
  background-size: 100% 80%;
  background-position: center;
}

.primaryhealthservicegrid :hover i {
  background-color: #e3964c;
  color: #ffffff;
  transition: all 0.3s ease-out;
}

.readmorelinklabel {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: #7f6f64;
  cursor: pointer;
}

.servicesectionbackclr {
  background: #76bf43;
  background: linear-gradient(90deg, #76bf43 0%, rgb(247, 247, 247) 30%);
}

.onlinebookingsectionleft {
  border-radius: 1.25rem 0 0 1.25rem;
}

.onlinebookingsectionright {
  border-radius: 0 1.25rem 1.25rem 0;
}

.locationpageicon {
  font-size: 1.875rem;
}

.dvfaq label {
  font-size: 1.25rem;
  font-weight: 600;
}

.border {
  border-radius: 1rem !important;
}

.rounded-top {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

button:focus {
  outline: none !important;
}

.table-bordered td, .table-bordered th, .table tbody + tbody, .table-bordered thead td, .table-bordered thead th {
  border: 1px solid !important;
  border-color: #000000 !important;
}

.dvcriticalcover .dvone {
  margin-left: -26px;
}

.dvcriticalcover img, .dvcompetitive img {
  width: 45%;
}

.dvcriticalcover span {
  font-size: 0.875rem;
}

.tblcriticare {
  background-color: #97bcde;
}

.dvcriticarecompetitive {
  background-image: url(../images/imgcompetitivebg.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  height: 260px;
  color: #ffffff;
}

.dvcriticarecompetitive p {
  border-left: 5px solid #ffffff;
  padding-left: 5px;
}

.dvcompetitive span {
  font-weight: 600;
  color: #1c3965;
}

.dvcompetitive p {
  font-size: 0.875rem;
  line-height: 20px;
}

.dvcompetitive .dvwidth {
  width: 14%;
  padding: 15px 10px 0px 10px;
}

.dvcompetitive .dvbackgrnd {
  background-color: #f2f1f2;
  border-radius: 20px;
  height: 310px;
}

/*custom slider style starts here*/
.carousel-control-next, .carousel-control-prev {
  position: relative;
  display: contents;
  background: 0 0;
  border: 0;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 25px;
  height: 25px;
  filter: invert(1) grayscale(100);
}

.carouselindicators [data-bs-target] {
  box-sizing: content-box;
  vertical-align: middle;
  flex: 0 1 auto;
  width: 15px;
  height: 15px;
  padding: 0;
  margin-right: 8px;
  margin-left: 8px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000000;
  background-clip: padding-box;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.carouselindicators [data-bs-target]:focus {
  outline: none;
  opacity: 1;
  transition: none;
}

@media (min-width: 768px) {
  .carousel-item {
    flex: 0 0 25%;
  }
  .carouselitem {
    margin-right: 0;
    display: grid !important;
  }
  .carousel-inner {
    display: flex;
  }
  .carouselinner {
    display: contents;
  }
}
/*custom slider style ends here*/
/*Mobile view style starts here*/
@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
    line-height: 40px;
  }
  h2 {
    font-size: 1.625rem;
    line-height: 28px;
  }
  .dvheadersection {
    margin-top: 140px;
  }
  .subcontainer {
    padding: 0px 100px 0px 100px !important;
  }
  .aboutusmissioncontainer {
    padding: 0px 150px 0px 150px !important;
  }
  .servicesboxdesign {
    height: auto;
  }
  .iconexistsection {
    top: 16%;
  }
  .w100 {
    width: 100% !important;
  }
  .navbar .nav-item {
    padding-top: 5px;
  }
  .navbar .nav-item a {
    padding-bottom: 0px;
  }
  .btn-onlinebooking {
    padding: 15px 7px;
  }
  .nav-item {
    font-size: 0.875rem;
  }
  .crilogo {
    width: 100%;
  }
  .dvcriticarecompetitive {
    height: auto;
  }
  .dvcompetitive img {
    width: 20%;
  }
  .dvcriticalcover .dvone {
    margin-left: 0px;
  }
  .primaryhealthservicegrid p {
    line-height: 12px;
  }
  .primaryhealthservicegrid h5 {
    font-size: 0.75rem;
  }
  .dvcompetitive .dvbackgrnd {
    height: auto;
  }
}
@media (max-width: 576px) {
  .nav-link {
    padding: 0px !important;
  }
  .topfixednavbar {
    height: auto;
    padding: 0px;
    display: block;
  }
  .topfixednavbar label {
    font-size: 0.75rem;
  }
  .topfixednavbar a {
    font-size: 0.75rem;
  }
  .dropdown-item:hover {
    background-color: transparent !important;
  }
  footer {
    padding: 15px;
  }
  h1, h2 {
    font-size: 1.625rem;
    line-height: 32px;
  }
  .dvheadersection span {
    font-size: 0.75rem;
    line-height: 20px;
  }
  .dvheadersection {
    height: 250px;
    margin-top: 150px;
  }
  .dvheadersectionhomepage {
    background-position: 76% 4%;
    height: 350px;
  }
  .icon1 {
    top: 32%;
  }
  .icon2 {
    top: 42%;
  }
  .icon3 {
    top: 35%;
  }
  .servicesboxdesign {
    height: auto;
  }
  .subcontainer, .aboutusmissioncontainer {
    padding: 15px !important;
  }
  .crilogo {
    width: 35%;
  }
  .p-top {
    padding-top: 20px !important;
  }
  .p-bottom {
    padding-bottom: 20px !important;
  }
  .m-bottom {
    margin-bottom: 20px !important;
  }
  .onlinebookingsectionright, .onlinebookingsectionleft {
    border-radius: 0px;
  }
  .w100 {
    width: 100% !important;
  }
  .h-75 {
    height: auto !important;
  }
  .carouselindicators [data-bs-target] {
    margin-right: 5px;
    margin-left: 5px;
  }
  .dvcompetitive .dvbackgrnd {
    height: auto;
  }
  .dvcriticalcover .dvone {
    margin-left: 0px;
  }
  .primaryhealthservicegrid p {
    line-height: 20px;
  }
  .primaryhealthservicegrid h5 {
    font-size: 1.625rem;
  }
  .btn-onlinebooking {
    padding: 15px 25px;
  }
  .margin-auto {
    margin: auto;
  }
  .navbar-nav .registernow .dropdown-menu {
    position: absolute;
  }
  .dropdown-toggle-split {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
/*Mobile view style ends here*/
