:root {
  --primary-button-color: rgb(236, 32, 68);
  /*--primary-button-color: rgb(148 72 21);*/
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c;
  --text-color: rgb(118, 118, 118);
  --background-color: rgb(248 242 184);
  --background-fore-color: rgb(224 204 11);
  --backgrouond-error-color: #f1d0c5;

}

/*@import '../fonts/fonts.css';*/
:root {
  --content-width: 1260px;
  --container-offset: 80px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white-color: #ffffff;
  --black-color: #121212;
  --font-color: #121212;
  --grey-color: #bdbdbd;
  --light-grey-color: #f5f5f5;
  --dark-grey-color: #8c8a8a;
  --primary-color: #51a3f3;
  --second-color: #c8e3f5;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  :root {
    --container-offset: 40px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --container-offset: 16px;
  }
}
/* reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-family: Montserrat;
  /*font-weight: 18px;*/
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  display: none;
}

input[disabled] {
  background-color: #e4e4e4;
  border-color: #b0b0b0
}

/* end reset */
/* generals */
body {
  position: relative;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: var(--font-color);
  overflow-x: hidden;
  min-height: 100vh;
  background: var(--white-color);
}

.d-container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.d-second-container {
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1340px;
}

.hidden {
  display: none;
}

.heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: rgb(56, 56, 56);
  width: -moz-max-content;
  width: max-content;
  align-self: center;
  max-width: 100%;
  margin-bottom: 40px;
}
.heading-icon {
  border-radius: 100%;
  background-color: rgb(253, 233, 236);
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading-title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0px;
  text-align: center;
}
.heading-decor {
  position: relative;
  height: 0px;
  width: 100%;
}
.heading-decor__path {
  fill: transparent;
  stroke: currentcolor;
  stroke-width: 5;
}
.heading-decor__wrapper1 {
  position: absolute;
  top: 0px;
  width: 100%;
  color: rgb(235, 235, 236);
}
.heading-decor__wrapper2 {
  display: flex;
  flex-direction: row;
  position: absolute;
  height: 8px;
  width: 100%;
  overflow: hidden;
  bottom: -2px;
  left: 0px;
  right: 0px;
}
.heading-decor__wrapper3 {
  flex-direction: row;
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
  width: 100%;
  bottom: 1px;
}

.section-title {
  margin-top: 0px;
  margin-bottom: 40px;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: rgb(218, 58, 74);
}

@media screen and (max-width: 1024px) {
  .d-second-container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 34px;
  }
}
@media screen and (max-width: 576px) {
  .d-second-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 389px) {
  .heading {
    margin-bottom: 32px;
  }
}
/* end generals */
/* swiper */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1 !important;
  background-color: rgb(202, 202, 202);
}
.swiper-pagination-bullet-active {
  background-color: var(--text-color);
}

.lcSwiper-button-prev, .lcSwiper-button-next,
.cvSwiper-button-prev,
.cvSwiper-button-next,
.csSwiper-button-prev,
.csSwiper-button-next {
  position: absolute;
  top: calc(50% - 25px - 20px);
  width: 40px;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
}
.lcSwiper-button-prev.swiper-button-disabled, .lcSwiper-button-next.swiper-button-disabled,
.cvSwiper-button-prev.swiper-button-disabled,
.cvSwiper-button-next.swiper-button-disabled,
.csSwiper-button-prev.swiper-button-disabled,
.csSwiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}
.lcSwiper-button-prev,
.cvSwiper-button-prev,
.csSwiper-button-prev {
  transform: rotate(180deg);
  left: calc((100% - 960px - 80px - 48px) / 2);
}
.lcSwiper-button-next,
.cvSwiper-button-next,
.csSwiper-button-next {
  right: calc((100% - 960px - 80px - 48px) / 2);
}

@media screen and (max-width: 1200px) {
  .lcSwiper-button-prev,
  .cvSwiper-button-prev,
  .csSwiper-button-prev {
    left: 30px;
  }
  .lcSwiper-button-next,
  .cvSwiper-button-next,
  .csSwiper-button-next {
    right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .lcSwiper-button-prev, .lcSwiper-button-next,
  .cvSwiper-button-prev,
  .cvSwiper-button-next,
  .csSwiper-button-prev,
  .csSwiper-button-next {
    display: none;
  }
}
/* end swiper */
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
.header__container {
  display: flex;
  flex-direction: row;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(216, 216, 216);
  height: 48px;
  width: 100%;
  gap: 16px;
  padding: 0px 12px;
  z-index: 1001;
}
.header__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__toggle-burger {
  position: relative;
  align-items: center;
  color: rgb(92, 92, 92);
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 36px;
  width: 36px;
  display: none;
}
.header__center {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 0%;
  gap: 16px;
}
.header__center-logo {
  display: flex;
  align-items: center;
  /*max-width: 50px;*/
  color: var(--primary-button-color) !important;
  transform: translateY(-1px);
  text-decoration: none;
  font-family: "Advent Pro", "Courgette";
  font-weight: 600;
  width: 150px;
  font-size: 20px;
}
.header__center-logo img {
  width: 24px;
  margin-right: 10px;
}
.header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 16px;
  max-width: 600px;
}
.header__login {
  position: relative;
  background: none;
  padding: 0px;
  height: 100%;
  border: none;
  color: rgb(92, 92, 92);
  font-weight: 700;
  font-size: 16px;
}
.header__signup {
  margin: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  font-style: normal;
  padding: 0px 16px;
  height: 32px;
  font-weight: 500;
  border-radius: 8px;
  font-size: 16px;
  padding: 8px 16px;
  line-height: 0px;
  flex-shrink: 0;
  transition: background 0.22s ease 0s;
  position: relative;
  color: rgb(255, 255, 255);
  background: var(--primary-button-color);
  cursor: pointer;
}

.footer .header__center-logo {
  display: block;
  width: unset;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .header__container {
    padding: 0px 8px;
    gap: 8px;
  }
  .header__right {
    gap: 8px;
  }
}
/* end header */
/* section main */
.s-main {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.5/1;
  /*background: url("https://cdn.t.shef.com/unsafe/4800x0/center/middle/https://shef-general.s3.us-west-1.amazonaws.com/assets/img/landing/Hero_Mexican_Food_Desktop.jpg") center center/cover;*/
  background: url("../images/bg.webp") center center/cover;
  width: 100%;
  /*margin-top: 48px;*/
}
.s-main__content {
  padding: 40px;
  border-radius: 8px;
  max-width: 576px;
  margin: 32px 16px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.04) 1px 8px 15px;
  border: 1px solid rgb(235, 235, 236);
}
.s-main__title {
  text-align: center;
  width: 100%;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: rgb(56, 56, 56);
  margin: 0px 0px 8px;
}
.s-main__subtitle {
  text-align: center;
  width: 100%;
  padding: 0px 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(92, 92, 92);
  margin: 0px 0px 24px;
}
.s-main__form {
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgb(184, 184, 184);
  cursor: text;
  /*display: flex;*/
  gap: 8px;
  padding: 4px;
  width: 100%;
  position: relative;
}
.s-main__form-group {
  position: relative;
  flex: 1 1 0%;
  display: flex;
  align-items: center;
}
.s-main__form-group i {
  height: 24px;
  width: 24px;
  font-size: 24px;
  font-weight: 400;
  color: rgb(149, 149, 149);
  padding-left: 4px;
  flex-shrink: 0;
  position: absolute;
}
.s-main__form-input {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  border-style: hidden;
  width: 100%;
  padding-left: 30px;
  outline: none;
  border: 0;
  height: 22px;
}
.s-main__form-input:focus {
  outline: none !important;
}
.s-main__form-button {
  margin: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: none;
  font-style: normal;
  line-height: 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  padding: 0px 16px;
  height: 40px;
  transition: background 0.22s ease 0s;
  position: relative;
  color: rgb(255, 255, 255);
  background: var(--primary-button-color);
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .s-main {
    aspect-ratio: 0.9/1;
  }
  .s-main__content {
    padding: 24px 16px;
  }
  .s-main__title {
    font-size: 36px;
    line-height: 40px;
  }
}
/* end section main */
/* section steps */
.s-steps {
  margin-bottom: 64px;
  width: 100%;
  background-color: var(--background-color);
  padding: 0px 12px;
}
.s-steps__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0px auto;
  width: 100%;
  max-width: 576px;
  padding: 16px 0px;
  gap: 12px;
}
.s-steps__list-line {
  width: 24px;
  height: 1px;
  background-color: var(--background-fore-color);
  align-self: center;
}
.s-steps__item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 88px;
  max-width: 130px;
  align-items: center;
  align-self: flex-start;
}
.s-steps__item-icon {
  margin-bottom: 10px;
}
.s-steps__item-text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .s-steps {
    margin-bottom: 40px;
  }
  .s-steps__item {
    max-width: 88px;
  }
  .s-steps__item-text {
    font-size: 12px;
    line-height: 110%;
  }
}
/* end section steps */
/* section made */
.s-made {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.s-made__list {
  display: flex;
  gap: 40px;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: unset;
}
.s-made__item {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  flex-basis: 293px;
}
.s-made__item-icon {
  color: rgb(255, 255, 255);
}
.s-made__item-title {
  color: rgb(56, 56, 56);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  overflow-wrap: break-word;
}
.s-made__item-text {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .s-made {
    width: 885px;
  }
}
@media screen and (max-width: 992px) {
  .s-made {
    width: 100%;
  }
  .s-made__list {
    flex-direction: column;
    padding: 0px 35px;
    justify-content: flex-start;
  }
  .s-made__item {
    flex-basis: auto;
  }
}
/* end section made */
/* section lovedchefs */
.s-lovedchefs {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
}

.lc {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(235, 235, 236);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.04) 1px 8px 15px;
  width: 100%;
}
.lcSwiper {
  max-width: 100%;
  padding-bottom: 50px;
  margin-bottom: -50px;
}
.lcSwiper-pagination {
  position: relative;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 20px;
  cursor: pointer;
  z-index: 1;
}
.lcSwiper .swiper-slide {
  width: 960px !important;
}
.lc__info {
  position: relative;
  background: rgb(247, 247, 247);
  margin-bottom: 24px;
  padding: 24px 24px 32px;
}
.lc__info-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
}
.lc__info-photo {
  margin-right: 16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  min-width: 1px;
  min-height: 1px;
}
.lc__info-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lc__info-geo {
  font-size: 16px;
  font-weight: 500;
  color: rgb(96, 96, 96);
}
.lc__info-name {
  font-size: 18px;
  font-weight: 600;
  color: rgb(56, 56, 56);
}
.lc__info-rating {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-radius: 4px;
  padding: 4px 8px;
  gap: 8px;
  color: rgb(96, 96, 96);
  font-size: 12px;
  font-weight: 600;
  background-color: rgb(255, 242, 202);
}
.lc__info-rating i {
  font-size: 10px;
  color: rgb(56, 56, 56);
}
.lc__info-rating span {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  transform: translateY(0.075em);
}
.lc__info-customer {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgb(202, 202, 202);
  padding-left: 24px;
  margin-left: 24px;
  width: 70%;
}
.lc__info-customer-text {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: rgb(96, 96, 96);
  margin-bottom: 24px;
}
.lc__info-customer-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
}
.lc__info-customer-name span {
  font-size: 14px;
  font-weight: 500;
  color: rgb(96, 96, 96);
}
.lc__info-customer-name i {
  font-size: 16px;
  color: rgb(137, 207, 187);
}
.lc__info-decor {
  height: 16px;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: -4px;
  margin-bottom: 0px;
  overflow: hidden;
}
.lc__info-decor::before {
  content: "";
  position: absolute;
  left: -16px;
  right: 0px;
  height: 16px;
  background-size: 32px 16px !important;
  background-repeat: repeat-x !important;
  background: radial-gradient(closest-side, rgb(255, 255, 255), rgb(255, 255, 255) 55%, transparent 55%) 0px 1px;
  bottom: 0px;
}
.lc__info-decor::after {
  content: "";
  position: absolute;
  left: -16px;
  right: 0px;
  height: 16px;
  background-size: 32px 16px !important;
  background-repeat: repeat-x !important;
  background: radial-gradient(closest-side, transparent, transparent 55%, rgb(255, 255, 255) 55%) 16px -10px;
  bottom: -7px;
}
.lc__list {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  padding: 0px 16px;
}
.lc__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  width: 50%;
  margin-bottom: 16px;
}
.lc__item-photo {
  margin-right: 16px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  min-height: 1px;
  width: 120px;
  min-width: 120px;
  height: 120px;
}
.lc__item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 4px;
}
.lc__item-title {
  font-size: 16px;
  font-weight: 600;
  color: rgb(56, 56, 56);
}
.lc__item-text {
  margin-bottom: 8px;
  margin-right: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(96, 96, 96);
}
.lc__item-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
}
.lc__item-tag {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-radius: 4px;
  padding: 4px 8px;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(96, 96, 96);
  background-color: rgb(245, 245, 245);
}
.lc__item-tag span {
  color: inherit;
  display: inline-block;
  /*font-family: Gilroy, Helvetica, Arial, "sans-serif";*/
  line-height: inherit;
  transform: translateY(0.075em);
}
.lc__item-rating {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-radius: 4px;
  padding: 4px 8px;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(96, 96, 96);
  background-color: rgb(255, 242, 202);
}
.lc__item-rating span {
  color: inherit;
  display: inline-block;
  /*font-family: Gilroy, Helvetica, Arial, "sans-serif";*/
  line-height: inherit;
  transform: translateY(0.075em);
}

@media screen and (max-width: 1200px) {
  .lcSwiper .swiper-slide {
    width: 885px !important;
  }
  .lc__info {
    position: relative;
    background: rgb(247, 247, 247);
    margin-bottom: 24px;
    padding: 24px 24px 32px;
  }
  .lc__info-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
  }
  .lc__info-photo {
    margin-right: 16px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-width: 1px;
    min-height: 1px;
  }
  .lc__info-main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .lc__info-geo {
    font-size: 16px;
    font-weight: 500;
    color: rgb(96, 96, 96);
  }
  .lc__info-name {
    font-size: 18px;
    font-weight: 600;
    color: rgb(56, 56, 56);
  }
  .lc__info-rating {
    display: flex;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    border-radius: 4px;
    padding: 4px 8px;
    gap: 8px;
    color: rgb(96, 96, 96);
    font-size: 12px;
    font-weight: 600;
    background-color: rgb(255, 242, 202);
  }
  .lc__info-rating i {
    font-size: 10px;
    color: rgb(56, 56, 56);
  }
  .lc__info-rating span {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    transform: translateY(0.075em);
  }
  .lc__info-customer {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgb(202, 202, 202);
    padding-left: 24px;
    margin-left: 24px;
    width: 70%;
  }
  .lc__info-customer-text {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: rgb(96, 96, 96);
    margin-bottom: 24px;
  }
  .lc__info-customer-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;
  }
  .lc__info-customer-name span {
    font-size: 14px;
    font-weight: 500;
    color: rgb(96, 96, 96);
  }
  .lc__info-customer-name i {
    font-size: 16px;
    color: rgb(137, 207, 187);
  }
  .lc__info-decor {
    height: 16px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: -4px;
    margin-bottom: 0px;
    overflow: hidden;
  }
  .lc__info-decor::before {
    content: "";
    position: absolute;
    left: -16px;
    right: 0px;
    height: 16px;
    background-size: 32px 16px !important;
    background-repeat: repeat-x !important;
    background: radial-gradient(closest-side, rgb(255, 255, 255), rgb(255, 255, 255) 55%, transparent 55%) 0px 1px;
    bottom: 0px;
  }
  .lc__info-decor::after {
    content: "";
    position: absolute;
    left: -16px;
    right: 0px;
    height: 16px;
    background-size: 32px 16px !important;
    background-repeat: repeat-x !important;
    background: radial-gradient(closest-side, transparent, transparent 55%, rgb(255, 255, 255) 55%) 16px -10px;
    bottom: -7px;
  }
  .lc__list {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    padding: 0px 16px;
  }
  .lc__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 50%;
    margin-bottom: 16px;
  }
  .lc__item-photo {
    margin-right: 16px;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 1px;
    width: 120px;
    min-width: 120px;
    height: 120px;
  }
  .lc__item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 4px;
  }
  .lc__item-title {
    font-size: 16px;
    font-weight: 600;
    color: rgb(56, 56, 56);
  }
  .lc__item-text {
    margin-bottom: 8px;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(96, 96, 96);
  }
  .lc__item-tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
  }
  .lc__item-tag {
    display: flex;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    border-radius: 4px;
    padding: 4px 8px;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgb(96, 96, 96);
    background-color: rgb(245, 245, 245);
  }
  .lc__item-tag span {
    color: inherit;
    display: inline-block;
    /*font-family: Gilroy, Helvetica, Arial, "sans-serif";*/
    line-height: inherit;
    transform: translateY(0.075em);
  }
  .lc__item-rating {
    display: flex;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    border-radius: 4px;
    padding: 4px 8px;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgb(96, 96, 96);
    background-color: rgb(255, 242, 202);
  }
  .lc__item-rating span {
    color: inherit;
    display: inline-block;
    /*font-family: Gilroy, Helvetica, Arial, "sans-serif";*/
    line-height: inherit;
    transform: translateY(0.075em);
  }
}
@media screen and (max-width: 991px) {
  .lcSwiper {
    padding-left: 16px;
  }
  .lcSwiper .swiper-slide {
    width: 358px !important;
  }
  .lc__info {
    padding: 16px 16px 32px;
  }
  .lc__info-customer {
    display: none;
  }
  .lc__list {
    flex-direction: column;
  }
  .lc__item {
    width: 100%;
  }
  .lc__item-photo {
    width: 96px;
    min-width: 96px;
    height: 96px;
  }
}
@media screen and (max-width: 389px) {
  .lc__info-geo {
    font-size: 14px;
  }
  .lc__info-name {
    font-size: 16px;
  }
}
/* end section lovedchefs */
/* section customer */
.s-customer {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 80px;
  overflow: hidden;
}

.cvSwiper {
  overflow: visible;
  width: 960px;
  max-width: 100%;
  padding-bottom: 50px;
  margin-bottom: -50px;
}
.cvSwiper-pagination {
  position: relative;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 20px;
  cursor: pointer;
  z-index: 1;
}
.cvSwiper .swiper-slide {
  width: 304px !important;
}
.cv-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgb(235, 235, 236);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.04) 1px 8px 15px;
  width: 100%;
  min-height: 286px;
}
.cv-item__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
  color: rgb(56, 56, 56);
  flex-grow: 1;
  margin-bottom: 24px;
}
.cv-item__stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 8px;
}
.cv-item__stars i {
  font-size: 15px;
  color: rgb(255, 197, 19);
}
.cv-item__name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  color: rgb(56, 56, 56);
}
.cv-item__name span {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  transform: translateY(0.075em);
}
.cv-item__name i {
  color: rgb(0, 175, 144);
}

@media screen and (max-width: 1200px) {
  .cvSwiper {
    width: 885px;
  }
  .cvSwiper .swiper-slide {
    width: 279px !important;
  }
}
@media screen and (max-width: 991px) {
  .cvSwiper {
    padding-left: 16px;
    width: 100%;
  }
  .cvSwiper .swiper-slide {
    width: calc(33% - 12px) !important;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .cvSwiper .swiper-slide {
    width: calc(50% - 18px) !important;
  }
}
@media screen and (max-width: 576px) {
  .cvSwiper .swiper-slide {
    width: calc(100% - 60px) !important;
  }
  .cv-item {
    min-height: 260px;
  }
}
/* end section customer */
/* section meet */
.s-meet {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  width: 960px;
  height: 450px;
  max-width: 100%;
  background-size: contain;
  justify-content: flex-end;
  background-image: url(https://cdn.t.shef.com/unsafe/1950x0/center/middle/https://shef-general.s3.us-west-1.amazonaws.com/assets/img/landing/value-props/MeetTheShefs/shefsDesktop.png);
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}
.s-meet-top-mobile {
  position: absolute;
  top: 0px;
  width: 100vw;
  height: 100%;
  background: url(https://cdn.t.shef.com/unsafe/1550x0/center/middle/https://shef-general.s3.us-west-1.amazonaws.com/assets/img/landing/value-props/MeetTheShefs/shefsMobileUpper.png) center top/contain no-repeat;
  display: none;
}
.s-meet-bottom-mobile {
  position: absolute;
  bottom: 0px;
  width: 100vw;
  height: 100%;
  background: url(https://cdn.t.shef.com/unsafe/1550x0/center/middle/https://shef-general.s3.us-west-1.amazonaws.com/assets/img/landing/value-props/MeetTheShefs/shefsMobileLower.png) center bottom/contain no-repeat;
  display: none;
}
.s-meet .heading {
  margin-bottom: 16px;
}
.s-meet__content {
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-bottom: 50px;
}
.s-meet__descr {
  font-size: 16px;
  margin-bottom: 16px;
}
.s-meet__button {
  margin: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  font-style: normal;
  line-height: 16px;
  cursor: pointer;
  font-size: 16px;
  height: 50px;
  border-radius: 8px;
  font-weight: 600;
  padding: 16px;
  transition: background 0.22s ease 0s;
  position: relative;
  color: rgb(255, 255, 255);
  background: var(--primary-button-color);
  cursor: pointer;
}
.s-meet__button span {
  margin-left: 8px;
}

@media screen and (max-width: 1200px) {
  .s-meet {
    width: 885px;
    height: 450px;
    background-size: contain;
  }
}
@media screen and (max-width: 991px) {
  .s-meet {
    background-size: cover;
    height: 440px;
  }
}
@media screen and (max-width: 767px) {
  .s-meet {
    background-image: none;
    width: 100%;
    height: 760px;
    justify-content: center;
  }
  .s-meet-top-mobile {
    display: block;
  }
  .s-meet-bottom-mobile {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .s-meet {
    height: 620px;
  }
  .s-meet__descr {
    padding-right: 14px;
    padding-left: 14px;
  }
}
/* end section meet */
/* section stories */
.s-stories {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  overflow: hidden;
}

.cs {
  display: grid;
  grid-template-columns: 40% 60%;
  border: 1px solid rgb(235, 235, 236);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.04) 1px 8px 15px;
  width: 100%;
}
.csSwiper {
  max-width: 100%;
  padding-bottom: 50px;
  margin-bottom: -50px;
}
.csSwiper-pagination {
  position: relative;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 20px;
  cursor: pointer;
  z-index: 1;
}
.csSwiper .swiper-slide {
  width: 960px !important;
}
.cs__photo {
  display: flex;
  flex-grow: 0;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px 0px 0px 8px;
}
.cs__photo img {
  width: 100%;
  height: auto;
  border-radius: 8px 0px 0px 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.cs__photo .cs__info-tag {
  display: none;
}
.cs__info {
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 100%;
}
.cs__info-tag {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(56, 56, 56);
  background-color: rgb(247, 247, 247);
}
.cs__info-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: rgb(56, 56, 56);
}
.cs__info-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.cs__info-text {
  overflow: hidden;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  text-overflow: ellipsis;
  min-height: 140px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  margin-bottom: 16px;
}
.cs__info-special {
  margin-top: auto;
}
.cs__info-special-title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(56, 56, 56);
}
.cs__info-special-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.cs__info-special-tag {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-radius: 4px;
  padding: 4px 8px;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(56, 56, 56);
  background-color: rgb(245, 245, 245);
}
.cs__info-special-tag span {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  transform: translateY(0.075em);
}
.cs__info-decor {
  position: relative;
  height: 0px;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cs__info-decor__path {
  fill: transparent;
  stroke: currentcolor;
  stroke-width: 5;
}
.cs__info-decor__wrapper1 {
  position: absolute;
  top: 0px;
  width: 100%;
  color: rgb(235, 235, 236);
}
.cs__info-decor__wrapper2 {
  display: flex;
  flex-direction: row;
  position: absolute;
  height: 8px;
  width: 100%;
  overflow: hidden;
  bottom: -2px;
  left: 0px;
  right: 0px;
}
.cs__info-decor__wrapper3 {
  flex-direction: row;
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
  width: 100%;
  bottom: 1px;
}
.cs__info-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
}
.cs__info-images img {
  display: flex;
  flex-grow: 1;
  flex-basis: 100%;
  max-width: calc((100% - 24px) / 4);
  max-height: 72px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 1200px) {
  .csSwiper .swiper-slide {
    width: 885px !important;
  }
}
@media screen and (max-width: 991px) {
  .csSwiper {
    padding-left: 16px;
  }
  .csSwiper .swiper-slide {
    width: 60% !important;
    min-width: 60% !important;
  }
}
@media screen and (max-width: 767px) {
  .cs {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs__photo {
    height: 282px;
    border-radius: 8px 8px 0px 0px;
  }
  .cs__photo img {
    max-height: 282px;
    border-radius: 8px 8px 0px 0px;
  }
  .cs__photo .cs__info-tag {
    display: block;
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 14px;
  }
  .cs__info {
    padding: 16px;
  }
  .cs__info-tag {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .csSwiper {
    padding-left: 0;
    width: calc(100% - 32px);
  }
  .csSwiper .swiper-slide {
    width: 100% !important;
    min-width: 100% !important;
  }
  .cs__info-title {
    font-size: 18px;
  }
}
/* end section stories */
/* section features */
.s-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  width: 960px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.s-featured__list {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  row-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: unset;
  padding-right: unset;
  padding-bottom: unset;
  padding-left: unset;
}
.s-featured__item {
  width: 120px;
  height: 80px;
  margin-bottom: 16px;
  text-decoration: none;
}
.s-featured__item svg {
  cursor: pointer;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: all;
}
.s-featured__item:hover svg {
  transform: scale(1.2);
}
.s-featured__item:hover svg path {
  fill: rgb(146, 42, 76);
}

@media screen and (max-width: 1200px) {
  .s-featured {
    width: 885px;
  }
}
@media screen and (max-width: 991px) {
  .s-featured {
    width: 100%;
  }
  .s-featured__list {
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    padding-top: 0px;
    padding-right: 16px;
  }
  .s-featured__item {
    margin-bottom: 0;
  }
}
/* end section features */
/* section safety */
.s-safety {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.s-safety .heading {
  margin-bottom: 32px;
}
.s-safety__container {
  display: flex;
  flex-direction: row;
}
.s-safety__image {
  width: 50%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.s-safety__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.s-safety__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 32px;
}
.s-safety__content h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 24px;
}
.s-safety__content p {
  font-size: 16px;
}
.s-safety__content a {
  margin-top: 8px;
  font-size: 16px;
  text-decoration: underline;
}

.s-blog .s-safety__content {
  justify-content: flex-start;
}

@media screen and (max-width: 991px) {
  .s-safety {
    width: 100%;
  }
  .s-safety__container {
    flex-direction: column-reverse;
  }
  .s-safety__image {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
  .s-safety__content {
    width: 100%;
  }
  .s-safety__image img {
    border-radius: 0;
  }

}
/* end section safety */
/* section faq */
.s-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.s-faq .heading {
  margin-bottom: 24px;
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.accordion-item {
  width: 100%;
  border-bottom: 1px solid rgb(216, 216, 216);
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.accordion-header h3 {
  margin: 0;
  width: calc(100% - 16px - 24px);
  font-size: 16px;
  font-weight: 600;
}
.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.accordion-icon i {
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.3s ease;
}
.accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}
.accordion-content p {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
}
.accordion-open .accordion-icon i {
  transform: rotate(-180deg);
}

@media screen and (max-width: 1200px) {
  .s-faq {
    width: 885px;
  }
}
@media screen and (max-width: 991px) {
  .s-faq {
    width: calc(100% - 32px);
  }
}
/* end section faq */
/* section cta */
.s-cta {
  background-size: cover;
  background-position-x: center;
  /*background-position-x: 50%;*/
  background-position-y: 0%;
  background-size: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  background-image: url("../images/chefs2.webp");
  margin-bottom: 80px;
}
.s-cta__content {
  background-color: rgb(255, 255, 255);
  text-align: center;
  width: 536px;
  max-width: calc(-64px + 100vw);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px;
}
.s-cta__subtitle {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #777;
  text-align: center;
}
.s-cta__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  font-size: 50px;
  font-weight: 700;
  color: rgb(56, 56, 56);
}
.s-cta__buttons {
  display: flex;
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
}
.s-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-button-color);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  color: var(--primary-button-color);
}
.s-cta__button:hover {
  background-color: var(--primary-button-color);
  color: #fff !important;
}

@media screen and (max-width: 991px) {
  .s-cta__content {
    padding: 24px;
  }
}
@media screen and (max-width: 576px) {
  .s-cta {
    min-height: 560px;
    background-image: url("https://cdn.t.shef.com/unsafe/1027x1150/center/middle/https://shef-general.s3.us-west-1.amazonaws.com/assets/img/landing/homepage-cta/end_shefs_grid_image.png");
  }
  .s-cta__title {
    font-size: 30px;
  }
}
/* end section cta */
/* section footer */
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(245, 245, 245);
}
.footer__top {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  justify-content: center;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  width: 240px;
  font-size: 16px;
  margin-left: 20px;
}
.footer__menu-title {
  font-weight: 600;
  color: rgb(56, 56, 56);
  margin-bottom: 16px;
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  color: rgb(78, 78, 78);
}
.footer__menu-list a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__menu-list a:hover {
  color: rgb(0, 175, 144);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgb(216, 216, 216);
  padding-top: 20px;
  flex-direction: row;
  row-gap: 0px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  font-size: 12px;
  font-weight: 400;
  color: rgb(78, 78, 78);
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 40px;
}
.footer__bottom-left a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__bottom-left a:hover {
  color: rgb(0, 175, 144);
}
.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__bottom-right span i {
  margin-right: 4px;
}
.footer__apps {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
    row-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .footer__bottom-left {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__logo {
    margin-bottom: 40px;
    align-items: center;
  }
  .footer__menu {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .footer__menu:not(:last-child) {
    margin-bottom: 24px;
  }
  .footer__bottom-left {
    flex-direction: column;
  }
  .footer__bottom-right {
    flex-direction: column;
  }
}
/* end section footer */
/* section hero-cta */
.s-herocta {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
}
.s-herocta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(73, 30, 24, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.s-herocta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 72.53%), url("../images/A_top-down_view_of_a_wooden_table_with_a_bowl_of_c.jpg");
  background-size: cover;
  background-position-x: left;
  background-position-y: top;
}
.s-herocta .d-container {
  align-self: center;
  display: flex;
  flex-direction: column;
}
.s-herocta__wrapper {
  margin-top: 140px;
  max-width: 710px;
}
.s-herocta__title {
  margin-top: 0px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 80px;
  line-height: 1;
  color: var(--white-color);
  text-shadow: rgba(0, 0, 0, 0.8) 0 0 12px;
}
.s-herocta__title br {
  display: none;
}
.s-herocta__descr {
  margin-top: 0px;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
  color: var(--white-color);
  text-shadow: rgba(0, 0, 0, 0.8) 0 0 12px;
}
.s-herocta__form-inputs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  justify-items: start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 30px;
}
.s-herocta__form-inputs input {
  width: 100%;
  height: 60px;
  margin-top: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
}
.s-herocta__form-bottom {
  margin-top: 20px;
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
  font-weight: normal;
  color: var(--white-color);
}

.checkbox {
  width: 100%;
  display: flex;
  flex-direction: row;
  color: white;
  cursor: pointer;
  margin-bottom: 12px;
}
.checkbox-label {
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}
.checkbox-label-wrapper {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  row-gap: 12px;
  -moz-column-gap: 12px;
       column-gap: 12px;
  position: relative;
}
.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -100;
}
.checkbox input:checked ~ .checkbox-input {
  border-color: #000;
}
.checkbox input:checked ~ .checkbox-input > .checkbox-input-icon {
  opacity: 1;
}
.checkbox-input {
  align-items: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  cursor: inherit;
  display: flex;
  justify-content: center;
  transition-duration: 0.22s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  border: 1px solid rgb(149, 149, 149);
}
.checkbox-input-icon {
  width: 13px;
  height: 13px;
  color: var(--primary-button-color);
  opacity: 0;
}
.checkbox-input-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white-color);
  transform: translateY(0.075em);
}

.button-primary-rounded {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  font-style: normal;
  line-height: 1;
  font-weight: normal;
  font-size: 16px;
  padding: 12px 60px;
  height: 50px;
  color: rgb(255, 255, 255);
  border: 0;
  outline: none;
  background-color: var(--primary-button-color);
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: background-color;
  cursor: pointer;
}
.button-primary-rounded:hover {
  background-color: rgb(250, 107, 122);
}

@media screen and (max-width: 768px) {
  .s-herocta {
    padding-bottom: 50px;
    position: relative;
  }
  .s-herocta::before {
    height: 640px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 66.42%), url("https://cdn.t.shef.com/unsafe/1550x0/center/middle/https://cdn.shef.com/assets/bas_hero_m-f8cc83ee.jpg");
    background-repeat-x: initial, initial;
    background-repeat-y: initial, initial;
    background-attachment: initial, initial;
    background-origin: initial, initial;
    background-clip: initial, initial;
    background-color: initial;
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
  }
  .s-herocta__wrapper {
    margin-top: 50px;
    max-width: 100%;
  }
  .s-herocta__title {
    font-size: 40px;
    line-height: 45px;
  }
  .s-herocta__title br {
    display: unset;
  }
  .s-herocta__descr {
    font-size: 24px;
    line-height: 32px;
  }
  .s-herocta__form {
    padding: 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 7px 7px 50px 1px;
  }
  .s-herocta__form-inputs {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  .s-herocta__form-inputs input {
    background-color: rgb(247, 247, 247);
  }
  .s-herocta__form-bottom {
    color: rgb(56, 56, 56);
  }
  .checkbox {
    color: rgb(149, 149, 149);
  }
  .checkbox-input-text {
    color: rgb(56, 56, 56);
  }
}
/* end section hero-cta */
/* section what is chef */
.s-whatischef {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}
.s-whatischef__content p {
  max-width: 806px;
  margin-top: 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: rgb(56, 56, 56);
}
.s-whatischef__content p:not(:last-child) {
  margin-bottom: 24px;
}
.s-whatischef__content p br {
  display: none;
}

@media screen and (max-width: 992px) {
  .s-whatischef .section-title {
    text-align: center;
  }
  .s-whatischef__content p {
    max-width: 100%;
    text-align: center;
  }
  .s-whatischef__content p br {
    display: unset;
  }
}
@media screen and (max-width: 768px) {
  .s-whatischef__content p {
    font-size: 16px;
    line-height: 24px;
  }
  .s-whatischef__content p:not(:last-child) {
    margin-bottom: 16px;
  }
}
/* end section what is chef */
/* section why chef */
.s-whychef {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}
.s-whychef__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.s-whychef__item {
  display: flex;
  flex-direction: column;
  width: 370px;
  color: rgb(56, 56, 56);
  padding-top: 0px;
  padding-right: 10px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  position: relative;
  align-items: center;
}
.s-whychef__item img {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
  width: 70px;
  height: 70px;
}
.s-whychef__item h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}
.s-whychef__item p {
  margin-top: 0px;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
.whychef-icon {
  height: 110px;
}
.whychef-icon-1 {
  font-size: 70px;
  position: absolute;
  left: auto;
  color: #c4072c;
  margin-left: -25px;
}
.whychef-icon-2 {
  font-size: 70px;
  position: absolute;
  left: auto;
  margin-left: -28px;
  margin-top: -3px;
}
.s-helpyou__item .whychef-icon-1 {
  margin-left: 0px;
}
.s-helpyou__item .whychef-icon-2 {
  margin-left: 3px;
}

@media screen and (max-width: 1200px) {
  .s-whychef__list {
    justify-content: center;
    flex-wrap: wrap;
  }
  .s-whychef__item {
    padding-top: 0px;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .s-whychef .section-title {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .s-whychef__item h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .s-whychef__item p {
    font-size: 16px;
    line-height: 24px;
  }
}
/* end section why chef */
/* section quotes */
.s-quotes {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 60px;
  width: 100%;
}
.s-quotes__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgb(56, 56, 56);
}
.s-quotes__item:not(:last-child) {
  margin-bottom: 80px;
}
.s-quotes__item:nth-child(even) {
  flex-direction: row-reverse;
}
.s-quotes__item-photo {
  width: 46.5%;
}
.s-quotes__item-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-quotes__item-content {
  width: 46.5%;
}
.s-quotes__item-content img {
  height: 67px;
  width: 67px;
}
.s-quotes__item-content p {
  margin-top: 0px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 50px;
}
.s-quotes__item-content.pastry p {
  font-size: 20px;
  line-height: 1.3;
}
.s-quotes__item-content div {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}

@media screen and (max-width: 1100px) {
  .s-quotes__item-content p {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 992px) {
  .s-quotes {
    margin-bottom: 40px;
  }
  .s-quotes__item {
    justify-content: flex-start;
    flex-direction: column;
  }
  .s-quotes__item:nth-child(even) {
    flex-direction: column;
  }
  .s-quotes__item-photo {
    width: 100%;
    margin-bottom: 16px;
  }
  .s-quotes__item-content {
    width: 100%;
  }
  .s-quotes__item-content img {
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .s-quotes {
    margin-bottom: 20px;
  }
  .s-quotes__item:not(:last-child) {
    margin-bottom: 60px;
  }
  .s-quotes__item-content p {
    font-size: 26px;
    line-height: 32px;
  }
}
/* end section quotes */
/* section sell chef */
.s-sellchef {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  overflow: hidden;
  background-color: rgb(247, 247, 247);
}
.s-sellchef .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
}

.scSwiper {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}
.scSwiper-button-prev {
  transform: rotate(180deg);
}
.scSwiper-button-prev, .scSwiper-button-next {
  width: 40px;
  height: 40px;
  opacity: 1;
  cursor: pointer;
}
.scSwiper-button-prev.swiper-button-disabled, .scSwiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
.scSwiper-button-prev:not(:first-child), .scSwiper-button-next:not(:first-child) {
  margin-left: 10px;
}
.scSwiper .swiper-slide {
  width: 550px !important;
}
.sc__item {
  width: 100%;
}
.sc__item-image {
  height: auto;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 55/42;
  margin-bottom: 30px;
}
.sc__item-number {
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: rgb(218, 58, 74);
  margin-bottom: 10px;
}
.sc__item-title {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: rgb(56, 56, 56);
  margin-bottom: 10px;
}
.sc__item-content {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: rgb(56, 56, 56);
}
.sc__item-content a {
  color: var(--primary-button-color);
  text-decoration-line: none;
}

@media screen and (max-width: 992px) {
  .s-sellchef .section-title {
    text-align: center;
  }
}
@media screen and (max-width: 565px) {
  .s-sellchef .swiper-nav {
    justify-content: center;
    width: 100%;
  }
  .scSwiper .swiper-slide {
    width: 100% !important;
  }
}
/* end section sell chef */
/* section video */
.s-video {
  padding-top: 80px;
  padding-bottom: 80px;
}
.s-video__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.s-video .d-container {
  padding-right: 0;
}
.s-video__player {
  width: calc(100% - 200px);
}
.s-video__player video {
  max-width: 100%;
}
.s-video__content {
  margin-right: -60px;
  height: -moz-fit-content;
  height: fit-content;
  width: 340px;
  padding-top: 62px;
  padding-right: 50px;
  padding-bottom: 60px;
  background-color: rgb(255, 255, 255);
  z-index: 2;
}
.s-video__subtitle {
  font-weight: 700;
  color: rgb(56, 56, 56);
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 0px;
}
.s-video__title {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-button-color);
  font-size: 40px;
  line-height: 48px;
}
.s-video .button-primary-rounded {
  padding: 0px 36px;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .s-video {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .s-video__container {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .s-video .d-container {
    padding-right: 40px;
  }
  .s-video__player {
    width: 100%;
  }
  .s-video__content {
    margin-right: 0;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 32px;
    text-align: center;
  }
  .s-video .button-primary-rounded {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .s-video {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .s-video .d-container {
    padding-right: 16px;
  }
  .s-video__content {
    margin-bottom: 16px;
  }
  .s-video__title {
    font-size: 28px;
    line-height: 34px;
  }
}
/* end section video */
/* section help you */
.s-helpyou {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}
.s-helpyou__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 7%;
       column-gap: 7%;
  row-gap: 80px;
  width: 100%;
}
.s-helpyou__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: rgb(56, 56, 56);
  position: relative;
}
.s-helpyou__item img {
  margin-bottom: 30px;
  width: 70px;
  height: 70px;
}
.s-helpyou__item h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}
.s-helpyou__item p {
  margin-top: 0px;
  margin-bottom: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
.s-helpyou__item p:not(:last-child) {
  margin-bottom: 16px;
}

@media screen and (max-width: 992px) {
  .s-helpyou .section-title {
    text-align: center;
  }
  .s-helpyou__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
  .s-helpyou__item {
    align-items: center;
    text-align: center;
  }
  .s-helpyou__item img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .s-helpyou__item h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 28px;
  }
  .s-helpyou__item p {
    font-size: 16px;
    line-height: 24px;
  }
  .s-helpyou__item p:not(:last-child) {
    margin-bottom: 12px;
  }
}
/* end section help you */
/* section cooking */
.s-cooking {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  width: 100%;
}
.s-cooking__image {
  width: 100%;
  margin-bottom: 60px;
  max-height: 550px;
  object-fit: cover;
}
.s-cooking__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 7%;
       column-gap: 7%;
  row-gap: 80px;
  width: 100%;
}
.s-cooking__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: rgb(56, 56, 56);
}
.s-cooking__item img {
  margin-bottom: 30px;
  width: 70px;
  height: 70px;
}
.s-cooking__item h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}
.s-cooking__item p {
  margin-top: 0px;
  margin-bottom: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
.s-cooking__item p:not(:last-child) {
  margin-bottom: 16px;
}

@media screen and (max-width: 992px) {
  .s-cooking {
    margin-bottom: 20px;
  }
  .s-cooking .section-title {
    text-align: center;
  }
  .s-cooking__image {
    margin-bottom: 40px;
  }
  .s-cooking__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
  .s-cooking__item {
    align-items: center;
    text-align: center;
  }
  .s-cooking__item img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .s-cooking__item h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 28px;
  }
  .s-cooking__item p {
    font-size: 16px;
    line-height: 24px;
  }
  .s-cooking__item p:not(:last-child) {
    margin-bottom: 12px;
  }
}
/* end section cooking */
/* section faq */
.s-faq-second {
  padding-top: 40px;
  padding-bottom: 60px;
  width: 100%;
}
.s-faq-second .section-title {
  text-align: center;
}
.s-faq-second .accordion {
  width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.s-faq-second .accordion-header h3 {
  font-size: 24px;
  line-height: 1.2;
}
.s-faq-second__info {
  margin-top: 50px;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}
.s-faq-second__info a {
  color: var(--primary-button-color);
  text-decoration-line: none;
}

@media screen and (max-width: 768px) {
  .s-faq-second .accordion {
    width: 100%;
  }
  .s-faq-second .accordion-header h3 {
    font-size: 20px;
  }
  .s-faq-second__info {
    margin-top: 40px;
    font-size: 16px;
    line-height: 24px;
  }
}
/* end section faq */
/* section ready */
.s-ready {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}
.s-ready__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 100px;
}
.s-ready__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
  padding: 0px 10px;
}
.s-ready__content h2 {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
}
.s-ready__content p {
  margin-bottom: 40px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 34px;
}
.s-ready__image {
  width: 55%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-ready__info {
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: rgb(149, 149, 149);
}

@media screen and (max-width: 768px) {
  .s-ready__container {
    justify-content: flex-start;
    flex-direction: column-reverse;
    margin-bottom: 80px;
  }
  .s-ready__content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    width: 100%;
    padding: 0;
  }
  .s-ready__content h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .s-ready__content p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
  }
  .s-ready__image {
    width: 100%;
  }
}
/* end section ready */
/* header second */
.header-second__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  height: 120px;
}
.header-second__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.header-second__logo img {
  height: 85px;
  width: auto;
}
.header-second__menu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header-second__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-second__list li {
  padding-top: 8px;
  padding-bottom: 8px;
}
.header-second__list li:not(:first-child) {
  margin-left: 28px;
}
.header-second__list li a {
  display: block;
  text-decoration: none;
  padding: 0;
  font-weight: 400;
  font-weight: 600;
  font-size: 13px;
  color: #636363;
}
.header-second__toggle {
  display: none;
}

.breadcrumb {
  z-index: 10;
  line-height: 15px;
  font-size: 11px;
}
.breadcrumbs-wrapper {
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
  color: #636363;
}
.breadcrumbs-wrapper .d-second-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 56px;
}
.breadcrumbs-wrapper .breadcrumb-trail .trail-before,
.breadcrumbs-wrapper .breadcrumb-trail .trail-end,
.breadcrumbs-wrapper .breadcrumb-trail .sep,
.breadcrumbs-wrapper .breadcrumb-trail a,
.breadcrumbs-wrapper .breadcrumb-trail .bbp-breadcrumb-current {
  display: block;
  float: left;
  padding: 0 3px;
  color: #636363;
  text-decoration: none;
}

@media screen and (max-width: 989px) {
  .header-second__container {
    position: relative;
    padding-top: 4px;
    padding-bottom: 4px;
    height: 80px;
  }
  .header-second__logo {
    flex-shrink: 0;
  }
  .header-second__logo img {
    height: 72px;
  }
  .header-second__menu {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    padding: 90px 0 24px 0;
    color: var(--font-color);
    background: var(--white-color);
    transition: right 0.4s;
  }
  .header-second__menu-overlay-bg {
    background: #000;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: table;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    z-index: -1;
  }
  .header-second__menu.open-menu {
    right: 0;
    z-index: 1000;
  }
  .header-second__menu.open-menu ~ .header-second__menu-overlay-bg {
    opacity: 0.5;
    z-index: 10;
  }
  .header-second__list {
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .header-second__list li {
    padding: 0;
  }
  .header-second__list li:not(:first-child) {
    margin-left: 0;
  }
  .header-second__list li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3em;
    height: auto;
    padding: 15px 30px 15px 50px;
    display: block;
    text-align: left;
    text-decoration: none;
    color: #ec2046;
  }
  .header-second__toggle {
    position: absolute;
    top: 32px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 20px;
    transition: color 0.3s ease;
    z-index: 100000;
    cursor: pointer;
  }
  .header-second__toggle-line {
    width: 24px;
    height: 2.5px;
    border-radius: 10px;
    background-color: #000;
  }
  .header-second__toggle::before {
    top: 0;
    content: "";
    width: 24px;
    height: 2.5px;
    background-color: #000;
    border-radius: 10px;
    position: absolute;
    transition: transform 0.15s ease;
  }
  .header-second__toggle::after {
    bottom: 0;
    content: "";
    width: 24px;
    height: 2.5px;
    background-color: #000;
    border-radius: 10px;
    position: absolute;
    transition: transform 0.15s ease;
  }
  .header-second__toggle.open-menu .header-second__toggle-line {
    opacity: 0;
  }
  .header-second__toggle.open-menu::before {
    top: 50%;
    transform: rotate(-45deg);
    background-color: #ec2046;
  }
  .header-second__toggle.open-menu::after {
    top: 50%;
    transform: rotate(45deg);
    background-color: #ec2046;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs-wrapper .d-second-container {
    justify-content: flex-start;
    text-align: left;
    padding-top: 4px;
    padding-bottom: 4px;
    min-height: 44px;
  }
}
/* end header second */
/* section default1 */
.s-default1 {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.s-default1 h1 {
  margin-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ec2046;
}
.s-default1 h2 {
  margin-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ec2046;
}
.s-default1 p {
  margin: 0.85em 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #636363;
}
.s-default1 a {
  text-decoration: none;
  color: #ec2046;
  transition: color 0.3s ease;
}
.s-default1 a:hover {
  text-decoration: underline;
  color: var(--font-color);
}
.s-default1 img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.s-default1 .d-second-container > img {
  margin-top: 30px;
  margin-bottom: 30px;
}
.s-default1__block1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.s-default1__block1-content {
  width: 60%;
}
.s-default1__block1-subtitle {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #ec2046 !important;
}
.s-default1__block1 > img {
  width: 34%;
  margin-left: 6%;
}
.s-default1__block2 {
  margin-top: 60px;
}
.s-default1__block2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-default1__block2-content img {
  margin-top: 40px;
  width: auto;
}
.s-default1__block2-content p {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
}

@media screen and (max-width: 989px) {
  .s-default1 h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .s-default1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .s-default1 h1 {
    font-size: 36px;
  }
  .s-default1 p {
    font-size: 15px;
    line-height: 1.4em;
  }
  .s-default1__block1 {
    margin-top: 50px;
    justify-content: flex-start;
    flex-direction: column;
  }
  .s-default1__block1-content {
    width: 100%;
  }
  .s-default1__block1 > img {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .s-default1__block2-content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .s-default1 h1 {
    font-size: 28px;
  }
}
/* end section default1 */
/* section default2 */
.s-default2 {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ededaa;
}
.s-default2 h2 {
  margin-bottom: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ec2046;
}
.s-default2 p {
  margin: 0.85em 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #636363;
}
.s-default2__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.s-default2__image {
  width: 30%;
}
.s-default2__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.s-default2__content {
  padding-top: 30px;
  width: 64%;
}
.s-default2__numberlist {
  margin-bottom: 20px;
}
.s-default2__numberlist p {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .s-default2 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .s-default2 h2 {
    font-size: 24px;
  }
  .s-default2 p {
    font-size: 15px;
    line-height: 1.4em;
  }
  .s-default2__container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .s-default2__image {
    width: 100%;
  }
  .s-default2__content {
    margin-top: 10px;
    padding-top: 30px;
    width: 100%;
  }
  .s-default2__numberlist p {
    font-size: 17px;
  }
}
/* end section default2 */
/* section default3 */
.s-default3 {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
}
.s-default3 h2 {
  margin-bottom: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ec2046;
}
.s-default3 p {
  margin: 0.85em 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6em;
  color: #636363;
}
.s-default3 img {
  margin-top: 80px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.s-default3__link {
  margin-top: 40px;
  margin-left: 60px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: 7px;
  font-style: normal;
  line-height: 1;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 60px;
  color: rgb(255, 255, 255);
  border: 0;
  outline: none;
  background-color: var(--primary-button-color);
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: background-color;
  cursor: pointer;
}
.s-default3__link:hover {
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .s-default3 {
    padding-top: 40px;
  }
  .s-default3 p {
    font-size: 18px;
    line-height: 1.4em;
  }
  .s-default3 img {
    margin-top: 60px;
  }
  .s-default3__link {
    margin-top: 30px;
    margin-left: 0px;
    width: 100%;
    padding: 12px 20px;
  }
}
/* end section default3 */
/* footer second */
.footer-second__top {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  color: var(--white-color);
  background-color: #d93a4a;
}
.footer-second__top-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.footer-second__info {
  width: 33%;
  flex-shrink: 0;
  margin-right: 20px;
}
.footer-second__info p {
  margin-top: 24px;
  margin-bottom: 0;
  margin-left: 40px;
  font-weight: bold !important;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.footer-second__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-second__logo img {
  max-width: 100%;
  width: auto;
  height: 50px;
}
.footer-second__menu {
  display: flex;
  flex-direction: column;
  width: 16.6%;
  font-size: 14px;
  margin-left: 20px;
}
.footer-second__menu-title {
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 12px;
}
.footer-second__menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 400;
  color: var(--white-color);
}
.footer-second__menu-list a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-second__menu-list a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-second__menu-imgs {
  display: grid;
  grid-template-columns: repeat(3, 28px);
  gap: 10px;
}
.footer-second__menu-imgs img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer-second__bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  color: var(--white-color);
  background-color: #3d3d3d;
}
.footer-second__bottom-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-second__bottom-menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-second__bottom-menu li {
  display: inline-flex;
  width: 186px;
  height: auto;
  margin-left: 20px;
}
.footer-second__bottom-menu li a {
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  line-height: 16px;
}
.footer-second__bottom-menu li a:hover {
  text-decoration: underline;
}
.footer-second__copyright {
  width: 33%;
  flex-shrink: 0;
  margin-right: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

@media screen and (max-width: 989px) {
  .footer-second__top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer-second__top-container {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
  }
  .footer-second__info {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-second__info p {
    margin-top: 20px;
    margin-left: 0;
    font-size: 18px;
    text-align: center;
  }
  .footer-second__menu {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .footer-second__bottom-container {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-second__bottom-menu {
    flex-wrap: wrap;
  }
  .footer-second__bottom-menu li {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-right: 20px;
  }
  .footer-second__copyright {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
/* end footer second */
/* section form */
.s-form {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: -100%;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
  transition-delay: 0s;
  transition-property: bottom;
  display: flex;
  flex-direction: column;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px -6px 14px 0px;
  z-index: 500;
}
.s-form.in-view {
  bottom: 0;
}
.s-form__title {
  width: 100%;
  text-align: left;
  color: rgb(56, 56, 56);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.s-form__form {
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgb(184, 184, 184);
  cursor: text;
  display: flex;
  gap: 8px;
  padding: 4px;
  width: 100%;
}
.s-form__form-group {
  position: relative;
  flex: 1 1 0%;
  display: flex;
  align-items: center;
}
.s-form__form-group i {
  height: 24px;
  width: 24px;
  font-size: 24px;
  font-weight: 400;
  color: rgb(149, 149, 149);
  padding-left: 4px;
  flex-shrink: 0;
  position: absolute;
}
.s-form__form-input {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  border-style: hidden;
  width: 100%;
  padding-left: 30px;
  outline: none;
  border: 0;
}
.s-form__form-input:focus {
  outline: none !important;
}
.s-form__form-button {
  margin: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: none;
  font-style: normal;
  line-height: 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  padding: 0px 16px;
  height: 40px;
  /*font-family: Gilroy, Helvetica, Arial, "sans-serif" !important;*/
  transition: background 0.22s ease 0s;
  position: relative;
  color: rgb(255, 255, 255);
  background: var(--primary-button-color);
  flex-shrink: 0;
}

/* end section form *//*# sourceMappingURL=style.css.map */




.better-dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.better-dialog-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
  text-align: center;
  overflow: hidden;
}

.better-dialog-content {
  text-align: left;
  padding: 20px;
  line-height: 1.3;
}
.better-dialog-header {
  background-color: #f4f4f4;
}

.better-dialog-content h2 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  margin-bottom: 7px;
}

.better-dialog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;

}

.better-dialog-row {
  display: flex;
  margin-bottom: 20px;
}
.better-dialog-icon {

}
.s-cta__buttons {
  text-align: right;
  min-width: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.better-dialog-content .s-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-button-color);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  color: var(--primary-button-color);
  /*height: 32px;*/
  min-width: 150px;
}
.better-dialog-text {
  margin-right: 30px;
}
.better-dialog-row p {
  color: #777;
  line-height: 1.4;
  font-size: 16px;
}
.better-dialog-content input {
  line-height: 20px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #bbb;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
}



@media screen and (max-width: 768px) {
  button {
    font-size: 13px;
  }
  .header__signup {
    font-size: 13px;
  }
  .s-main__form-button {
    font-size: 13px;
  }
  .s-main__form-input {
    padding-left: 0;
  }
  .heading-title {
    padding: 0 10px;
  }
}

.land-form .dropdown {
  position: unset !important;
}
.land-form .dropdown ul {
  margin-top: 17px !important;
  z-index: 4000000;
}

@media screen and (max-width: 768px) {
  .land-form {
    transition: all .3s;
  }
  .land-form.focus {
    position: fixed !important;
    left: 0;
    top: 0;
    right: 0;
    border-radius: 0;
    z-index: 3000000;
    background-color: #fff;
  }
  .land-form.focus .dropdown ul {
    left: 0;
    right: 0;
    max-height: 35vh;
    margin-top: 28px !important;
    border-radius: 0;
    background-color: #fff;
  }
}

.home {
  margin-top: 48px;
}

.section-content {
  /* padding: 40px; */
  border-radius: 8px;
  max-width: 1024px;
  /* margin: 32px 16px; */
  /* background-color: rgb(255, 255, 255); */
  /*display: flex;*/
  /*flex-direction: column;*/
  align-items: center;
  /* box-shadow: rgba(0, 0, 0, 0.04) 1px 8px 15px; */
  /* border: 1px solid rgb(235, 235, 236); */
  margin-left: auto;
  margin-right: auto;
}

/* Notification Styles */
.notification-notification {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #9de2d3;
  color: #333;
  font-size: 16px;
  position: relative;
}
.notification-notification-text {
  /*display: flex;*/
  /*align-items: center;*/
}
.notification-notification-subtext {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}
.notification-close-notification {
  cursor: pointer;
  font-size: 20px;
  padding: 0 10px;
}


.d-container {
  position: relative;
}
.promo-compaign {
  /*position: absolute;*/
  left: 0;
  right: 0;
  /*margin: auto;*/
  max-width: 700px;
  top: 10px;
  margin-bottom: 30px;
}
.promo-compaign .content {
  background-color: #0007;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  align-items: baseline;
  color: #fff;
}
.promo-compaign .content i {
  color: #ff1744;
}


@media screen and (max-width: 768px) {
  .promo-compaign {
    position: static;
    color: #fff;
  }
  .promo-compaign .content {
    background-color: #0009;
    margin: 10px;
  }
  .s-herocta::before {
    height: 70%;
  }
}



.pastry .s-herocta::before {
  background-image: url(../images/bacome-a-chef-pastry.jpg);
}
.s-quotes {
  background-color: #f9f6f0;
}
.s-quotes__item-photo img {
  object-fit: contain;
  object-position: top;
}
