@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");

.icon-block {
  padding: 0 15px;
}
.icon-block .material-icons {
  font-size: inherit;
}

html {
  font-family: "Source Sans Pro";
  font-style: normal;
  background: #f4f1ef;
  scroll-behavior: smooth;
}

nav {
  background-color: #f02338 !important;
  box-shadow: none;
}

nav .sidenav-trigger {
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.divider {
  height: 1px;
  width: 136.5px;
  background: white;
}

footer {
  background: #212121;
  height: 381px;
  width: 100%;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

footer .container {
  width: 100%;
}

@media only screen and (max-width: 765px) {
  #hero .tablet__up {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #hero .mobile__only {
    display: none !important;
  }
}

@media only screen and (max-width: 765px) {
  #yourKitchen .tablet__up {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #yourKitchen .mobile__only {
    display: none !important;
  }
}

@media only screen and (max-width: 765px) {
  #buildYourMenu .tablet__up {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #buildYourMenu .mobile__only {
    display: none !important;
  }
}

@media only screen and (max-width: 765px) {
  #kitchenTransformation .tablet__up {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #kitchenTransformation .mobile__only {
    display: none !important;
  }
}

@media only screen and (max-width: 1437px) {
  #howItWorks .desktop__up {
    display: none;
  }
}

@media only screen and (min-width: 1440px) {
  #howItWorks .tablet__down {
    display: none !important;
  }
}

/* Mobile */
@media (min-width: 320px) {
  nav .brand-logo {
    left: 0;
    -webkit-transform: none;
    transform: none;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sidenav {
    background: #f02338;
    color: white;
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 1rem;
  }

  .logo__close {
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    height: 56px;
    width: 100% !important;
  }

  .sidebar li {
    transition: 1s ease-out;
  }

  .sidenav li > a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }

  #hero {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #hero .hero__img {
    height: 342px;
    width: 272px;

    background: url("../assets/hero.webp");
  }

  #hero .mobile__only {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hero .tittles__text {
    height: 148px;
    width: 253px;

    margin-top: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #hero h1 {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
  }

  #hero span {
    color: #f02338;
  }

  #hero h3 {
    color: #424242;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin: 0;
  }

  #hero .hero__button {
    background: #f02338;
    color: white;
    height: 56px;
    width: 165px;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    user-select: none;

    font-size: 1rem;
    font-weight: 700;
  }

  #yourKitchen {
    margin-top: 64px;
    height: 444px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #yourKitchen .mobile__only {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #yourKitchen .tittles__text {
    height: auto;
    width: 240px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #yourKitchen h1 {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
  }

  #yourKitchen h3 {
    color: #424242;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    margin: 0;

    height: 72px;
    width: 240px;
  }

  #clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 64px;
    padding: 0;
  }

  #clients .img {
    height: 85px;
    width: 100px;
  }

  #clients span {
    width: auto;
    height: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 7));
    }
  }
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 320px;
  }
  .slider::before,
  .slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(100px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 100px;
  }

  #video {
    height: 278px;
    width: 100%;
    margin-top: 64px;
    background: #ec6d76;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #video .video__container {
    position: relative;
    overflow: hidden;
    width: inherit;
    padding-top: 56.25%; 
  }

  #video .video__container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 90%;
    height: 100%;
  }

  #kitchenTransformation {
    margin-top: 64px;
    height: 664px;
    padding: 72px 0;

    background: #f84754;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 2rem;
  }

  #kitchenTransformation .mobile__only {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #kitchenTransformation .tittles__text {
    height: auto;
    width: 240px;

    margin-top: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #kitchenTransformation h1 {
    color: #fafafa;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    line-height: 130%;

    height: 93px;
    width: 194px;
  }

  #kitchenTransformation .datas {
    height: 395px;
    width: 272px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
  }

  #kitchenTransformation .divider {
    height: 1px;
    width: 52px;
    background: #fafafa;
    margin: 1rem 0;
  }

  #kitchenTransformation .numbers {
    height: 65px;
    width: 172px;

    font-weight: 700;
    font-size: 52px;
    line-height: 65px;
    text-align: center;
  }

  #kitchenTransformation .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 92.7%;
    text-align: center;
    margin: 0.25rem 0;
  }

  #kitchenTransformation .subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 92.7%;
    text-align: center;
  }

  #contact {
    margin-top: 64px;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  #contact .tittles__text {
    height: auto;
    width: 272px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #contact .contact__cards {
    height: auto;
    width: 272px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #contact .whatsapp {
    height: 485.2px;
    width: 272px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 1rem;
  }

  #contact .whatsapp .header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
  }

  #contact .whatsapp .header .logo {
    height: 67.2px;
    width: 56px;
  }

  #contact .whatsapp .divider {
    height: 2px;
    width: 224px;
  }

  #contact .whatsapp .header .texts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }

  #contact .whatsapp .contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;

    height: 184px;
  }

  #contact .whatsapp .title {
    color: black;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 110%;
  }

  #contact .whatsapp .email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    color: #424242;
    font-size: 1rem;
    font-weight: 400;
    line-height: 110%;
  }

  #contact .whatsapp .phone__number {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    color: #424242;
    font-size: 1rem;
    font-weight: 400;
    line-height: 110%;
  }

  #contact .whatsapp .wpbutton {
    height: 64px;
    width: 224px;
    background: #08b88e;
    border-radius: 8px;

    font-size: 1rem;
    color: #fafafa;
    font-weight: 700;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  #contact .form {
    height: 488px;
    width: 272px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #contact .form .title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;

    font-size: 1rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.01em;
  }

  #contact .form .input:not([type]) {
    height: 65.33px;
    width: 240px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
  }

  #contact .form .send__button {
    background: #f02338;
    color: white;
    height: 72px;
    width: 240px;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    font-size: 1rem;
    font-weight: 700;
  }

  #contact h1 {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    line-height: 130%;
  }

  #comments {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 32px 0 64px 0;
  }

  #comments .tittles__text {
    height: auto;
    width: 272px;
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  #comments .tittles__text .comment {
    height: 201.59px;
    width: 272px;
    text-align: center;

    display: flex;
    flex-direction: column;
  }

  #comments .tittles__text .comment .text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

  #comments .tittles__text .comment .divider {
    height: 1px;
    width: 272px;
    background: #f02338;
    opacity: 0.8;
  }

  #comments .tittles__text .comment .name {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 7.59px;
  }

  #comments .tittles__text .comment .role {
    font-size: 14px;
    font-weight: 400;
    color: #424242;
  }

  #buildYourMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 64px;
  }

  #buildYourMenu .mobile__only {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #buildYourMenu .build__button {
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    height: 56px;
    width: 278px;

    background: #f02338;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
  }

  #buildYourMenu .card__item {
    height: 272px;
    width: 278px;

    border-radius: 8px;
  }

  #buildYourMenu .card__item img {
    height: 272px;
    width: 278px;
    object-fit: cover;
  }

  #buildYourMenu .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: white;
  }

  #buildYourMenu .header img {
    height: 59.87px;
    width: 48.6px;
  }

  #buildYourMenu .header span {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 110%;

    height: 58px;
    width: 162px;
  }

  #howItWorks {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
  }

  #howItWorks .tablet__down {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #howItWorks .tittles__text {
    height: 96px;
    width: 272px;

    margin-top: 0;
    margin-bottom: 2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #howItWorks .tittles__text .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
  }

  #howItWorks .tittles__text .subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #424242;
    text-align: center;
  }

  #howItWorks .cards__items {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #howItWorks .cards__items .card__item {
    height: 236px;
    width: 272px;
    border: 1.40943px solid #e0e0e0;
    border-radius: 0.5rem;
    background: white !important;

    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    gap: 1rem;

    padding: 2rem;
  }

  #howItWorks .cards__items .card__item .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
  }

  #howItWorks .cards__items .card__item .subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #424242;
  }

  #howItWorks h1 {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
  }

  #howItWorks span {
    color: #f02338;
  }

  #howItWorks h3 {
    color: #424242;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin: 0;
  }

  #howItWorks .howItWorks__button {
    color: #f02338;
    height: 56px;
    width: 272px;
    border: 2px solid #f02338;
    border-radius: 8px;
    margin-top: 1rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    user-select: none;

    font-size: 1rem;
    font-weight: 700;
  }

  #faq {
    height: auto;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #faq .section {
    padding: 0;
  }

  #faq li {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
  }

  #faq li:last-child {
    margin-bottom: 0;
  }

  #faq .collapsible {
    width: 272px;
    box-shadow: none;
    border: none;
  }

  #faq .collapsible-header {
    justify-content: space-between;
    align-items: center;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }

  #faq .collapsible-body {
    background: white;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    border-bottom: none;
    padding: 0 1rem 1rem 1rem;
  }

  #faq .collapsible-body span {
    height: auto;
    width: 224px;
  }

  #faq .tittles__text {
    height: auto;
    width: 240px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #faq h1 {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    line-height: 130%;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 64px;

    padding: 55px 0 65.7px 0;
  }

  footer .items {
    height: 118px;
    width: 272px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }

  footer .items .title {
    font-size: 20px;
    font-weight: 700;
  }

  footer .items .container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  footer .items .container .item {
    width: 125px;
  }

  footer .social__media {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .sidenav li > a {
    color: white;
    font-size: 32px;
    font-weight: 700;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
  }

  #hero {
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #hero .hero__img {
    height: 360px;
    width: 285.71px;

    background: url("../assets/hero.webp") no-repeat;
  }

  #hero .tablet__up .content {
    height: 360px;
    width: 654.71px;

    margin-top: 72px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  #hero .tablet__up .text__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #hero .tablet__up .text__area h3 {
    height: 63px;
    width: 273px;

    font-weight: 400;
    font-size: 16px;
    line-height: 130%;

    text-align: start;
    margin-bottom: 2rem;
  }

  #hero .tablet__up .text__area .img__center {
    margin: 24px 0 32px 0;
  }

  #hero .hero__button {
    background: #f02338;
    color: white;
    height: 72px;
    width: 216px;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    user-select: none;

    font-size: 20px;
    font-weight: 700;
  }

  #yourKitchen {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #yourKitchen .tablet__up .content {
    height: 235px;
    width: 588px;
    margin-top: 72px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
  }

  #yourKitchen .tablet__up .content .text__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  #yourKitchen .tablet__up .content .text__area span {
    height: 84px;
    width: 274px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #424242;
  }

  #clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 72px;
    padding: 0;
  }

  #clients .img {
    height: 85px;
    width: 100px;
  }

  #clients span {
    width: auto;
    height: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 7));
    }
  }
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 768px;
  }
  .slider::before,
  .slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(100px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 100px;
  }

  #video {
    height: auto;
    width: 100%;
    margin-top: 72px;
    background: #ec6d76;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #video .video__container {
    position: relative;
    overflow: hidden;
    width: inherit;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }

  /* Then style the iframe to fit in the container div with full height and width */
  #video .video__container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 80%;
    height: 100%;
  }

  #comments {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 72px 0 72px 0;
  }

  #comments .tittles__text {
    height: auto;
    width: 582px;
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  #comments .tittles__text .comment {
    height: auto;
    width: 100%;
    text-align: center;

    display: flex;
    flex-direction: column;
  }

  #comments .tittles__text .comment .text {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

  #comments .tittles__text .comment .divider {
    height: 1px;
    width: 272px;
    background: #f02338;
    opacity: 0.8;
  }

  #comments .tittles__text .comment .name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 7.59px;
  }

  #comments .tittles__text .comment .role {
    font-size: 1rem;
    font-weight: 400;
    color: #424242;
  }

  #buildYourMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 64px;
    padding: 0;
  }

  #buildYourMenu .tablet__up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  #buildYourMenu .tablet__up .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    height: 330px;
    width: 697px;
  }

  #buildYourMenu .tablet__up .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
  }

  #buildYourMenu .tablet__up .last__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;

    height: 330px;
    width: 305px;
  }

  #buildYourMenu .build__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    height: 72px;
    width: 305px;

    background: #f02338;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    font-weight: 700;
  }

  #buildYourMenu .card__item {
    height: 330px;
    width: 180px;

    border-radius: 8px;
  }

  #buildYourMenu .plate1 {
    background: url("../assets/plate2-build-tablet.webp");
  }

  #buildYourMenu .plate2 {
    background: url("../assets/plate1-build-tablet.webp");
  }

  #buildYourMenu .card__item img {
    height: 330px;
    width: 180px;
  }

  #buildYourMenu .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: white;

    height: 250px;
    width: 305px;
    border-radius: 8px;
  }

  #buildYourMenu .header img {
    height: 61.93px;
    width: 50.28px;
  }

  #buildYourMenu .header span {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 110%;

    height: 58px;
    width: 162px;
  }

  #howItWorks {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  #howItWorks .tittles__text {
    height: auto;
    width: 272px;

    margin-top: 0;
    margin-bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #howItWorks .tittles__text .title {
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
  }

  #howItWorks .tittles__text .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #424242;
    text-align: center;
  }

  #howItWorks .cards__items {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #howItWorks .cards__items .card__item {
    height: 236px;
    width: 697px;
    border: 1.40943px solid #e0e0e0;
    border-radius: 0.5rem;
    background: white !important;

    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    gap: 1rem;

    padding: 2rem;
  }

  #howItWorks .cards__items .card__item .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
  }

  #howItWorks .cards__items .card__item .subtitle {
    width: 377px;
    font-size: 20px;
    font-weight: 400;
    color: #424242;
  }

  #howItWorks h1 {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
  }

  #howItWorks span {
    color: #f02338;
  }

  #howItWorks h3 {
    color: #424242;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin: 0;
  }

  #howItWorks .howItWorks__button {
    color: #f02338;
    height: 88px;
    width: 697px;
    border: 2px solid #f02338;
    border-radius: 8px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    user-select: none;

    margin-top: 16px;

    font-size: 20px;
    font-weight: 700;
  }

  #kitchenTransformation {
    height: 238px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 72px;
  }

  #kitchenTransformation .tablet__up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 21.27px;
  }

  #kitchenTransformation .tablet__up .datas {
    height: 110.51px;
    width: 624.16px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    color: white;
  }

  #kitchenTransformation .tablet__up h1 {
    height: 31px;
    width: 427px;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: white;
  }

  #kitchenTransformation .tablet__up .datas .content {
    display: flex;
    flex-direction: column;
  }

  #kitchenTransformation .divider {
    height: 52px;
    width: 1px;
    background: #fafafa;
    margin: 0 24px;
  }

  #kitchenTransformation .numbers {
    height: 65px;
    width: 172px;

    font-weight: 700;
    font-size: 52px;
    line-height: 65px;
    letter-spacing: -0.03em;
    text-align: center;
  }

  #kitchenTransformation .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 92.7%;
    text-align: center;
    margin: 0.25rem 0;
  }

  #kitchenTransformation .subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 92.7%;
    text-align: center;
  }

  #contact {
    margin-top: 72px;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  #contact .tittles__text {
    height: auto;
    width: 272px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #contact .contact__cards {
    height: auto;
    width: 720px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #contact .whatsapp {
    height: 240px;
    width: 720px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }

  #contact .whatsapp .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }

  #contact .whatsapp .header .logo {
    height: 96px;
    width: 80px;
  }

  #contact .whatsapp .header .texts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }

  #contact .whatsapp .contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  #contact .whatsapp .tablet__divider {
    display: flex;
    height: 2px;
    width: 656px;
  }

  #contact .whatsapp .divider {
    display: none;
  }

  #contact .whatsapp .title {
    color: black;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
  }

  #contact .whatsapp .subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    height: auto;
    width: 552px;
  }

  #contact .whatsapp .email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    color: #424242;
    font-size: 1rem;
    font-weight: 400;
    line-height: 110%;
  }

  #contact .whatsapp .phone__number {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    color: #424242;
    font-size: 1rem;
    font-weight: 400;
    line-height: 110%;
  }

  #contact .whatsapp .wpbutton {
    height: 64px;
    width: 217px;
    background: #08b88e;
    border-radius: 8px;

    font-size: 1rem;
    color: #fafafa;
    font-weight: 700;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  #contact .form {
    height: 488px;
    width: 720px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #contact .form .title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;

    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.01em;
  }

  #contact .form .input:not([type]) {
    height: 61.33px;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
  }

  #contact .form .send__button {
    background: #f02338;
    color: white;
    height: 72px;
    width: 640px;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
  }

  #contact h1 {
    color: #000;
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    margin: 0;
  }

  #faq {
    height: auto;
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #faq .section {
    padding: 0;
  }

  #faq li {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
  }

  #faq li:last-child {
    margin-bottom: 0;
  }

  #faq .collapsible {
    width: 720px;
    box-shadow: none;
    border: none;
  }

  #faq .collapsible-header {
    height: 120px;
    justify-content: space-between;
    align-items: center;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    padding: 0 48px;
  }

  #faq .collapsible-body {
    background: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    border-bottom: none;
    padding: 0 48px 40px 48px;
  }

  #faq .collapsible-body span {
    height: auto;
    width: 224px;
  }

  #faq .tittles__text {
    height: auto;
    width: 304px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #faq h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    margin: 0;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 64px;

    padding: 55px 0 65.7px 0;
  }

  footer .items {
    height: 148px;
    width: 314px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }

  footer .items .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
  }

  footer .items .container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  footer .items .container .item {
    width: 125px;
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
  }

  footer .social__media {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1440px) {
  nav ul {
    font-weight: 700;
    font-size: 20px;
  }

  #hero {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 176px;
    gap: 16px;
  }

  #hero .hero__img {
    height: 630px;
    width: 500px;

    background: url("../assets/hero-desktop.webp");
  }

  #hero .tablet__up .content {
    height: auto;
    width: 1154px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }

  #hero .tablet__up .content .text__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #hero .tablet__up .text__area h3 {
    height: 93px;
    width: 410px;

    font-weight: 400;
    font-size: 24px;
    line-height: 130%;

    text-align: start;
    margin-bottom: 72px;
  }

  #hero .tablet__up .content .text__area .title {
    height: 204.67px;
    width: 590px;

    margin-bottom: 1rem;
  }

  #hero .tablet__up .content .hero {
    height: 630px;
    width: 500px;
  }

  #hero .tablet__up .content .text__area .img__center {
    margin: 32px 0 72px 0;
  }

  #hero .hero__button {
    background: #f02338;
    color: white;
    height: 72px;
    width: 283px;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    user-select: none;

    font-size: 20px;
    font-weight: 700;
  }

  #yourKitchen {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 176px;
    padding: 0;
    gap: 16px;
  }

  #yourKitchen .tablet__up .content {
    height: 470px;
    width: 1070px;
    display: flex;
    margin-top: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
  }

  #yourKitchen .tablet__up .content .text__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

  #yourKitchen .tablet__up .content .cooking {
    height: 470px;
    width: 470px;
  }

  #yourKitchen .tablet__up .content .text__area .title {
    height: 124px;
    width: 520px;
  }

  #yourKitchen .tablet__up .content .text__area span {
    height: 124px;
    width: 411px;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 130%;
    color: #424242;
  }

  #clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 72px;
    padding: 0;
  }

  #clients .img {
    height: 114px;
    width: 204px;
  }

  #clients span {
    width: auto;
    height: 30px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-204px * 7));
    }
  }
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 1440px;
  }
  .slider::before,
  .slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(204px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 204px;
  }

  #video {
    height: auto;
    width: 100%;
    margin-top: 176px;
    background: #ec6d76;
  }

  #comments {
    height: auto;
    display: flex;
    padding: 64px 0 0 0;
    margin-bottom: 176px;
  }

  #comments .tittles__text {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 152px;
  }

  #comments .tittles__text .comment {
    height: auto;
    width: 264.6px;
    text-align: center;

    display: flex;
    flex-direction: column;
  }

  #comments .tittles__text .comment .text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

  #comments .tittles__text .comment .divider {
    display: none;
  }

  #comments .tittles__text .comment .name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 7.59px;
  }

  #buildYourMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 178px;
    padding: 0;
  }

  #buildYourMenu .tablet__up {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  #buildYourMenu .tablet__up .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    height: 560px;
    width: 1368px;
  }

  #buildYourMenu .tablet__up .title {
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
  }

  #buildYourMenu .tablet__up .last__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    height: 560px;
    width: 440px;
  }

  #buildYourMenu .build__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    height: 104px;
    width: 440px;

    background: #f02338;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    font-weight: 700;
  }

  #buildYourMenu .card__item {
    height: 560px;
    width: 440px;

    border-radius: 8px;
  }

  #buildYourMenu .plate1 {
    background: url("../assets/plate1-build-desktop.webp");
  }

  #buildYourMenu .plate2 {
    background: url("../assets/plate2-build-desktop.webp");
  }

  #buildYourMenu .card__item img {
    height: 560px;
    width: 440px;
    border-radius: 8px;
  }

  #buildYourMenu .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: white;

    height: 440px;
    width: 440px;
    border-radius: 8px;
  }

  #buildYourMenu .header img {
    height: 119.91px;
    width: 97.34px;
  }

  #buildYourMenu .header span {
    text-align: center;

    font-weight: 600;
    font-size: 32px;
    line-height: 110%;

    height: 109.45px;
    width: 315.85px;
  }

  #howItWorks .desktop__up {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }

  #howItWorks .text__content {
    height: auto;
    width: 441px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #howItWorks .tittles__text {
    height: auto;
    width: 441px;

    margin-top: 0;
    margin-bottom: 56px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  #howItWorks .tittles__text .title {
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
    color: #212121;
  }

  #howItWorks .tittles__text .subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #424242;
    text-align: start;
  }

  #howItWorks .howItWorks__button {
    color: #f02338;
    height: 88px;
    width: 280px;
    border: 2px solid #f02338;
    border-radius: 8px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    user-select: none;

    margin-top: 16px;

    font-size: 20px;
    font-weight: 700;
  }

  #kitchenTransformation {
    height: 447px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 176px;
  }

  #kitchenTransformation .tablet__up .datas {
    height: 206px;
    width: 1174px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    color: white;
  }

  #kitchenTransformation .tablet__up .datas .content {
    display: flex;
    flex-direction: column;
  }

  #kitchenTransformation .divider {
    height: 89px;
    width: 1px;
    background: #fafafa;
    margin: 0 24px;
  }

  #kitchenTransformation .numbers {
    height: 131px;
    width: 343px;

    font-weight: 700;
    font-size: 104px;
    line-height: 131px;
    letter-spacing: -0.03em;
    text-align: center;
  }

  #kitchenTransformation .title {
    font-weight: 700;
    font-size: 40px;
    line-height: 92.7%;
    text-align: center;
    margin: 0.25rem 0;
  }

  #kitchenTransformation .subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 92.7%;
    text-align: center;
  }

  #kitchenTransformation .tablet__up h1 {
    height: 73px;
    width: 995px;

    font-weight: 700;
    font-size: 56px;
    line-height: 130%;
    color: white;
  }

  #contact {
    margin-top: 176px;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }

  #contact .tittles__text {
    height: auto;
    width: 423px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #contact .contact__cards {
    height: auto;
    width: 1150px;

    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }

  #contact .whatsapp {
    height: 611px;
    width: 369px;

    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 56px;

    display: flex;
    flex-direction: column;
    justify-content: unset;
    gap: 2rem;
  }

  #contact .whatsapp .title {
    color: black;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
  }

  #contact .whatsapp .subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    height: 100px;
    width: 249px;
  }

  #contact .whatsapp .tablet__divider {
    display: none;
  }

  #contact .whatsapp .divider {
    display: flex;
  }

  #contact .whatsapp .header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
  }

  #contact .whatsapp .header .logo {
    height: 67.2px;
    width: 56px;
  }

  #contact .whatsapp .divider {
    height: auto;
    width: 224px;
  }

  #contact .whatsapp .header .texts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }

  #contact .whatsapp .contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;

    height: 216px;
  }

  #contact .whatsapp .title {
    color: black;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
  }

  #contact .whatsapp .email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    color: #424242;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
  }

  #contact .whatsapp .phone__number {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    color: #424242;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;

    margin-bottom: 1rem;
  }

  #contact .whatsapp .wpbutton {
    cursor: pointer;
    user-select: none;
    height: 80px;
    width: 257px;
    background: #08b88e;
    border-radius: 8px;

    font-weight: 700;
    font-size: 24px;
    line-height: 30px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    margin-top: 1rem;
  }

  #contact .form {
    height: 611px;
    width: 757px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 56px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #contact .form .title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;

    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0.01em;
  }

  #contact .form .input:not([type]) {
    height: 63px;
    width: 100%;
    margin-bottom: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;

    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box;
  }

  #contact .form .send__button {
    cursor: pointer;
    user-select: none;

    background: #f02338;
    color: white;
    height: 88px;
    width: 645px;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    font-weight: 700;
    font-size: 24px;
    line-height: 30px;

    margin-top: 24px;
  }

  #contact h1 {
    color: #000;
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
    text-align: center;
    margin: 0;
  }

  #faq {
    height: auto;
    margin-top: 176px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  #faq .section {
    padding: 0;
  }

  #faq li {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
  }

  #faq li:last-child {
    margin-bottom: 0;
  }

  #faq .collapsible {
    width: 1150px;
    box-shadow: none;
    border: none;
  }

  #faq .collapsible-header {
    height: 120px;
    justify-content: space-between;
    align-items: center;
    border: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    padding: 0 48px;
  }

  #faq .collapsible-body {
    background: white;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    padding: 0 48px 40px 48px;
  }

  #faq .collapsible-body span {
    height: auto;
    width: 224px;
  }

  #faq .tittles__text {
    height: auto;
    width: 532px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #faq h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
    text-align: center;
    margin: 0;
  }

  footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 104px;
    margin-top: 176px;

    padding: 86px 0 65.7px 0;
  }

  footer .items {
    height: 148px;
    width: 314px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }

  footer .items .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
  }

  footer .items .container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  footer .items .container .item {
    width: 125px;
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
  }

  footer .social__media {
    width: 208px;
    margin-left: 132px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1900px) {
  #clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 72px;
    padding: 0;
  }

  #clients .img {
    height: 114px;
    width: 204px;
  }

  #clients span {
    width: auto;
    height: 30px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-204px * 7));
    }
  }
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 1900px;
  }
  .slider::before,
  .slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(204px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 204px;
  }

  footer .social__media {
    margin-left: 389px;
  }
}
