* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.map-wrapper {
  max-width: 90%;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.header {
  background-color: rgb(43, 46, 48);
  color: white;
  padding: 20px;
  text-align: center;
}
.header h1 {
  margin: 0;
  font-size: 24px;
}
.address {
  margin: 10px 0 0 0;
  font-size: 16px;
  opacity: 0.9;
}
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.info {
  padding: 20px;
  background-color: #ecf0f1;
  text-align: center;
}
.info p {
  margin: 0;
  color: #7f8c8d;
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: bold;
  color: #333;
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #4476b0;
  box-shadow: 0 0 5px rgba(68, 118, 176, 0.5);
}

.submit-btn {
  background-color: #4476b0;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #365a8a;
}

.form-message {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
}

.form-message.show {
  opacity: 1;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.close-message {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-radius: 6px;
}

.widgetOverlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows user to still click through */
  z-index: 99;
}

body {
  background-color: #202124;
  font-family: "Roboto", sans-serif;
  color: #e8eaed;
  padding: 40px;
}

.google-reviews-widget {
  background-color: #303134;
  border-radius: 12px;
  padding: 25px;
  max-width: 1200px;
  margin: auto;
  border: 1px solid #5f6368;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.rate-us-btn {
  background-color: #1a73e8;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.rate-us-btn:hover {
  background-color: #1765c1;
}

.reviews-header h2 {
  font-size: 1.5em;
  color: #e8eaed;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background-color: #171717;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #5f6368;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}

.review-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-top strong {
  font-size: 1em;
  color: #fff;
}

.stars {
  color: #fbbc04;
  font-size: 1em;
}

.review-date {
  font-size: 0.8em;
  color: #9aa0a6;
  margin-top: 2px;
}

.review-text {
  font-size: 0.95em;
  color: #e8eaed;
  line-height: 1.4em;
}

@media (max-width: 768px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .rate-us-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .google-reviews-widget {
    padding: 15px;
  }

  .review-card {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .review-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-top img {
    margin-bottom: 8px;
  }
}



.body-button a,
.header-content a,
.hero a,
.hero2 a,
.hero3 a {
  text-decoration: none;
  color: inherit;
}

body,
html {
  margin: 0px;
  padding: 0px;
  font-family: "Segoe UI", sans-serif;
  background-color: black;
  width: 100%;
  touch-action: manipulation;
}

.video-container {
  width: 100%;
  height: 100vh;
  justify-content: center;
  background: #111; /* optional canvas-like background */
  z-index: 0;
}

video {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* covers like a canvas would */
  display: block;
  opacity: 0.7;
}

.custom-header2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.98) 0%,
    rgba(20, 20, 20, 0.85) 25%,
    rgba(20, 20, 20, 0.6) 50%,
    rgba(20, 20, 20, 0.3) 75%,
    rgba(20, 20, 20, 0) 100%
  );
  color: white;
  padding: 1rem 2rem;
  z-index: 1;
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5%;
  /* background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.98) 0%,
    rgba(20, 20, 20, 0.85) 25%,
    rgba(20, 20, 20, 0.6) 50%,
    rgba(20, 20, 20, 0.3) 75%,
    rgba(20, 20, 20, 0) 100%
  ); */
  color: white;
  padding: 1rem 2rem;
  z-index: 2;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-content img {
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.header-content img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
  border: 3px solid #00bfff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
  cursor: pointer;
}

.logo {
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 7rem;
  pointer: cursor;
  z-index: 999999;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #87ceeb; /* or use your brand color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #87ceeb; /* matches underline or any color you like */
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.auth-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-buttons .signup {
  background-color: #87ceeb;
  color: white;
}

.content {
  text-align: center;
}

.auth-buttons2 {
  display: inline-block;
  margin-top: 1rem;
}

.auth-buttons2 button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
  background: rgb(103, 161, 184);
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;

  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.body-button {
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #87ceeb;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.body-button:hover {
  background: rgb(55, 179, 251);
}

.body-button > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.body-button:hover svg {
  transform: translateX(5px);
}

.body-button:active {
  transform: scale(0.95);
}

.hero {
  z-index: 1;
}

.hero-section {
  background-color: rgb(0, 33, 51);
  padding: 2rem 1rem;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

.hero-text-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  color: white;
}

.hero-subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(172, 172, 172);
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
}

.hero-section2 {
  background-color: rgb(46, 46, 46);
  padding: 2rem 1rem;
  text-align: center;
  color: white;
}

.hero-title2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hero-text-container2 {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.hero-subtext2 {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(172, 172, 172);
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
}

.hero {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  max-width: 90%;
}

.icons1 img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}

/* Hover effect */
.icons1 img:hover {
  transform: scale(1.08) translateY(-5px);
}

.logo {
  max-width: 150%;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero2 {
  background-image: url("../public/pic7.jpg"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  z-index: 1;
}

.hero2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.7
  ); /* Optional: dark overlay for readability */
  z-index: -1;
}

.space {
  height: 100px;
}

.hero3 {
  background-image: url("../public/pic8.jpg"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  z-index: 1;
}

.hero3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Optional: dark overlay for readability */
  z-index: -1;
}

.content {
  margin-top: 3rem;
  width: 90%;
}

.lead-text {
  font-size: 2rem;
  color: black;
  opacity: 0;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
  color: white;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: #4476b0;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-btn:hover {
  background-color: #335d8a;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 60px;
}

/* Section title */
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  justify-content: center;
  align-content: center;
  display: flex;
  color: white;
}

/* Row layout */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Individual column */
.feature {
  flex: 1 1 calc(33.333% - 20px);
  background: black;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

/* Icon container */
.feature {
  padding: 2rem;
  color: white;
  background-size: cover; /* or 'cover' depending on what you want */
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.feature {
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  color: white;
  overflow: hidden; /* prevents background spillover */
  z-index: 1;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* adjust this to your desired transparency */
  z-index: 0;
}

/* Unique backgrounds for each block */
.feature-bg1::before {
  background-image: url("../public/pic4.jpg");
}

.feature-bg2::before {
  background-image: url("../public/pic5.jpg");
}

.feature-bg3::before {
  background-image: url("../public/pic6.jpg");
}

.feature * {
  position: relative;
  z-index: 1;
}

.icon {
  font-size: 28px;
  color: white;
}

/* Title */
.feature-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Description */
.feature-description {
  font-size: 1rem;
  line-height: 1.6;
}

.carousel-item {
  position: relative;
  height: 300px; /* or whatever height you need */
  overflow: hidden;
}

.container-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 80px;
}

.mobileMenu {
  display: none;
}

.compact-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-size: 20px;
  line-height: 1.4;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 15px;
}

.footer-section h6 {
  color: #3498db;
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  margin: 0;
  color: #bdc3c7;
}

.social-links {
  margin-top: 8px;
}

.social-links a {
  color: #bdc3c7;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #3498db;
}

.copyright {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size: 15px;
}

/* Mobile responsive */
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .compact-footer {
    padding: 15px 0;
    font-size: 11px;
  }

  .footer-section h6 {
    font-size: 12px;
  }

  .widgetOverlay {
    height: 107%;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .feature {
    flex: 1 1 100%;
  }

  .logo {
    max-width: 100%;
  }

  #featured-3 .row {
    flex-direction: column !important;
  }
  #featured-3 .feature {
    order: 0 !important;
  }
}

@media (max-width: 650px) {
  .hamburger {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1100; /* above menu */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger div {
    background-color: white;
    height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Transform hamburger into X when active */
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Mobile menu */
  .mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* hidden off screen right */
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow: hidden;
  }

  /* Show menu when active */
  .mobileMenu.active {
    transform: translateX(0);
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-links a {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    user-select: none;
  }

  .mobile-links a:hover {
    background-color: #555;
    border-radius: 5px;
  }
  .hero {
    width: 90%;
  }

  .content {
    margin-top: 3rem;
    width: 90%;
  }

  .lead-text {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
  }

  .auth-buttons {
    display: none;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .row {
    flex-direction: column-reverse !important;
    gap: 2rem;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .icons1 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  h1.display-5 {
    font-size: 1.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
  }

  .lead.fs-4 {
    font-size: 1rem;
    text-align: justify;
  }

  .d-grid.d-sm-flex {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .body-button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .body-button svg {
    width: 24px;
    height: 24px;
  }

  .auth-buttons2 .button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%; /* Optional: makes button full width on mobile */
    text-align: center;
  }

  .auth-buttons2 .icon {
    width: 20px;
    height: 20px;
  }

  .hero2 {
    padding: 2rem 1rem;
  }

  .mobilehero2 {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .auth-buttons2 .button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .auth-buttons2 .icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }

  .d-sm-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #myCarousel .carousel-caption {
    bottom: 2rem;
    padding: 1rem;
    text-align: center;
  }

  #myCarousel h1 {
    font-size: 1.4rem;
    line-height: ;
    margin-bottom: 1rem;
  }

  #myCarousel p.fs-4 {
    font-size: 0.5rem;
  }

  .carousel-bg {
    height: 90vh;
    background-size: cover;
    background-position: center;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }

  h1.display-5 {
    font-size: 1.8rem;
    padding: 2rem 1rem;
  }

  .card-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .card-img-top {
    height: auto;
    object-fit: cover;
  }

  footer {
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
  }

  footer .row > div {
    margin-bottom: 1.5rem;
  }

  footer h5 {
    font-size: 1.1rem;
  }

  footer p {
    font-size: 0.9rem;
    margin: 0;
  }
}

@media (max-width: 445px) {
  .widgetOverlay {
    height: 86%;
  }
}
