* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding:0 20px;
  
}

@media (max-width: 1024px) {
   .container {
    padding: 0 40px;
   }
}

@media (max-width: 576px) {
   .container {
    padding: 0 16px;
   }
}

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 25px 0;
    }
}

/* Topbar */
.topbar {
  background-color: #1F2635;
  color: whitesmoke;
  padding: 10px 0;
  font-size: 13px;
}

.topbar-left {
  display: block;
}

@media (max-width: 576px) {
  .topbar-left {
    display:none;
  }
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left,
.topbar-center,
.topbar-right {
  flex: 1 1 100%;
  text-align: center;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px;
  text-decoration: none;
  color: #1F2635;
}

.social-icons a:hover {
  background-color: #0f6580;
  color: #ffffff;
}

.timing {
  color: white;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topbar-left,
  .topbar-center,
  .topbar-right {
    flex: 1;
    text-align: left;
  }

  .topbar .container {
    flex-wrap: nowrap;
    gap: 0;
  }

  .topbar-center {
    text-align: center;
  }

  .topbar-right {
    justify-content: flex-end;
  }
}

/* Header */
.main-header {
  background-color: white;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #001b44;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0077b6;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: white;
  list-style: none;
  padding: 10px 0;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.dropdown-menu li {
  padding: 8px 20px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.book-btn {
  background-color: #263C58;
  padding: 12px 14px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s;
}

.book-btn:hover {
  background-color: #0f6580;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #001b44;
  border-radius: 2px;
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.3s ease-in-out;
  display: none;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
  display: flex;
}

.close-btn {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
  margin-left: auto;
}

.mobile-nav {
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}

.mobile-nav li {
  list-style: none;
}

.mobile-nav a {
  color: #001b44;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .desktop-nav,
  .desktop-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 40px;
  }

  .main-header .container {
    justify-content: space-between;
  }
}

/* HERO SECTION */
.hero {
  background-color: #fff;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}



.hero-text {
  flex: 1 1 65%;
  max-width: 650px;
}

.hero-rating,
.subheading,
.hero-features,
.note {
  display: block;
}

.stars {
  color: #ffc107;
  font-size: 25px;
}

/* .hero-text h1 {
  font-size: 50px;
  font-weight: 800;
  color: #2e5375;
  line-height: 1.1;
  margin-bottom: 25px;
  display: block;
} */
.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    color: #2e5375;
    line-height: 1.1;
    margin-bottom: 25px;
    display: block;
    padding-top: 40px !important;
}

.price {
  color: #00c8ff;
}

.subheading {
  font-size: 18px;
  color: #001b44;
  margin-bottom: 20px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.hero-features li {
  font-size: 16px;
  color: #2e5375;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features i {
  color: #00c8ff;
}

.note {
  font-size: 15px;
  color: #222;
}

.note del {
  color: #666;
}

.mobile-overlay-text {
  display: none;
}

.hero-image {
  flex: 1 1 50%;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* FORM */
.form-container {
  max-width: 1200px;
  background: white;
  padding: 20px;
  margin: -250px auto 0;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(15, 131, 152, 0.748);
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-row:first-child {
  grid-template-columns: repeat(4, 1fr);
}

.form-input {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #999;
}

select.form-input {
  color: #999;
}

.submit-btn {
  background-color: #263C58;
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  grid-column: span 1;
}

.submit-btn:hover {
  background-color: #0f6580;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 1400px) {
.form-container  {
  margin: -100px auto 0;
}
}

@media (max-width: 1240px) {
.form-container  {
  margin: -30px auto 0;
}
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 20px;
    flex-wrap: nowrap;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .form-container {
    max-width: 900px;
    margin: -50px auto 0;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-image {
    order: 1;
    width: 100%;
  }

  .form-container {
    order: 3;
    width: 100%; 
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row:first-child {
    grid-template-columns: repeat(2, 1fr);
  }

  .submit-btn {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .hero-text {
    display: none; 
  }

  .hero-image {
    width: 100%;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: 230px;
    border-radius: 8px;
    object-fit: cover;
  }

.mobile-overlay-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  animation: fadeInUp 0.8s ease-in-out;
}

.mobile-overlay-text h1 {
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.437);
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-block;
  max-width: 90%;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

  @media (max-width: 576px) {

    .hero-image {
      margin-top: -20px;
    }
  .form-container {
    width: 100%;
    padding: 20px 10px;
    margin-top: -8px;
    box-sizing: border-box; 
    overflow-x: hidden;      
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  

  .form-input {
    width: 100%;
  }

  .submit-btn {
    grid-column: span 1;
  }
}
}
        /* promotion */
.checkup-section {
  text-align: center;
  background-color: #fff;
  padding: 0 10px;
}

.checkup-section h2 {
  font-size: 2.6rem;
  color: #3b5e84;
  font-weight: 600;
  margin-bottom: 0 18px;
}

.checkup-section .subtext {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.services {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.services article {
  max-width: 373px;
}

.services article img {
  width: 100%;
  border-radius: 6px;
  height: 250px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.service-title {
  background-color: #00cfff;
  color: white;
  font-weight: bold;
  padding: 10px 12px;
  margin-top: 10px;
  font-size: 1rem;
}

.services article p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
text-align: start;
}

.total-time {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #002b5c;
  gap: 12px;
}

.total-time img {
  width: 40px;
  height: 40px;
}


@media (max-width: 992px) {
  .checkup-section h2 {
    font-size: 2.2rem;
  }

  .checkup-section .subtext {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .services {
    gap: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .checkup-section h2 {
    font-size: 2rem;
  }

  .services {
    flex-direction: column;
    align-items: center;
  }

  .services article {
    width: 90%;
    max-width: 500px;
  }

  .total-time {
    flex-direction: column;
    gap: 8px;
    font-size: 1.2rem;
  }

  .total-time img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 576px) {
  .checkup-section h2 {
    font-size: 1.4rem;
  }

  .checkup-section .subtext {
    font-size: 1rem;
  }
.services article {
  width: 100%;
}

  .service-title {
    font-size: 0.95rem;
  }

  .services article p {
    font-size: 0.95rem;
  }
}


/* Testimonials */
.testimonial-section {
  position: relative;
  background-color: #e6f7ff;
}

.testimonial-section h2 {
  font-size: 2.6rem;
  color: #3b5e84;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  flex-shrink: 0;
}

.avatar {
  background-color: #0a1a3a;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info h4 {
  font-size: 1rem;
  margin: 0;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.stars {
  color: #00c46f;
  font-size: 25px;
  margin: 10px 0;
}

.branch {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.slider-buttons {
  position: absolute;
  right: 80px;
  bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 1;
}

.slider-buttons button {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}

.slider-buttons button:hover {
  background-color: #f0f0f0;
}

@media (max-width: 992px) {
  .testimonial-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .testimonial-container {
    gap: 20px;
    padding: 0 20px;
  }

  .testimonial-card {
    width: 260px;
  }

  .slider-buttons {
    right: 20px;
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 2rem;
  }

  .testimonial-container {
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

 .find-right {
    width: 100%;
    min-height: 100%;
  }

  .testimonial-card {
    width: 240px;
    padding: 16px;
  }

  .slider-buttons {
    right: 16px;
    bottom: 5px;
    gap: 10px;
  }

  .slider-buttons button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .testimonial-section h2 {
    font-size: 1.4rem;
  }

  .testimonial-card {
    width: 85vw;
    max-width: 300px;
  }

  .testimonial-container {
    gap: 14px;
  }

  .slider-buttons {
    position: relative;
    justify-content: center;
    margin-top: 20px;
    bottom: auto;
    right: auto;
  }
}

/* find us */
.find-section {
  background-color: white;
}

.find-container {
  width: 1200px;
  margin: 0 auto;
}

.find-section h2 {
  font-size: 2.6rem;
  color: #3b5e84;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.find-section .subtext {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 50px;
  margin: 0 auto;
  text-align: center;
  width: 55%;
}

.find-content {
  display: flex;
  padding-top: 40px;
  gap: 30px;
}

.find-left {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.find-right {
  flex: 1;
  min-height: 450px;
  width: 100%;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.branch-box {
  background-color: white;
  border: 1px solid #cce7f1;
  padding: 20px;
  width: 100%;
  font-family: Arial, sans-serif;
  color: #1a3d5d;
  border-radius: 5px;
}

.branch-box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #031b4e;
  margin-bottom: 15px;
}

.branch-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-box li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 15px;
  color: #1a3d5d;
}

.branch-box .icon {
  color: #00b7f1;
  font-size: 18px;
}

.branch-box a {
  color: #1a3d5d;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .find-container {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .find-content {
    flex-direction: column;
  }

  .find-section .subtext {
    width: 80%;
    font-size: 1.1rem;
  }

  .find-left {
    width: 100%;
    align-items: center;
  }

  .find-right {
    width: 100%;
    min-height: 100%;
  }

  .branch-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .find-section h2 {
    font-size: 2rem;
  }

  .find-section .subtext {
    font-size: 1rem;
    width: 90%;
    margin-bottom: 40px;
  }

  .branch-box h3 {
    font-size: 18px;
  }

  .branch-box li {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .find-section h2 {
    font-size: 1.4  rem;
  }

  .branch-box {
    padding: 16px;
  }

.find-right iframe {
  width: 100%;
}

  .find-section .subtext {
    font-size: 0.95rem;
    width: 95%;
    margin-bottom: 0px;
  }


  .branch-box li {
    font-size: 13px;
  }
}


/* appointment 2 */
.appointment-section {
  background-color: #e6f9ff;
  padding: 80px 20px;
  box-sizing: border-box;
}

.appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.appointment-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}

.appointment-form input,
.appointment-form select {
  padding: 15px;
  border: 1px solid #bce3f5;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.appointment-form input[type="date"] {
  color: #888;
}

.appointment-form [type=submit] {
  padding: 18px;
  background-color: #263C58 !important;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.appointment-form button:hover {
  background-color: #0f6580;
}

.appointment-offer {
  flex: 1;
  min-width: 300px;
}

.appointment-offer .rating {
  font-size: 25px;
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 10px;
}

.appointment-offer h2 {
  font-size: 32px;
  color: #3e5a80;
  margin: 0;
  line-height: 1.4;
}

.appointment-offer  ul {
    list-style: disc;
    padding:0 0 0 20px;
  }

  .appointment-offer  li {
    font-size: 22px;
     color: #3e5a80;
      line-height: 1.4;
  }


.appointment-offer .price {
  color: #00cfff;
  font-weight: bold;
}

.appointment-offer .old-prices {
  font-size: 18px;
  color: #3e5a80;
  margin-top: 20px;
}


@media (max-width: 992px) {
  .appointment-container {
    flex-direction: column;
    gap: 40px;
  }

  .appointment-form,
  .appointment-offer {
    width: 100%;
  }

  .appointment-offer h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .appointment-section {
  padding: 50px 20px;
}
}

@media (max-width: 576px) {
  .appointment-form input,
  .appointment-form select,
  .appointment-form button {
    font-size: 15px;
    padding: 14px;
  }
  .appointment-section {
  padding: 25px 10px;
  }

.appointment-form {
  gap: 10px;
  min-width: 300px;
}

  .appointment-offer h2 {
    font-size: 24px;
  }

  .appointment-offer .rating {
    font-size: 20px;
  }

  .appointment-offer .old-prices {
    font-size: 16px;
  }
}


/* footer */
footer {
  background-color: #2B354B;
}

.footer-content {
display: flex;
justify-content: space-between;
}

.footer-left h2 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: whitesmoke;
}

.footer-left a {
  display: block;
  margin: 15px 0;
  color: whitesmoke;
  text-decoration: none;
}

.addresses p {
  color: whitesmoke;
  line-height: 1.5;
}

.footer-center h2 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: whitesmoke;
}

.opening-hours{
 color: white;
 margin-top: 12px;
 display: flex;
 flex-direction: column;
 gap: 6px;
}
.closed {
  padding-right: 12px;
}

.time {
  /* padding-left: 60px; */
  display: flex;
  justify-content: space-between;
}

.footer-right {
  text-align: right;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: whitesmoke;
  margin-bottom: 20px;
}

.footer .logo img {
  height: 60px;
}

nav {
  margin-bottom: 20px;
}

nav a {
  color: whitesmoke;
  text-decoration: none;
  font-size: 14px;
}

small {
  font-size: 12px;
  color: #bbbaba;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px
}

.footer-social a {
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center; 
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px; 
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #0f6580;;
  color: #ffffff;
}

.footer .nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: whitesmoke;
  transition: color 0.3s; 
}

.footer .dropdown-menu a {
color: black;
}

.footer-bottom {
  background-color: #1F2635;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    text-align: left;
  }

  .logo {
    justify-content: flex-start;
  }

  nav {
    margin-bottom: 15px;
  }

  .nav-links {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .nav-links > li {
    margin-bottom: 8px;
    position: relative;
  }

  .nav-links > li > a {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    font-size: 15px;
  }


  .dropdown-menu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    margin: 6px 0;
  }

}

@media (max-width: 576px) {
  .footer-left h2 {
    font-size: 22px;
  }

  .footer .logo img {
    height: 45px;
  }

  nav a {
    font-size: 13px;
  }
  
 .footer-social {
  justify-content: center;
  gap: 10px
} 

  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .footer .nav-links  {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

}
