/* ========== Global Resets ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

a {
  color: #005a87;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  color: #fbc02d;
  text-decoration: none;
}

p {
  margin: 0.75rem 0;
  line-height: 1.6;
}

.class-block p {
  margin: 1rem 0;
}

/* ========== Classes Page Header Styling ========== */
.class-block h2 {
  font-size: 1.75rem;
  /* Reduced header size */
  margin-bottom: 1.2rem;
  /* Reduced space below the header */
  color: #005a87;
  /* Restored header color */
  text-align: center;
}

.class-block h3 {
  font-size: 1.5rem;
  /* Adjusted font size */
  margin-bottom: 1rem;
  /* Adjusted space below the header */
  color: #005a87;
  text-align: center;
}

.class-block .class-notice {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* ========== Typography & Headings ========== */
h2,
h3 {
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

ul {
  list-style-position: inside;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

ul li {
  margin-bottom: 0.5rem;
}

[id] {
  scroll-margin-top: 100px;
}

.quote {
  font-style: italic;
  color: #005a87;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}



/* ========== Layout Containers ========== */
.container,
.content-wrapper,
.two-column-wrapper,
.form-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
}

.section+.section {
  margin-top: 2rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

/* ========== Header & Navigation ========== */
.site-header {
  background: #005a87;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.logo img {
  height: 60px;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #fbc02d;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: #ffd700;
  font-weight: bold;
}

.nav-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  display: none;
  cursor: pointer;
}

/* ========== General Button Styling (for both yellow and blue) ========== */
.btn {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s ease;
}

/* ========== Yellow Button Styling ========== */
.btn-yellow {
  background-color: #fbc02d;
  color: #333;
}

.btn-yellow:hover {
  background-color: #e0ac00;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== Blue Button Styling ========== */
.btn-blue {
  background-color: #005a87;
  color: white;
}

.btn-blue:hover {
  background-color: #003b5c;
  color: #fbc02d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== Animated Button Styling (for both buttons) ========== */
.animated-btn {
  position: relative;
  overflow: hidden;
}

.animated-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.animated-btn:hover::before {
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
}

.animated-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Apply the animation to both yellow and blue buttons */
.btn-yellow.animated-btn::before,
.btn-blue.animated-btn::before {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ========== Buttons Inside .notice and .cta-center ========== */
.notice .btn,
.cta-center .btn {
  display: inline-block;
  text-align: center;
}


.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.column .btn {
  margin-top: auto;
}

.column .btn:first-child {
  margin-top: 0;
}

.full-width-section-grey .column .btn {
  margin-top: 2rem;
  /* Add space above buttons */
}

/* Apply to buttons only inside .notice to make sure only yellow buttons are affected */
.notice .btn-yellow {
  background-color: #fbc02d;
  color: #333;
}

.notice .btn-yellow:hover {
  background-color: #e0ac00;
  color: #fff;
}

/* ========== Sections ========== */
.cta-section {
  text-align: center;
  padding: 4rem 1rem;
  background-image: url("img/herobg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-transform: uppercase;
}

.cta-section h2 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.full-width-section-grey,
.two-column-section,
.two-column-section-grey,
.two-column-section-blue {
  width: 100%;
  padding: 60px 0;
}

.full-width-section-grey,
.two-column-section-grey {
  background-color: #f0f0f0;
}

.full-width-section-grey .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.full-width-section-grey .column {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 22%;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
}

.full-width-section-grey .column h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.full-width-section-grey .column p {
  flex-grow: 1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
}

.full-width-section-grey .btn {
  margin-top: auto;
}

.two-column-section-blue {
  background-color: #005a87;
  color: #fff;
}

.two-column-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.column-text,
.column-image {
  flex: 0 0 50%;
}

.column-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.column-text h2 {
  font-size: 2rem;
  color: inherit;
}

/* ========== Services, Classes, Calendar, Coach Section Styling ========== */
.column.services .icon {
  color: #005a87;
}

.column.classes .icon {
  color: #28a745;
}

.column.calendar .icon {
  color: #dc3545;
}

.column.coach .icon {
  color: #8c239f;
}

.column.services .btn {
  background-color: #005a87;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.column.services .btn:hover {
  background-color: #fff;
  color: #005a87;
  border: 2px solid #005a87;
}

.column.classes .btn {
  background-color: #28a745;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.column.classes .btn:hover {
  background-color: #fff;
  color: #28a745;
  border: 2px solid #28a745;
}

.column.calendar .btn {
  background-color: #dc3545;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.column.calendar .btn:hover {
  background-color: #fff;
  color: #dc3545;
  border: 2px solid #dc3545;
}

.column.coach .btn {
  background-color: #8c239f;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.column.coach .btn:hover {
  background-color: #fff;
  color: #8c239f;
  border: 2px solid #8c239f;
}

.content-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.column {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column p {
  font-size: 14px;
  color: #555;
}

.icon {
  font-size: 36px;
  color: inherit;
}

.text {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.two-column-list {
  columns: 2;
  column-gap: 2rem;
  list-style-position: inside;
}

/* ========== Class Block Notice ========== */
.class-block.notice {
  background: #fdf8e4 !important;
  /* Ensuring yellow background with !important to override any conflicts */
  border-left: 6px solid #fbc02d !important;
  /* Ensuring yellow border with !important */
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 2rem;
}

.class-block.notice h3 {
  color: #005a87;
  margin-bottom: 1rem;
}

.class-block.notice p {
  color: #444;
  font-size: 1rem;
}

.class-list .class-block {
  margin-bottom: 2rem;
  /* Adjust space between blocks */
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.class-list .lead-paragraph {
  text-align: center;
}

/* Ensuring no conflicts by applying the above styles globally */
.page-section .class-block.notice {
  background: #fdf8e4 !important;
  border-left: 6px solid #fbc02d !important;
}

.page-section .class-block.notice .cta-center a {
  background-color: #fbc02d !important;
  color: #333 !important;
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 2rem 0;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .name {
  font-weight: bold;
  text-align: right;
}

/* ========== Sign-Up Form Cards (Form Links) ========== */
.standout-signup .form-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.standout-signup .form-link {
  display: flex;
  /* Set flexbox for form cards */
  flex-direction: column;
  /* Arrange content vertically */
  justify-content: space-between;
  /* Push content evenly */
  min-height: 200px;
  /* Ensure a minimum height */
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.standout-signup .form-link .btn {
  margin-top: auto;
  /* Push the button to the bottom */
  align-self: center;
  /* Center the button horizontally */
}

/* Other general styles for buttons */
.standout-signup .form-link p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.standout-signup .form-link .btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* Button hover effect */
}

.standout-signup .form-link a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #fbc02d;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.standout-signup .form-link a:hover {
  background-color: #e0ac00;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.form-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.form-link {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-link p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.form-link a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #fbc02d;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.form-link a:hover {
  background-color: #e0ac00;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Featured Classes Styling */
.featured-classes {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.featured-classes h2 {
  font-size: 2rem;
  color: #005a87;
  margin-bottom: 1.5rem;
  text-align: center;
}

.featured-classes .class-notice {
  font-weight: bold;
  color: #fbc02d;
  text-align: center;
  margin-bottom: 1.5rem;
}

.featured-classes ul {
  list-style-type: none;
  padding-left: 0;
}

.featured-classes ul li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.featured-classes ul li strong {
  color: #005a87;
}

.featured-classes .cta-center {
  text-align: center;
  margin-top: 2rem;
}

.featured-classes .cta-center a {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: #fbc02d;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.featured-classes .cta-center a:hover {
  background-color: #e0ac00;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-classes p {
  font-size: 1rem;
  color: #555;
}

/* ========== Forms ========== */
.contact-form-section {
  background-image: url("img/sf-tennis.png");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.form-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-success {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 4px solid #28a745;
  background-color: #e9fbe9;
  color: #155724;
  font-weight: 600;
  border-radius: 6px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
}

.contact-page-section {
  width: 100%;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f2f7 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-page-section .form-wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-page-section .form-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-page-section .form-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #005a87;
  font-size: 2rem;
}

/* ========== Jump Links ========== */
.jump-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.jump-links a {
  padding: 0.5rem 1.25rem;
  background-color: #f1f1f1;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jump-links a:hover {
  background-color: #fbc02d;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Ensure the links are visually separated */
.jump-links a {
  margin-top: 1rem;
}

/* ========== Responsive ========== */
@media (max-width: 600px) {
  .jump-links a {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    /* Adjust for mobile readability */
  }
}

/* ========== Footer ========== */
.site-footer {
  background-color: #000;
  color: #ddd;
  padding: 4.5rem 1rem;
}

.site-footer a {
  color: #ddd;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.footer-icon {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-nav {
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-nav li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a i {
  font-size: 1.2rem;
  color: #ddd;
  transition: color 0.3s ease;
}

.social-icons a:hover i {
  color: #fff;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {

  .content-wrapper,
  .testimonials-grid,
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .two-column-wrapper {
    flex-direction: column;
  }

  .main-nav ul {
    flex-direction: column;
    position: absolute;
    background: #005a87;
    top: 80px;
    right: 0;
    width: 200px;
    display: none;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .main-nav ul.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {

  .content-wrapper,
  .testimonials-grid,
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========== Pop-up Banner Styling as Card ========== */
#popup-banner {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background-color: #fbc02d !important;
  /* Keep yellow background */
  color: #333 !important;
  /* Dark text for contrast */
  padding: 2rem !important;
  /* Padding inside the card */
  width: 90% !important;
  /* Increased width to make the card wider */
  max-width: 800px !important;
  /* Set a larger max-width for the card */
  text-align: center !important;
  font-size: 1.1rem !important;
  border-radius: 10px !important;
  /* Rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  /* Soft shadow */
  z-index: 9999 !important;
  display: flex !important;
  /* Use flexbox for layout */
  flex-direction: column !important;
  justify-content: space-between !important;
  height: auto !important;
  max-height: 500px !important;
  /* Limit the height */
  visibility: hidden !important;
  /* Make it hidden by default */
}

#popup-banner.visible {
  visibility: visible !important;
  /* Make it visible when needed */
}

#popup-banner .message {
  font-weight: 600 !important;
  margin-bottom: 2rem !important;
  /* Space between message and button */
  line-height: 1.6 !important;
  /* Add spacing between lines for readability */
}

#popup-banner button {
  background-color: #005a87 !important;
  /* Blue background for the button */
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  border-radius: 4px !important;
  transition: background-color 0.3s ease !important;
  align-self: center !important;
  /* Ensure the button is centered */
  margin-top: auto !important;
  /* Ensure the button is always at the bottom */
}

#popup-banner button:hover {
  background-color: #003b5c !important;
  /* Darker blue on hover */
}

/* ========== Target only classes.html (with .classes-2col-page) ========== */
.classes-2col-page .content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 equal-width columns */
  gap: 30px;
  /* Increased space between the cards */
}

/* ========== Column Card Styling for 2-Column Layout ========== */
.classes-2col-page .column {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  /* More padding inside the cards */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 250px;
  /* Minimum width to ensure they don’t get too small */
  width: 100%;
  /* Ensure the column uses the full width available */
  max-width: none;
  /* Remove any max-width restrictions */
}

/* ========== Target only pages with .classes-3col-page ========== */
.classes-3col-page .content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Now 3 equal-width columns */
  gap: 25px;
}

/* Narrower card styling for 3-column layout */
.classes-3col-page .column {
  padding: 20px;
  max-width: none;
  min-width: 0;
}

.classes-3col-page .impact {
  font-weight: semi-bold;
  color: #005a87 !important;
  font-style: italic;
}

/* Icon styling */
.classes-2col-page .icon {
  font-size: 50px;
  /* Larger icon size */
  color: #005a87;
}

/* Text styling inside cards */
.classes-2col-page .text {
  font-size: 1.5rem;
  color: #005a87;
}

.classes-2col-page .column p {
  margin: 0.5rem 0;
  /* Reduce the top and bottom margin */
  line-height: 1.4;
  /* Adjust line-height for more compact text */
}

.classes-2col-page .impact {
  font-weight: bold;
  color: #005a87;
  font-style: italic;
}

/* Button styling inside cards */
.classes-2col-page .btn {
  background-color: #005a87;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

/* Button hover */
.classes-2col-page .btn-blue {
  background-color: #005a87;
}

.classes-2col-page .btn-blue:hover {
  background-color: #003b5c;
}

/* ========== Responsive Styles - Stack in 1 Column on Small Screens ========== */
@media (max-width: 768px) {
  .classes-2col-page .content-wrapper {
    grid-template-columns: 1fr;
    /* Stack columns into 1 column on smaller screens */
  }
}

@media (max-width: 768px) {
  .classes-3col-page .content-wrapper {
    grid-template-columns: 1fr;
  }
}