/**************************/
/* HEADER */
/**************************/

/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff5f5;
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
} */

.logo-fo {
  height: 4.2rem;
  width: 5.2rem;
}
.logo {
  display: flex;
  align-items: center;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  z-index: 20;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #3d3d3d;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #c92a2a;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #f03e3e;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #c92a2a;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  z-index: 20;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
  z-index: 20;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
  z-index: 20;
}

/* STICKY NAVIGATION */
/* .sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(240, 233, 233, 0.959);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
} */

/* .sticky .section-hero {
  margin-top: 9.6rem;
} */

/**************************/
/* HERO SECTION */
/**************************/
.about-section {
  margin-top: 5.2rem;
  margin-bottom: 8.2rem;
}
.section-hero {
  background-color: #fff5f5;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fff5f5;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: #ff6b6b;
  font-weight: 700;
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 2.6rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4.4rem;
  color: #333;
}

.logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.logos img {
  height: 5.8rem;
  width: 12rem;
  /* filter: brightness(1); */
  opacity: 80%;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  font-size: 7.2rem;
  font-weight: 300;
  color: #c92a2a;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  padding-bottom: 60%;
}

.step-img-box::after {
  width: 70%;
  padding-bottom: 45%;
}

.step-img {
  width: 95%;
  height: 100%;
  border-radius: 9px;
  transition: all 0.1s;
}
.step-img-box:hover {
  transform: scale(1.1);
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-meals {
  padding: 4.6rem;
  /* /* background-color: #c92a2a; */
}

.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;

  /* background-color: #f03e3e; */
}
.meal-img {
  height: 252px;
}
.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.075);
}

.meal-content {
  padding: 4.2rem;
  /* margin: 0; */
  background-color: #e03131;
}

.meal-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.meal-title {
  /* display: flex; */
  text-align: center;
  /* justify-content: center; */
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 3.2rem;
  height: 6.2rem;
}
.section-meals h3 {
  padding-bottom: 48px;
  font-size: 18px;
}
/* .meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #fcfcfc;
} */

.meal-img {
  width: 100%;
  /* height: 64rem; */
  /* overflow: hidden; */
  transition: all 0.4s;
}
.meal-img:hover {
  /* transform: scale(1.1); */
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
  color: #ffffff;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 6.8rem 0;
  border-top: 1px solid #eeeeee;
  background-color: #1b1b1b;
}

.grid--footer {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  font-size: 1.8rem;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: auto;
}

.footer-heading {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 4rem;
  color: #fff;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
  color: #fff;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #dbd5d5;
}

/***********slide******/
/* Seccion principal */
.slider-container {
  /* padding-top: 20px; */
  display: flex;
  justify-content: center;
  transition: all 0.1s;
  /* background-color: #fdf2e9; */
  /* padding-bottom: 2.8rem; */
  /* height: 100vh; */
}
/* Slider */
.main-slider {
  width: 100%;
  height: 80vh;
  /* position: relative; */
  transition: all 0.3s;
  /* padding-bottom: 3.8rem; */
}
.slider-imagenes {
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
  /* scroll-padding: 1rem; */
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  /* border-radius: 18px; */
  transition: all 0.3s;
}
.slider-img {
  width: 100%;
  height: 100%;

  scroll-snap-align: center;
  display: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
}
.slider-img img {
  width: 100%;
  cursor: pointer;
  height: 100%;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: all 0.3s;
}
.main-slider-active {
  scroll-snap-type: unset;
  transition: all 0.3s;
}
.slider-controles {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  transform: translate(0, -50%);
}
.slider-controles-previous,
.slider-controles-next {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-img.activo {
  display: block;
  transition: width 2s;
}
/* Fin Slider */
.bi-chevron-compact-left,
.bi-chevron-compact-right {
  color: #fff;
  font-size: 2.4rem;
  transition: all 0.3s;
}
.bi-chevron-compact-left:hover,
.bi-chevron-compact-right:hover {
  color: #c92a2a;
}

/*************/

.container-form {
  /* max-width: 1170px; */
  /* margin-left: auto;
  margin-right: auto; */
  padding: 1em;
  margin-top: 2.8rem;
  background-color: #e0e0e0;
}

ul {
  list-style: none;
  /* padding: 0; */
}

.brand {
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand span {
  color: #ffffff;
}

.wrapper {
  box-shadow: 0 0 20px 0 rgba(163, 57, 57, 0.048);
}

.wrapper > * {
  padding: 1em;
}

/* ------------------- */
/* COMPANY INFORMATION */
/* ------------------- */

.company-info {
  /* background: #f5f2f2; */
  /* border-top-left-radius: 4px;
  border-top-right-radius: 4px; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.company-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* color: #fff; */
  /* background-color: #947272;  */
}
.contact-block i {
  color: #640707;
}

/* ------- */
/* CONTACT */
/* ------- */

.contact {
  /* background: #dcdfea; */
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* ---- */
/* FORM */
/* ---- */

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

.contact form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f03e3e;
}

.contact form p {
  margin: 0;
}

.contact form .full {
  grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1em;
  border: solid 1px #ef233c;
  border-radius: 4px;
}

.contact form textarea {
  resize: none;
}

.contact form button {
  background: #ef233c;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
}

.contact form button:hover {
  background: #c92a2a;
  color: #ffffff;
  outline: 0;
  transition: background-color 1s ease-out;
}

/* ------------- */
/* MEDIA QUERIES */
/* ------------- */

@media only screen and (min-width: 700px) {
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .wrapper > * {
    padding: 2em;
  }

  .company-info {
    border-radius: 4px 0 0 4px;
  }

  .contact {
    border-radius: 0 4px 4px 0;
  }

  .company-info h3,
  .company-info ul,
  .brand {
    text-align: left;
  }
}

.company-info i {
  font-size: 2.6rem;
  color: #5d1414;
  float: left;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  justify-content: center;
  align-items: start;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.company-info h4 {
  padding: 0 0 0 3rem;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #5b4545;
}

.company-info p {
  display: flex;
  justify-content: left;
  padding: 0 0 0 30px;
  font-size: 1.6rem;
  color: #5b4545;
}
.serve-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 2.8rem;
  background-color: #dc2c1d;
  padding: 62px;
  border-radius: 9px;
  transition: transform 0.7s ease-in-out;
  /* color: #0000; */
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.serve-items:hover {
  border-radius: 1px;
  background-color: #f03e3e;
  color: #000000;
}
.serve-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 4.8rem;
}
.serve-logo {
  font-size: 3.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.6rem;
  transition: transform 0.5s ease-in-out;
}
.serve-items:hover .serve-logo {
  transform: rotatey(180deg);
}
.serve-name {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;

  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.specifications {
  padding: 2.8rem;
}
.specifications ul {
  list-style: disc;
  margin: 2.8rem;
}
.specifications li {
  margin-bottom: 28px;
  font-size: 1.8rem;
  font-weight: 400;
  /* text-transform: capitalize; */
}
.google-map {
  /* width=100%;
  height=450 */
  width: 100%;
  height: 45rem;
}
/* ///////// */

.showbox {
  background-color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5%;
}

.loader {
  position: relative;
  margin: 0;
  width: 6rem;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.loader::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 899, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  100% {
  }
  0% {
    stroke: red;
  }
  40% {
    stroke: blue;
  }
  66% {
    stroke: green;
  }
  80% {
  }
  90% {
    stroke: yellow;
  }
}
/* /////////////////// */
.nav-area a {
  color: #3d3d3d;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  transition: all 0.3s;
}
.nav-area {
  /* background: #fff5f5; */
  transition: all 0.3s;
  z-index: 99999;
  /* background: #fff5f5; */
}
.nav-area:after {
  content: "";
  clear: both;
  display: block;
}
.nav-area ul {
  list-style: none;
  margin: 0;
}
.nav-area > ul > li {
  float: left;
  position: relative;
}
.nav-area ul li a {
  text-decoration: none;
  /* color: #3d3d3d; */
  padding: 15px 30px;
  display: block;
}
.nav-area ul li:hover a {
  background: #fff5f5;
  color: #2e2e2e;
}

.nav-area ul ul {
  position: absolute;
  padding: 0;
  /* min-width: 160px; */
  display: none;
  top: 100%;
  left: 0;
}
.nav-area ul li:hover > ul {
  display: block;
}
.nav-area ul ul li:hover a {
  background: #e0e0e0;
  color: #2e2e2e;
}
.nav-area ul ul li {
  position: relative;
}
.nav-area ul ul ul {
  top: 0;
  left: 100%;
}
.nav-area ul ul ul li:hover a {
  background: #e0e0e0;
  color: #2e2e2e;
}
.bi-chevron-down {
  font-size: 2.4rem;
  font-weight: 600;
}
#map {
  /* flex: 1; */
  height: 40rem;
  margin-top: 48px;
  /* background-color: var(--color-light--1); */
}
.index-section {
  /* margin-bottom: 52px; */
  height: 100vh;
  background-image: url("/img/bg.jpg");
  background-repeat: no-repeat;
background-size: cover;
background-position: center;}

.index-header-logo {
  padding: 1rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-header-logo img {
  width: 11rem;
  height: 9rem;
}
.index-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-logo img {
  width: 20rem;
  padding-bottom: 1.2rem;
}
.welcom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.index-heading {
  color: #d4af37;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  padding: 1rem 0;
  text-decoration: none;
  transition: all 0.3s;

  transform: translate(1);
  /* margin: 10px 0 0 10px; */
}

.welcom-section h2 {
  /* padding: 1rem; */
  color: #31347b;
}
@media (min-width: 44em) {
  .index-heading {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    animation: animtext 4s steps(80, end);
    transition: all cubic-bezier(0.1, 0.7, 1, 0.1);
  }
  @keyframes animtext {
    from {
      width: 0;
      transition: all 2s ease-in-out;
    }
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #c5c1c1;
  transition: all 0.6s;
}

.services .icon-box:hover {
  background: #a8a5a5;
  /* transition: transform 0.5s ease-in-out; */
}

.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #000000;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #e03a3c;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}
.service-section {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  /* text-align: center; */
  gap: 4.8rem;
}
.grp-img {
  height: 100vh;
  width: 100%;
  margin-bottom: 38px;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  margin-top: 38px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
  font-size: 18px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  /* bottom: 30px; */
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  /* margin: 0 3px; */
  border-radius: 12px;
  /* width: 36px;
  height: 36px; */
  padding: 12px 42px;
  background: #e03a3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #111111;
}

.team .member .social a {
  font-size: 18px;
  /* line-height: 0; */
  font-weight: 600;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 28px;
  color: #8f0707;
  text-align: center;
}

.team .member .member-info span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #aaaaaa;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
.img-team {
  height: 288px;
  width: 300px;
}
.team-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 4.8rem;
  justify-content: center;
  align-items: center;
}
.gallary img{
width: 100%;
height: 380px;
}


.video-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.video-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .video-container {
   height: 700px;
  }
}

.infinite-slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.slider-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}

.slider-track img {
  height: 200px; 
  margin: 0 10px;
  vertical-align: middle;
  border-radius: 10px;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.custom-image-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.custom-image img {
  width: 250px;
  height: 250px; 
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .custom-image {
    width: 100%;
  }
  
}


@media (max-width: 768px) {
  .custom-image-row {
   display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

}
