/*--------------------Consent Banner Styling------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.full-bleed-gif-div {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  
  overflow: hidden;
  transition: all 0.8s linear, height 0.3s linear;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* Active State */
.full-bleed-gif-div.activate {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.6);
}

/* ===== Full Screen Animation Container ===== */
.full-bleed-gif-div {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  
  overflow: hidden;
  transition: all 0.8s linear, height 0.3s linear;
  pointer-events: none;
  z-index: 8999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* Active State */
.full-bleed-gif-div.activate {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.6);
}

/* ===== Full Screen GIF ===== */
.full-bleed-gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit:cover;
  object-position:center;
  position:relative;
  z-index:8999;
  opacity: 0;
}
.full-bleed-gif-div.activate .full-bleed-gif{
    opacity:1;
}
/* ===== Close Button ===== */
.full-bleed-gif-div .cross-img-btn {
  position: absolute;
  top: 2%;
  right: 2%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  pointer-events: all;
}

/* Show close button only when animation is active */
.full-bleed-gif-div.activate .cross-img-btn {
  display: block;
}

.full-bleed-gif-div .greeting-box {
  margin: 0 auto;
  opacity: 0;
  transition: all 1s linear;
  position: absolute;
  z-index: 99;
  min-width: 400px;
  padding: 30px;
  /*background-color: rgba(255, 255, 255, 0.8);*/
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.full-bleed-gif-div .greeting-box h2 {
  text-align: center;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #b11226; /* Christmas red */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.full-bleed-gif-div .greeting-box .company-logo {
  width: 250px;
  height: auto;
  margin-bottom: 1rem;
  
  
}
.full-bleed-gif-div .greeting-box .greet-text{
  width: clamp(15.625rem, 11.3636rem + 11.3636vw, 25rem);
  height: auto;
}
/* Decorative underline */
.full-bleed-gif-div.activate .greeting-box {
  opacity: 1;
}
.full-bleed-gif-div .moving-gif {
  width: clamp(19.375rem, 11.1364rem + 21.9697vw, 37.5rem);
  height: auto;
  position: fixed;
  bottom: -2% !important;
  left: -80vw;
  z-index:9999;
  bottom:-5%;
}
.full-bleed-gif-div.activate .moving-gif {
  animation: moveLeftToRight 10s linear 0.4s forwards;
}

.full-bleed-gif.activate .moving-gif {
  animation: moveLeftToRight 7s linear 0.4s forwards;
}
.moving-gif.activate {
  animation: moveLeftToRight 7s linear 0.4s forwards;
  opacity:1;
}
@keyframes moveLeftToRight {
  0% {
    left: -80vw;
    transform: rotate(0%);
  }
  100% {
    left: 130vw;
    transform: rotate(10%);
  }
}

/* Activate animation */


@media(max-width:1024px){
    .full-bleed-gif-div .moving-gif {
  left: -100vw;
  width:420px !important;
}
.cross-img-btn {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 25px;
  height: 25px;
}
}

@media(max-width:767px){
    .full-bleed-gif-div .moving-gif {
  left: -100vw;
  width:310px !important;
}
.cross-img-btn {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 25px;
  height: 25px;
}
.full-bleed-gif-div.activate {
  background-color: rgba(0, 0, 0, 0.75);
}
}

/*--------------------- New Way Consent CSS --------------------*/
.cookie-consent-banner {
  width: 50%;
  display: none;
  position: fixed;
  bottom: 5%;
  left: 5%;
  right: 0;
  background-color: #f8f9fa;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  color: black;
  padding: 20px;
  padding-top: 25px;
  font-size: 14px;
  text-align: center;
  z-index: 1;
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
}
.main-consent-container .close-conent-prop {
  width: 12px;
  height: auto;
  float: right;
  margin-top: -6px;
  margin-bottom: 10px;
  position: absolute;
  top: 14%;
  right: 2%;
  opacity: 0.2;
  cursor: pointer;
}
.cookie-consent-banner h5,
.preferences-modal h5 {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 10px;
}

.main-consent-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main-consent-container .first-col {
  width: 70%;
  text-align: left;
  padding-right: 15px;
}
.main-consent-container .second-col {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
.cookie-consent-banner .cookie-img-col {
  width: 100%;
  position: relative;
  height: 20px;
}
.cookie-consent-banner .cookie-img-col img {
  position: absolute;
  width: 60px;
  padding: 8px;
  height: auto;
  top: -50px;
  right: 12%;
  background-color: #f8f9fa;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}
.cookie-consent-button {
  border: none;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  width: 170px;
}

.cookie-consent-button:hover {
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
  opacity: 0.5;
}

.cookie-consent-button.btn-success {
  background-color: #565f5e;
  color: white;
}

.cookie-consent-button.btn-grayscale {
  background-color: #dfe1e5;
  color: black;
}

.cookie-consent-button.btn-outline {
  background-color: #e6f4ea;
  color: #34a853;
}

.cookie-consent-options {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cookie-consent-options label {
  margin: 0 10px;
  font-size: 14px;
}

.cookie-consent-options input {
  margin-right: 5px;
}
.preferences-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
  width: 35vw;
  height: auto;
  background-color: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: black;
  padding: 15px;
  font-size: 14px;
  text-align: center;
  position: absolute;
  z-index: 1030;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.3s ease-out;
  pointer-events: none; /* Prevents interaction when hidden */
  text-align: left;
  font-family: "Poppins", sans-serif;
}
.preferences-modal .body {
  height: 25rem;
  overflow-y: scroll;
  margin: 15px 0;
}
.preferences-modal .body::-webkit-scrollbar {
  width: 6px; /* Adjust width */
  margin-right: 10px;
}

.preferences-modal .body::-webkit-scrollbar-track {
  background: #ccc; /* Background color of scrollbar track */
  border-radius: 5px;
}

.preferences-modal .body::-webkit-scrollbar-thumb {
  background: #232323; /* Color of scrollbar thumb */
  border-radius: 5px;
}

.preferences-modal .body::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color when hovered */
}
.preferences-modal.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto; /* Allow interaction when visible */
}
.preferences-modal .header,
.preferences-modal .consent-footer {
  padding: 15px;
  background-color: #dfe1e5;
}
.preferences-overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 1020;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.preferences-overlay.show {
  display: flex !important;
  opacity: 1;
}

.preferences-modal .do-not-sell-consent,
.preferences-modal .manage-consent-section {
  padding-right: 15px;
}

.accordian-header .accordian-icon-bg {
  background-image: url(http://testing.bestbee.ai/wp-content/uploads/2025/06/add.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  margin: 0;
}
.accordian-header.active .accordian-icon-bg {
  background-image: url(http://testing.bestbee.ai/wp-content/uploads/2025/06/minus-1.png);
}
.accordian-header .always-active {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
/* Change checkbox size */
.preferences-modal .body input[type="checkbox"] {
  width: 20px; /* Adjust size */
  height: 20px; /* Adjust size */
  cursor: pointer;
}

/* Hide the default checkbox */
.preferences-modal .body input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  border-radius: 4px;
  background-color: white;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

/* Checked checkbox custom styling */
.preferences-modal .body input[type="checkbox"]:checked {
  background-color: #232323 !important; /* Background when checked */
  border-color: #232323 !important;
}

/* Custom checkmark - ensures no browser default styles */
.preferences-modal .body input[type="checkbox"]:checked::before {
  content: "✔"; /* Unicode checkmark */
  color: white !important;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Ensure browser default checkmark is removed */
.preferences-modal .body input[type="checkbox"]::-webkit-check {
  background-color: transparent !important;
}
.preferences-modal .body input[type="checkbox"]::-moz-check {
  background-color: transparent !important;
}
.preferences-modal .body input[type="checkbox"]::-ms-check {
  background-color: transparent !important;
}

.preferences-modal .close-modal-btn {
  width: 12px;
  height: auto;
  float: right;
  margin-top: -6px;
  margin-bottom: 10px;
  cursor: pointer;
}
.preferences-modal .close-img-wrapper {
  width: 100%;
}
.cookie-accordians,
.accordian {
  width: 100%;
  margin-right: 15px;
  margin-bottom: 12px;
}
.preferences-modal .inner-flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #ccc;
  padding: 10px;
  border-radius: 6px;
}
/* -------------------- Accordian CSS For Consent --------------- */
.preferences-modal .accordian-header {
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  border: 2px solid #ccc;
  width: 100%;
  display: flex;
  justify-content: space-between;
  outline: 0;
  box-shadow: none;
  border-radius: 5px;
  height: auto;
  font-weight: 600;
  text-align: left !important;
}
.preferences-modal .accordian-plus {
  height: 11px !important;
  width: 11px !important;
  margin-left: 10px;
  transform: rotate(45deg);
  float: right;
  margin-top: 5px;
}
.cookie-consent-options .inner-accordian-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.cookie-consent-options .inner-accordian-wrapper.show {
  padding: 10px;
  transition: height 0.3s linear;
  background-color: #f3f3f3;
}
.no-scroll {
  overflow-y: hidden;
  padding-right: 18px;
}
/* ------------------ Toggle Switch ------------------ */
.preferences-modal .switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 26px;
}

.preferences-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.preferences-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 2px solid #565f5e;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.preferences-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 2px;
  background-color: #565f5e;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.preferences-modal input:checked + .slider {
  background-color: transparent;
  border: 2px solid #50b849;
  margin-right: -3px;
}

.preferences-modal input:focus + .slider {
  background-color: transparent;
  border: 2px solid #565f5e;
}
.preferences-modal input:checked + .slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
  background-color: #50b849;
}

/* Rounded sliders */
.preferences-modal .slider.round {
  border-radius: 34px;
}

.preferences-modal .slider.round:before {
  border-radius: 50%;
}

/* -------------------------------------------------- */
@media (max-width: 1440px) {
  .cookie-consent-banner {
    width: 60%;
  }
  .preferences-modal {
    width: 48vw;
  }
  .preferences-modal .body {
    height: 20rem;
    overflow-y: scroll;
    margin: 15px 0;
  }
}
@media (max-width: 1024px) {
  .cookie-consent-banner {
    bottom: 50%;
  }
  .preferences-modal {
    width: 80vw;
    top: 15%;
  }
}
@media (max-width: 992px) {
  .main-consent-container {
    flex-wrap: wrap;
  }
  .cookie-consent-banner {
    bottom: 25%;
  }
  .preferences-modal {
    width: 80vw;
  }
  .main-consent-container .first-col {
    width: 88%;
    text-align: left;
    padding-right: 15px;
  }
  .main-consent-container .second-col {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    margin-left: 12%;
  }
  .main-consent-container .cookie-img-col img {
    width: 60px !important;
    height: auto !important;
  }
}
@media (max-width: 620px) {
  .main-consent-container .first-col {
    width: 100%;
  }
  .main-consent-container .second-col {
    width: 100%;
    margin-left: 0;
  }
  .main-consent-container .cookie-img-col img {
    margin-left: 0px;
  }
  .cookie-consent-banner {
    width: 100% !important;
    padding: 15px;
    height: fit-content;
    bottom: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
  }
  .main-consent-container .second-col {
    justify-content: flex-start;
    flex-direction: row;
  }
  .preferences-modal {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    top: 0;
  }

  .preferences-modal .main-consent-body {
    width: 100vw;
    height: 100vh;
    padding: 20px;
  }
  .preferences-modal .body {
    height: 70%;
    overflow-y: scroll;
    margin: 15px 0;
  }
  .preferences-modal .header,
  .preferences-modal .consent-footer {
    display: flex;
  }
  .cookie-consent-button {
    width: 140px;
    font-size: 13px !important;
  }
  .preferences-modal .header,
  .preferences-modal .consent-footer {
    padding: 8px;
  }
  .preferences-modal h5 {
    font-weight: 400;
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .preferences-modal .close-modal-btn {
    margin: 0;
}
  .accordian-plus {
    margin-top: 10px;
  }
  .no-scroll {
    padding-right: 0px;
  }
}


/*Font family declaration*/
@font-face {
  font-family: "cmc-icons";
  src: url("../fonts/cmc-icons/cmc-icons.eot");
  src: url("../fonts/cmc-icons/cmc-icons.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/cmc-icons/cmc-icons.woff") format("woff"),
    url("../fonts/cmc-icons/cmc-icons.ttf") format("truetype"),
    url("../fonts/cmc-icons/cmc-icons.svg#cmc-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "cmc-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "cmc-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-diamond:before {
  content: "\61";
}
.icon-email:before {
  content: "\62";
}
.icon-facebook:before {
  content: "\63";
}
.icon-instagram:before {
  content: "\64";
}
.icon-linkedin:before {
  content: "\65";
}
.icon-location:before {
  content: "\66";
}
.icon-lt-side-arrow:before {
  content: "\67";
}
.icon-magnifying-glass:before {
  content: "\68";
}
.icon-phone:before {
  content: "\69";
}
.icon-play:before {
  content: "\6a";
}
.icon-rss:before {
  content: "\6b";
}
.icon-rt-side-arrow:before {
  content: "\6c";
}
.icon-skype:before {
  content: "\6d";
}
.icon-star:before {
  content: "\6e";
}
.icon-twitter:before {
  content: "\6f";
}
.icon-youtube:before {
  content: "\70";
}
/* CMC services icons */
@font-face {
  font-family: "cmc-services-icons";
  src: url("../fonts/cmc-icons/cmc-services-icons.eot");
  src: url("../fonts/cmc-icons/cmc-services-icons.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/cmc-icons/cmc-services-icons.woff") format("woff"),
    url("../fonts/cmc-icons/cmc-services-icons.ttf") format("truetype"),
    url("../fonts/cmc-icons/cmc-services-icons.svg#cmc-services-icons")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "cmc-services-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="iconser-"]:before,
[class*=" iconser-"]:before {
  font-family: "cmc-services-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconser-affordable:before {
  content: "\61";
}
.iconser-baby:before {
  content: "\62";
}
.iconser-baby-bottle:before {
  content: "\63";
}
.iconser-ball:before {
  content: "\64";
}
.iconser-block:before {
  content: "\65";
}
.iconser-chat:before {
  content: "\66";
}
.iconser-cross:before {
  content: "\67";
}
.iconser-doll:before {
  content: "\68";
}
.iconser-duck:before {
  content: "\69";
}
.iconser-family:before {
  content: "\6a";
}
.iconser-feeder:before {
  content: "\6b";
}
.iconser-feeding-bottle:before {
  content: "\6c";
}
.iconser-foot:before {
  content: "\6d";
}
.iconser-get-prescription:before {
  content: "\6e";
}
.iconser-horse:before {
  content: "\6f";
}
.iconser-insurance:before {
  content: "\70";
}
.iconser-just-kids:before {
  content: "\71";
}
.iconser-kid:before {
  content: "\72";
}
.iconser-mother:before {
  content: "\73";
}
.iconser-mother-kid:before {
  content: "\74";
}
.iconser-never-leave-your-home:before {
  content: "\75";
}
.iconser-notepad:before {
  content: "\76";
}
.iconser-open-365-day-year:before {
  content: "\77";
}
.iconser-pediatric-specialized:before {
  content: "\78";
}
.iconser-physical:before {
  content: "\79";
}
.iconser-prescription:before {
  content: "\7a";
}
.iconser-stethoscope:before {
  content: "\41";
}
.iconser-syringe:before {
  content: "\42";
}
.iconser-teddy:before {
  content: "\43";
}
.iconser-televisit:before {
  content: "\44";
}
.iconser-video-call:before {
  content: "\45";
}

@font-face {
  font-family: "opensans-light";
  src: url("../fonts/opensans/opensans-light.eot");
  src: url("../fonts/opensans/opensans-light.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/opensans/opensans-light.woff2") format("woff2"),
    url("../fonts/opensans/opensans-light.woff") format("woff"),
    url("../fonts/opensans/opensans-light.ttf") format("truetype"),
    url("../fonts/opensans/opensans-light.svg#opensans-light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensans-regular";
  src: url("../fonts/opensans/opensans-regular.eot");
  src: url("../fonts/opensans/opensans-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/opensans/opensans-regular.woff2") format("woff2"),
    url("../fonts/opensans/opensans-regular.woff") format("woff"),
    url("../fonts/opensans/opensans-regular.ttf") format("truetype"),
    url("../fonts/opensans/opensans-regular.svg#opensans-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensans-semibold";
  src: url("../fonts/opensans/opensans-semibold.eot");
  src: url("../fonts/opensans/opensans-semibold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/opensans/opensans-semibold.woff2") format("woff2"),
    url("../fonts/opensans/opensans-semibold.woff") format("woff"),
    url("../fonts/opensans/opensans-semibold.ttf") format("truetype"),
    url("../fonts/opensans/opensans-semibold.svg#opensans-semibold")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensans-bold";
  src: url("../fonts/opensans/opensans-bold.eot");
  src: url("../fonts/opensans/opensans-bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/opensans/opensans-bold.woff2") format("woff2"),
    url("../fonts/opensans/opensans-bold.woff") format("woff"),
    url("../fonts/opensans/opensans-bold.ttf") format("truetype"),
    url("../fonts/opensans/opensans-bold.svg#opensans-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

.header-logo {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.phone-no {
  border: 2px solid #e8dc28;
  padding: 10px 25px;
  padding-left: 56px !important;
  border-radius: 50px;
  text-align: center;
}
.phone-li {
  display: inline-block;
  padding-right: 10px !important;
  padding-left: 10px !important;
  margin-bottom: 10px;
}
.social-li {
  display: inline-block;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

/* .ph{padding-left:20px;} */
.banner {
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.services-list {
 padding: 10px;
  text-align: justify;
}
.services-list ul{
    padding: revert;
    list-style-type: disc; 
    line-height:1.8;
}
.services-banner {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Frequently-Asked-Question.png");
}
.banner h1 {
  font-size: 50px;
  color: white;
  padding: 120px;
  text-align: center;
}
.behavior {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Behavior.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.vaccination {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Covid-19-Vaccination-Program-1.png");
}
.chdp {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Child-Health-and-Disability-Prevention.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.wic-referrals {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/WIC-Referrals.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.routine-child {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2024/02/image-15.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.development {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Development-Page.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.testimonial{
    background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Growth.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.rsv{
    background-image: url("https://cmcfresno.com/wp-content/uploads/2024/11/rsv.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.covid19_resources {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2025/04/COVID-19-Resources.png"),
    linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5));
}
.covid19_parenting{
     background-image: url("https://cmcfresno.com/wp-content/uploads/2020/12/patient-tips-banner-01.jpg.webp"),
    linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5));
}
.patient_education{
     background-image: url("https://cmcfresno.com/wp-content/uploads/2025/04/Patient-Education.png"),
    linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5));
}
.stress-relief {
     background-image: url("https://cmcfresno.com/wp-content/uploads/2025/04/Stress-Relief.png"),
    linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5));
}
.contact-us{
     background-image: url("https://cmcfresno.com/wp-content/uploads/2025/04/Banner-1.jpg"),
    linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5));
}
.about-banner {
    width: 100%;
    height: 36vh; 
    background-image: linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5)), url('https://cmcfresno.com/wp-content/uploads/2025/04/about-1.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 20px;
}

.about-banner .banner-content{
    max-width: 50%;
    color: white;
}
.about-banner .banner-content p{
    font-size: 20px;
}
/*new css for services and resources pages starts*/
.service-list-section{
    padding: 30px;
    /*background-color: #f3f3f3;*/
}
.chnf-faq-section{
    padding: 30px;
    background-color: #f3f3f3;
}
.need-to-know-section{
    background-color: #f3f3f3;
}
.post-covid-section{
    padding: 40px 20px;
}
.pdf-section{
    background-color: #f3f3f3;
}
.support-section{
    padding: 40px;
}
.support-section .col-services img{
    border-radius: 14px;
}
.stress-relief-solutions-section{
    padding: 40px;
    background-color: #f3f3f3;
    text-align: center;
}
.ACEs-section{
    padding: 50px;
    text-align: center;
}
.resource-pdf{
    background-color: #f3f3f3;
    padding: 40px;
}
.resource-pdf .pdf-box .pdf-img a {
    max-width: 300px !important;
}
.resources-h1{
    color: black !important;
}
.about-section{
    padding: 0 !important;
}
.who-we-are-section{
    padding-bottom: 3rem;
    background: white;
}
.find-us-section{
    padding: 4rem 0;
    background: white;
}
.section-providers{
    padding: 2rem 0;
    background: #f3f3f3;
}
.schedule-section{
    padding: 4rem;
    text-align: center;
    line-height: 1.5;
    background: white;
}
.form-section{
    padding: 4rem;
    background: #f4f4f4;
}
.form-section .form-content{
    padding: 32px;
    box-shadow: 0 0 8px 1px #8080802b;
    border-radius: 12px;
    background: white;
}
.form-section .form-content h2{
    margin: 0 !important;
}
.form-section h5{
    font-size: 18px;
    font-weight: 600;
}

/*thank-you page css starts*/
.thankyou-content{
    padding: 30px;
}
.thankyou-content h1{
    text-align: center;
}
.thankyou-content h4{
    text-align: center;
    line-height: 2;
}
.thankyou-content h2{
    text-align: center;
    line-height: 2;
}
.allblog-button{
    text-align: center;
}
/*thank-you page css ends*/
    

.sick-visit {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Sick-Visits-1.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
  background-position: center center;
}
.growth {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Growth.png"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.nutrition {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2022/12/Nutrition-1-1.jpg"),
    linear-gradient(rgba(21, 16, 59, 0.6), rgba(21, 16, 59, 0.6));
}
.sports {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/Sports-Physicals.png");
}
.newborn {
  background-image: url("https://cmcfresno.com/wp-content/uploads/2023/10/New-Born-Preemie-Care.png");
}
.behavior h1 {
  color: black;
}
.container-card {
  padding-top: 60px;
  /*margin-bottom: 60px;*/
}
.card-row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.card-align {
  float: left;
  width: 31%;
  margin-left: 11px;
  margin-right: 11px;
  margin-bottom: 20px;
}
.card-text {
  text-align: center;
  font-weight: 500;
  margin: 0;
  padding: 10px 10px 20px 10px;
  color: white;
}
.card {
  overflow-y: auto;
}
.row-services {
  box-shadow: 0 0 8px 1px #8080802b;
  margin: 6rem 0;
  padding: 2rem;
  display: block;
  border-radius: 8px;
}
.need-to-know-section .row-services{
     padding: 3rem 2rem !important;
}
.col-services {
  float: left;
  width: 47%;
  margin-left: 11px;
  margin-right: 11px;
  padding: 20px 4px;
}
.row-services .col-services img{
    border-radius: 8px;
}
.col-space {
  padding: 0px 20px;
}
.col-space h3 {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.down-spacer{
    padding-bottom: 2rem;
}
/*Testimonial*/
.box{
    padding: 20px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.testicon{
    display: flex;
    justify-content: center;
    margin: 20px;
}
.container{
    padding: 30px;
    
}
.two{
    min-height: 200px;
}
.three{
    min-height: 250px;
}

/* .faq{padding: 30px 20px 70px 20px;} */
.faq h4 {
  font-weight: 600;
}
.social-icons {
  text-align: center;
  padding: 0 0 30px 0;
}
.icon {
float: left;
  padding: 0 15px;
  color: white;
}
.social {
  margin-left: 40%;
}
.icon a {
  color: white;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .card-align {
    float: left;
    width: 23%;
    margin-left: 8px;
    margin-right: 8px;
  }
}

@media (min-width: 731px) and (max-width: 1200px) {
  .card-align {
    float: left;
    width: 31%;
    margin-left: 7px;
    margin-right: 7px;
  }
}

/* @media (min-width:580px) and (max-width:730px) {
  .card-align{float: left; width: 22%; margin-left: 7px; margin-right: 7px;}
} */
@media all and (max-width: 500px) {
  .card-align {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .covid-video iframe {
    width: 90% !important;
    height: 300px !important;
  }
  .col-services {
    float: left;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .col-space{padding: 0 20px 30px 20px;}
 .about-banner {
        background-image: linear-gradient(rgba(21, 16, 59, 0.5), rgba(21, 16, 59, 0.5)), url('https://cmcfresno.com/wp-content/uploads/2025/04/unnamed-7.png');
        align-items: baseline;
        height: 58vh;
        background-position: center bottom;
        text-align: center;
    }
  .about-banner .banner-content{
    max-width: 100%;
   }
}
@media all and (min-width: 501px) and (max-width: 700px) {
  .card-align {
    width: 45%;
    margin-left: 11px;
    margin-right: 11px;
    margin-bottom: 20px !important;
  }
  .col-services {
    float: left;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-body {
    background-color: #e94b83;
    height: 200px !important;
  }
  /*.card-body-vaccination {*/
  /*  height: 125px !important;*/
  /*}*/
  .col-space{padding: 0 20px 30px 20px;}
}

@media all and (min-width: 701px) and (max-width: 1199px) {
  .col-services {
    float: left;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

/******************************* Frequently asked question *******************************/

.accordion {
  margin: 70px auto;
  width: 900px;
  /* background: rgb(80, 191, 225); */
}

.accordion-label:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.accordion-label:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.accordion-label span {
  transform: rotate(90deg);
  font-size: 22px;
  color: white;
}
.eachlevel {
  margin-bottom: 20px;
}
.accordion-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #4773b6;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 8px;
}

.accordion-label:after {
  content: "\22C1"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #4773b6;
  float: right;
  margin-left: 5px;
  background-color: white;
  padding: 11px 15px;
  border-radius: 50%;
}

.accordion-label.active:after {
  content: "\22C0"; /* Unicode character for "minus" sign (-) */
  background-color: white;
}

.panel {
  padding: 25px 18px;
  /*display: none;*/
  background-color: white;
  overflow: hidden;
  border-radius: 8px;
}
/*.faq {*/
/*  box-shadow: 0 0 2px;*/
/*  margin: 70px auto;*/
/*}*/

.Frequently-asked-section{
    background-color: #f3f3f3;
}

/*********************************** Frequently asked question *********************************************************/

body {
  font-family: "opensans-regular";
  font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: "opensans-regular";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 20px 0;
}
a,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
ol {
  padding: 0;
  margin: 20px;
}
ol li {
  margin-bottom: 10px;
}
section {
  max-width: 1920px;
  margin: 0 auto;
}
/*Pseudo Selector*/
.srlocation-selector:after,
.blog-wrapper:after,
.important-featured-section:after,
.ppe-container:after,
.ce-box:after,
.ce-box:before,
.burger-menu:after,
.burger-menu:before,
.play-icon:after,
.left-vs-section:before,
.right-vs-section:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/*Header CSS*/
.logo {
  margin: 10px 0;
}
.logo a {
  max-width: 220px;
  display: block;
}
.phone-desc,
.address-desc {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid #231f20;
}
.phone-desc .icon,
.address-desc .icon {
  position: absolute;
  left: 15px;
  top: 5px;
  font-size: 22px;
}
.address-desc {
  border: none;
}
.burger-menu {
  position: absolute;
  width: 42px;
  height: 32px;
  cursor: pointer;
  right: 0;
  top: 36px;
  display: none;
}
.burger-menu .stick,
.burger-menu:after,
.burger-menu:before {
  height: 3px;
  background-color: #202021;
  width: 100%;
}
.burger-menu:before {
  top: 10px;
}
.burger-menu:after {
  top: 20px;
}
.burger-menu .stick {
  display: block;
}
.hdr-wrpr {
  position: relative;
}
.c-nav {
  text-align: right;
}
.c-nav li {
  font-size: 18px;
}
.c-nav li a {
  color: #231f20;
  padding: 5px 10px;
  display: block;
}
.has-c-dropdown {
  position: relative;
}
.c-dropdown-menu {
  min-width: 200px;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #e8dc28;
  z-index: 99;
  text-align: left;
  box-shadow: 0 4px 4px #dadada;
  display: none;
}
.c-dropdown-menu li a {
  padding: 5px 15px;
}
.carousel-control {
  background: none !important;
}
.has-c-dropdown:hover .c-dropdown-menu {
  display: block;
}
.fixhdr {
  position: fixed;
  top: 0;
  z-index: 9;
  background-color: #fff;
  width: 100%;
  right: 0;
  left: 0;
  box-shadow: 0 0 10px #dcdcdc;
  -webkit-box-shadow: 0 0 10px #dcdcdc;
  -moz-box-shadow: 0 0 10px #dcdcdc;
  -ms-box-shadow: 0 0 10px #dcdcdc;
  -o-box-shadow: 0 0 10px #dcdcdc;
}
.website-info {
  text-align: right;
  margin: 10px 0;
  padding-right: 10px;
}
.website-info li a {
  position: relative;
  padding-left: 20px;
  display: block;
  color: #231f20;
}
.website-info li a .c-icon {
  position: absolute;
  left: 0;
  top: 2px;
}
.website-info .hdr-btn {
  background-color: #e8dc28;
  color: #202021;
  font-size: 2rem;
  border: none;
}
.website-info .hdr-btn:focus {
  outline: none;
}
/*thanksgiving css starts*/
.thanksgiving{
    background-color: #f3f3f3;
    padding:3rem;
}
.row-thanksgiving{
    background-color: #f3f3f3;
}
.note{
    padding-top: 8rem;
    text-align: left;
    padding-left: 8rem;
}
.note h6{
    font-weight: bold;
    font-size: 26px;
    line-height: inherit;
    color: #4773B6;
}
.photo{
    text-align: right;
    
}
@media only screen and (max-width: 768px){
    .photo{
        text-align: center;
    }
    .note{
        padding-top: 10px;
        padding-left: 10px;
    }
}
/*@media only screen and (min-width: 1024px){*/
/*    .note{*/
/*        padding-top: 5rem;*/
/*    }*/
/*}*/

/*thanksgiving css ends*/
.clinic-featured-section {
  padding: 30px;
}
.clinic-featured-section .clinic-ft-txt {
  font-size: 2rem;
  text-align: center;
  color: #202021;
  font-family: "opensans-bold";
  margin-bottom: 40px;
}
.client-testimonial-section {
  background-color: #e94b83;
  color: #fff;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  margin: 20px auto;
  position: relative;
}
.client-testimonial-section .carousel-control {
  text-shadow: none;
  width: 4%;
}
.client-testimonial-section .carousel-inner {
  padding: 0 40px;
}
.client-testimonial-section .client-nm {
  text-align: right;
  font-style: italic;
}
.client-testimonial-section .testimonial-box {
  font-size: 18px;
}
.client-testimonial-section .carousel-control .glyphicon-chevron-left,
.client-testimonial-section .carousel-control .glyphicon-chevron-right,
.client-testimonial-section .carousel-control .icon-next,
.client-testimonial-section .carousel-control .icon-prev {
  font-size: 2rem;
}
/*Banner CSS*/
.banner-section {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  position: relative;
}
.c-caption {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 auto;
  right: 0;
  padding: 12% 15px;
}
.caption-hdr {
  color: #2c2c2c;
  font-size: 5.3rem;
  font-family: "opensans-regular";
}
.caption-cntnt {
  max-width: 660px;
  color: #231f20;
  font-size: 18px;
}
.c-btn {
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  border: 0;
}
.apntmnt-btn,
.welcome-section .c-btn {
  background-color: #4773b6;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  display: inline-block;
  border: 0;
  margin-top: 30px;
  font-size: 18px;
}
.welcome-section .c-btn {
  margin-top: 0;
}
.banner-section .carousel-indicators li {
  text-indent: -999999px;
}
.banner-section .carousel-control {
  width: 30px;
}
/*Services CSS*/
.service-list {
  text-align: center;
}
.service-list .list-inline {
  font-size: 0;
  display: table;
  table-layout: fixed;
}
.service-list li {
  font-size: 14px;
  padding: 0;
  display: table-cell;
  vertical-align: top;
  background-color: #4773b6;
  width: 2%;
}
.service-list li:nth-child(even) {
  background-color: #e94b83;
}
.service-box {
  position: relative;
  padding: 20px;
  background-color: #4773b6;
  color: #fff;
  text-align: left;
}
.service-box .c-icon {
  font-size: 84px;
}
.rd-more {
  position: relative;
  padding-right: 15px;
  color: #fff;
}
.rd-more .icon {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 14px;
}
.yellow-box {
  background-color: #e94b83;
}
.slick-track {
  display: flex;
}
.slick-slide {
  outline: none !important;
  height: inherit;
}
.slick-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  border: none;
  bottom: -50px;
  background-color: #4773b6;
  color: #fff;
  padding: 8px;
}
.slick-arrow:focus {
  outline: none;
}
.slick-next {
  left: 50%;
  margin-left: 5px;
}
.slick-prev {
  right: 50%;
  margin-right: 5px;
}
.os-list-service {
  margin-top: 40px;
}
.slick-center .our-service-box {
  border: none;
  box-shadow: 6px 10px 20px #dcdcdc;
  -webkit-box-shadow: 6px 10px 20px #dcdcdc;
  -moz-box-shadow: 6px 10px 20px #dcdcdc;
  -ms-box-shadow: 6px 10px 20px #dcdcdc;
  -o-box-shadow: 6px 10px 20px #dcdcdc;
}
.slick-center .rd-icon {
  display: block;
}
.slick-initialized .slick-slide {
  padding-bottom: 20px;
}
/*Welcome CSS*/
.welcome-section {
  background-color: #d8e6d9;
}
.c-btn {
  text-transform: none;
  display: inline-block;
  background-color: #4773b6;
}
.pg-title span {
  display: block;
}
.play-icon {
  width: 128px;
  height: 128px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 54px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  padding: 32px;
  cursor: pointer;
  z-index: 2;
}
.play-icon:after {
  width: 164px;
  height: 164px;
  border: 1px solid #fff;
  margin-top: -18px;
  margin-left: -18px;
}
.play-icon .icon {
  opacity: 0.5;
}
.videomodal .modal-header {
  position: relative;
  padding-right: 30px;
}
.videomodal .modal-header .close {
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 9;
}
.videomodal .modal-header h4 {
  margin-top: 10px;
}
.spanish-btn {
  text-align: right;
}
.spanish-btn .play-btn {
  background-color: #e8dc28;
  display: inline-block;
  color: #202021;
  padding: 10px;
  font-family: "opensans-semibold";
}
.spanish-btn .eng-play-btn {
  display: none;
}
/*Padding 60px*/
.activity-section,
.our-service-section,
.section-faq-questions,
.important-featured-section {
  text-align: center;
  padding: 60px 0;
}
.our-service-section {
  padding: 60px 0 120px;
}
.our-service-box {
  max-width: 320px;
  text-align: center;
  border: 1px solid #bcbec0;
  padding: 20px;
  margin: 0 auto;
  height: 100%;
}
.os-icon,
.benefit-icon {
  font-size: 84px;
  width: 148px;
  height: 148px;
  background-color: #e6e7e8;
  padding: 20px;
  margin: 0 auto;
}
.rd-icon {
  width: 32px;
  height: 32px;
  background-color: #e94b83;
  display: block;
  color: #fff;
  padding: 8px;
  margin: 0 auto;
  display: none;
}
/*Meet Provider CSS*/
.meet-provider-section,
.telemedicine-video {
  background-color: #4873b6;
}
.left-vs-section,
.right-vs-section {
  float: left;
  position: relative;
}
.meet-provider-section .left-vs-section,
.telemedicine-video .left-vs-section,
.welcome-section .right-vs-section {
  position: relative;
  z-index: 0;
  width: 45%;
}
.meet-provider-section .right-vs-section,
.welcome-section .left-vs-section,
.telemedicine-video .right-vs-section {
  width: 55%;
}
.meet-provider-section .right-vs-section,
.telemedicine-video .right-vs-section {
  padding: 3.8% 14%;
}
.welcome-section .left-vs-section {
  padding: 2.5% 10%;
}
.meet-provider-section .right-vs-section .vs-text {
  font-family: "opensans-light";
  color: white;
  font-size: 38px;
}
.right-style{
  font-family: "opensans-light";
  color: white !important;
  font-size: 16px;
}
.meet-provider-section .right-vs-section .apntmnt-btn {
  background-color: #fff;
  color: #58595b;
  margin-top: 50px;
}
.welcome-section .right-vs-section:before,
.telemedicine-video .left-vs-section:before {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/*Activities CSS*/
.activity-section {
  background-color: #efeff0;
}
.c-tabs {
  text-align: left;
  margin-top: 40px;
}
.c-tabs .list-inline {
  margin-left: 40px;
  margin-bottom: -1px;
}
.os-list {
  margin-top: 40px;
}
.c-tabs li {
  margin: 0 10px;
}
.c-tabs li a {
  font-size: 18px;
  color: #231f20;
  padding: 10px 20px;
  display: block;
}
.c-tabs li a.active {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.c-tabs-body {
  text-align: left;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
}
.c-tabs-body h4 {
  margin-top: 0;
  color: #231f20;
}
.c-tabs-body hr {
  border-color: #d8d8d8;
}
.c-tabs-panel {
  display: none;
}
.c-tabs-panel.active {
  display: block;
}
/*Locations CSS*/
.cresource-wrapper .pg-title,
.location-section .pg-title {
  text-align: center;
}
.cresource-wrapper .nav-tabs,
.location-section .nav-tabs {
  text-align: center;
}
.cresource-wrapper .nav-tabs > li,
.location-section .nav-tabs > li {
  float: none;
  display: inline-block;
}
.address-map iframe {
  width: 100%;
}
.cresource-wrapper .nav-tabs > li.active > a,
.cresource-wrapper .nav-tabs > li.active > a:focus,
.cresource-wrapper .nav-tabs > li.active > a:hover,
.location-section .nav-tabs > li.active > a,
.location-section .nav-tabs > li.active > a:focus,
.location-section .nav-tabs > li.active > a:hover {
  background-color: #e94b83;
  color: #fff;
}
.srwidget {
  display: none;
}
.active .srwidget {
  display: block;
}
/*Important Featured CSS*/
.important-featured-section {
  position: relative;
  z-index: 0;
}
.important-featured-section:after {
  background-image: url("../img/papyrus.png");
  opacity: 0.4;
}
.impftrbox {
  margin: 20px;
}
.impftricon {
  font-size: 8rem;
}
/*Telemedince CSS*/
.inner-img {
  position: relative;
}
.telemedicine-caption {
  padding: 40px 15px;
}
.inner-caption-wrpr {
  max-width: 450px;
}
.telemedicine-caption .inner-caption-wrpr {
  max-width: 700px;
}
.telemedicine-caption .inner-caption-wrpr h3 span {
  display: block;
}
.telemedicine-caption h3 {
  font-family: "opensans-regular";
  font-size: 5.3rem;
}
.telemedicine-caption h4 {
  font-family: "opensans-semibold";
}
.telemedicine-caption .c-btn {
  margin-top: 20px;
  background-color:#4773b6;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
}
.telemedicine-benefits {
  margin: 40px 0;
}
.benefit-lbl {
  margin: 20px;
  font-size: 1.6rem;
  font-family: "opensans-semibold";
}
.benefit-lbl span {
  display: block;
}
.benefit-container {
  width: 200px;
}
.telemedicine-benefits li {
  vertical-align: top;
}
.telemedicine-description {
  text-align: left;
  margin-bottom: 20px;
}
.bulleted-list {
  padding: 0;
  margin: 10px 0;
}
.bulleted-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.bulleted-list li .c-icon {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 12px;
  color: #eed526;
}
.bordered-img {
  margin: 20px 0;
  border: 2px solid #fff;
  box-shadow: 4px 4px 14px #aeaeae;
  -webkit-box-shadow: 4px 4px 14px #aeaeae;
  -moz-box-shadow: 4px 4px 14px #aeaeae;
  -ms-box-shadow: 4px 4px 14px #aeaeae;
  -o-box-shadow: 4px 4px 14px #aeaeae;
}
.telemedicine-video .right-vs-section {
  padding: 50px;
  background-color: #4873b6;
  color: #fff;
}
.telemedicine-video .vs-text {
  color: #fff;
}
.telemedicine-video .right-vs-section ol {
  padding: 0;
  margin: 20px;
}
.telemedicine-video .right-vs-section ol li {
  margin-bottom: 10px;
}
.faq-wrapper {
  margin-top: 30px;
  text-align: left;
}
.faq-wrapper .panel-heading {
  padding: 0;
}
.faq-wrapper .panel-heading a {
  padding: 10px;
  display: block;
  position: relative;
  padding-right: 30px;
}
.faq-wrapper .panel-heading a .ce-box {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 7px;
  top: 7px;
  background-color: #4873b6;
}
.faq-wrapper .panel:nth-child(even) a .ce-box {
  background-color: #4873b6;
}
.ce-box:after,
.ce-box:before {
  background-color: #fff;
  width: 2px;
  height: 10px;
  margin: auto;
  z-index: 1;
}
.ce-box:after,
.box-expand:before {
  transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
}
/***** Innerpage CSS *****/
.inner-caption-aboutus .inner-caption-wrpr {
  max-width: 800px;
}
.inner-banner {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
.inner-banner .inner-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.inner-banner .container {
  display: flex;
  min-height: inherit;
}
.inner-caption {
  margin: auto 15px;
  z-index: 1;
}
.ppe-container {
  position: relative;
  padding-right: 20px;
}
.ppe-container:after {
  box-shadow: -2px 1px 4px 0 #ecf0f1;
  -webkit-box-shadow: -2px 1px 4px 0 #ecf0f1;
  -moz-box-shadow: -2px 1px 4px 0 #ecf0f1;
  -ms-box-shadow: -2px 1px 4px 0 #ecf0f1;
  -o-box-shadow: -2px 1px 4px 0 #ecf0f1;
  width: 3px;
  right: -3px;
  left: auto;
}
/*Footer CSS*/
.footer {
  text-align: left;
}
.vertical-contactinfo {
  padding: 0;
  margin: 0;
}
.vertical-contactinfo li {
  margin-bottom: 30px;
}
.ci-box h4,
.tab-content .video-title {
  font-family: "opensans-bold";
  margin-bottom: 10px;
}
.ci-box {
  position: relative;
  padding-left: 50px;
}
.ci-box .c-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  width: 36px;
  height: 36px;
  text-align: center;
  padding: 5px;
  border: 1px solid #333;
}
.ftr-title {
  text-transform: uppercase;
  font-family: "opensans-semibold";
  color: #58595b;
}
.social-links {
  margin-bottom: 20px;
}
.social-links li a {
  width: 36px;
  height: 36px;
  color: #333;
  border: 1px solid #333;
  display: block;
  text-align: center;
  padding: 2px;
  font-size: 22px;
}
.c-tbl {
  width: 100%;
}
.office-hours {
  background-color: #4773b6;
  color: #fff;
  padding: 20px;
}
.c-tbl td,
.c-tbl th {
  padding: 10px;
  border: 1px solid #fff;
}
.address-map {
  box-shadow: 0 0px 5px #aeaeae;
  -webkit-box-shadow: 0 0px 5px #aeaeae;
  -moz-box-shadow: 0 0px 5px #aeaeae;
  -ms-box-shadow: 0 0px 5px #aeaeae;
  -o-box-shadow: 0 0px 5px #aeaeae;
  font-size: 0;
}
.footer-nav {
  text-align: center;
  padding: 0 15px;
  margin: 10px 0;
}
.copyright {
  text-align: center;
  padding: 10px 0;
  margin-top: 10px;
}
.footer-nav-wrpr {
  background-color: #1c1c1c;
  color: #fff;
  padding-top: 20px;
}
.footer-nav li a {
  color: #fff;
}
.footer-nav li:hover a {
  text-decoration: underline;
}
.inner-content-wrapper {
  padding: 40px 0;
}
.tab-content .video-title {
  color: #3d3d3d;
  margin-bottom: 20px;
}
.resource-vid-container {
  width: 100%;
  position: relative;
  padding-top: 50%;
  margin-bottom: 40px;
}
.resource-vid-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pdf-container {
  text-align: center;
}
.pdf-container li {
  margin: 10px;
  vertical-align: top;
}
.pdf-box {
  box-shadow: 5px 5px 15px #aeaeae;
  -webkit-box-shadow: 5px 5px 15px #aeaeae;
  -moz-box-shadow: 5px 5px 15px #aeaeae;
  -ms-box-shadow: 5px 5px 15px #aeaeae;
  -o-box-shadow: 5px 5px 15px #aeaeae;
}
.pdf-box .pdf-img {
  padding: 10px;
  border: 1px solid #aeaeae;
}
.pdf-box .pdf-img a {
  display: block;
  max-width: 260px;
}
.pdf-box .pdf-link {
  background-color: #4773b6;
  color: #fff;
  padding: 10px;
  display: block;
  font-size: 15px;
}
.pdf-box .pdf-thumb {
  max-height: 260px;
  display: block;
  overflow: hidden;
}
/* Provider Section CSS */
.section-providers .provider-list-wrapper {
  margin: 40px 0;
}
.section-providers .provider-list {
  font-size: 0;
}
.section-providers .provider-list li {
  font-size: 16px;
  padding: 0;
  margin: 0;
}
.provider-box {
  margin: 10px;
}
.provider-box .provider-nm {
  font-family: "opensans-semibold";
  font-size: 1.5rem;
}
.provider-box .provider-designation {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.provider-box .provider-dtls {
  padding: 15px;
  color: #fff;
}
.provider-box.pmale-box,
.provider-box.pmale-box .provider-dtls {
  background-color: #44699e;
}
.provider-box.pfemale-box,
.provider-box.pfemale-box .provider-dtls {
  background-color: #e94b83;
}
/***** Form CSS *****/
.form-control-msg {
  display: none;
}
.has-error .form-control-msg,
.js-show-feedback {
  display: block;
  margin-top: 4px;
}
.js-show-feedback {
  margin-top: 5px;
}
.form-group label {
  font-weight: normal;
}
.mandatory {
  color: #ff0000;
}
.contact-form-wrapper {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.contact-form-wrapper .c-form {
  margin-top: 50px;
}
.contact-form-wrapper h3 {
  color: #333;
}
.form-group {
  text-align: left;
}
.btn-list {
  margin-top: 20px;
}
/* Keyframe Animations */
.js-form-submission .glyphicon {
  animation: rotateMe 0.5s infinite linear;
  -webkit-animation: rotateMe 0.5s infinite linear;
  -moz-animation: rotateMe 0.5s infinite linear;
  -o-animation: rotateMe 0.5s infinite linear;
}
@keyframes rotateMe {
  0% {
    transform: rotateZ(0deg);
  }
  50% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes rotateMe {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  50% {
    -webkit-transform: rotateZ(180deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}
@-moz-keyframes rotateMe {
  0% {
    -moz-transform: rotateZ(0deg);
  }
  50% {
    -moz-transform: rotateZ(180deg);
  }
  100% {
    -moz-transform: rotateZ(360deg);
  }
}
@-o-keyframes rotateMe {
  0% {
    -o-transform: rotateZ(0deg);
  }
  50% {
    -o-transform: rotateZ(180deg);
  }
  100% {
    -o-transform: rotateZ(360deg);
  }
}
/***** Form CSS *****/
/*Modal Popup*/
.c-popup-modal .web-logo {
  max-width: 250px;
  margin: 10px auto;
}
.modal-content {
  max-height: 550px;
  overflow: auto;
}
.modal-content-wrpr {
  padding: 20px;
  border-top: 1px solid #4773b6;
}
.c-popup-desc {
  margin-bottom: 20px;
}
.c-popup-title {
  margin-top: 0;
  text-transform: uppercase;
  font-family: "opensans-semibold";
  font-size: 2rem;
}
.c-popup-btn {
  background-color: #4773b6;
  color: #fff;
  border: none;
}
.location-section {
  padding: 40px 0;
}
.tab-content {
  padding: 40px;
}

/********************************************/
/****************BLOGS STARTS****************/
.blog-wrapper {
  position: relative;
  box-shadow: 0 0 4px #dadada;
  -webkit-box-shadow: 0 0 4px #dadada;
  -moz-box-shadow: 0 0 4px #dadada;
  -ms-box-shadow: 0 0 4px #dadada;
  -o-box-shadow: 0 0 4px #dadada;
  overflow: hidden;
}
.blogcontent-container {
  padding: 40px;
}
.blog-wrapper:after {
  background-image: url("../img/papyrus.png");
  opacity: 0.4;
}
.csearch-box {
  position: relative;
}
.csearch-box .form-control {
  padding-right: 32px;
}
.c-search {
  background-color: #e8dc28;
  width: 32px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-top-right-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-top-right-radius: 4px;
  -ms-border-top-right-radius: 4px;
  -o-border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px;
  -ms-border-bottom-right-radius: 4px;
  -o-border-bottom-right-radius: 4px;
}
.csearch-box .c-icon {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
}
.csearch-box .search-submit {
  width: 32px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
}
.blog-hdr {
  text-align: center;
  padding: 40px 15px;
  background-color: #4873b6;
  color: #fff;
}
.cwidget-area {
  margin-left: 25px;
}
.cwidget-area .widgettitle {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.cwidget-area ul {
  padding: 0;
  margin-bottom: 20px;
}
.cwidget-area ul li {
  border-top: 1px solid #dadada;
}
.cwidget-area ul li:first-child {
  border: none;
}
.cwidget-area ul li a {
  padding: 10px 0;
  display: block;
  color: #202021;
}
.cwidget-area ul li a:hover {
  color: #23527c;
}
.bullet-list {
  padding: 0;
  margin: 20px 0;
  margin-left: 20px;
}
.bullet-list > li {
  position: relative;
  padding-left: 20px;
}
.bullet-list li .c-icon {
  position: absolute;
  left: 0;
  top: 2px;
  color: #eb3f7b;
}
.blogcontent-container ol {
  margin: 20px 0;
  margin-left: 20px;
}
.blog-row {
  margin-bottom: 30px;
}
.c-blog-title a {
  color: #202021;
}
.c-blog-img {
  border: 5px solid #dadada;
  position: relative;
  margin-top: 20px;
}
.c-blog-img a {
  display: block;
}
.c-blog-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #4873b6;
  padding: 10px;
  text-align: center;
  color: #fff;
}
.c-blog-month {
  text-transform: uppercase;
}
.c-blog-dt {
  font-family: "opensans-bold";
}
.blog-row .c-btn {
  margin-top: 10px;
}
.next-prev-post-label {
  margin: 10px 0;
}
.next-prev-post-label a {
  position: relative;
  padding: 15px;
  display: block;
}
.prevpost {
  text-align: right;
}
.prevpost a {
  padding-right: 20px;
}
.prevpost .c-icon {
  position: absolute;
  top: 16px;
  right: 0;
}
.nextpost a {
  padding-left: 20px;
}
.nextpost .c-icon {
  position: absolute;
  top: 16px;
  left: 0;
}
/******************************************/
/****************BLOGS ENDS****************/
/*****SR Widget*****/
.srwidget-custom {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}
.srlocation-selector {
  background-color: #e94b83;
  padding: 10px;
  border-radius: 4px;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 220px;
  color: #fff;
  display: none;
}
.srlocation-list ul {
  margin: 5px 0;
  padding: 0;
}
.srlocation-list li {
  margin-bottom: 5px;
}
.srlocation-list li a {
  color: #fff;
}
.srw-btn {
  text-align: center;
  padding: 15px;
  display: block;
  width: 64px;
  height: 64px;
  background-color: rgb(14, 37, 45);
  color: white;
  outline: currentcolor none medium;
  border: medium none;
  border-radius: 32px;
  cursor: pointer;
}
.srlocation-selector:after {
  width: 0;
  height: 0;
  border-top: 6px solid #e94b83;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-bottom: -6px;
  top: auto;
  left: auto;
  right: 25px;
  z-index: 999;
}
/*Common Animation*/
.ce-box:after,
.ce-box:before {
  transition: 0.4s ease all;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  -ms-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
}
/*Border Radius 4px*/
.blog-wrapper,
.spanish-btn .play-btn,
.client-testimonial-section,
.c-dropdown-menu,
.ce-box,
.burger-menu .stick,
.burger-menu:after,
.burger-menu:before {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
/*Border Radius 10px*/
.our-service-box {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
/*Border Radius 50%*/
.ci-box .c-icon,
.slick-arrow,
.social-links li a,
.play-icon:after,
.play-icon,
.os-icon,
.benefit-icon,
.rd-icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
/*Responsive CSS*/
@media all and (min-width: 768px) {
  .inner-caption,
  .c-caption {
    max-width: 750px;
  }
}
@media all and (min-width: 992px) {
  .inner-caption,
  .c-caption {
    max-width: 970px;
  }
}
@media all and (min-width: 1200px) {
  .inner-caption,
  .c-caption {
    max-width: 1170px;
  }
  .c-nav {
    display: block !important;
  }
}
@media all and (min-width: 1500px) {
  .inner-caption,
  .c-caption,
  .c-container {
    width: 100%;
    max-width: 1470px;
  }
}
@media all and (min-width: 1600px) {
  .inner-banner {
    min-height: 300px;
  }
}
@media all and (max-width: 1499px) {
  .c-caption {
    width: 100%;
    padding: 7% 15px;
  }
  .meet-provider-section .right-vs-section {
    padding: 5% 12%;
  }
  .caption-hdr {
    font-size: 42px;
  }
  .banner-section .caption-cntnt {
    max-width: 470px;
  }
  .telemedicine-caption h3 {
    font-size: 4.5rem;
  }
  .provider-box .provider-nm {
    font-size: 13px;
  }
  .provider-box {
    max-width: 200px;
  }
  .banner h1 {
  font-size: 40px;
  color: white;
  padding: 90px;
  text-align: center;
}
}
@media all and (max-width: 1400px) {
  .c-nav li a {
    padding: 5px;
  }
}
@media all and (max-width: 1399px) {
  .welcome-section .left-vs-section {
    padding: 2.5% 4% 2.5% 10%;
  }
}
@media all and (max-height: 1399px) {
  .c-nav li {
    font-size: 16px;
  }
}
@media all and (max-width: 1299px) {
  .c-caption {
    padding: 8% 15px;
  }
  .inner-caption-aboutus h4 {
    margin: 15px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .phone-li {
    display: inline-block;
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1299px){
.banner-section .caption-cntnt {
    max-width: 500px;
}
}
@media (min-width: 1005px) and (max-width: 1200px) {
  .phone-li {
    display: inline-block;
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
}
@media all and (max-width: 1199px) {
  .cwidget-area {
    margin-left: 0;
  }
  .banner-section .caption-cntnt {
    max-width: 420px;
  }
  .ppe-container:after {
    display: none;
  }
  .website-info {
    padding-right: 0;
  }
  .c-dropdown-menu {
    background-color: #fff;
    padding: 0;
    position: relative;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
  }
  .telemedicine-caption h3,
  .caption-hdr {
    font-size: 38px;
  }
  .caption-cntnt {
    max-width: 600px;
  }
  .meet-provider-section .right-vs-section {
    padding: 20px;
  }
  .address-map {
    margin-bottom: 10px;
  }
  .address-map iframe {
    height: 200px;
  }
  .office-hours {
    padding: 15px;
    margin-top: 20px;
  }
  .office-hours .c-tbl td,
  .office-hours .c-tbl th {
    padding: 5px;
    white-space: nowrap;
  }
  .c-nav {
    display: none;
    text-align: left;
  }
  .burger-menu {
    display: block;
    top: 20px;
  }
  .c-nav li {
    display: block;
    border-top: 1px solid #e7e7e7;
  }
  .phone-desc,
  .address-desc {
    padding-left: 20px;
    border: none;
  }
  .c-nav li a:hover {
    color: #4773b6;
  }
  .phone-desc .icon,
  .address-desc .icon {
    left: 0;
    top: 5px;
  }
  .inner-banner {
    min-height: 200px;
  }
  .welcome-section .left-vs-section {
    padding: 1.5% 4% 2.5% 4%;
  }
  .inner-caption-aboutus .inner-caption-wrpr {
    max-width: 500px;
  }
}
@media all and (max-width: 1023px) {
  .burger-menu {
    right: 10px;
  }
  .c-caption {
    padding: 20px 15px;
    position: relative;
  }
  .inner-banner {
    min-height: auto;
  }
  .inner-banner .inner-img {
    position: relative;
  }
  .caption-hdr,
  .telemedicine-caption h3 {
    font-size: 32px;
  }
  .c-container,
  .banner-section .caption-cntnt,
  .telemedicine-caption .inner-caption-wrpr {
    max-width: 100%;
  }
  .banner-section .carousel-indicators {
    display: none;
  }
  .banner-section .carousel-control {
    color: #e8dc28;
    top: 35%;
    bottom: auto;
    display:block !important;
  }
  .inner-caption-wrpr h2 {
    margin-top: 0;
  }
  .inner-caption {
    display: none;
  }
  .inner-caption-aboutus {
    display: block;
    margin: 0;
    color: #eb4d84;
    text-align: center;
  }
  .telemedicine-caption {
    display: block;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .inner-caption-aboutus .inner-caption-wrpr {
    margin-top: 30px;
    max-width: 100%;
  }
  .inner-caption-aboutus h2 {
    margin: 0;
  }
  .card-align {
    float: left;
    width: 47.9%;
  }
}
@media all and (max-width: 991px) {
  .burger-menu {
    top: 5px;
  }
  .service-list li {
    display: block;
    width: 100%;
  }
  .service-box .c-icon {
    top: 20px;
    font-size: 50px;
  }
  .welcome-wrapper {
    max-width: 80%;
    margin: 0 auto;
  }
  .meet-provider-section .left-vs-section,
  .telemedicine-video .left-vs-section,
  .meet-provider-section .right-vs-section,
  .welcome-section .left-vs-section,
  .welcome-section .right-vs-section,
  .telemedicine-video .right-vs-section {
    width: 100%;
    text-align: center;
    float: none;
  }
  .meet-provider-section .right-vs-section .apntmnt-btn {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .c-tabs-body h4 {
    margin-top: 10px;
  }
  .logo a {
    max-width: 120px;
  }
  .office-hours {
    max-width: 300px;
    margin: 0 auto;
  }
  .inner-caption {
    padding: 15px;
    margin: 0 15px;
  }
  .inner-banner .container {
    min-height: auto;
  }
  .telemedicine-caption {
    color: #202021;
    margin: 0 auto;
  }
  .welcome-section .btn-list {
    margin-bottom: 20px;
  }
  .list-inline {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px){
    .banner h1 {
    font-size: 36px;
    color: white;
    padding: 90px;
    text-align: left;
    font-weight: 500;
}
}
@media all and (max-width: 767px) {
  .burger-menu {
    right: 15px;
  }
  .website-info li {
    margin-bottom: 4px;
  }
  .banner-section .carousel-control {
    top: 25%;
  }
  .blog-hdr {
    padding: 15px;
  }
  .blog-hdr h2 {
    font-size: 22px;
  }
  .c-caption {
    padding: 40px 15px;
    position: relative;
}
.card-align {
    float: left;
    width: 100%;
  }
  .banner {
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}
.why-wait-content-section{
     padding: 6% 10%;
}
 .why-wait-img-section img{
     height: 30rem !important;
 }
  
}
@media all and (max-width: 735px) {
  .website-info {
    text-align: center;
  }
  .website-info .hdr-btn {
    font-size: 1.4rem;
  }
  .banner h1 {
    font-size: 40px;
    font-weight: bold;
    padding: 100px 20px;
  }
}
@media all and (max-width: 560px) {
  .modal-content {
    max-height: 320px;
  }
  .banner-section .carousel-control {
    top: 20%;
  }
  .apntmnt-btn {
    white-space: normal;
  }
  .icon-email {
    left: 16px !important;
  }
  .banner h1 {
    font-size: 30px;
    font-weight: bold;
    padding: 80px 20px;
  }
  .card-text {
    padding: 17px 5px;
    font-size: 18px;
  }
  .container-card {
    padding-top: 20px;
  }
  .service-heading {
    padding-bottom: 20px;
  }
  .faq-table{width: 100% !important;}
  .phone-li{
      display: block;
    width: 50%;
    text-align: center;
    margin: 10px auto;
  }
  .row-services {
    margin: 4rem 0;
  }
  .col-space h3 {
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .col-space{
      padding:0;
  }
  .chnf-faq-section {
    padding: 10px !important;
  }
  .support-section {
    padding: 10px !important;
  }
  .stress-relief-solutions-section{
    Padding: 10px !important;   
  }
  .ACEs-section{
    Padding: 10px !important;  
  }
  .resource-pdf{
      padding: 10px !important;
  }
  /* .card-align {width: 22%;margin-left: 6px;margin-right: 6px;} */
}

@media all and (min-width: 388px) and (max-width: 442px) {
  .icon-email {
    left: 47px !important;
  }
  .phone-li{
      display: block;
    width: 70%;
    text-align: center;
    margin: 10px auto;
  }
  
}

@media all and (min-width: 321px) and (max-width: 560px) {
  .phone-no {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
  }
  .email-info {
    padding-left: 40px !important;
  }
 
}
@media all and (max-width: 560px){
    .faq-section{
    padding: 20px !important;
  }
  .why-wait-section{
      padding: 20px  !important;
  }
}
@media all and (min-width: 451px) and (max-width: 500px) {
     .email-inline{
      width: 60% !important;
  }
}
@media all and (min-width: 400px) and (max-width: 450px) {
     .email-inline{
      width: 75% !important;
  }
}
@media all and (max-width: 399px) {
  .spanish-btn .play-btn {
    font-size: 13px;
  }
  .banner h1 {
    font-size: 30px;
    font-weight: bold;
    padding: 60px 20px;
  }
  .phone-li{
      display: block !important;
    width: 80%;
    text-align: center;
    margin: 10px auto;
  }
 
 
}
@media all and (min-width: 267px) and (max-width: 320px) {
  /*.phone-li {*/
  /*  width: 100%;*/
  /*  margin-bottom: 12px !important;*/
  /*  padding-left: 0px !important;*/
  /*  padding-right: 0px !important;*/
  /*}*/
  .phone-no {
    width: 75% !important;
    margin-right: auto;
    margin-left: auto;
  }
  .email-info {
    padding-left: 40px !important;
  }
  .phone-li{
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px auto;
  }
}

@media all and (max-width: 266px) {
  .phone-li {
      display: block;
    width: 100%;
    margin-bottom: 12px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .phone-no {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
  }
  .email-info {
    padding-left: 40px !important;
  }
}
.wrapper{
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 15px 25px rgba(0,0,50,0.2);
    background-color: #15A1B0;
}

.wrapper button{
    text-align: left;
    font-size: 16px;
    padding: 20px;
}
.wrapper i{
    margin-left: 20px;
}
.toggle,
.content{
    font-family: "Poppins",sans-serif;
}
.toggle{
    width: 100%;
    background-color: #4773b6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 0;
}
.content{
    width: 100%;
    background-color: #ffffff;
    position: relative;
    font-size: 14px;
    text-align: justify;
    line-height: 30px;
    height: 0;
    overflow: hidden;
    transition: all 1s;
}
.content p{
    font-size: 16px;
    padding:5px 20px 0px 20px;
}
.wrapper .content ul{
    font-size:16px !important;
    list-style:disc;
    margin-bottom:20px;
    padding: 5px 35px 0 35px;
}
hr{
    margin-bottom:35px !important;
}

.service_btn{
    background-color: white;
    color: #fff;
    text-transform: uppercase;
    padding: 7px 20px;
    /*display: inline-block;*/
    border: 0;
    /*margin-top: 30px;*/
    font-size: 14px;
    border-radius:5px;
    margin: 0 auto;
    margin-top: 30px;
    display: block;
    
}
.service_btn a{
    font-weight:600;
}

.c-dropdown-menu li{
    display:block;
}

 /*Animtaion Banner CSS*/


.home-banner-section {
  position: relative;
  overflow:hidden;
}

.home-banner-section video {
  width: 100vw;
  height: auto;
  overflow:hidden;
}
.home-banner-section .content-container {
  position: absolute;
  top: 15%;
  padding:0px 80px;
}

.home-banner-section .content-container h1{
    font-size:5rem;
    font-weight:500;
    color:#2c2c2c;
}
.home-banner-section .content-container p{
    font-size:2.4rem;
    font-weight:500;
    margin-bottom:20px;
    color:#2c2c2c;
}
.responsive-home-banner-section{
    display:none;
}
@media (max-width: 992px) {
    .home-banner-section{
    display:none;
}
.responsive-home-banner-section{
    display:block;
    overflow:hidden;
}
}
.responsive-home-banner-section video {
  width: 100vw;
  height: auto;
}
.responsive-home-banner-section .content-container {
  padding:40px 40px;
}

.responsive-home-banner-section h1{
    font-size:4rem;
    font-weight:500;
}
.responsive-home-banner-section p{
    font-size:2.4rem;
    font-weight:500;
    margin-bottom:20px;
}
@media (max-width: 450px){
    .responsive-home-banner-section h1{
    font-size:3rem;
    font-weight:500;
}
.responsive-home-banner-section p{
    font-size:1.5rem;
    font-weight:500;
    margin-bottom:20px;
}
}
/*our service page css*/
.service-body {
  background-color: #e94b83;
  height: 228px !important;
  text-align:center;
}
.service-body a{
    padding:7px 20px;
    margin-bottom: 20px;
    background-color: white;
    color:black;
    border-radius:5px;
}
.service-body p{
    color: white !important;
    margin-bottom: 20px !important;
}
.card {
  overflow-y: auto;
}
/*homepage FAQ section css*/
.faq-section{
    background-color: #F9EFEF;
    padding: 50px;
    text-align: center;
}
.faq-section .container{
    width: 100%;
}
.why-wait-section{
    background-color: #D3E2E8 !important; 
    text-align: left !important;
}
 .why-wait-content-section{
     padding: 6% 5% 6% 10%;
     text-align: left;
 }
 .why-wait-img-section img{
     height: 40rem !important;
     display: flex !important;
     margin: auto !important;
 }
/*homepage blog section*/
.blog-section{
    background-color: #f3f3f3;
}
.blog-section .card{
    border: none !important;
}
.blog-card .card-title{
    font-size: 20px;
    line-height: 1.5;
    color: #4773B6;
}
.blog-card .card-text{
    line-height:1.5;
    font-size: 14px;
}
.blog-footer{
    background: none;
    border: none;
}
.blog-section .blog-button{
    padding: 7%;
}
.pediatric-service-section{
    background-color: #f9f9f9db !important;
    padding: 30px 0;
}
/*telemedicine icon section*/
.virtual-section{
    padding: 25px !important;
}
.virtual-row{
    padding: 15px !important;
}
.icon-img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.icon-img img{
    width: 148px;
}
.icon-cap{
   text-align: center;
    padding: 10px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-section .contact-item info{
word-wrap: break-word;
    text-align: left;
}
.icon img {
    width: 24px; /* Adjust size as needed */
    height: 24px;
}
.about-section .important-featured-section{
    background-color: #F5E6CC;
}
@media only screen and (max-width: 530px) {
    .post-covid-section{
    padding: 20px 20px;
}
    .schedule-section{
        padding: 2rem;
    }
    .form-section{
        padding: 2rem;
    }
}
.info{
    font-size: 18px;
}
.contact-us-button{
    background: #4773B6;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    color: white;
    font-weight: 500;
}
