.elementor-18 .elementor-element.elementor-element-cb1d3cf{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-18 .elementor-element.elementor-element-cb1d3cf > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-18 .elementor-element.elementor-element-0425af3:not(.elementor-motion-effects-element-type-background), .elementor-18 .elementor-element.elementor-element-0425af3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6E9E1;}.elementor-18 .elementor-element.elementor-element-0425af3{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-18 .elementor-element.elementor-element-0425af3 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-18 .elementor-element.elementor-element-e9047cd{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-18 .elementor-element.elementor-element-e9047cd > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-18 .elementor-element.elementor-element-ca0c000:not(.elementor-motion-effects-element-type-background), .elementor-18 .elementor-element.elementor-element-ca0c000 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6E9E1;}.elementor-18 .elementor-element.elementor-element-ca0c000{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-18 .elementor-element.elementor-element-ca0c000 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-0dadc6f *//* ============================
      HERO SECTION
============================ */
.hero {
  background: linear-gradient(90deg, #fff8f2 50%, #ffffff 50%);
  padding: 100px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-content h1 {
  font-size: 45px !important;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #d7522d;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  background: #d7522d;
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(215, 82, 45, 0.3);
}

.btn:hover {
  background: #b8401f;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(215, 82, 45, 0.4);
}

/* ============================
   ✅ HERO IMAGE (Perfect About-like)
============================ */
.hero-image img {
  width: 500px !important;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  transition: 0.3s ease;
  animation: float 3s ease-in-out infinite;
  object-fit: cover; /* ✅ Better handling */
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Floating Animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ============================
      RESPONSIVE
============================ */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 40px !important;
  }
  .hero-image img {
    width: 30px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    background: #fff8f2;
    padding: 80px 6%;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px !important;
  }

  .hero-image img {
    width: 280px !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px !important;
  }
  .hero-image img {
    width: 230px !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8d7f3cd *//* ABOUT SECTION */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 8%;
  background: #fff;
  flex-wrap: wrap;
  gap: 50px;
}

/* LEFT CONTENT */
.about-content {
  max-width: 550px;
}

.about-content h2 {
  font-size: 36px;
  color: #222;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-content h2 span {
  color: #D8662A; /* Brand Orange */
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BULLET POINTS */
.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.about-content ul li {
  margin: 10px 0;
  font-size: 15px;
  color: #333;
  padding-left: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* BUTTON */
.about-content .btn {
  display: inline-block;
  padding: 12px 22px;
  background: #D8662A; 
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: .25s;
}

.about-content .btn:hover {
  background: #b9541d; /* Darker hover */
}

/* RIGHT IMAGE */
.about-image img {
  width: 480px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  animation: zoomInOut 6s ease-in-out infinite; /* 👈 Added Animation */
}

/* ✅ Zoom-in & Zoom-out Animation */
@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image img {
    width: 300px;
  }
  
  .about-content ul li {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .about-content h2 {
    font-size: 28px;
  }
  .about-image img {
    width: 240px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3234f1f *//* SECTION WRAPPER */
.mh-services-section {
  font-family: 'Inter', sans-serif;
  max-width: 1100px;
  margin: 70px auto; /* Updated for better spacing */
  padding: 0 20px;

  /* ✅ Scroll fix only for this section */
  scroll-margin-top: 100px; 
}

/* TITLE SECTION */
.mh-title {
  text-align: center;
  margin-bottom: 25px;
}
.mh-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: #cf542d;
  margin-bottom: 6px;
}
.mh-title p {
  color: #555;
  font-size: 15px;
  margin: 0;
}

/* GRID LAYOUT */
.mh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* SERVICE CARD */
.mh-card {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(12, 20, 40, 0.06);
  transition: 0.25s;
}
.mh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(12, 20, 40, 0.12);
}

/* ICON */
.mh-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: #D8662A; /* Brand Orange */
}

/* HEADING */
.mh-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #D8662A;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.mh-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .mh-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .mh-services-grid {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Header height */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5de1619 *//* === SECTION BASE === */
.pricing-section {
  background: #fffaf6;
  padding: 100px 8%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-title h2 {
  font-size: 36px;
  color: #222;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title p {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

/* === PRICING GRID === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(215, 82, 45, 0.25);
  border-color: #d7522d;
}

.pricing-card h3 {
  color: #d7522d;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #d7522d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* === INCLUDE SECTION === */
.include-section {
  text-align: center;
}

.include-title h4 {
  font-size: 22px;
  color: #222;
  font-weight: 700;
  margin-bottom: 25px;
  background: #000;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.include-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  color: #444;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.include-item:hover {
  border-color: #d7522d;
  box-shadow: 0 5px 14px rgba(215, 82, 45, 0.2);
  transform: translateY(-4px);
}

.include-item i {
  color: #d7522d;
  font-size: 22px;
  margin-bottom: 10px;
}

.include-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* === HIGHLIGHT NOTE === */
.note-highlight {
  background: #d7522d;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 35px;
  box-shadow: 0 4px 10px rgba(215, 82, 45, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }
  .pricing-card h3 {
    font-size: 20px;
  }
  .include-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2c4fabe *//* ============================
   WEBSITE PRICING SECTION
============================ */

/* SECTION WRAPPER */
.mh-pricing-section {
  font-family: 'Inter', sans-serif;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* TITLE */
.mh-pricing-section .mh-title {
  text-align: center;
  margin-bottom: 35px;
}

.mh-pricing-section .mh-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #cf542d;
  margin-bottom: 8px;
}

.mh-pricing-section .mh-title p {
  color: #555;
  font-size: 16px;
  margin: 0;
}

/* GRID LAYOUT */
.mh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* PRICE CARD */
.mh-price-card {
  background: #ffffff;
  border: 1px solid #f0e6df;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 50, 0.06);
  transition: 0.25s ease;
}

.mh-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(15, 23, 50, 0.15);
}

/* CARD HEADING */
.mh-price-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #D8662A;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* FEATURES LIST */
.mh-price-card ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: #444;
  font-size: 14px;
  line-height: 1.55;
}

.mh-price-card ul li {
  margin-bottom: 6px;
}

/* NOTE */
.mh-price-card .note {
  font-size: 13px;
  color: #6a6a6a;
  background: #fff5ec;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.5;
  border-left: 3px solid #D8662A;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .mh-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-pricing-section .mh-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .mh-pricing-grid {
    grid-template-columns: 1fr;
  }

  .mh-price-card {
    padding: 20px;
  }
}
.mh-pricing-section {
  font-family: 'Inter', sans-serif;
  max-width: 1100px;
  margin: 15px auto; /* ✅ further reduced top margin */
  padding: 0 20px;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-e9047cd */.mh-price-card {
  position: relative;
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 50, 0.06);
  transition: 0.35s;
  text-align: left;
  z-index: 1;
  overflow: hidden;
}

/* Animated Gradient Border */
.mh-price-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #D8662A, #ffb88a, #D8662A);
  background-size: 300% 300%;
  animation: borderMotion 6s ease infinite;
  border-radius: 16px;
  z-index: -1;
}

@keyframes borderMotion {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Inner white mask to keep the card clean */
.mh-price-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 12px;
  z-index: -1;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-79f7d9e *//* SECTION WRAPPER */
.mh-dm-section {
  font-family: 'Inter', sans-serif;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* TITLE */
.mh-dm-section .mh-title {
  text-align: center;
  margin-bottom: 30px;
}
.mh-dm-section .mh-title h2 {
  font-size: 30px;
  color: #cf542d;
  margin-bottom: 5px;
}
.mh-dm-section .mh-title p {
  color: #555;
  font-size: 15px;
}

/* LIST WRAPPER */
.mh-dm-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* PRICE ITEM BOX */
.mh-dm-item {
  background: #fff;
  border: 1px solid #f2e7df;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 50, 0.06);
  transition: .25s ease;
}
.mh-dm-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(15, 23, 50, 0.12);
}

/* HEADINGS */
.mh-dm-item h3 {
  font-size: 18px;
  color: #D8662A;
  font-weight: 600;
  margin-bottom: 6px;
}

/* PRICE RANGE */
.mh-dm-item .price-range {
  font-size: 15px;
  font-weight: 600;
  color: #2B2B2B;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.mh-dm-item .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.45;
}

/* NOTICE BOX */
.mh-notice {
  margin-top: 30px;
  text-align: center;
  background: #fff6ef;
  color: #D8662A;
  padding: 12px 16px;
  border: 1px solid #f2d4c4;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mh-dm-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .mh-dm-list {
    grid-template-columns: 1fr;
  }
  .mh-notice {
    font-size: 13px;
    padding: 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6a0cc0f *//* WHY CHOOSE US */
.why {
  padding: 100px 10%;
  background: #fff;
  text-align: center;
}

.why .section-title h2 {
  font-size: 34px;
  color: #222;
}

.why .section-title h2 span {
  color: #d7522d;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: #fff8f2;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(215,82,45,0.15);
}

.why-card img {
  width: 60px;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 18px;
  color: #d7522d;
  margin-bottom: 10px;
}

.why-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc846a4 *//* CONTACT SECTION */
.contact {
  background: #fff8f2;
  padding: 100px 8%;
  text-align: center;
}/* ==============================
   CONTACT SECTION
============================== */
.contact {
  background: #fff8f2;
  padding: 90px 8%;
  text-align: center;
}

/* Content Wrapper */
.contact-container.single {
  max-width: 800px;
  margin: 0 auto;
}

/* Heading */
.contact h2 {
  font-size: 42px;
  color: #222;
  margin-bottom: 15px;
}

.contact h2 span {
  color: #d7522d;
}

/* Paragraph (description) */
.contact p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 17px;
}

/* Contact Details */
.contact-info p {
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
}

/* Social Links */
.social-links {
  margin-top: 25px;
}

.social-links a {
  display: inline-block;
  font-size: 28px;
  color: #d7522d;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #b8401f;
  transform: translateY(-3px);
}

/* ==============================
   ✅ MOBILE RESPONSIVE DESIGN
============================== */
@media (max-width: 768px) {
  .contact {
    padding: 70px 6%;
  }

  .contact h2 {
    font-size: 30px;
  }

  .contact p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .social-links a {
    font-size: 24px;
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 60px 6%;
  }

  .contact h2 {
    font-size: 26px;
  }

  .contact p {
    font-size: 14px;
  }

  .social-links a {
    font-size: 22px;
    margin: 0 6px;
  }
}

@media (max-width: 360px) {
  .contact h2 {
    font-size: 24px;
  }
  
  .contact p {
    font-size: 13.5px;
  }

  .social-links a {
    font-size: 20px;
  }
}


.contact-container.single {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 42px;
  color: #222;
  margin-bottom: 15px;
}

.contact h2 span {
  color: #d7522d;
}

.contact p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 17px;
}

.contact-info p {
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
}

/* Social Links */
.social-links {
  margin-top: 25px;
}

.social-links a {
  display: inline-block;
  font-size: 26px;
  color: #d7522d;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #b8401f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 34px;
  }
  .contact p {
    font-size: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-87f1074 *//* =============================
   MUHANAA FORM STYLE - COMPACT VERSION
=============================*/

.frm_forms form {
  max-width: 460px;
  margin: 0 auto;
  padding: 20px 25px;
  background: #fff8f2;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #ffe3d6;
}

/* Reduce vertical spacing */
.frm_form_field {
  margin-bottom: 10px !important;
}

/* Labels */
.frm_forms label {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 13.5px;
  margin-bottom: 4px;
  display: block;
}

/* Input fields */
.frm_forms input[type="text"],
.frm_forms input[type="email"],
.frm_forms input[type="tel"],
.frm_forms textarea {
  width: 100% !important;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ffd2c2;
  border-radius: 6px;
  background: #fff;
  transition: 0.3s ease;
  color: #333;
  line-height: 1.4;
}

/* Compact textarea */
.frm_forms textarea {
  min-height: 80px;
  resize: vertical;
}

/* Focus effect */
.frm_forms input:focus,
.frm_forms textarea:focus {
  border-color: #d7522d;
  box-shadow: 0 0 0 2px rgba(215, 82, 45, 0.12);
  outline: none;
}

/* Submit button */
.frm_submit button {
  background: #d7522d;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

.frm_submit button:hover {
  background: #b63e20;
}

/* First & Last Name side by side */
.frm_first_half,
.frm_last_half {
  width: 48% !important;
  display: inline-block !important;
  vertical-align: top;
  margin-right: 2% !important;
}

.frm_last_half {
  margin-right: 0 !important;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .frm_first_half,
  .frm_last_half {
    width: 100% !important;
    margin-right: 0 !important;
    display: block !important;
  }
}

/* Placeholder text */
.frm_forms ::placeholder {
  color: #999;
  font-size: 13px;
}

/* Optional title or heading */
.frm_forms h3, .frm_forms h2 {
  color: #d7522d;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
}/* End custom CSS */