@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Rubik&display=swap");

:root {
  --primary-color: #fc7f09;
  --primary-color-light: #fffcfa;
  --primary-color-dark: #db6e09;
  --text-dark: #18181b;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;
  --hue-color: 210;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 96%, 54%);
  --first-color-light: hsl(var(--hue-color), 96%, 69%);
  --first-color-alt: hsl(var(--hue-color), 96%, 37%);
  --first-color-lighter: hsl(var(--hue-color), 14%, 96%);
  --title-color: hsl(var(--hue-color), 12%, 15%);
  --text-color: hsl(var(--hue-color), 12%, 35%);
  --text-color-light: hsl(var(--hue-color), 12%, 65%);
  --white-color: #FFF;
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Lato', sans-serif;
  --pricing-font: 'Rubik', sans-serif;
  --biggest-font-size: 1.75rem;
  --normal-font-size: .938rem;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --tiny-font-size: .625rem;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
}
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.125rem;
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
    --tiny-font-size: .688rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
 text-align: right;
  /* display: flex; */
  width: 100%;
  
  display: flex;
  justify-content: flex-end;
  /* padding-top: 10rem; */

  
  
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--text-dark);
  text-align: center;
  /* text-decoration: underline; */
}

.section__description {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  white-space: nowrap;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo a span {
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}




.nav__header {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}



.nav__logo a {
  color: var(--white);
}


.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo a span {
  color: #fc7f09;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color-light);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 500;
  color: var(--primary-color);
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btn {
  display: none;
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.header__image img {
  max-width: 550px;
  margin-inline: auto;
  background-color: #ff7200;
  border-radius: 50%;
  /* transform: translate(-50%, -50%); */
  z-index: 1;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4.5rem;
  color: var(--text-dark);
  text-align: center;
}

.header__content h1 span {
  color: var(--primary-color);
}

.header__content .section__description {
  margin-bottom: 2rem;
}

.header__btn {
  text-align: center;
}

.special__container :is(.section__header, .section__description) {
  /* max-width: 600px; */
  margin-inline: auto;
  /* display: flex;
  justify-content: flex-end; */
  display: grid;
    justify-items: end; /* Align grid items (the cards) to the right */
    padding: 10px;
}

.special__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;

}

.special__card {
  padding: 1rem;
  text-align: center;
  border-radius: 2rem;
  transition: 0.3s;
}

.special__card:hover {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.special__card img {
  max-width: 200px;
  margin-inline: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
}

.special__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.special__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

.special__ratings {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: goldenrod;
}

/* .special__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
} */
/* 
.special__footer .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
} */

.explore__container {
  display: grid;
  gap: 1rem;
  overflow: hidden;

}

.explore__image img {
  max-width: 400px;
  margin-inline: auto;
  filter: drop-shadow(0 0 50px rgba(252, 127, 9, 0.4));
}

.explore__content .section__description {
  margin-bottom: 2rem;
}

.explore__btn {
  text-align: center;
}

.banner__container {
  /* display: grid; */
  gap: 1rem;
  padding-top: 3rem;
 
}


.banner__card {
  padding: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
  transition: 0.3s;
  max-width: 300px; 
  background: linear-gradient(to bottom, #ffffff, #fc7f09);

}

.banner__card:hover {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.banner__card .banner__icon {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 11px;
  font-size: 2rem;
  color: var(--white);
  border-radius: 1rem;
}

.banner__card:nth-child(1) .banner__icon {
  background-color: #62b15c;
  box-shadow: 5px 5px 30px #62b15cd0;
}

.banner__card:nth-child(2) .banner__icon {
  background-color: #ff3e67;
  box-shadow: 5px 5px 30px #ff3e67d0;
}

.banner__card:nth-child(3) .banner__icon {
  background-color: #185adb;
  box-shadow: 5px 5px 30px #185adbd0;
}

.banner__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-top: 1rem;
}

.banner__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.75rem;
  font-size: 0.9rem;
  padding-top: 0.5rem;
}

.banner__card a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 500;
  color: black
}

.banner__card a span {
  font-size: 1.25rem;
  transition: 0.3s;
}

.banner__card a:hover span {
  transform: translateX(10px);
}

.chef {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 10rem;
}

.chef__bg {
  position: absolute;
  z-index: -1;
  max-width: 275px;
  left: -4rem;
  bottom: -2rem;
}

.chef__container {
  padding-bottom: 10rem;
  display: grid;
  gap: 2rem;
}

.chef__content .section__description {
  margin-bottom: 1rem;
}

.chef__image {
  position: relative;
  isolation: isolate;
}

.chef__image img {
  max-width: 500px;
  border-radius: 100%;
  margin-inline: auto;
}

.chef__image::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  max-width: 500px;
  background-color: var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.chef__list {
  display: grid;
  gap: 0.5rem;
}

.chef__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.chef__list li span {
  font-size: 1.5rem;
}

.chef__list li:nth-child(1) span {
  color: #62b15c;
}
.chef__list li:nth-child(2) span {
  color: #ff3e67;
}
.chef__list li:nth-child(3) span {
  color: #185adb;
}

.client__container {
  padding-top: 0;
}

.client__container :is(.section__header, .section__description) {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.client__swiper {
  margin-top: 2rem;
  max-width: 750px;
  margin-inline: auto;
  padding: 10rem 1rem;
  overflow: hidden;
  border: 2px solid rgba(252, 127, 9, 0.5);
  box-shadow: 5px 5px 30px rgba(252, 127, 9, 0.2);
  border-radius: 3rem;
}

.swiper {
  padding-bottom: 3rem;
  width: 100%;
}

.client__card {
  text-align: center;
}

.client__card p {
  margin-bottom: 2rem;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.client__card img {
  margin-bottom: 1rem;
  max-width: 70px;
  margin-inline: auto;
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client__card h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
/* 
.footer {
  background-color: var(--primary-color-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__col .section__description {
  text-align: left;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 0.75rem;
}

.footer__links a {
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem; */
  /* color: var(--text-light);
  text-align: center;
} */

@media (width > 540px) {
  .special__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: 3fr 2fr;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    color: var(--primary-color);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: white
  }

  .nav__btn {
    display: flex;
    flex: 1;
  }

  .nav__btn .btn {
    padding: 8px 10px;
    font-size: 1.5rem;
    border-radius: 100%;
  }

  .header__container {
    grid-template-columns: 2fr 3fr;
    align-items: center;
    /* margin-top: 20rem; */
  }

  .header__content h1,
  .header__content .section__description,
  .header__btn {
    text-align: left;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .special__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header {
    max-width: 500px;
  }

  .explore__content :is(.section__header, .section__description),
  .explore__btn {
    text-align: left;
  }

  .banner__container {
    grid-template-columns: repeat(3, 1fr);
    /* height: 200px; */
  }

  .chef__bg {
    max-width: 300px;
  }

  .chef__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .chef__image {
    grid-area: 1/2/2/3;
  }

  .chef__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .chef__list li {
    justify-content: flex-start;
  }

  .client__swiper {
    padding: 3rem 2rem;
  }

  .footer__container {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (width > 1024px) {
  .special__grid {
    gap: 2rem;
  }

  .special__card {
    padding: 2rem;
    border-radius: 3rem;
  }

  .banner__container {
    gap: 2rem;
  }

  .chef__bg {
    max-width: 375px;
  }
}
.nav-logo-img {
  width: 40px; /* Adjust size as needed */
  height: 30px;
  margin-right: 8px; /* Space between the image and text */
  color: #62b15c;
}
.logo.nav__logo a {
  display: flex;
  align-items: center; /* Align image and text vertically */
  text-decoration: none; /* Remove underline from the link */
  color: inherit; /* Keep link color as per parent styles */
}
p span{
  color: #db6e09;
}
.header_txt{
 padding-top: 2rem;
 align-items: center;
 display: flex;
}
.section__header span{
  text-decoration: underline;
}
.header_text{
  align-items: center;
  display: flex;
  
}

.Sammunat-logo .header__image{
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #ff7200;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header_scnd{
  padding-top: 1rem;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}
.header_scnd h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;

}
.custom-button {
  background-color: #007BFF; /* Button background color */
  color: white; /* Button text color */
  border: none; /* Remove border */
  border-radius: 12px; /* Rounded corners */
  padding: 20px 40px;/* Padding inside the button */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold text */
  /* text-transform: uppercase;  */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  cursor: pointer; /* Pointer cursor on hover */
  transition: all 0.3s ease; /* Smooth transition */
}
.custom-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Slightly bigger shadow */
  transform: translateY(-2px); /* Lift effect */
}
.button_tag{
  margin: 0;
    padding-top: 3rem;

      display: flex;
      justify-content: center;
      align-items: center;
      /* height: 100vh; */
      /* background-color: #f0f0f0; */
}
.line_tag{
  display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 3rem;
      font-size: 18px;
      font-family: "Caveat", serif;

}
.price{
  display: flex;
   justify-content: center;
      align-items: center;
      padding-top: 2rem;
      font-size: 18px;
      text-decoration: underline;
      font-family: "Caveat", serif;
  font-optical-sizing: auto;

}

.client{
  display: flex;
   justify-content: center;
      align-items: center;
      padding-top: 2rem;
      font-size: 18px;
}
.client p span{
  font-size: 24px;
  font-weight: bold;
  
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Adjust the number of columns */
  gap: 10px;
  justify-content: flex-end; /* Align the grid to the right */
  max-width: 600px;  /* Optional: Limit max width */
  width: 100%;
  /* padding-left: 600px; */
  padding-left: 20px;
  /* display: flex;
  justify-content: center; */
  margin-top: 9rem;
}

/* Individual card styles */
.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;              /* Make the card a flex container */
  flex-direction: column;     /* Stack children vertically */
  height: 200px;  
}

.card:hover {
  transform: translateY(-10px);
}

/* Image in the card */
/* .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
} */

/* Title styles */
.card-title {
  font-size:40x;
  font-weight: bold;
  margin: 15px;
}

/* Description text */
.card-description {
  font-size: 50px;
  color:  #fc7f09;
  margin: 0 15px;
  margin-bottom: 15px;
  font-weight: bold;
  align-items: center;
}

/* Footer with price and button */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px;
  background-color: #fafafa;
  /* border-top: 1px solid #ddd; */
  margin-top: auto;   
  
}
.card .card-content {
  flex-grow: 1;               /* This makes the content grow and pushes the footer down */
}

/* Price styles */
.price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Button styles */
/* .btn {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
} */


.title-tag{
  text-align: left;
  font-size: 45px;
}
.title-make{

  display: flex;
  padding-top: 0%;
  justify-content: left;
  /* align-items: center; */
  flex-direction: column;
}
.title-content{
  padding-top: 2rem;
text-align: left;
font-weight: lighter;
max-width: 500px;
font-size: 18px;
line-height: 2;
}

.card-img{
  border-radius: 30px;
    width: 150px; /* Reduce width */
    height: 100px; /* Reduce height */
    object-fit: cover;
    /* display: block; */
    margin: 10px auto; /* Center the image */  
}
.section-desc{
  font-size: 35px;
  text-align: center;
  padding-top:10rem ;
}
.section-desc span{
color:   #fc7f09;
}

.card-items {
  background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    text-align: center;
    /* padding-left: 10rem; */
    /* position: absolute; */
    /* top: 50%; */
    margin-left: 10rem;
padding-right: 2rem;
    justify-content: flex-start;
    /* transform: scale(1.1); */
}

h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.services-container {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 3rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-size: 16px;
  /* padding: 8px; */
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.check-icon {
  color: green;
  font-weight: bold;
}
.social-content{
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.social-content h4{
  font-size: 30px;
  padding-left: 10rem;

}
.social-content span{
  color: #db6e09;
}
/* .content-list {
  list-style: none;
  padding: 0;
}

.content-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.tick-image {
  width: 20px;  /* Adjust image size as needed */
  /* height: 20px;
  margin-right: 10px;  
}  */

.third-sec {
  display: flex;
  align-items: center; /* Aligns the items in the center */
  justify-content: space-between; /* Distributes space evenly */
  gap: 20px; /* Adds space between elements */
  padding-bottom: 10rem;
}

.card-items {
  flex: 1; /* Takes up equal space */
}

.image-container {
  flex: 1; /* Takes up equal space */
  display: flex;
  justify-content: center; /* Centers image inside */
}
.image-container img {
  max-width:800px; /* Ensures responsiveness */
  height: auto; /* Maintains aspect ratio */
  border-radius: 1rem;
  transition: transform 0.5s ease-in-out;
}
.image-container img:hover {
  transform: scale(1.1); /* Enlarges the image by 10% */
}

.Testimonial-sec {
background-color: #04162F;
  max-width: 1200px;
  margin: auto;
  padding: 10rem 2rem;
  text-align: center;
  padding-top: 5rem;
  border-radius: 3rem;
  /* padding-bottom: 20rem; */
  
}

.Testimonial-sec h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.test-text {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: whitesmoke
}

.Testimonial-sec h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.Testimonial-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.Testimonial-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.Testimonial-card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.Testimonial-card h4 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.Testimonial-card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.Testimonial-card img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.Testimonial-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.Testimonial-card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.Testimonial-card:hover::before {
  width: 400%;
}

.Testimonial-card:hover :is(h4, h5) {
  color: var(--white);
}

.Testimonial-card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.Testimonial-card:hover img {
  border-color: var(--white);
}
.space{
  padding-top: 1.5rem;
}

.test-text2{
  position: relative;
  margin-bottom: 2rem;
  font-size: 1rem;
  /* font-weight: 600; */
  color: rgb(194, 185, 185)
}







.features {
  margin-top: 10rem;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
}

.timeline .container {
  padding: 10px 50px;
  position: relative;
  width: 50%;
  opacity: 0; /* Hide containers initially */
}

.timeline.animate-timeline .container {
  animation: movedown 1s linear forwards;
}

.timeline.animate-timeline .container:nth-child(1) {
  animation-delay: 0s;
}
.timeline.animate-timeline .container:nth-child(2) {
  animation-delay: 1s;
}
.timeline.animate-timeline .container:nth-child(3) {
  animation-delay: 2s;
}
.timeline.animate-timeline .container:nth-child(4) {
  animation-delay: 3s;
}
.timeline.animate-timeline .container:nth-child(5) {
  animation-delay: 4s;
}
.timeline.animate-timeline .container:nth-child(6) {
  animation-delay: 5s;
}

.text-box {
  padding: 20px 30px;
  background: linear-gradient(to bottom, #ffffff, #fc7f09);
  position: relative;
  border-radius: 6px;
  font-size: 15px;
}

.left-container {
  left: 0;
}

.right-container {
  left: 50%;
}

.container img {
  position: absolute;
  width: 40px;
  border-radius: 50%;
  right: -15px;
  top: 32px;
  z-index: 10;
}

.right-container img {
  left: -20px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 0; /* Hide the timeline line initially */
  background: rgb(174, 30, 30);
  top: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -1;
}

.timeline.animate-timeline::after {
  animation: moveline 6s linear forwards;
}

@keyframes movedown {
  0% {
    opacity: 1;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes moveline {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}















.text-box h2{
  font-weight: 600;
}
.text-box small{
  display: inline-block;
  margin-bottom: 15px;

}
.left-container-arrow{
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fc7f09;
  right: -15px;
}

.right-container-arrow{
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #fc7f09;
  left: -15px;
}
/* .video-container {
  display: flex;
  justify-content: center; */
  /* gap: 45px; 
  padding: 20px; */
/* }

.video-container video {
  width: 45%;  
   max-width: 500px; 
}

.video-file{
  margin-top: 10rem;
} */
.video-file{
  background-color: #04162F;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 2rem;
  text-align: center;
  padding-top: 2rem;
  border-radius: 3rem;
  padding-left: 5rem;
  padding-left: 5rem;
}




        .video-container {
            display: flex;
            justify-content: center; /* Centers the videos */
            gap: 35px; /* Adds space between videos */
            padding: 20px;
            margin-top: 2rem;
        }

        .video-text {
            text-align: center; /* Centers the text above videos */
            color:rgb(34, 32, 32);
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 24px;
        }

        .video-text video {
            width: 450px; /* Ensures video takes full width of the container */
            max-width: 800px; /* Prevents videos from becoming too large */
    }
    .video-text p{
      font-size: 22px;
      font-weight: 400;
    }

    .text-file p {
      padding-top: 5rem;
      font-size: 35px;
      font-weight: bolder;
      text-align: center;
      color: #fff;
     }
     .text-file p span{
      color: #fc7f09;
     }
.style-sec{
  display: flex;
    flex-direction: column; /* Stacks child elements vertically */
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 6rem;
}
.style-cont {
  margin-bottom: 40px;
}

.style-cont  h4 {
font-size: 35px;
color: black;
}

.style-cont  h4 span{
  color: #fc7f09;
}


     .container-sec {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      /* width: 100%; */
      max-width: 1200px;
      height: 120px;
  }
  .box {
      padding: 20px;
      text-align: center;
      border: 2px solid #fc7f09;
      background-color: white;
      transition: background-color 0.5s, color 0.5s;
      cursor: pointer;
      /* font-weight: bold; */
color: #fc7f09;
border-radius: 6px;
      
  }
  .box-no-hover {
    background-color: lightgray;
    cursor: default;
    padding: 20px;
    text-align: center;
    border: 2px solid #fc7f09;
    background-color: white;
    /* transition: background-color 0.3s, color 0.3s; */
    cursor: pointer;
    /* font-weight: bold; */
    background-color: #fc7f09;
    color: white;
    border-radius: 6px;
  }
.box:hover {
      background-color: #fc7f09;
      color: white;
  }







  .card-ct-grid{
    max-width: 1150px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
    margin-top: 10rem;
    margin-bottom: 80rem;
    z-index: 10001;

  }
  
  .grid {
    display: grid;
  }
 /*==================== CARD PRICING ====================*/
 .card-ct-grid {
  padding: 3rem 0;
 
}

.card__container {
  gap: 3rem 1.25rem;
}
.card__content {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 24px hsla(var(--hue-color), 61%, 16%, 0.1);
  transition: .4s;
}
.card__content:hover {
  box-shadow: 0 16px 24px hsla(var(--hue-color), 61%, 16%, 0.15);
  /* background-color: #fc7f09; */
}

.card__header-img {
  width: 55px;
  height: 55px;
}
.card__header-circle {
  width: 40px;
  height: 40px;
  background-color: var(--first-color-lighter);
  border-radius: 50%;
  margin-bottom: var(--mb-1);
  place-items: center;
}
.card__header-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  margin-bottom: var(--mb-0-25);
}

.card__header-title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.card__pricing {
  position: absolute;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
  width: 100px;
  height: 100px;
  right: 1.5rem;
  top: -1rem;
  padding-top: 1.25rem;
  text-align: center;
}
.card__pricing-number {
  font-family: var(--pricing-font);
}

.card__pricing-symbol {
  font-size: var(--smaller-font-size);
}

.card__pricing-number {
  font-size: var(--h2-font-size);
}

.card__pricing-month {
  display: block;
  font-size: var(--tiny-font-size);
}

.card__pricing-number, 
.card__pricing-month {
  color: var(--white-color);
}

.card__pricing::after, 
.card__pricing::before {
  content: '';
  position: absolute;
}

.card__pricing::after {
  width: 100%;
  height: 14px;
  background-color: var(--white-color);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card__list {
  row-gap: .5rem;
  margin-bottom: var(--mb-2);
}

.card__list-item {
  display: flex;
  align-items: center;
}

.card__list-icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-right: var(--mb-0-5);
}
.card__button {
  padding: 1.25rem;
  border: none;
  font-size: var(--normal-font-size);
  border-radius: .5rem;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
  color: var(--white-color);
  cursor: pointer;
  transition: .4s;
}

.card__button:hover {
  box-shadow: 0 12px 24px hsla(var(--hue-color), 97%, 54%, 0.2);
  background-color: #fc7f09;
  /* color:#fc7f09 ; */
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (max-width: 320px) {
  .card-ct-grid{
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .card__content {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__content {
    grid-template-rows: repeat(2, max-content);
  }
  .card__button {
    align-self: flex-end;
  }
}

/* For large devices */
@media screen and (min-width: 968px) {
  .card-ct-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .card-ct-grid {
    height: 100vh;
    align-items: center;
  
}  .card__container {
  grid-template-columns: repeat(3, 1fr);
}
.card__header-circle {
  margin-bottom: var(--mb-1-25);
}
.card__header-subtitle {
  font-size: var(--small-font-size);
}

}
.price-text{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
  font-family:  --body-font;
}
.price-text h3 {
  font-size: 36px;

}
.price-text h3 span{
color: #fc7f09;
}
/* .price-below{
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;

} */
 footer{
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
 }

 footer .social-icons, footer .menu{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  
 }
 .section-above-footer {
  margin-bottom: 10rem;
 }
 footer .social-icons li,
 footer .menu li{

  list-style: none;
 }

 footer .social-icons li a
 {

  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;

 }
 footer .social-icons li a:hover{

transform: translateY(-10px);
 }

 footer .menu li a{

 }
 footer .menu li a
 {

  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
 }
 footer .menu li a:hover{
opacity: 1;
 }

 footer p{
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
 }

footer .wave{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(wave.png);
  background-size: 1000px 100px;
  /* z-index: 100; */
 }

 footer .wave#wave1{
  z-index: 1000;
  opacity: 1;
bottom: 0;
animation: animateWave 4s linear infinite;
 }
 footer .wave#wave2{
  z-index: 999;
  opacity: 0.5;
bottom: 10px;
animation: animateWave_02 3s linear infinite;
 }
 footer .wave#wave3{
  z-index: 1000;
  opacity: 0.2;
bottom: 15px;
animation: animateWave 3s linear infinite;
 }
 footer .wave#wave4{
  z-index: 999;
  opacity: 0.7;
bottom: 20px;
animation: animateWave_02 4s linear infinite;
 }

 @keyframes animateWave{

  0%
  {
   background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
 }
 @keyframes animateWave_02 {

  0%
  {
   background-position-x: 0px;
  }
  100%{
    background-position-x: 1000px;
  }
 }
 
 @media screen and (max-width: 768px) {
  :root {
    --biggest-font-size: 1.5rem;
    --h2-font-size: 1.2rem;
    --normal-font-size: 0.875rem;
    --small-font-size: 0.75rem;
    --smaller-font-size: 0.688rem;
    --tiny-font-size: 0.625rem;
  }

  .section__container {
    padding: 2rem 1rem;
    text-align: center;
  }

  .section__header {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .header__content h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .special__grid {
    grid-template-columns: 1fr;
  }

  .banner__container {
    grid-template-columns: 1fr;
  }

  .explore__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chef__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .client__swiper {
    padding: 5rem 1rem;
  }

  .card-container {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .card {
    height: auto;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: center;
  }

  .third-sec {
    flex-direction: column;
    text-align: center;
  }

  .card-items {
    margin-left: 0;
    padding-right: 0;
  }

  .social-content h4 {
    padding-left: 0;
    text-align: center;
  }

  .Testimonial-sec {
    padding: 5rem 1rem;
  }

  .section__grid {
    grid-template-columns: 1fr;
  }

  .video-container {
    flex-direction: column;
    gap: 20px;
  }

  .video-text video {
    width: 100%;
  }

  .container-sec {
    grid-template-columns: 1fr;
  }

  .box, .box-no-hover {
    margin-bottom: 1rem;
  }

  .card-ct-grid {
    margin-bottom: 2rem;
  }

  .card__container {
    grid-template-columns: 1fr;
  }

  .card__content {
    padding: 1.5rem;
  }

  .card__pricing {
    width: 80px;
    height: 80px;
    right: 1rem;
    top: -0.5rem;
  }

  .card__pricing-number {
    font-size: 1.5rem;
  }

  .card__pricing-month {
    font-size: 0.625rem;
  }

  .card__button {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .price-text h3 {
    font-size: 1.5rem;
  }

  footer .social-icons li a {
    font-size: 1.5rem;
  }

  footer .menu li a {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .header__content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .section__header {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .section__description {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .price-text h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .section__container {
    padding: 2rem 1rem;
    text-align: center;
  }

  .special__grid {
    grid-template-columns: 1fr;
  }

  .banner__container {
    grid-template-columns: 1fr;
  }

  .explore__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chef__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card-container {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .third-sec {
    flex-direction: column;
    text-align: center;
  }

  .card-items {
    margin-left: 0;
    padding-right: 0;
  }

  .section__grid {
    grid-template-columns: 1fr;
  }

  .video-container {
    flex-direction: column;
    gap: 20px;
  }

  .container-sec {
    grid-template-columns: 1fr;
  }

  .card-ct-grid {
    margin-bottom: 2rem;
  }

  .card__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .video-text video {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .social-icons li a {
    font-size: 1.5rem;
  }

  footer .menu li a {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .card__button {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .timeline {
    margin: 50px auto;
  }

  .container {
    width: 100%;
    padding: 10px 20px;
  }

  .right-container {
    left: 0;
  }

  .container img {
    left: 10px;
  }

  .right-container img {
    left: 10px;
  }

  .left-container-arrow, .right-container-arrow {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .Testimonial-sec {
    padding: 2rem 1rem;
    
  }

  .test-text {
    font-size: 1.5rem;
  }

  .test-text2 {
    font-size: 0.875rem;
  }

  .Testimonial-card {
    padding: 2rem 1rem;
  }

  .Testimonial-card h4 {
    font-size: 1.2rem;
  }

  .Testimonial-card p {
    font-size: 0.875rem;
  }

  .Testimonial-card img {
    max-width: 60px;
  }
}
/* @media screen and (max-width: 768px) {
  footer .wave {
    height: 50px;
    background-size: 500px 50px;
  }

  footer .wave#wave1 {
    animation: animateWave 3s linear infinite;
  }

  footer .wave#wave2 {
    animation: animateWave_02 2s linear infinite;
  }

  footer .wave#wave3 {
    animation: animateWave 2s linear infinite;
  }

  footer .wave#wave4 {
    animation: animateWave_02 3s linear infinite;
  } */
/* } */
@media screen and (max-width: 768px) {
  .header_txt {
    padding-top: 1rem;
    
  }

  .header_scnd {
    padding-top: 0.5rem;
    margin-top: 3.5rem;
  }

  .button_tag {
    padding-top: 1rem;
  }

  .line_tag {
    padding-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .price {
    padding-top: 1rem;
  }

  .client {
    padding-top: 1rem;
    margin-bottom: 2.5rem;
  }

  .social-content {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .features {
    margin-top: 5rem;
  }

  .video-file {
    padding: 1rem;
  }

  .style-sec {
    margin-top: 3rem;
  }

  .style-cont h4 {
    font-size: 1.5rem;
  }

  .container-sec {
    gap: 20px;
  }

  .box, .box-no-hover {
    padding: 10px;
  }

  .card-ct-grid {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .card__content {
    padding: 1.5rem;
  }

  .card__pricing {
    width: 80px;
    height: 80px;
    right: 1rem;
    top: -0.5rem;
  }

  .card__pricing-number {
    font-size: 1.5rem;
  }

  .card__pricing-month {
    font-size: 0.625rem;
  }

  .card__button {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .price-text h3 {
    font-size: 1.5rem;
  padding-top: 10rem;
  margin-top: 10rem;
  }
}


@media only screen and (max-width: 768px) {
  .section__container.banner__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 1rem;
  }

  .banner__card {
    padding: 1rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 3rem;
    transition: 0.3s;
    max-width: 300px;
    background: linear-gradient(to bottom, #ffffff, #fc7f09);
    text-align: center;
  }

  .banner__card:hover {
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
  }

  .banner__icon {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 5px 11px;
    font-size: 2rem;
    color: var(--white);
    border-radius: 1rem;
  }

  .banner__card:nth-child(1) .banner__icon {
    background-color: #62b15c;
    box-shadow: 5px 5px 30px #62b15cd0;
  }

  .banner__card:nth-child(2) .banner__icon {
    background-color: #ff3e67;
    box-shadow: 5px 5px 30px #ff3e67d0;
  }

  .banner__card:nth-child(3) .banner__icon {
    background-color: #185adb;
    box-shadow: 5px 5px 30px #185adbd0;
  }

  .banner__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-top: 1rem;
  }

  .banner__card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.75rem;
    font-size: 0.9rem;
    padding-top: 0.5rem;
  }

  .banner__card a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 500;
    color: black;
  }

  .banner__card a span {
    font-size: 1.25rem;
    transition: 0.3s;
  }

  .banner__card a:hover span {
    transform: translateX(10px);
  }
}




@media only screen and (max-width: 768px) {

  

  /* .header__container { */
    /* grid-template-columns: 2fr 3fr;
    align-items: center; */
    /* margin-top: 20rem; */
  }
/* } */

@media only screen and (max-width: 768px) {
  .timeline::after {
    left: 20px; /* Align timeline line to the left */
  }

  .timeline .container {
    width: 100%; /* Full width */
    padding: 10px 20px; /* Less padding */
    text-align: left; /* Align text properly */
  }

  .text-box {
    font-size: 14px; /* Smaller font for better fit */
    padding: 15px 20px; /* Less padding */
  }

  .container img {
    position: absolute;
    width: 30px; /* Smaller icons */
    right: auto;
    left: 10px; /* Align to timeline */
    top: 25px;
  }

  .right-container img {
    left: 10px;
  }

  .right-container,
  .left-container {
    left: 0; /* Make all items stack */
  }
}

/* Animation for small screens */
.timeline.animate-timeline .container {
  animation: movedown 0.8s ease-in-out forwards;
}

.timeline.animate-timeline::after {
  animation: moveline 4s ease-in-out forwards;
}

@keyframes movedown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes moveline {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@media only screen and (max-width: 768px) {
  
.logo a span {
  color: white;
}
}


.countdown-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-bottom: 5rem;
  margin-left: 15rem;
  display: inline-block;
    max-width: 90%;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  color: white;
  flex-wrap: wrap;
 
}

#countdown span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  min-width: 80px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  background-color: #fc7f09;

}

#countdown span:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  background-color: #fc7f09;
}

#countdown span::after {
  content: attr(id);
  display: block;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.8;
}

.countdown-container h1 {
  padding-bottom: 2rem;
  font-size: 28px;
}
@media (max-width: 600px) {
  body {
      padding: 20px;
  }

  .countdown-container {
      padding: 15px;
      margin-left: 0rem;
  }

  #countdown {
      gap: 10px;
      font-size: 11px;
      flex-wrap: nowrap;
      overflow-x: auto;
      white-space: nowrap;
    
  }

  #countdown span {
      font-size: 18px;
      padding: 10px;
      min-width: 40px;
  }

  #countdown span::after {
      font-size: 12px;
  }
}