
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  min-height: 9.6rem;
  padding: 1.4rem 3.8rem;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e5ebef;
}

.logo {
  height: 5.2rem;
  flex-shrink: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: #1d2d35;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.15;
}

.brand-copy span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #5f6872;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.2rem;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav {
  min-width: 0;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  color: rgb(14, 14, 14);
  flex-wrap: nowrap;
}

.main-nav-item {
  position: relative;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #1d2d35;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.main-nav-item--has-submenu > .main-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.main-nav-item--has-submenu > .main-nav-link::before {
  display: none;
}

.main-nav-item--has-submenu > .main-nav-link::after {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
  transition: transform 0.2s ease;
}

.main-nav-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 1.8rem);
  left: 0;
  min-width: 26rem;
  padding: 1.4rem 0;
  background: #ffffff;
  border: 1px solid #e5ebef;
  border-radius: 1.6rem;
  box-shadow: 0 1.8rem 3.8rem rgba(17, 26, 49, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 20;
}

.main-nav-item--has-submenu:hover .main-nav-submenu,
.main-nav-item--has-submenu:focus-within .main-nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav-item--has-submenu:hover > .main-nav-link::after,
.main-nav-item--has-submenu:focus-within > .main-nav-link::after {
  transform: rotate(225deg) translateY(-0.1rem);
}

.main-nav-sublink:link,
.main-nav-sublink:visited {
  display: block;
  padding: 1.1rem 1.8rem;
  text-decoration: none;
  color: #1d2d35;
  font-size: 1.45rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav-sublink:hover,
.main-nav-sublink:active {
  background: #eef6f1;
  color: #0f5f31;
}

.main-nav-link:not(.nav-cta):before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1c8d23;
  transition: width 0.25s ease;
  transition: width 0.25s ease;
}

.main-nav-link:not(.nav-cta):hover:before {
  width: 100%;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #1c8d23;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.2rem;
  border-radius: 999px;
  color: #fff;
  background-color: #1c8d23;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  box-shadow: 0 1.2rem 2.4rem rgba(28, 141, 35, 0.2);
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #167a1e;
  box-shadow: 0 4px 10px rgba(28, 141, 35, 0.4);
  transform: translateY(-1px);
}

.btn-mobile-nav {
  border: none;
  background: #13213a;
  cursor: pointer;
  font: inherit;
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  border: 0;

  display: none;
}

.section-service {
  background-image:
    radial-gradient(circle at top left, rgba(74, 177, 164, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(14, 32, 46, 0.58) 0%, rgba(14, 32, 46, 0.34) 36%, rgba(14, 32, 46, 0.14) 60%, rgba(14, 32, 46, 0.08) 100%),
    url("../img/gallery/therapy-centre-hero.png");
  background-size: auto, auto, cover;
  background-position: top left, center center, center center;
  background-repeat: no-repeat;
  padding: 7.2rem 0 8rem 0;
  overflow: hidden;
}

.service {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  align-items: center;
}

.service--background {
  min-height: 64rem;
  padding: 4.8rem 0;
}

.service-text-box {
  position: relative;
  z-index: 1;
}

.service-overlay-card {
  max-width: 69rem;
  padding: 3.2rem 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge--inline {
  position: static;
  display: inline-flex;
  margin: 0 0 2.2rem;
}

.service-text-box .heading-primary {
  max-width: 78rem;
  color: #ffffff;
  text-shadow: 0 0.6rem 1.8rem rgba(15, 24, 37, 0.3);
}

.service-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 3.2rem;
  max-width: 60rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0.4rem 1.2rem rgba(15, 24, 37, 0.22);
}

.service-img {
  width: 100%;
}

.hero-image-panel {
  position: relative;
  border-radius: 2.8rem;
  padding: 3.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(232, 243, 248, 0.95));
  box-shadow: 0 2.4rem 5.4rem rgba(18, 37, 64, 0.12);
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: #1c8d23;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 1rem 2rem rgba(28, 141, 35, 0.22);
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 2.4rem 0 0;
}

.hero-points li {
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(3px);
}

.delivered-service {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0.4rem 1.2rem rgba(15, 24, 37, 0.24);
  backdrop-filter: blur(3px);
}

.delivered-text span {
  color: #ffffff;
  font-weight: 700;
}


.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}


.section-how {
  padding-top: 10rem;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;

  padding-bottom: 60%;

  background-color: #f4f6fb;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #e1e4fd;
  z-index: -1;
}

.step-img1 {
  width: 38%;
}

.step-img2 {
  width: 25%;
}


.doctor-service {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.doctor-service:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.doctor-service-content {
  padding: 2rem;
}

.doctor-details {
  font-size: 15px;
  line-height: 1.2;
  text-align: justify;
}

.doctor-service-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegetarian {
  background-color: #51cf66;
}

.tag--vegan {
  background-color: #94d82d;
}

.tag--paleo {
  background-color: #ffd43b;
}

.doctor-service-title {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}

.doctor-service-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.doctor-service-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.doctor-service-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}

.doctor-service-img {
  width: 100%;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

.section-testimonials {
  background-color: #fdf2e9;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}


.section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #676f77;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

.section-cta {
  padding: 4.8rem 0 4.8rem
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #ffffff, #a0a8bb);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #140b2f;
}

.cta .heading-secondary {
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-contact-points {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  font-size: 1.7rem;
  line-height: 1.8;
}

.page-form-alert {
  margin-bottom: 2.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: 9px;
  background: #eef6f1;
  border: 1px solid #cfe4d6;
  color: #0f5f31;
  font-size: 1.6rem;
  line-height: 1.6;
}

.cta-img-box {
  background-image: linear-gradient(to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)),
    url("../img/gallery/appointment.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #ffffff;
  border-radius: 9px;
  box-shadow:0 1px 1px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.1rem rgba(247, 249, 249, 0.5);
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid #eeeeee;
  background-color: #111a31;
}

.grid--footer {
  grid-template-columns: 5fr 2fr 1.5fr;
  column-gap: 1rem;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  /* gap: 0.1rem; */
  height: 0;
  padding-top: 0.25rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  font-size: x-large;
}

.copyright {
  font-size: 12px;
  line-height: 1.6;
  color: #767676;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-follow-heading {
  margin-top: 1.8rem;
  margin-bottom: 1.2rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #979c9f;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link:link,
.footer-link:visited,
.footer-link {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: color 0.2s;
}

.footer-link:hover,
.footer-link:active {
  color: #aaaaaa;
}

/* Footer button social links */
.footer .link-button {
  color: #767676;
  font-size: 2rem;
}

.footer .link-button:hover {
  color: #aaaaaa;
}

/* Reset social-links height for footer */
.footer .social-links {
  height: auto;
  padding: 0;
  gap: 1.2rem;
  align-items: center;
}

.footer-social-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7dfea !important;
  font-size: 1.5rem !important;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.footer-social-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f3056 0%, #284778 100%);
  color: #ffffff;
  flex-shrink: 0;
}

.footer-social-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}


.notification-top-bar {
  position: relative;
  width: 100%;
  background: #1a2340;
  color: #fff;
  font-family: sans-serif;
  font-size: 13px;
  padding: 0.9rem 2rem;
}

.notification-container {
  max-width: 130rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: sans-serif;
  width: 100%;
}

.top-bar-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.top-bar-right {
  justify-content: flex-end;
}

.top-meta-text {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
}

/* Target both <a> and <button> in notification bar */
.notification-top-bar .phone_a,
.notification-top-bar .whatsapp_a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: auto;
  color: #e0e6f0;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.notification-top-bar .phone_a:hover,
.notification-top-bar .whatsapp_a:hover {
  color: #ffffff;
}

.notification-top-bar .phone_a .header_i_btn {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3b5998;
  border-radius: 999px;
  transition: background 0.2s;
}

.notification-top-bar .phone_a:hover .header_i_btn {
  background: #4a6fb5;
}

.notification-top-bar .whatsapp_a .header_i_btn {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  transition: background 0.2s;
}

.notification-top-bar .whatsapp_a:hover .header_i_btn {
  background: #1fb855;
}

.top-icon-chip {
  color: #ffffff;
}

.top-icon-svg {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}

.social-icon-svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

/* Social links in notification bar */
.notification-top-bar .social-links,
.top-social-links {
  height: auto;
  padding: 0;
  gap: 1rem;
  align-items: center;
}

.notification-top-bar .social-links a {
  color: #cdd9ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.notification-top-bar .social-links a:hover {
  color: #ffffff;
}
/* Doctor subtitle */
.doctor-service-subtitle {
  font-size: 1.3rem;
  color: #1c8d23;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ Section */
.section-faq {
  padding: 6rem 0 7rem;
  background-color: #f8fafb;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.faq-item[open] {
  border-color: #1c8d23;
}

.faq-question {
  font-size: 1.7rem;
  font-weight: 600;
  color: #2c3e50;
  padding: 2rem 2.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 2.2rem;
  font-weight: 300;
  color: #1c8d23;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1.6rem;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  padding: 0 2.4rem 2rem;
}

.google-map {
  padding-bottom: 50%;
  position: relative;
}

.google-map iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
