/* --------------------- Header Section ----------------------- */
header {
  overflow: hidden;
  height: 150px;
}

header .fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}

.header-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--primary-clr-two);
  color: #fff;
  height: 50px;
  padding-left: 20px;
}

.header-top .left-side {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-top .left-side .wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-top .icon {
  display: inline-block;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  border-radius: 50%;
  background-color: #75578a;
}

.header-top .icon i {
  color: #fff;
}

.header-top .icon:hover i {
  color: var(--green-clr);
}

.header-top .icon:hover :is(#phone-call, #cart-icon) {
  fill: var(--green-clr);
}

.header-top .left-side .tel a {
  color: #fff;
}

.header-top .left-side .vertical-line {
  width: 30px;
  height: 1px;
  background-color: #fff;
  transform: rotate(90deg);
}

.header-top .left-side .text-check-social {
  cursor: pointer;
}

.header-top .right-side {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-top .right-side .payment-link {
  background-color: #391f4c;
  color: #fff;
  display: inline-block;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header-top .right-side .payment-link:hover {
  background-color: #866c99;
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}
.popup-overlay .popup-container {
  background: white;
  padding: 80px 5%;
  border-radius: 10px;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  background-color: var(--primary-clr-one);
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-overlay .social-icons-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.popup-overlay .social-icon {
  font-size: 34px;
  color: var(--primary-clr-two);
  transition: color 0.3s ease;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-clr-two);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.popup-overlay .social-icon:hover {
  color: #0073e6;
}
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

header .content {
  padding: 12px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100px;
  background-color: #fff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

header .logo {
  width: 142px;
}

header .nav-wrapper {
  display: flex;
  align-items: center;
}

header .menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

header a {
  font-weight: 500;
  font-size: 15px;
  color: #000000;
  white-space: nowrap;
  text-transform: uppercase;
}

header a:hover {
  color: var(--green-clr);
}

header .cta-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-icon {
  display: none;
}

/* dropdown items */
header .menu-item {
  position: relative;
}

header .menu-item > .sub-menu {
  position: absolute;
  top: 160%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 3px 3px 5px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  visibility: hidden;
  transition: 0.3s linear;
  padding: 10px 0;
}

header .menu-item > .sub-menu .menu-item,
header .menu-item > .sub-menu .menu-item > .sub-menu .menu-item {
  padding: 5px 15px;
}

header .menu-item > .sub-menu a {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .menu-item > .sub-menu .menu-item > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: none;
}

header .menu-item:hover > .sub-menu {
  visibility: visible;
}

header .menu-item > .sub-menu .menu-item:hover > .sub-menu {
  display: block;
}

header .menu-item i {
  font-size: 12px;
}

header .cta-btns {
  position: relative;
}

header .cta-btns button {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .cta-btns .search-btn {
  background-color: var(--primary-clr-two);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  outline: none;
  font-size: 20px;
  cursor: pointer;
}

header .cta-btns .search-btn.active {
  background-color: #d1d3d4;
}

header .cta-btns .search-input {
  position: absolute;
  top: 0;
  left: -280px;
  z-index: 2;
  border-radius: 50px;
  width: 280px;
  max-width: 100%;
  padding: 8px 8px 8px 20px;
  background-color: #ffffff;
  outline: none;
  border: none;
  box-shadow: 1px 1px 8px 5px rgba(0, 0, 0, 0.1);
  height: 56px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s linear;
}

header .cta-btns .search-input.show {
  visibility: visible;
  opacity: 1;
}

header .cta-btns .appointment-btn:hover {
  color: #fff;
}

/*//////////////////////////// HERO HOME /////////////////////////*/
#hero-home {
  min-height: 694px;
  background-origin: url(/wp-content/uploads/2025/08/DSC_1956.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;	
}

.hero-video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-home .hero-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #522d6d;
  opacity: 0.7;
}

#hero-home .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

#hero-home .hero-heading {
  margin-bottom: 20px;
}

#hero-home .description {
  margin-bottom: 30px;
  font-size: 28px;
  color: #fff;
}

/*/ //////////////////////// CARDS SECTION ////////////////////////*/
#cards-section {
  margin-top: -160px;
}

#cards-section .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

#cards-section .card {
  position: relative;
  background: #f5f9ff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  background-image: url(/wp-content/uploads/2025/02/Group-9.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: top right;
}

#cards-section .card h5 {
  font-size: 21px;
  border-bottom: 1px solid #00a6cf;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--primary-clr-two);
  text-align: center;
}

#cards-section .card p {
  margin-bottom: 10px;
  color: #010001;
  line-height: 1;
}

#cards-section .phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #010001;
  margin-bottom: 10px;
  margin-top: 5px;
}

#cards-section .phone i {
  font-size: 14px;
  margin-right: 8px;
}

#cards-section .learn-more {
  flex: 1;
  text-decoration: none;
  color: var(--primary-clr-one);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease-in-out;
  letter-spacing: 1px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

#cards-section .card:hover .learn-more {
  color: var(--green-clr);
  letter-spacing: 1.1px;
}

#cards-section .card:hover .learn-more i {
  position: relative;
  top: -2px;
}

#cards-section .card:hover {
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
}

/*///////////////////////// TREATMENT SECTION ////////////////////////*/
#treatment-center .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

#treatment-center .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

#treatment-center .card-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 270px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

#treatment-center .card-item .card-link {
  display: block;
  height: 100%;
  width: 100%;
  padding: 20px;
  position: relative;
}

#treatment-center .card-item:nth-child(1) {
  background-image: url(/wp-content/uploads/2025/02/image5-e1739212464999.png);
}

#treatment-center .card-item:nth-child(2) {
  background-image: url(/wp-content/uploads/2025/02/HLTestsHelp.jpg);
}

#treatment-center .card-item:nth-child(3) {
  background-image: url(/wp-content/uploads/2025/02/hearing-tests-e1469641423625.jpg);
}

#treatment-center .card-item:nth-child(4) {
  background-image: url(/wp-content/uploads/2025/02/hearing-exam-otolaryngologist-do-e1739212414180.png);
}

#treatment-center .card-item:nth-child(5) {
  background-image: url(/wp-content/uploads/2025/02/man-holding-hearing-aids-front-v-e1739212502838.png);
}

#treatment-center .card-item:nth-child(6) {
  background-image: url(/wp-content/uploads/2025/02/workers_compensation_in_il.jpg);
}

#treatment-center .card-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(82, 45, 109, 0.95) 0%,
    rgba(82, 45, 109, 0.95) 8%,
    transparent
  );
  z-index: 1;
}

#treatment-center .card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 166, 207, 1) 0%,
    rgba(0, 166, 207, 1) 8%,
    transparent
  );
  transition: height 0.3s ease-in-out;
  display: none;
}

#treatment-center .card-link:hover::after {
  display: block;
}

#treatment-center .card-link:hover::before {
  display: none;
}

#treatment-center .card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 21px;
  z-index: 2;
}

#treatment-center .learn-more-btn {
  text-align: center;
  display: flex;
  justify-content: center;
}

/*///////////////////////// TESTIMONIALS SECTION ////////////////////////*/
#testimonials-section {
  background-color: var(--primary-clr-two);
  background-image: url(/wp-content/uploads/2025/02/Untitled-design.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 300px 24%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 370px;
}

#testimonials-section .content {
  padding: 0 8%;
  color: #fff;
  position: relative;
  z-index: 2;
  font-style: italic;
}

#testimonials-section .slick-slide {
	padding: 30px 10px;
	position: relative;
}

#testimonials-section .slick-next:before, 
#testimonials-section .slick-prev:before {
	font-size: 25px;
}

#testimonials-section .slick-track {
	display: flex;
	align-items: center;
}

#testimonials-section .description p {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

#testimonials-section .name {
  text-align: right;
  font-weight: 400;
  display: block;
  font-size: 28px;
  white-space: nowrap;
}

#testimonials-section .designation {
  display: flex;
  align-items: end;
}

#testimonials-section .rating {
  text-align: right;
  color: var(--primary-clr-one);
  display: flex;
  gap: 7px;
  justify-content: flex-end;
  font-size: 28px;
}

#testimonials-section .quote-mark {
  position: absolute;
  top: -3%;
  left: 2%;
  font-size: 65px;
  color: #00a6cf50;
  transform: rotateY(180deg);
  z-index: -1;	
}

#testimonials-section .circle-pic {
  position: absolute;
}

/*//////////////////// SECTION TIPS AND TRENDS ///////////////////////*/
#tips-trends .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

#tips-trends .wrapper {
  gap: 30px;
}

#tips-trends .wrapper > * {
  padding: 18px 0;
}

#tips-trends :is(.left-side, .right-side) {
  display: flex;
  flex-direction: column;
}

#tips-trends .left-side {
  border-right: 2px solid var(--primary-clr-one);
  padding-right: 30px;
}

#tips-trends h3 {
  color: var(--primary-clr-two);
  margin-bottom: 14px;
  height: 70px;
}

#tips-trends .content-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex: 1;
}

#tips-trends .content-wrapper > * {
  width: 50%;
}

#tips-trends .content-wrapper iframe {
  width: 100%;
}

#tips-trends :is(img, iframe) {
  height: 200px;
  object-fit: cover;
}

#tips-trends .text-wrapper p {
  margin-bottom: 20px;
  color: #787c83;
  font-weight: 500;
  font-size: 18px;
}

#tips-trends .right-side .text-wrapper p {
  margin-bottom: 0;
}

#tips-trends .right-side .text-wrapper {
  margin-bottom: 20px;
}

#tips-trends .right-side .text-wrapper strong {
  font-family: AvenirBlack;
}

#tips-trends .highlight-para {
  margin-bottom: 20px;
  color: var(--primary-clr-one);
  font-size: 21px;
}

#tips-trends .btn-group {
  display: flex;
  gap: 10px;
}

/*//////////////////// SECTION BRANDS ///////////////////////*/
#brands {
  background-color: var(--primary-clr-two);
  background-image: url(/wp-content/uploads/2025/02/back-swirly.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 484px;
  display: flex;
  align-items: center;
}

#brands .brands-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

#brands .brand-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

#brands .brand-item img {
  width: 90%;
}

#brands .brand-item.starkey-logo img {
  width: 60%;
}

/*//////////////////// REASON SECTION ///////////////////////*/
#reason-section .content.grid-cols-2 {
  gap: 20px;
}

#reason-section .left-side p {
  margin-bottom: 20px;
  color: #787c83;
  font-size: 21px;
}

#reason-section .button {
  display: flex;
}

#reason-section .right-side {
  padding-left: 10%;
}

#reason-section figure {
  width: 100%;
  height: 586px;
  position: relative;
  padding: 30px 30px 0 0;
}

#reason-section figure::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 86%;
  width: 209px;
  background-color: var(--primary-clr-two);
  z-index: -1;
  border-radius: 10px;
}

#reason-section figure img {
  object-position: right;
  border-radius: 10px;
}

#reason-section .logo-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: -60px;
  margin-right: 40px;
  position: relative;
  z-index: 5;
}

#reason-section .logo-container img {
  width: 90px;
  height: 90px;
}

/* #reason-section .logo-container li:nth-child(1) img,
#reason-section .logo-container li:nth-child(4) img {
	width: 100px;
} */

#reason-section .btn {
  margin-top: 30px;
}

#reason-section .logo-container li:nth-child(1) img {
  width: 104px;
}

#reason-section .logo-container li:nth-child(4) img {
  width: 110px;
}

/*//////////////////// FORM SECTION ///////////////////////*/
#form-section .content {
  display: flex;
  gap: 60px;
}

#form-section .section-heading {
  text-align: center;
}

#form-section .left-side {
  width: 40%;
}

#form-section figure {
  position: relative;
  padding: 30px 0 0 30px;
}

#form-section figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 72%;
  width: 209px;
  background-color: var(--primary-clr-two);
  z-index: -1;
  border-radius: 10px;
}

#form-section figure img {
  border-radius: 10px;
}

#form-section .right-side {
  width: 60%;
}

#form-section .section-heading {
  margin-bottom: 50px;
}

#form-section .description p {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 21px;
}

#form-section strong {
  font-family: AvenirBlack;
}

#form-section .form-wrapper {
  padding: 30px;
  box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.1), -4px -5px 5px rgba(0, 0, 0, 0.1);
}

#form-section .form-wrapper h5 {
  color: var(--primary-clr-two);
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

#form-section .form-wrapper h6 {
  color: var(--primary-clr-two);
  text-align: center;
  font-size: 21px;
  margin-bottom: 30px;
}

/* #form-section .form-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

#form-section .form-fields :is(label, input) {
  width: 100%;
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

#form-section .form-fields input {
  padding: 10px;
  border: 1px solid #707070;
}

#form-section .btn-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

#form-section .gform_wrapper {
  max-width: 100%;
} */

#gform_submit_button_59 {
  margin-top: -96px;
}

#form-section .gform_fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#form-section .gfield {
  margin: 0 !important;
  padding: 0 !important;
}

#form-section .gfield :is(label, input) {
  width: 100%;
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

#form-section
  .gfield
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
    [type="button"]
  ):not([type="image"]):not([type="file"]) {
  padding: 10px;
  border: 1px solid #707070;
  width: 100% !important;
}

#form-section .gform_footer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  padding: 0 !important;
}

#form-section .gform_button {
  padding: 10px 20px;
  background: #0073aa; /* Adjust to match your primary button color */
  color: white;
  border: none;
  cursor: pointer;
}

.gform-theme--foundation .gfield--width-full,
.gform-theme--foundation .gfield {
  grid-column: auto !important;
}
.gfield_required {
  margin-left: 4px !important;
}
.ginput_container :is(input, select) {
  height: 40px;
  width: 100% !important;
}

/*/////////////////////////////// FOOTER /////////////////////////////*/
.footer-body {
  padding-top: 170px;
  background-image: url(/wp-content/uploads/2025/02/Group-947.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

footer .content {
  display: flex;
  gap: 50px;
}

footer .footer-logo {
  width: 300px;
  margin-bottom: 30px;
}

footer .social-icons-list {
  display: flex;
  gap: 10px;
}

footer .social-icon {
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .social-icon i {
  font-size: 20px;
  color: #fff;
}

footer .right-side {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  color: #fff;
  text-align: center;
  flex: 1;
}

footer .links-list {
  margin-bottom: 30px;
}

footer .links-list h4 {
  margin-bottom: 8px;
  font-family: AvenirBlack;
  text-transform: uppercase;
}

footer .links-list a {
  color: #fff;
  padding: 5px 0;
  display: block;
}

footer .links-list a:hover {
  color: var(--green-clr);
}

.copyright-wrapper {
  background-color: var(--primary-clr-two);
  padding: 18px 0;
}

.copyright-wrapper .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.copyright-wrapper p {
  color: #fff;
  font-size: 15px;
}

/*////////////////////////// SERVICES PAGE ///////////////////////////*/
:is(.split-partial, .split-half) .content {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Service 1 & 3: Image on Right */
.split-partial .content-left {
  width: 60%;
}

.split-partial .content-right {
  width: 40%;
}

.service-section :is(.content-left, .content-right) .description,
.service-section .content-list {
  margin-bottom: 30px;
}

:is(.service-section, .split-partial, .split-half)
  :is(.content-left, .content-right)
  .description
  p {
  margin-bottom: 20px;
  color: #787c83;
  font-size: 18px;
  font-weight: 500;
}

.service-section .content-list li {
  margin-bottom: 8px;
  list-style-type: disc;
  list-style-position: inside;
  color: #787c83;
  font-size: 18px;
  font-weight: 500;
}

.service-section img {
  width: 100%;
  border-radius: 8px;
}

/* Service 2 & 4: Video on Left */
.split-half :is(.content-right, .content-left) {
  width: 50%;
}

.split-half.reverse .content {
  flex-direction: row-reverse;
}

.service-section .brands-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-section .brands-list li {
  padding: 10px;
  border: 0;
  border-radius: 5px;
}

.service-section.service-5 .btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/*/////// LOCATIONS SECTION /////*/
#cards-section.locations-section {
  margin-top: 0;
}

#cards-section.locations-section .section-heading {
  text-align: center;
}

#location-footer {
  background-color: lightgray;
}

#location-footer .content {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

#location-footer h3.inner-heading {
  margin-bottom: 0;
}

/*///////////////////////////////// LOCATIONS PAGES ///////////////////////////////////////*/
/* Additional CSS for the location-details section */
#location-details .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
}

#location-details .left-side,
#location-details .right-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#location-details .left-side .loc-img,
#location-details .right-side .timings {
  height: 70%;
}

#location-details .left-side .loc-embed-map,
#location-details .right-side .loc-directions-map {
  height: 30%;
}

#location-details .right-side .loc-direction-link {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#location-details .left-side .loc-img img,
#location-details .right-side .loc-directions-map iframe,
#location-details .left-side .loc-embed-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

#location-details .middle-side {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

#location-details .middle-side address {
  font-style: normal;
  font-size: 16px;
  color: var(--black-clr);
}

#location-details .middle-side .btn.primary-btn {
  margin-top: 20px;
}

#location-details .middle-side .loc-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

#location-details .right-side .timings .timing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#location-details .right-side .timings .timing-list li {
  font-size: 16px;
  color: var(--black-clr);
}

#location-details .right-side .timings .timing-list li strong {
  font-weight: 700;
}

#location-video-section .container {
	display: flex;
	justify-content: center;
}

#location-video-section video {
	width: 710px;
	max-width: 90%;
}

/* Staff Section Styles */
#audiology-staff .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

#audiology-staff .staff-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}

#audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(1),
#audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(2) {
  width: 48%;
}

#audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(3),
#audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(4),
#audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(5) {
  width: 31%;
}

#audiology-staff .staff-list.staff-count-4 .staff-item {
  width: 48%;
}

#audiology-staff .staff-list.staff-count-less,
#audiology-staff .staff-list.staff-count-more {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(310px, 1fr)
  ); /* Responsive columns */
  gap: 40px;
}

#audiology-staff .staff-list .staff-item {
  background-color: var(--white-clr);
  border-radius: var(--border-radius);
  box-shadow: 2px 4px 10px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#audiology-staff .staff-list .staff-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

#audiology-staff .staff-list .staff-item .pic {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--primary-clr-two);
}

#audiology-staff .staff-list .staff-item .name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-clr-two);
  margin-bottom: 10px;
}

#audiology-staff .staff-list .staff-item p {
  font-size: 16px;
  color: var(--black-clr);
  line-height: 1.5;
}

/*///// REVIEWS SECTION ////////*/
#reviews-section .section-heading {
  text-align: center;
}

.reviews-location {
  background-color: var(--primary-clr-two);
  background-image: url(/wp-content/uploads/2025/02/Untitled-design.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 300px 24%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.reviews-location .section-heading {
  color: #fff;
  text-align: center;
}

.reviewmgr-stream {
  max-width: 800px;
  margin-left: -1em !important;
  position: relative;
  left: 50%;
  transform: translatex(-50%);
}

.reviewmgr-stream .reviewmgr-stream ul {
  margin: 0 !important;
}

/* Split Partial Section Styles */
.location-form.split-partial .content {
  align-items: start;
}

/* Left Side - Services */
.location-form .content-left .inner-heading {
  margin-bottom: 20px;
  text-align: center;
}

/* Right Side - Contact Form */
.location-form .content-right {
  background-color: var(--white-clr);
  border-radius: var(--border-radius);
}

.location-form .content-right .inner-heading {
  margin-bottom: 20px;
  text-align: center;
}

.location-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.location-form .input-group label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-clr-two);
}

.location-form .input-group input,
.location-form .input-group select,
.location-form .input-group textarea {
  padding: 10px;
  border: 1px solid var(--primary-clr-one);
  border-radius: var(--border-radius);
  font-size: 16px;
  color: var(--black-clr);
  outline: none;
  transition: border-color 0.3s ease;
}

.location-form .input-group input:focus,
.location-form .input-group select:focus,
.location-form .input-group textarea:focus {
  border-color: var(--primary-clr-two);
}

.location-form .input-group textarea {
  resize: vertical;
  min-height: 100px;
}

.location-form .btn-group {
  text-align: center;
}

.postid-140 .about_desc_loc.split-partial .content-left {
  width: 100%;
}

.postid-140 .about_desc_loc.split-partial :is(.section-heading, .description) {
  text-align: center;
}

/*///////////////////////////// HEARING AID PAGE //////////////////////////*/
.hearing-aid-comparison .section-heading,
.hearing-aid-considerations .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.hearing-aid-comparison .brands-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
}

#amplification-products .content,
#amplification-products .content-list {
  margin-bottom: 50px;
}

#amplification-products .content-list li {
  list-style-type: none;
}

#amplification-products .content-list figure {
  margin-bottom: 14px;
}

#amplification-products .content-list figure img {
  width: 100%;
}

#amplification-products .list-items {
  list-style: disc;
}

#amplification-products .list-items li {
  margin-bottom: 8px;
  list-style-type: disc;
  list-style-position: inside;
  color: #787c83;
  font-size: 18px;
  font-weight: 500;
}

#cosmetics-section .section-heading {
  text-align: center;
}

#cosmetics-section .content-list .grid-cols-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

#cosmetics-section .content-list {
  margin: 50px 0;
  text-align: center;
}

#cosmetics-section .content-list p {
  text-align: left;
}

#cosmetics-section .content-list li {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#cosmetics-section .content-list li figure {
  height: 180px;
}

#cosmetics-section h4.inner-heading {
  color: var(--primary-clr-two);
}

#cosmetics-section a {
  color: var(--primary-clr-one);
}

#finance-section .video-container {
  margin-bottom: 40px;
}

/*/////////////////// Individual Doctor Pages ///////////////////*/
.single-doctor .content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.single-doctor .section-heading {
  padding-top: 16px;
}

.single-doctor .left-side {
  width: 30%;
  text-align: center;
}

.single-doctor figure {
  margin-bottom: 15px;
}

.single-doctor .left-side p {
  margin-bottom: 20px;
}

.single-doctor .btn-group {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-doctor .right-side .tb_text_wrap a {
  color: #0073e6;
  text-decoration: underline;
  font-weight: bold;
}

/* Bottom Row */
.single-doctor .bottom-row {
  width: 100%;
}

.single-doctor .bottom-row iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}

/*///////////////// ABOUT US //////////////*/
#who-we-are figure {
  width: 25%;
}

#who-we-are .audio-clip {
  margin-top: 10px;
}

#who-we-are .audio-clip audio {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  background-color: #f4f4f4;
  padding: 5px;
}

#philosophy-section .section-heading {
  text-align: center;
}

#philosophy-section .inner-heading {
  font-size: 18px;
  margin-bottom: 0;
}

#philosophy-section .grid-cols-3 {
  margin-top: 30px;
}

/* General Section Styling */
:is(.awards-section, .news-section) .section-heading {
  text-align: center;
  margin-bottom: 30px;
}

/* Badges List */
#awards-section .badges-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

#awards-section .badges-list li {
  text-align: center;
}

/* Awards List */
#awards-section .list-items {
  padding-left: 15px;
}

#awards-section .list-items li {
  list-style: disc;
  max-width: 600px;
}

#awards-section .list-items li {
  margin-bottom: 8px;
  color: #787c83;
  font-size: 18px;
  font-weight: 500;
}

/* News Grid */
#news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

#news-section .news-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

#news-section .news-item:hover {
  transform: translateY(-5px);
}

#news-section .news-item .date {
  color: #787c83;
  margin-bottom: 10px;
}

#news-section .news-item .inner-heading {
  height: 100px;
  overflow: hidden;
}

#news-section .news-item .description {
  /*   flex: 1; */
  word-wrap: break-word;
  height: 80px;
  overflow: hidden;
}

#news-section .news-item a {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-clr-one);
  font-weight: bold;
  text-decoration: none;
}

#news-section .news-item a:hover {
  text-decoration: underline;
}

#news-section iframe,
.amplification-products iframe {
	width: 60%;
	height: 450px;
	margin: 0 auto;
	display: block;
}

.pagination-links {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.pagination-links button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--primary-clr-one);
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-links button:hover,
.pagination-links button.active {
  background: #0073aa;
  color: white;
  border-color: #0073aa;
}

/* Pagination */
/* #news-section .pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#news-section .pagination a, 
#news-section .pagination > span {
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--primary-clr-one);
  font-weight: bold;
  border: 1px solid var(--primary-clr-one);
  transition: background 0.3s;
}

#news-section .pagination a:hover,
#news-section .pagination span.current {
  background: #0073e6;
  color: #fff;
}

#news-section .pagination .prev,
#news-section .pagination .next {
  font-weight: bold;
} */

/*//////////////////////// BLOG PAGES ////////////////////////////*/
#filter-section .filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  position: relative;
}

#filter-section .filters h5 {
  font-size: 18px;
}

#filter-section .filters select,
#filter-section .filters input[type="text"] {
  padding: 8px;
  flex: 1;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#filter-section .filters select:focus,
#filter-section .filters input[type="text"]:focus {
  border-color: var(--primary-clr-one);
  outline-color: var(--primary-clr-one);
}

.blog-container {
  display: flex;
  gap: 30px;
  padding: 20px;
}

.blog-container .content-left {
  width: 70%;
}

.blog-container .blog-item {
  display: flex;
  gap: 15px;
  padding: 15px 15px 15px 0;
  border-bottom: 1px solid #ddd;
  align-items: center;
}

.blog-container .blog-img-link {
  width: 200px;
  height: 150px;
}

.blog-container .blog-item figure {
  width: 35%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-container .blog-item iframe {
  width: 100%;
  height: 100%;
}

.blog-container .blog-item .blog-content {
  width: 65%;
}

.blog-container .blog-item .description:first-of-type {
  margin-bottom: 12px;
}

.blog-container .blog-item div {
  flex: 1;
}

.blog-container .content-right {
  width: 30%;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
}

.blog-container .content-right .content-list:first-of-type {
  /*   margin-bottom: 60px; */
}

.blog-container .content-list li {
  cursor: pointer;
  margin-bottom: 8px;
  transition: color 0.3s ease-in-out;
}

.blog-container .content-list li:hover {
  color: var(--primary-clr-one);
  text-decoration: underline;
}

/*////////////////// SINGLE BLOG PAGE ///////////////////*/
.single-blog .content {
  display: flex;
  gap: 20px; /* Adjust spacing between left and right sections */
}

.single-blog .content-left {
  width: 70%;
}

.single-blog .content-right {
  width: 30%;
}

.single-blog .content-right ul li {
  margin-bottom: 10px;
}

.single-blog .blog-locations #cards-section {
  margin-top: 0;
}

#single-blog .blog-locations :is(ul, li) {
  margin-left: 0;
}

/* --------------------- Locations Section ----------------------- */
#locations-home {
  padding-top: 30px;
  position: relative;
}

#locations-home .heading {
  font-family: "Nunito Sans";
  font-size: 48px;
  text-align: center;
  color: var(--primary-clr-two);
  margin-bottom: 30px;
  font-weight: 800;
}

#locations-home .map-container {
  position: relative;
  display: flex;
  justify-content: center;
}

#locations-home .us-map {
  width: 750px;
  margin-bottom: 80px;
  position: relative;
  display: none;
}

#locations-home .us-map.popup-open {
  display: none;
}

#locations-home .us-map .city-area {
  position: absolute;
  cursor: pointer;
}

#locations-home .us-map img {
  object-fit: fill;
}

#locations-home .direction-link {
  display: block;
  text-align: center;
}

#locations-home .direction-link button {
  cursor: pointer;
}

#locations-home .cta-btn {
  border: none;
  outline: none;
}

#locations-home .popup {
  width: 90%;
  margin: 0 auto;
  display: flex;
  border-radius: 10px;
  position: absolute;
  top: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s linear;
}

#locations-home .popup-open {
  opacity: 1;
  visibility: visible;
  position: relative;
  margin-bottom: 70px;
}

#locations-home .popup .left-side {
  width: 50%;
  background-color: var(--primary-clr-two);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
}

#locations-home .popup .left-side .map {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 285px;
}

#locations-home .popup .left-side .state-map {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

#locations-home .popup .right-side {
  width: 50%;
  background-color: #d1d3d4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 10%;
}

#locations-home .popup .right-side .state-name {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  color: var(--primary-clr-two);
  padding-bottom: 10px;
  border-bottom: 2px solid orange;
  margin-bottom: 30px;
}

#locations-home .popup .right-side .state-locations-container {
  display: grid;
  grid-row-gap: 26px;
}

#locations-home .popup .right-side .city-name {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: var(--primary-clr-two);
  margin-bottom: 10px;
}

#locations-home .popup .right-side .city-name:hover {
  color: var(--primary-clr-one);
}

#locations-home .popup .right-side .city-address,
#locations-home .popup .right-side .city-phone {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: var(--primary-clr-one);
  font-style: normal;
}

#locations-home .popup .right-side .cta-btn {
  display: block;
  margin: 14px auto 0;
}

#locations-home .popup .close-btn {
  position: absolute;
  top: 2%;
  right: 2%;
  background-color: var(--primary-clr-two);
  color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.cls-1.active-state {
  fill: var(--primary-clr-two);
  cursor: pointer;
}
.cls-1.active-state:hover {
  fill: var(--primary-clr-one);
}

/*/////////////////// OUR TEAM PAGE /////////////////////*/
.top-doctors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 80px;
}

.top-doctors li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-doctors figure {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.top-doctors .name {
  color: var(--primary-clr-one);
}

.top-doctors .qualification p {
  color: var(--primary-clr-one);
}

.asst-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.asst-container .left-side {
  width: 55%;
}

.asst-container .asst-doctors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.asst-container .asst-doctors li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.asst-container .asst-doctors figure {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
}

.asst-container .asst-doctors :is(h4, .qualification) {
  color: #787c83;
}

.asst-container .right-side {
  width: 45%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(https://hearinghealthcenter.com/wp-content/uploads/2020/04/HHC-ad-Bground.png);
  background-color: #5b3973;
  color: #fff;
  padding: 50px 5%;
}

.asst-container .right-side .inner-heading {
  color: #fff;
}

.asst-container .right-side .description p {
  color: #fff;
  line-height: 1.4;
}

/*///////////////////// REVIEWS PAGE //////////////////*/
/* Stars Styling */
.reviews-container {
  width: 75%;
  margin: 0 auto;
}

/*///////////////// CAREERS PAGE ////////////////////*/
#intro-careers .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#intro-careers .section-heading {
  text-align: center;
}

#about-hearing-health {
  background-color: #f9f9f9;
}

#about-hearing-health .content {
  display: flex;
  gap: 30px;
}

#about-hearing-health .image-wrapper {
  max-width: 250px;
}

#about-hearing-health .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#about-hearing-health .description {
  max-width: 800px;
  line-height: 1.6;
}

#about-hearing-health .description p {
  margin-bottom: 15px;
}

#about-hearing-health .description .highlight {
  color: #0056b3;
  font-weight: bold;
  font-size: 20px;
}

.values-section .card-item {
  background-color: var(--primary-clr-two);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-section .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.values-section .inner-heading {
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}

.values-section .description p {
  color: #fff;
}

/*////////////////// testimonial career /////////////////*/
.testimonial-career .section-heading {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.testimonial-career .card-item {
  margin: 0 40px;
}

.testimonial-career .card-item figure {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #fff;
}

.testimonial-career .card-item .description p {
  color: #fff;
}

.testimonial-career .card-item .name {
  font-size: 20px;
}

.testimonial-career .card-item .card-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.join-our-team .content {
  text-align: center;
}

.join-our-team .description {
  margin-bottom: 30px;
}

/* General Styling */
.job-post-section .section-heading {
  text-align: center;
}

.job-post-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px; /* Space between columns */
  margin-top: 50px;
}

.job-post-wrapper .left-side,
.job-post-wrapper .middle-side,
.job-post-wrapper .right-side {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.job-post-wrapper .inner-heading {
  margin: 14px 0;
}

.job-post-wrapper .p1 {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.job-post-wrapper li {
  list-style-type: disc;
  list-style-position: inside;
}

/* Form Styling */
.job-post-wrapper .form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.job-post-wrapper .form .inner-heading {
  text-align: center;
}

.job-post-wrapper .gfield {
  margin-bottom: 15px;
}

.job-post-wrapper .gfield_label {
  display: block;
  font-size: 0.9em;
  color: #2c3e50;
  margin-bottom: 5px;
}

.job-post-wrapper .ginput_container {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
}

.job-post-wrapper .ginput_container:focus {
  border-color: #e67e22;
  outline: none;
}

.job-post-wrapper .ginput_container_file {
  padding: 5px;
}

/*///////////////////// Contact Form Section //////////////////*/
.contact-form-section {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.contact-form-section .form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 5%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section .gform_fields {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-form-section .gfield {
  margin-bottom: 20px;
}

.contact-form-section .gfield_label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form-section .ginput_container input,
.contact-form-section .ginput_container select,
.contact-form-section .ginput_container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form-section .ginput_container textarea {
  resize: vertical;
  height: 150px;
}

/*//////////////////// Referring Physicians Page ////////////////////*/
.referral-section {
  display: flex;
  justify-content: center;
}

.referral-section .content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  line-height: 1.4;
}

.referral-section .left-side {
  width: 30%;
}

.referral-section .doctor-credential {
  margin-bottom: 20px;
}

.referral-section .stats-intro {
  margin-bottom: 30px;
}

.referral-section .right-side {
  width: 70%;
}

.referral-section .review-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 20px;
}

.referral-section .review-wrapper .left-side {
  width: 60%;
}

.referral-section .review-wrapper .right-side {
  width: 40%;
}

.referral-section .review-wrapper .right-side .form {
  padding: 40px 15px;
  box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.referral-section .fields-container {
  margin-top: 30px;
}

/* Additional styling for aesthetics */
.referral-section .inner-heading,
.referral-section .section-heading {
  margin-bottom: 15px;
}

.referral-section .form input[type="text"],
.referral-section .form input[type="email"],
.referral-section .form input[type="tel"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*/////////////////// Book an Appointment Page ///////////////////*/
.appointment-frame-wrapper {
  width: 560px;
  max-width: 90%;
  margin: 50px auto 0;
}

.appointment-frame-wrapper iframe {
  height: 600px;
  overflow-y: auto;
}

/*////////////////// Thank You Page ////////////////////////*/
#thank-you-section .container {
  background-color: #ededed;
  padding: 40px;
}

#thank-you-section .content {
  width: 90%;
  padding: 100px 5%;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
}

.mb-18 {
  margin-bottom: 18px;
}

/*/////////////////////// LEASE PROGRAM PAGE /////////////////////*/
/* General Section Styling */
#intro-lease-section .content {
  background-color: var(--primary-clr-one);
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 30px;
}

/* Left Side Styling */
#intro-lease-section .left-side {
  width: 75%;
  padding-right: 40px;
}

#intro-lease-section .text-wrap .quote p {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

#intro-lease-section .text-wrap :is(.name, .designation) {
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}

#intro-lease-section .cta-wrap {
  margin-top: 50px;
}

#intro-lease-section .cta-wrap .description p {
  color: #fff;
  margin-top: 20px;
}

/* Right Side Styling */
#intro-lease-section .right-side {
  width: 25%;
}

#intro-lease-section .right-side figure {
  margin: 0;
}

#intro-lease-section .right-side img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#lease-plan .content {
  text-align: center;
}

#lease-plan .description {
  margin-bottom: 20px;
}

#lease-plan .content-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  column-gap: 60px;
  padding: 0 20%;
  margin-bottom: 30px;
}

#lease-plan .content-list li {
  list-style-type: disc;
  text-align: left;
}

/*///////////////////////// PAY PAGE //////////////////////////*/
#pay-section .number {
  height: 24px;
  width: 24px;
  background-color: var(--primary-clr-two);
  color: #fff;
  margin-right: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#pay-section .link {
  color: var(--primary-clr-two);
  font-weight: bold;
}

#pay-section img {
  margin-bottom: 20px;
}

#pay-section .primary-btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/*///////////////////// payment-list-section /////////////////*/
#payment-list-section .payment-list-wrap {
  width: 75%;
  margin: 0 auto;
  border: 1px solid var(--primary-clr-one);
  box-shadow: 4px 5px 10px 10px rgba(0, 0, 0, 0.1);
  padding: 50px;
  border-radius: 10px;
}

#payment-list-section .payment-list-wrap li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

#payment-list-section .payment-list-wrap li:not(:last-child) {
  margin-bottom: 30px;
}

/*///////////////////// privacy policy page ////////////////////*/
#privacy-policy-section .content-list {
  margin-bottom: 20px;
}

/*///////////////////// online hearing test page ///////////////*/
#online-hearing-test .content-wrap {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  margin-top: 60px;
  text-wrap: balance;
}

#online-hearing-test .bg-text-wrap {
  position: relative;
  background: transparent url(/wp-content/uploads/2025/03/hero.jpg) no-repeat;
  background-size: cover;
  padding: 160px 0 40px;
  background-position: 80% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 22px;
  min-height: 500px;
  margin-bottom: 40px;
}

#online-hearing-test .bg-text-wrap .text-wrap {
  width: 60%;
}

#online-hearing-test .bg-text-wrap button {
  display: inline-block;
  margin: 35px 0 !important;
}

#online-hearing-test .bg-text-wrap p {
  font-size: 26px;
}

#online-hearing-test .hearing-loss-wrap,
#online-hearing-test .common-sign-wrap,
#online-hearing-test .check-hearing-wrap {
  margin-bottom: 60px;
}

#online-hearing-test .check-hearing-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

#online-hearing-test .check-hearing-wrap .list {
  margin-top: 20px;
  font-size: 18px;
  color: #787c83;
  line-height: 1.4;
}

#online-hearing-test .check-hearing-wrap .left-side {
  width: 50%;
}

#online-hearing-test .check-hearing-wrap .right-side {
  width: 50%;
}

#tinnitus-page-main .btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 70px !important;
}

/*///////////////////// utility classes //////////////////////*/
.text-underline {
  text-decoration: underline;
}
.text-uppercase {
  text-transform: uppercase;
}

/* //////// woocommerce customization starts /////////////*/
.wc-block-cart-items__header-image,
.wc-block-cart-items__header-total,
.wc-block-cart__totals-title,
.wc-block-components-title {
  color: var(--primary-clr-two) !important;
  font-size: 20px !important;
}

.post-244 {
  padding: 70px 0;
}

/* My Account Page Container */
.post-244.page.type-page.status-publish.hentry {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* WooCommerce My Account Navigation */
.woocommerce-MyAccount-navigation {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #f1f1f1;
  color: #000;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #0073aa;
  color: #fff;
}

/* WooCommerce My Account Content */
.woocommerce-MyAccount-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

/* Notices */
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

/* Logout Link */
.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #ff0000;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background-color: #ffebee;
}

.woocommerce-Address-title.title h2 {
  font-size: 28px;
}

.woocommerce h2 {
  font-size: 28px;
  color: var(--primary-clr-two);
  margin-bottom: 10px;
}

.woocommerce .product_title.entry-title {
  font-size: 40px;
  color: var(--primary-clr-two);
  margin-bottom: 10px;
}

.woocommerce .quantity .qty {
  height: 40px;
  margin-right: 15px;
}
.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.woocommerce-Price-amount.amount {
  margin-bottom: 14px;
  display: inline-block;
  font-size: 24px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #ship-to-different-address span,
.woocommerce-checkout #order_review_heading {
	color: var(--primary-clr-two);
}

.woocommerce-checkout #order_review_heading {
	margin-bottom: 10px;
}

.woocommerce-checkout #customer_details {
	margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-Price-amount.amount {
	font-size: 19px;
}

.woocommerce-checkout #payment div.payment_box input.input-text, .woocommerce-checkout #payment div.payment_box textarea  {
	font-size: 1em;
}

.woocommerce ul.products li.product a img {
	height: 220px;
	object-fit: cover;
}

/* shop page */
/* Main Content Area */
.content-area {
  padding: 70px 0;
  border-radius: 8px;
  width: 1400px;
  max-width: 90%;
  margin: 0 auto;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
  font-size: 18px;
  margin-bottom: 20px;
}

.woocommerce-breadcrumb a {
  color: #0073aa;
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/* Shop Header */
.woocommerce-products-header {
  text-align: center;
  margin-bottom: 30px;
}

/*/////////// shop page //////////////  */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.woocommerce ul.products::before {
  display: none;
}

.woocommerce ul.products li.product {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100% !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* hide a product on shop/store page */
.woocommerce-shop.woocommerce ul.products li.product.post-589 {
  display: none;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.woocommerce-loop-product__link {
  text-decoration: none;
  color: #333;
  display: block;
  flex: 1;
}

.woocommerce-loop-product__title {
  font-size: 22px;
  margin: 15px 0;
  color: #222;
}

.woocommerce-Price-amount {
  font-size: 18px;
  color: #0073aa;
  font-weight: bold;
}

.woocommerce-Price-currencySymbol {
  color: #0073aa;
}

/* Product Image */
.woocommerce-loop-product__link img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Sorting Dropdown */
.woocommerce-ordering {
  margin-bottom: 20px;
  text-align: center;
}

.woocommerce-ordering .orderby {
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
}

.woocommerce-ordering .orderby:focus {
  outline: none;
  border-color: #0073aa;
}

/* Result Count */
.woocommerce-result-count {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

/* Notices */
.woocommerce-notices-wrapper,
.woocommerce-result-count {
  margin-bottom: 20px;
  text-align: center;
}

/* Single Product Container */
.page-description .products.columns-4 {
  display: none;
}

.woocommerce-products-header__title.page-title {
  color: var(--primary-clr-two);
  font-size: 60px;
  line-height: 1.25;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

// hide a product on shop/store page
.woocommerce-shop.woocommerce ul.products li.product.post-589 {
  display: none !important;
}
/* //////// woocommerce customization ends /////////////*/

/*/////////////// single blog post style starts //////////////////*/
#single-blog :is(ul, li) {
  list-style-type: disc;
  margin-left: 10px;
  color: #787c83;
  list-style-position: outside;
}
#single-blog ul {
  margin-bottom: 20px;
}
#single-blog h2:not(.section-heading) {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--primary-clr-two);
}
#single-blog .content-left > p:first-of-type {
  margin-bottom: 12px;
  color: var(--primary-clr-one);
}
#single-blog h4 {
  color: var(--primary-clr-one);
}
#single-blog .post-video iframe {
  width: 100%;
  margin-bottom: 14px;
}
#single-blog .content-list {
  line-height: 1.4;
}

/*///////////////// search page ///////////////*/
#search-results .search-heading {
  color: var(--primary-clr-two);
  margin-bottom: 20px;
}

#search-results .post-results,
#search-results .navigation {
  margin: 15px 0;
}
#search-results .post-results h1 {
  font-size: 28px;
  margin-bottom: 14px;
  text-transform: capitalize;
}

#search-results .post-results small {
  margin-bottom: 8px;
  display: inline-block;
  font-size: 18px;
}

#search-results .post-results .postmetadata {
  font-size: 18px;
}

/*/////////////// single blog post style ends //////////////////*/

/* utility classes */
.mb-20 {
  margin-bottom: 20px;
}

#asl-storelocator.asl-p-cont *,
#asl-storelocator.asl-p-cont .agile-modal .agile-modal-dialog *,
#asl-storelocator.asl-p-cont .agile-modal-header * {
  line-height: 1.2;
  font-size: 16px !important;
}



/* --- Newsletter Section Styling --- */

.newsletter-subs {
	text-align: center;
	position: relative;
}

.newsletter-subs .container {
	background-color: #f7f7f7;
	box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.1), -4px -5px 5px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.newsletter-subs .content {
	margin: 0 auto -100px;
	padding: 3rem 3%;
}

.newsletter-subs .content h2 {
	font-size: 2rem;
	margin-bottom: 10px;
	color: var(--primary-clr-two);
	text-transform: uppercase;
	text-align: left;
}

.newsletter-subs .content p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.6;
	text-align: left;
}

/* --- Gravity Forms Specific Styling --- */
.newsletter-subs .gform_wrapper .gform_heading {
	display: none;
}

.newsletter-subs .gform_wrapper {
	flex: 1;
}

.newsletter-subs .gform-theme--foundation .gform_fields {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.newsletter-subs  .gform-theme--foundation .gfield:not(:last-child) {
	flex: 1;
}

.newsletter-subs .gform_fields > *:not(:last-child) {
	margin-bottom: 14px;
}

.newsletter-subs  .gform-theme--foundation .gfield input {
	height: 48px;
	text-align: left;
}

.newsletter-subs .gfield--type-submit {
	align-items: flex-start !important;
}

.newsletter-subs  .gform-theme--foundation .gfield input[type="submit"] {
	height: 48px !important;
}

.newsletter-subs .gform-theme--foundation .gform_footer {
	margin-block-start: 0;
}

/* ------------------------- MEDIA QUERIES -------------------------  */
@media only screen and (min-width: 1537px) {
}

/* 1279 to 1024 screens */
@media only screen and (max-width: 1279px) {
  /* nav menu on mobile */
  header .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 146px;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    padding: 20px 5%;
    transition: 0.4s linear;
    transform: translateX(-100%);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 106px);
    overflow: auto;
  }

  header .nav-wrapper.mobile-view {
    transform: translateX(0);
  }

  header .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  header .cta-btns {
    flex-direction: column;
  }

  header .cta-btns button {
    display: block;
    width: 100%;
  }

  .menu-icon {
    font-size: 30px;
    display: block;
    color: #7008c1;
    cursor: pointer;
  }
  .menu-icon .close-menu {
    display: none;
  }
  header .cta-btns .search-btn {
    border-radius: 100px;
    height: 61px;
    width: 100%;
  }
  header .cta-btns .search-input {
    top: 20px;
    left: 0;
    padding: 20px 8px 20px 20px;
  }

  #tips-trends .btn-group {
    /*     flex-direction: column; */
  }

  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(3),
  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(4),
  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(5) {
    width: 48%;
  }

  #locations-home .popup .right-side {
    padding: 30px 2%;
  }
}

/* 1023 to 992 screens */
@media only screen and (max-width: 1023px) {
  #location-details .content {
    grid-template-columns: 1fr;
  }

  #location-details .left-side .loc-img,
  #location-details .right-side .timings,
  #location-details .left-side .loc-embed-map,
  #location-details .right-side .loc-directions-map {
    width: 100%;
    height: auto;
  }

  #location-details .right-side .loc-directions-map {
    width: auto;
  }

  #location-details .left-side,
  #location-details .right-side,
  #location-details .middle-side {
    align-items: center;
    text-align: center;
  }

  #audiology-staff .staff-list {
    grid-template-columns: repeat(2, 1fr); /* Two columns for tablets */
  }
}

/* 991 to 768 screens */
@media only screen and (max-width: 991px) {
  /*////////// SERVICES PAGE ///////////*/
  .hero-banner .section-heading {
    max-width: 100%;
  }
  :is(.split-half, .split-partial) .content,
  .split-half.reverse .content {
    flex-direction: column;
  }

  .split-half.service-2 .content,
  .split-half.service-4 .content {
    flex-direction: column-reverse;
  }

  :is(.split-half, .split-partial) .content > * {
    width: 100%;
  }

  .single-doctor .content {
    flex-direction: column;
    gap: 60px;
  }

  .single-doctor .left-side {
    width: 100%;
  }
	
.single-doctor .btn-group {
    flex-direction: row;
}
	
	.single-doctor .btn-group > * {
		width: 50%;
	}	

  .blog-container {
    flex-direction: column;
    padding: 0;
  }

  .blog-container .content-left,
  .blog-container .content-right {
    width: 100%;
  }

  footer .left-side {
    text-align: center;
  }

  .copyright-wrapper .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .referral-section .review-wrapper,
  footer .content,
  .single-blog .content {
    flex-direction: column;
  }

  #online-hearing-test .check-hearing-wrap .left-side,
  #online-hearing-test .check-hearing-wrap .right-side,
  #online-hearing-test .content-wrap,
  #online-hearing-test .bg-text-wrap .text-wrap,
  .single-blog .content > *,
  #payment-list-section .payment-list-wrap,
  .referral-section .review-wrapper :is(.left-side, .right-side) {
    width: 100%;
  }

  #form-section .gform_footer {
    margin-top: 130px;
  }

  #tips-trends .btn-group,
  footer .social-icons-list {
    justify-content: center;
  }
	
	.job-post-wrapper {
		grid-template-columns: 1fr;
	}	
	
	#news-section iframe,
	.amplification-products iframe {
		width: 100%;
		height: 450px;
	}	
}

/* 767 to 640 screens */
@media only screen and (max-width: 767px) {
  .post-244 {
    padding: 30px 0;
  }

  #hero-home .description {
    text-align: center;
  }
  #tips-trends .content-wrapper {
    flex-direction: column-reverse;
  }
  #form-section .content {
    flex-direction: column;
  }
  #form-section .content > *,
  #tips-trends .content-wrapper > * {
    width: 100%;
  }
  #testimonials-section .description {
    font-size: 18px;
  }
  #reason-section figure {
    height: 386px;
  }
  #reason-section .right-side {
    padding-left: 0;
  }
  #reason-section .logo-container {
    margin-right: 0;
  }
  #reason-section .btn {
    height: 90px;
  }
  #reason-section .logo-container img {
    width: 70px;
    height: 70px;
  }
  #reason-section .logo-container li:nth-child(1) img,
  #reason-section .logo-container li:nth-child(4) img {
    width: 80px;
  }
  #reason-section .logo-container .outstanding-award {
    width: 84px;
  }
  #reason-section .logo-container .satisfaction-award {
    width: 90px;
  }
  #reason-section .logo-container {
    margin-top: -40px;
  }
  #tips-trends .left-side {
    border-right: none;
    padding-right: 0;
  }
  #tips-trends .content-wrapper :is(iframe, video) {
    height: 240px;
  }
  #tips-trends .content-wrapper figure {
    width: 100%;
    height: auto;
  }
  #tips-trends h3,
  #reason-section .left-side p,
  #reason-section .section-heading,
  #form-section .right-side p,
  #cards-section .card p,
  #tips-trends .highlight-para,
  #tips-trends .left-side .text-wrapper {
    text-align: center;
  }
  #brands .brand-item img {
    width: 70%;
  }
  footer .footer-logo {
    width: 240px;
  }

  #audiology-staff .staff-list {
    grid-template-columns: 1fr;
  }

  #location-details .right-side .loc-directions-map {
    width: 100%;
  }

  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(1),
  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(2),
  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(3),
  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(4),
  #audiology-staff .staff-list.staff-count-5 .staff-item:nth-child(5),
  #audiology-staff .staff-list.staff-count-4 .staff-item {
    width: 100%;
  }

  .single-doctor .bottom-row iframe {
    height: 300px;
  }
	
.single-doctor .btn-group {
    flex-direction: column;
}
	
	.single-doctor .btn-group > * {
		width: 100%;
	}	

  :is(#who-we-are, #philosophy-section) .content {
    text-align: center;
  }
  #who-we-are .content-right figure {
    margin: 0 auto;
  }

  #locations-home .heading {
    font-size: 30px;
    margin-bottom: 15px;
  }

  #locations-home .popup {
    flex-direction: column;
    width: 100%;
  }

  #locations-home .popup-open {
    margin-bottom: 40px;
  }

  #locations-home .popup .left-side,
  #locations-home .popup .right-side {
    width: 100%;
  }

  #locations-home .popup .left-side .state-map {
    width: auto;
    height: auto;
  }

  .asst-container {
    flex-direction: column;
  }

  .asst-container :is(.left-side, .right-side) {
    width: 100%;
  }

  #about-hearing-health .content {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  #about-hearing-health .image-wrapper {
    flex: 1;
  }

  #about-hearing-health .description {
    flex: 2;
  }
  .values-section .card-item {
    flex: 1 1 calc(50% - 20px);
  }

  .job-post-wrapper {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }

  .job-post-wrapper .left-side,
  .job-post-wrapper .middle-side,
  .job-post-wrapper .right-side {
    margin-bottom: 20px;
  }

  .referral-section .content {
    flex-direction: column;
  }
  .referral-section .content > :is(.left-side, .right-side) {
    width: 100%;
  }

  #intro-lease-section .content {
    flex-direction: column;
  }

  #intro-lease-section :is(.left-side, .right-side) {
    width: 100%;
    padding-right: 0;
  }

  #intro-lease-section .right-side {
    margin-top: 30px;
  }

  #intro-lease-section .text-wrap .quote {
    font-size: 30px;
  }
  :is(#intro-lease-section, #lease-plan) .btn.primary-btn {
    white-space: wrap !important;
    padding: 50px !important;
  }

  #payment-list-section .payment-list-wrap {
    padding: 50px 5%;
  }

  #payment-list-section .payment-list-wrap li,
  #online-hearing-test .check-hearing-wrap {
    flex-direction: column;
    gap: 14px;
  }

  #payment-list-section .payment-list-wrap li:not(:last-child) {
    margin-bottom: 60px;
  }

  #payment-list-section .primary-btn {
    width: 100%;
  }

  #filter-section .filters {
    flex-wrap: wrap;
  }
  .blog-container .blog-item {
    flex-direction: column;
    padding-right: 0;
  }
  .blog-container .blog-item :is(.blog-content, figure) {
    width: 100%;
  }
  .blog-container .blog-img-link {
    height: 200px;
  }
  .blog-container .blog-item figure {
    height: 220px;
  }
  .single-doctor .content {
    gap: 20px;
  }

  footer .right-side {
    gap: 0;
  }
  .location-form .section-heading {
    text-align: center;
  }
  .gform-body :is(input, select, textarea) {
    border: 1px solid #333;
  }
  .testimonial-career .card-item {
    margin: 0;
  }
  .reviews-container {
    width: 100%;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    margin-bottom: 0;
  }
  #tinnitus-page-main .btn {
    margin-bottom: 30px !important;
  }
	
	#testimonials-section .description p {
		font-size: 20px;
	}	
}

/* 639 to 480 screens */
@media only screen and (max-width: 639px) {
  #hero-home {
    margin-top: 70px;
    min-height: 500px;
  }
  .header-top {
    flex-direction: column;
    height: 136px;
    padding: 20px 0;
    gap: 25px;
  }
  .header-top .left-side .tel a,
  .header-top p {
    font-size: 12px;
  }
  .header-top .left-side {
    justify-content: center;
  }
  .header-top .right-side {
    justify-content: center;
    gap: 40px;
  }
  header .nav-wrapper {
    top: 220px;
  }
  .header-top .right-side .payment-link {
    width: 165px;
    justify-content: center;
    margin-left: 9px;
    background-color: var(--green-clr);
    position: relative;
  }
  .header-top .right-side .payment-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -18px;
    height: 100%;
    width: 1px;
    background-color: #fff;
  }
  #cards-section {
    margin-top: -100px;
  }
  #cards-section .phone,
  #cards-section .learn-more {
    justify-content: center;
  }
  #testimonials-section {
    min-height: 240px;
  }
  #tips-trends .btn-group {
    flex-direction: column;
  }
  #tips-trends .btn-group > * {
    width: 100%;
  }
	.newsletter-subs form {
		flex-direction: column;
	}
	.newsletter-subs :is(.gform-footer, input[type="submit"]) {
		width: 100% !important;
	}
	
	.newsletter-subs .gform-theme--foundation .gform_fields {
		flex-direction: column;
	}
	
    #news-section iframe,
	.amplification-products iframe {
		height: 240px;
	}
}

/* 479 to 320 screens */
@media only screen and (max-width: 479px) {
  .values-section .card-item {
    flex: 1 1 100%;
  }
}
