#page {
  max-width: 100%;
}

#page .container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.slideshow-wrap {
  position: relative;
  max-height: 550px;
}

.slideshow-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slideshow-wrap .slideshow-block img {
  width: 100%;
  max-height: 550px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .slideshow-wrap .slideshow-block img {
    height: 400px;
  }
}

.slideshow-wrap .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
  z-index: 9;
}

.slideshow-wrap .slick-dots li button {
  text-indent: -9999px;
  background-color: transparent;
  width: 15px;
  height: 15px;
  border-color: #fff;
  border-radius: 100%;
  padding: 0;
  opacity: 1;
}
.slideshow-wrap .slick-dots li button:hover{
    border-color: black;
}
.slideshow-wrap .slick-dots li.slick-active button:hover{
    border-color: white;
}
.slideshow-wrap .slick-dots li.slick-active button {
  background-color: #fff;
}

.hero {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 900px;
  color: white;
  text-align: center;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero-content {
    width: 90%;
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
}

.hero p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 50px;
  line-height: 1.6;
  opacity: 0.95;
}

@media (max-width: 767px) {
  .hero p {
    margin-bottom: 20px;
  }
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.button-group .btn {
  padding: 12px 40px;
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .button-group .btn {
    font-size: 14px;
  }
}

.button-group .btn:hover {
  background-color: white;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.content-section {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .content-section {
    padding: 60px 0;
  }
}

.content-section .content-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .content-section h2 {
    font-size: 20px;
  }
}

.content-section p {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .content-section p {
    font-size: 16px;
    line-height: 1.4;
  }
}

.content-section p:last-child {
  margin-bottom: 0;
}

/*------------card----------------*/
@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.custom-slider {
  white-space: nowrap;
  overflow: hidden;
  gap: 10px;
  margin: 0;
  padding: 20px 30px;
}

.custom-slider .slider-infinite {
  display: inline-block;
  -webkit-animation: 20s slide infinite linear;
          animation: 20s slide infinite linear;
}

.custom-slider .slider-infinite ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.custom-slider .slider-infinite ul li {
  list-style: none;
  background-color: #fcf9f4;
  padding: 20px;
  cursor: pointer;
  min-width: 300px;
}

.custom-slider .slider-infinite ul li a {
  text-decoration: none;
  padding: 0px 30px;
  font-size: 30px;
  font-weight: 600;
  color: white;
}

@media (max-width: 767px) {
  .custom-slider .slider-infinite ul li a {
    font-size: 16px;
  }
}

.custom-slider:hover .slider-infinite {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.custom-slider {
  margin: 0 auto;
  padding: 0 0 40px;
}

.card {
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.card-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  padding-top: 20px;
}

/*---------midsection--------*/
.section-container {
  position: relative;
}

.section-container .image-wrap img {
  max-height: 100%;
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .section-container .image-wrap img {
    height: 870px;
  }
}

@media (min-width: 1600px) {
  .section-container .image-wrap img {
    max-height: 1260px;
    height: 100%;
  }
}

.section-container .main-content {
  text-align: center;
  padding: 0 20px;
}

@media (min-width: 1025px) {
  .section-container .main-content {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 0;
    text-align: left;
  }
}

.section-container .section-title {
  text-align: center;
  font-size: 36px;
  color: #000;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
  .section-container .section-title {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .section-container .section-title {
    font-size: 24px;
  }
}

.section-container .content-wrapper {
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .section-container .content-wrapper {
    padding: 4rem 3.5rem;
  }
}

@media (max-width: 768px) {
  .section-container .content-wrapper {
    gap: 20px;
  }
}

.section-container .text-column {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

@media (min-width: 1025px) {
  .section-container .text-column {
    max-width: 34%;
  }
}

.section-container .text-column h3 {
  font-size: 22px;
  color: #000;
  letter-spacing: -0.3px;
  margin-bottom: 0;
}

.section-container .text-column p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .text-column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 500px;
  }
  .image-column img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 0 40px;
  }
  .text-column h3 {
    font-size: 20px;
  }
  .text-column p {
    font-size: 14px;
  }
}

.video-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .video-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px 20px 60px;
  }
}

.video-image {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  min-width: 0;
}

.video-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.video-image video {
  position: static;
  min-width: inherit;
  -webkit-transform: none;
          transform: none;
}

.video-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.video-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1a1a;
}

@media (max-width: 767px) {
  .video-content h2 {
    font-size: 28px;
  }
}

.video-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.video-content p:last-child {
  margin-bottom: 0;
}

.testimonial-section {
  position: relative;
}

.testimonial-section .image-wrap {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.testimonial-section .image-wrap img {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .testimonial-section .image-wrap img {
    -o-object-position: right;
       object-position: right;
  }
}

.testimonial-content {
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 2;
  padding: 6rem;
  margin: 0 auto;
}

@media (min-width: 1500px) {
  .testimonial-content {
    padding: 9rem 6rem;
  }
}

@media (max-width: 1024px) {
  .testimonial-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .testimonial-content {
    padding: 0;
  }
}

.testimonial-content .testimonial-block {
  width: 100%;
  max-width: 72%;
  padding: 30px;
}

@media (max-width: 767px) {
  .testimonial-content .testimonial-block {
    max-width: 100%;
    text-align: center;
    padding: 80px 30px 30px;
  }
}

.testimonial-content .testimonial-block p {
  font-family: rooney-web, fave, sans-serif;
  font-size: 36px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .testimonial-content .testimonial-block p {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .testimonial-content .testimonial-block p {
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
  }
}

.testimonial-content .testimonial-block p.testimonial-attribution {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}

@media (max-width: 1024px) {
  .testimonial-content .testimonial-block p.testimonial-attribution {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    height: auto;
    padding: 40px 20px;
  }
  .testimonial-content {
    max-width: 100%;
  }
}

.image-with-text-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin: 0 auto;
}

.image-with-text-section__image-container {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  min-width: 0;
}

.image-with-text-section__image {
  width: 100%;
  height: auto;
  max-height: 750px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .image-with-text-section__image {
    max-width: 60%;
  }
}

.image-with-text-section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 40px;
}

@media (max-width: 767px) {
  .image-with-text-section__content {
    text-align: center;
    padding: 0 20px 60px;
  }
}

.image-with-text-section__heading {
  max-width: 400px;
  font-size: 26px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

@media (max-width: 767px) {
  .image-with-text-section__heading {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 1600px) {
  .image-with-text-section__heading {
    max-width: 430px;
    font-size: 30px;
    line-height: 1.4;
  }
}

.image-with-text-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 300px;
}

@media (max-width: 767px) {
  .image-with-text-section__list {
    max-width: 100%;
    margin: 0 auto;
  }
}

.image-with-text-section__item {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (min-width: 1600px) {
  .image-with-text-section__item {
    font-size: 20px;
    line-height: 1.6;
  }
}

.image-with-text-section__item:hover {
  color: #000;
}

@media (max-width: 767px) {
  .image-with-text-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    min-height: auto;
    padding: 0;
  }
  .image-with-text-section__heading {
    font-size: 24px;
  }
}

.cta-section {
  position: relative;
}

.cta-section .image-wrap img {
  width: 100%;
  height: 550px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .cta-section .image-wrap img {
    height: 300px;
  }
}

.cta-section .content {
  position: absolute;
  z-index: 10;
  text-align: center;
  max-width: 990px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .cta-section .content {
    width: 80%;
  }
}

.cta-section .content h2 {
  font-size: 44px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 400;
}

@media (max-width: 1139px) {
  .cta-section .content h2 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .cta-section .content h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}

.cta-section .content .cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 24px;
  letter-spacing: 2px;
  margin-top: 30px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.cta-section .content .cta-button:hover {
  border-color: #fff;
}

@media (max-width: 767px) {
  .cta-section .content .cta-button {
    font-size: 16px;
    margin-top: 10px;
  }
}
/*# sourceMappingURL=cooks.css.map */