@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style: none;
}

html {
  font-family: "Poppins", sans-serif, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@keyframes pulsefade {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.95;
    transform: scale(0.95);
  }
}
@keyframes movearrow {
  from {
    transform: translateX(-0.2em);
    opacity: 0.4;
  }
  to {
    transform: translateX(0.2em);
    opacity: 0.9;
  }
}
@keyframes displayoff {
  to {
    height: 0;
    width: 0;
  }
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-thumb {
  background-color: #ea1d2c;
  border-radius: 10px;
}
body .main-content-box {
  max-width: 2000px;
  height: 100%;
  margin: 0 auto;
}
body .main-content-box .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.4rem;
  position: relative;
}
body .main-content-box section {
  scroll-margin-top: 120px;
  background-color: #ffffff;
}

body .main-content-box .primary-btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 1.4rem;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}
body .main-content-box .primary-btn p {
  font-weight: 600;
}
body .main-content-box .primary-btn p:first-child, body .main-content-box .primary-btn .icon:first-child {
  margin-right: 8px;
}
body .main-content-box .primary-btn.green {
  background-color: #22e85d;
  color: #3f7154;
}
body .main-content-box .primary-btn.green:hover {
  background-color: #20d657;
  color: #3d6a50;
}
body .main-content-box .primary-btn.white {
  background-color: #ffffff;
  color: #333333;
}
body .main-content-box .primary-btn.white:hover {
  background-color: #efeded;
  color: #4a4a4a;
}
body .main-content-box .primary-btn.red {
  background-color: #ea1d2c;
  color: #ffffff;
}
body .main-content-box .primary-btn.red:hover {
  background-color: #cf1925;
  color: #ffffff;
}
body .main-content-box .primary-btn.transparent {
  color: #ea1d2c;
  border: #ea1d2c solid 1px;
}
body .main-content-box .primary-btn.transparent:hover {
  background-color: #ffe9ea;
  border-color: #ffe9ea;
}
body .main-content-box .delivery-btn-links {
  display: flex;
}
body .main-content-box .delivery-btn-links div {
  text-align: center;
}
body .main-content-box .delivery-btn-links .whatsapp-container {
  margin-right: 24px;
}
body .main-content-box .delivery-btn-links .ifood-container .ifood-logo {
  width: 30px;
  height: 16px;
  margin-bottom: -2px;
}
body .main-content-box .delivery-btn-links span {
  margin-top: 5px;
  color: #acacac;
  font-size: 0.9rem;
}
body .main-content-box .title-box .section-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 50px;
  color: #333333;
  margin-top: -10px;
}
body .main-content-box .title-box .section-title.exception {
  line-height: 55px;
}
body .main-content-box .title-box .underline-title {
  width: 72px;
  height: 6px;
  background-color: #ea1d2c;
  border-radius: 10px;
}

body .main-content-box header {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.25);
  border-radius: 0px 0px 10px 10px;
  padding: 20px;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 2;
}
body .main-content-box header .sandigo-logo img {
  width: 124px;
  height: 49px;
  margin-bottom: -6px;
}
body .main-content-box header .navigation ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 44px;
       column-gap: 44px;
}
body .main-content-box header .navigation ul .item {
  cursor: pointer;
}
body .main-content-box header .navigation ul .item:not(:last-child) a {
  transition: ease-in-out 0.2s;
}
body .main-content-box header .navigation ul .item:not(:last-child) a:hover {
  color: #ea1d2c;
}
body .main-content-box header .navigation .close-menu-btn {
  display: none;
}
body .main-content-box header .open-menu-btn {
  display: none;
}

body .main-content-box footer {
  padding: 60px 0 6px 0;
  background-color: #ffffff;
}
body .main-content-box footer .container {
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  -moz-column-gap: 120px;
       column-gap: 120px;
  row-gap: 30px;
  background-color: #ffffff;
}
body .main-content-box footer .container img {
  width: 219px;
  height: 86px;
}
body .main-content-box footer .container p {
  margin-bottom: 8px;
  margin-top: -4px;
  color: #ea1d2c;
}
body .main-content-box footer .container .social {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(2, 50%);
  grid-template-areas: "social-media-text email" "icons email";
  -moz-column-gap: 92px;
       column-gap: 92px;
}
body .main-content-box footer .container .social p {
  grid-area: social-media-text;
}
body .main-content-box footer .container .social .icons {
  grid-area: icons;
}
body .main-content-box footer .container .social .icons a i {
  padding-bottom: 3px;
  font-size: 1.7rem;
  color: #333333;
  border-bottom: solid 1px;
  border-color: transparent;
  transition: ease-in-out 0.2s;
}
body .main-content-box footer .container .social .icons a i:hover {
  border-color: #ea1d2c;
  color: #000000;
}
body .main-content-box footer .container .social .icons a:first-child {
  margin-right: 16px;
}
body .main-content-box footer .container .social .email {
  grid-area: email;
  align-self: center;
}
body .main-content-box footer .container .copyright {
  flex: 1 1 100%;
  text-align: center;
  font-size: 1.3rem;
}

body .main-content-box .back-to-top-btn {
  width: 38px;
  height: 40px;
  border: 1px solid #ea1d2c;
  border-radius: 10px;
  background: url(../../../../images/section-images/main/up-arrow.svg) no-repeat center;
  cursor: pointer;
  background-color: #ffffff;
  bottom: -40px;
  transition: ease-out 0.2s;
}
body .main-content-box .back-to-top-btn.active {
  bottom: 40px;
  transition: ease-in 0.2s;
}
body .main-content-box .fixed-whatsapp-anchor {
  flex-direction: column;
  width: 145px;
  align-items: flex-end;
  display: none;
}
body .main-content-box .fixed-whatsapp-anchor.active {
  width: -moz-fit-content;
  width: fit-content;
}
body .main-content-box .fixed-whatsapp-anchor.active .message {
  transition: ease-out 0.2s;
  opacity: 0;
  transform: scale(0.5);
  transform: translateY(15px);
  animation: displayoff forwards;
  animation-delay: 0.3s;
}
body .main-content-box .fixed-whatsapp-anchor.active .whatsapp-img {
  animation: pulsefade 0.6s infinite alternate ease-in-out;
}
body .main-content-box .fixed-whatsapp-anchor > .message {
  margin-bottom: 10px;
  transition: ease-in 0.2s;
}
body .main-content-box .rigth-bottom-btn {
  position: fixed;
  z-index: 2;
  right: 2.5%;
}

body .main-content-box .carousel {
  height: 95vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main-content-box .carousel .carousel-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  opacity: 1;
  opacity: 0.8;
  filter: brightness(0%);
  transition: 0.3s ease-in-out;
}
body .main-content-box .carousel .carousel-img.one {
  background-image: url(../../../../images/section-images/carousel/bg-1.jpg);
}
body .main-content-box .carousel .carousel-img.two {
  background-image: url(../../../../images/section-images/carousel/bg-2.jpg);
}
body .main-content-box .carousel .carousel-img.three {
  background-image: url(../../../../images/section-images/carousel/bg-3.jpg);
}
body .main-content-box .carousel .carousel-img.four {
  background-image: url(../../../../images/section-images/carousel/bg-4.jpg);
}
body .main-content-box .carousel .carousel-img.active {
  opacity: 1;
  filter: brightness(100%);
  z-index: 0;
}
body .main-content-box .carousel .conversion-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  position: absolute;
  top: calc(50% + 45px);
  transform: translateY(-50%);
}
body .main-content-box .carousel .conversion-text .title {
  font-size: 6.4rem;
  font-weight: 600;
  margin-bottom: 32px;
}
body .main-content-box .carousel .conversion-text .description {
  font-size: 2.4rem;
  font-weight: 600;
  width: 465px;
  text-align: center;
  margin-bottom: 38px;
}
body .main-content-box .carousel .indicators {
  display: flex;
  position: absolute;
  bottom: 28px;
  cursor: pointer;
}
body .main-content-box .carousel .indicators .indicator {
  width: 72px;
  height: 6px;
  background-color: #d3d3d3;
  border-radius: 10px;
  transition: ease-in-out 0.3s;
}
body .main-content-box .carousel .indicators .indicator:not(:last-child) {
  margin-right: 21px;
}
body .main-content-box .carousel .indicators .indicator.active {
  background-color: #ea1d2c;
}

body .main-content-box .benefits {
  padding-block: 60px;
  background-color: #ffe9ea;
}
body .main-content-box .benefits .benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main-content-box .benefits .benefit p {
  color: #ea1d2c;
  margin-top: 24px;
  font-weight: 500;
}

body .main-content-box .about-us .container {
  padding-block: 60px;
  background: url(../../../../images/section-images/about-us/cut-s-letter-bg.png) no-repeat;
  background-size: contain;
  background-position-x: -40px;
}
body .main-content-box .about-us .container .side-images {
  position: relative;
  height: 330px;
  width: 460px;
}
body .main-content-box .about-us .container .side-images img {
  position: absolute;
  width: 275px;
  height: 194px;
}
body .main-content-box .about-us .container .side-images img:first-child {
  top: 0;
}
body .main-content-box .about-us .container .side-images img:last-child {
  bottom: 0;
  right: 0;
}
body .main-content-box .about-us .container .side-text .title-box {
  margin-bottom: 20px;
}
body .main-content-box .about-us .container .side-text > p {
  color: #333333;
  width: 560px;
  margin-bottom: 20px;
}
body .main-content-box .about-us .container .side-text .about-us-btn-links {
  display: flex;
  gap: 24px;
}

body .main-content-box .imgs-panel::after {
  animation: movearrow 0.6s infinite alternate ease-in-out;
}
body .main-content-box .imgs-panel .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #ffe9ea;
  max-width: unset;
}
body .main-content-box .imgs-panel .container .frame {
  height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
}
body .main-content-box .imgs-panel .container .frame:hover .panel-img {
  transform: scale(1.04);
  filter: brightness(100%);
}
body .main-content-box .imgs-panel .container .frame .panel-img {
  transition: ease 0.3s;
  filter: brightness(90%);
  transform: scale(1.008);
  height: 100%;
}

body .main-content-box .delivery {
  padding-block: 70px;
}
body .main-content-box .delivery .info .title-box {
  margin-bottom: 42px;
}
body .main-content-box .delivery .info .marmite-prices {
  margin-bottom: 32px;
}
body .main-content-box .delivery .info .marmite-prices .marmite {
  display: flex;
}
body .main-content-box .delivery .info .marmite-prices .marmite:not(:last-of-type) {
  margin-bottom: 4px;
}
body .main-content-box .delivery .info .marmite-prices .marmite .separator {
  margin-right: 4px;
}
body .main-content-box .delivery .deliveryman-img {
  width: 560px;
}

body .main-content-box .faq {
  background-color: #ffe9ea;
  padding-block: 60px;
}
body .main-content-box .faq .searching-img {
  width: 460px;
}
body .main-content-box .faq .content-box .title-box {
  margin-bottom: 27px;
}
body .main-content-box .faq .content-box .accordion {
  display: flex;
  flex-direction: column;
  width: 560px;
}
body .main-content-box .faq .content-box .accordion .line-question {
  width: 100%;
  padding: 18px 24px 0 24px;
  background-color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}
body .main-content-box .faq .content-box .accordion .line-question:not(:last-child) {
  margin-bottom: 14px;
}
body .main-content-box .faq .content-box .accordion .line-question:hover .label h4 {
  color: #ea1d2c;
}
body .main-content-box .faq .content-box .accordion .line-question .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .main-content-box .faq .content-box .accordion .line-question .label h4 {
  transition: ease 0.3s;
  font-weight: 600;
}
body .main-content-box .faq .content-box .accordion .line-question .label .arrow-down {
  text-align: center;
  font-size: 1.1rem;
  color: #a3a3a3;
  transform: rotate(-90deg);
  transition: ease 0.3s;
}
body .main-content-box .faq .content-box .accordion .line-question .text-content {
  color: #3c3c3c;
  max-height: 0;
  overflow: hidden;
  transition: ease 0.3s;
  width: 455px;
  margin-left: 15px;
  padding-right: 10px;
  opacity: 0;
  margin-block: 10px 8px;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(3) ul {
  margin-block: 16px;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(3) a {
  display: inline-block;
  margin-top: 16px;
  color: #ea1d2c;
  align-self: flex-start;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(3) a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0px;
  background: #ea1d2c;
  height: 1px;
  transition-property: right;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(3) a:hover::before {
  right: 0;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(3).active .text-content {
  overflow-y: scroll;
}
body .main-content-box .faq .content-box .accordion .line-question.active .label .arrow-down {
  transform: rotate(0);
  transform: translateY(25%);
}
body .main-content-box .faq .content-box .accordion .line-question.active .label h4 {
  color: #ea1d2c;
}
body .main-content-box .faq .content-box .accordion .line-question.active .text-content {
  opacity: 1;
  margin-bottom: 18px;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(odd).active .text-content {
  max-height: 105px;
}
body .main-content-box .faq .content-box .accordion .line-question:nth-child(even).active .text-content {
  max-height: 21px;
}

body .main-content-box .contact {
  padding-block: 60px;
  background: url(../../../../images/section-images/contact/contact_bg.jpg) center no-repeat;
  background-size: cover;
}
body .main-content-box .contact .side-form .title-box {
  margin-top: 0px;
}
body .main-content-box .contact .side-form .title-box .section-title {
  color: #f4f4f4;
}
body .main-content-box .contact .side-form .form-container {
  margin-top: 28px;
  width: 448px;
}
body .main-content-box .contact .side-form .form-container .user-info-container {
  margin-bottom: 28px;
}
body .main-content-box .contact .side-form .form-container .user-info-container input {
  margin-bottom: 16px;
  height: 45px;
}
body .main-content-box .contact .side-form .form-container .user-info-container textarea {
  resize: none;
  height: 104px;
}
body .main-content-box .contact .side-form .form-container .user-info-container input, body .main-content-box .contact .side-form .form-container .user-info-container textarea {
  width: 100%;
  border-radius: 10px;
  padding: 12px 16px;
  color: #333333;
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
}
body .main-content-box .contact .side-form .form-container .user-info-container input:focus, body .main-content-box .contact .side-form .form-container .user-info-container textarea:focus {
  box-shadow: 0px 4px 4px rgba(248, 27, 42, 0.5176470588);
}
body .main-content-box .contact .side-form .form-container .user-info-container input::-moz-placeholder, body .main-content-box .contact .side-form .form-container .user-info-container textarea::-moz-placeholder {
  color: #b3b3b3;
  font-size: 1.5rem;
}
body .main-content-box .contact .side-form .form-container .user-info-container input::placeholder, body .main-content-box .contact .side-form .form-container .user-info-container textarea::placeholder {
  color: #b3b3b3;
  font-size: 1.5rem;
}
body .main-content-box .contact .side-form .form-container .submit-container {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
body .main-content-box .contact .side-form .form-container .submit-container button {
  margin-right: 24px;
  padding: 12px 24px;
  background-color: #ea1d2c;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: ease-in-out 0.2s;
}
body .main-content-box .contact .side-form .form-container .submit-container button:hover {
  background-color: #cf1925;
}
body .main-content-box .contact .side-form .form-container .submit-container .validation-alert {
  display: flex;
  align-items: center;
  width: 340px;
  padding: 7px 12px;
  position: absolute;
  right: -340px;
  justify-content: space-between;
  opacity: 0.8;
  transition: ease-out 0.2s;
}
body .main-content-box .contact .side-form .form-container .submit-container .validation-alert.active {
  right: 0;
  opacity: 1;
  transition: ease 0.3s;
}
body .main-content-box .contact .side-form .form-container .submit-container .validation-alert.active.error-validation {
  background-color: #fff833;
}
body .main-content-box .contact .side-form .form-container .submit-container .validation-alert.active.correct-validation {
  background-color: #21d84c;
}
body .main-content-box .contact .side-form .form-container .submit-container .validation-alert i {
  cursor: pointer;
  font-size: 1.5rem;
}
body .main-content-box .contact .side-address iframe {
  margin-bottom: 5px;
  width: 560px;
  height: 348px;
}
body .main-content-box .contact .side-address p {
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  color: #ffffff;
  font-weight: 400;
}/*# sourceMappingURL=index-style.css.map */