@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Public+Sans:wght@400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Champagne & Limousines";
  src: url("fonts/CL.ttf") format("truetype");
  src: url("fonts/CL.woff") format("woff");
}

@font-face {
  font-family: "Keep Calm";
  src: url("fonts/KC.ttf") format("truetype");
  src: url("fonts/KC.woff") format("woff");
}

:root {
  --soft-brown: #fdebe3;
  --primary: #ad6833;
}

* {
  box-sizing: border-box;
  font-style: normal;
  /*
  border: 1px solid gainsboro;
  */
  margin: 0;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

.disabled {
  background-color: lightgray !important;
  cursor: not-allowed !important;
}

.shdw {
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 0;
}

@media screen and (min-width: 950px) {
  ul {
    list-style-type: none;
  }

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

  .flx {
    flex: 1 0 0;
  }

  .wb {
    background: #fefcfa;
  }

  .heavytxt {
    font-weight: 700 !important;
  }

  .log1 {
    position: absolute;
    top: -200px;
    z-index: -3;
    left: 0;
  }

  .log2 {
    position: absolute;
    bottom: -200px;
    z-index: -3;
    right: 0;
  }

  .log3 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -3;
  }

  .log4 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
  }

  body {
    display: flex;
    flex-direction: column;
    background: var(--soft-brown);
  }

  header {
    width: 100%;
    display: flex;
    height: 90px;
    padding: 0px 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--soft-brown);
    overflow: hidden;
  }

  header .navbar {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }

  header .navbar .logo {
    height: 100%;
    flex-shrink: 0;
    width: auto;
  }

  header .navbar ul {
    display: flex;
    padding: 0px 10px;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
    align-self: stretch;
  }

  header .navbar ul li {
    height: 100%;
    display: flex;
  }

  header .navbar ul a {
    color: black;
    font-family: "Champagne & Limousines";
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    padding: 0 10px;
    text-align: center;
    align-content: center;
  }

  .showcase-section {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
  }

  .showcase-section > img,
  .showcase-section > video {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .showcase-section .gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .showcase-section .icon {
    margin-left: 80px;
    margin-bottom: 30px;
    z-index: -1;
    width: 300px;
    height: auto;
    flex-shrink: 0;
  }

  .showcase-section .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 70px 70px;
    max-width: 630px;
  }

  .showcase-section .text .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .showcase-section .text .desc {
    color: #fefcfa;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .main-section {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
  }

  .main-section .downarrow {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 22.5px);
    width: 45px;
    animation: moveDownUp 2s ease-in-out infinite;
  }

  .main-section > img:nth-child(1),
  .main-section > video:nth-child(1) {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .main-section .gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .main-section .icon {
    margin-left: 80px;
    margin-bottom: 30px;
    z-index: -1;
    width: 300px;
    height: auto;
    flex-shrink: 0;
  }

  .main-section .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 70px 70px;
    max-width: 630px;
  }

  .main-section .text .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .text .desc {
    color: #fefcfa;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
  }

  .main-section .dimcontainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    margin: 0 70px 70px 0;
  }

  .main-section .dimcontainer > img {
    width: 170px;
    height: auto;
  }

  .main-section .dimcontainer .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
  }

  .main-section .dimcontainer .cont > .title {
    color: #fefcfa;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
    text-align: center;
  }

  .main-section .dimcontainer .cont .section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-section .dimcontainer .cont .section > .title {
    color: #fdebe3;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .dimcontainer .cont .section > .desc {
    color: #fdebe3;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .seniority {
    display: flex;
    width: 100%;
    padding: 120px 40px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 40px 88px;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
  }

  .seniority .years {
    display: flex;
    width: 294px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex-shrink: 0;
    margin-top: 25px;
  }

  .seniority .top {
    color: var(--primary);
    text-align: center;
    font-family: "Champagne & Limousines";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .seniority .bottom {
    color: #ad6833;
    text-align: center;
    font-family: "Keep Calm";
    font-size: 110px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .seniority .desc {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 704px;
    width: 100%;
    flex-shrink: 0;
  }

  .catalog {
    display: flex;
    width: 100%;
    padding: 40px 40px 80px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
  }

  .catalog > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .catalog .cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    align-self: center;
    flex-wrap: wrap;
    max-width: 1200px;
  }

  .catalog .card {
    display: flex;
    width: 280px;
    height: 305px;
    padding: 15px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 15px;
    background: #fefcfa;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  }

  .catalog .card:hover {
    transform: scale(1.01);
  }

  .catalog .card .title {
    color: #222;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    flex: 1 0 0;
    align-self: stretch;
  }

  .catalog .card img {
    height: 140px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 4px;
  }

  .catalog .card .desc {
    color: #404040;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  footer {
    display: flex;
    width: 100%;
    padding: 50px;
    justify-content: center;
    align-items: center;
    gap: 60px 100px;
    flex-shrink: 0;
    flex-wrap: wrap;
    background: #fefcfa;
  }

  footer > a img {
    height: 50px;
    flex-shrink: 0;
  }

  footer .main-wrapper {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 30px;
    max-width: 900px;
  }

  footer .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    min-width: 130px;
  }

  footer .loadinggif {
    height: 38px;
  }

  footer .title {
    color: #28201b;
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    align-self: stretch;
  }

  footer .column .item {
    color: rgba(46, 31, 20, 0.62);
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    align-self: stretch;
  }

  footer .column .item:hover {
    color: var(--primary);
  }

  footer .newsletter {
    display: flex;
    width: 400px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
  }

  footer .newsletter .desc {
    color: #28201b;
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: -0.075px;
    align-self: stretch;
  }

  footer .newsletter .input {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
  }

  footer .newsletter .input input {
    display: flex;
    padding: 8px 12px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 0;
    background: var(--soft-brown);
    color: #28201b;
    text-overflow: ellipsis;
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.075px;
    outline: none;
  }

  footer .newsletter .input input:focus {
    outline: 2px solid var(--primary);
  }

  footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
  }

  footer .wrapper .message {
    color: #28201b;
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 600;
    align-self: stretch;
  }

  footer .wrapper .message.success {
    color: green;
  }
  footer .wrapper .message.error {
    color: red;
  }

  footer .newsletter .input button {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1.5px solid rgba(110, 89, 73, 0.2);
    color: #28201b;
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  footer .newsletter .input button:hover {
    cursor: pointer;
    background: var(--soft-brown);
    color: var(--primary);
  }

  footer .newsletter .input button:active {
    cursor: pointer;
    background: #f4dccc;
    color: #ad6833;
    border-color: #ad6833;
  }

  .cert-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    padding: 80px 40px;
  }

  .cert-section .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    width: 100%;
    align-self: stretch;
  }

  .cert-section .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 1020px;
    align-self: center;
  }

  .cert-section .certifications {
    display: inline-flex;
    align-items: center;
    gap: 60px;
  }

  .treat-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
    position: relative;
  }

  .treat-section > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .treat-section .wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }

  .treat-section .treatment {
    display: flex;
    width: 100%;
    height: 600px;
    padding: 50px 100px;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow: hidden;
    align-content: center;
    min-width: 450px;
    flex: 1 0 0;
  }

  .treat-section .treatment > img {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .treat-section .treatment .gradient {
    position: absolute;
    height: -webkit-fill-available;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .treat-section .treatment .text {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .treat-section .treatment .text .wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .treat-section .treatment .treated {
    color: #fefcfa;
    text-align: center;
    font-family: "Champagne & Limousines";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .treat-section .treatment .title {
    color: #fefcfa;
    text-align: center;
    font-family: "Keep Calm";
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .treat-section .treatment .desc {
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
    min-width: 380px;
    max-width: 1000px;
    flex: 1 0 0;
  }

  .spec-section {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 40px;
  }

  .spec-section > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .spec-section .specs {
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 15px 50px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .spec-section .specs .spec {
    display: flex;
    width: 500px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .spec-section .spec .title {
    display: flex;
    padding: 10px 22px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .spec-section .spec .desc {
    display: flex;
    padding: 11px 22px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #fdebe3;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #222;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .about {
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .about .logos {
    display: inline-flex;
    align-items: center;
    gap: 80px;
  }

  .about .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .about .desc {
    color: #fefcfa;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    padding: 0 80px;
  }

  .about .implink {
    text-decoration: underline;
  }

  .values {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px 160px;
    position: relative;
  }

  .values .value {
    display: flex;
    width: 550px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .values .value .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .values .value .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 1020px;
    align-self: stretch;
  }

  .contact-section {
    position: relative;
    display: flex;
    padding: 40px 100px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
  }

  .contact-section .wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 40px;
    width: 100%;
    justify-content: space-between;
  }

  .contact-section .wrapper .contactinfo {
    display: flex;
    width: 441px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .contact-section .wrapper .contactinfo .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section .contactinfo .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
  }

  .contact-section .contactinfo > .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section .info .desc {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
  }

  .contact-section .info .item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .contact-section .info .item p {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section form {
    display: flex;
    width: 500px;
    padding: 20px 40px 40px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: 8px;
    background: #fefcfa;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  }

  .contact-section form .header {
    display: flex;
    width: 247px;
    flex-direction: column;
    align-items: center;
  }

  .contact-section form .header .title {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 40px */
    align-self: stretch;
  }

  .contact-section form .header .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    align-self: stretch;
  }

  .contact-section form .inputs {
    display: flex;
    width: 406px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-section form .inputs .namefields {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
  }

  .contact-section form input {
    display: flex;
    height: 40px;
    padding: 0px 15px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #28201b;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 5px;
    border: 1px solid #747474;
    background: #fefcfa;
    transition: all 0.15s ease-in-out;
  }

  .contact-section form input:focus,
  .contact-section form textarea:focus {
    outline: 2px solid var(--primary);
    border: 0;
    transition: all 0.15s ease-in-out;
  }

  .contact-section form textarea {
    outline: 0;
    height: 150px;
    padding: 10px 15px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid #747474;
    background: #fefcfa;
    color: #28201b;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    resize: none;
  }

  .contact-section form .wrapper-submit {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .contact-section form .wrapper-submit .message {
    color: #ad6833;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    align-self: stretch;
  }

  .contact-section form .wrapper-submit .message.success {
    color: green;
  }

  .contact-section form .wrapper-submit .message.error {
    color: red;
  }

  .contact-section form .wrapper-submit .wrapper-load {
    display: flex;
    gap: 20px;
    flex-direction: row;
  }

  .contact-section form .wrapper-submit .wrapper-load img {
    height: 48px;
  }

  .contact-section form .wrapper-submit button {
    width: 190px;
    padding: 10px 15px;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.2px;
    border: 0;
    cursor: pointer;
    font-family: Poppins;
  }

  .contact-section form .wrapper-submit button:hover {
    background: #ad4a18;
  }

  .contact-section form .wrapper-submit button:active {
    background: #923a0d;
  }

  .contact-section .background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .policy-section {
    display: flex;
    width: 100%;
    padding: 40px 100px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .policy-section .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .policy-section .sub {
    color: #222;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
  }

  .policy-section .desc {
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    align-self: stretch;
  }

  .policy-section .link {
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }

  .product-slider {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 40px;
  }

  .product-slider > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .slider .card {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 220px;
    gap: 4px;
    border-radius: 4px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 10px;
  }

  .slider .card:hover {
    transform: scale(1.01);
  }

  .slider .card .title {
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    flex: 1 0 0;
    max-height: 40px;
    align-self: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slider .card .desc {
    color: #404040;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media screen and (max-width: 950px) and (min-width: 450px) {
  ul {
    list-style-type: none;
  }

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

  .flx {
    flex: 1 0 0;
  }

  .wb {
    background: #fefcfa;
  }

  .heavytxt {
    font-weight: 700 !important;
  }

  .log1 {
    position: absolute;
    top: -100px;
    height: 250px;
    z-index: -3;
    left: 0;
  }

  .log2 {
    position: absolute;
    bottom: -100px;
    z-index: -3;
    height: 250px;
    right: 0;
  }

  .log3 {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -3;
    height: 250px;
  }

  .log4 {
    position: absolute;
    top: 0;
    height: 250px;
    right: 0;
    z-index: -3;
  }

  body {
    display: flex;
    flex-direction: column;
    background: var(--soft-brown);
  }

  header {
    width: 100%;
    display: flex;
    height: 90px;
    padding: 0px 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--soft-brown);
    overflow: hidden;
  }

  header .navbar {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }

  header .navbar .logo {
    height: 100%;
    flex-shrink: 0;
    width: auto;
  }

  header .navbar ul a {
    color: black;
    font-family: "Champagne & Limousines";
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    padding: 10px 0;
    text-align: center;
    align-content: center;
  }

  .showcase-section {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }

  .showcase-section > img,
  .showcase-section > video {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .showcase-section .gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .showcase-section .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 40px;
  }

  .showcase-section .text .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
    max-width: 600px;
  }

  .showcase-section .text .desc {
    color: #fefcfa;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .main-section {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
  }

  .main-section .downarrow {
    position: absolute;
    bottom: 15px;
    left: calc(50% - 17.5px);
    width: 35px;
    animation: moveDownUp 2s ease-in-out infinite;
  }

  .main-section > img:nth-child(1),
  .main-section > video:nth-child(1) {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .main-section .gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .main-section .icon {
    margin-bottom: 30px;
    z-index: -1;
    width: 220px;
    height: auto;
    flex-shrink: 1;
  }

  .main-section .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0 0 30px;
  }

  .main-section .text .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .text .desc {
    color: #fefcfa;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    flex-shrink: 1;
    max-width: 550px;
  }

  .main-section .wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 50px;
    gap: 0 40px;
  }

  .main-section .dimcontainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 30px 30px 0 0;
  }

  .main-section .dimcontainer > img {
    width: 140px;
    height: auto;
  }

  .main-section .dimcontainer .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    align-self: stretch;
  }

  .main-section .dimcontainer .cont > .title {
    color: #fefcfa;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
    text-align: center;
  }

  .main-section .dimcontainer .cont .section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-section .dimcontainer .cont .section > .title {
    color: #fdebe3;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .dimcontainer .cont .section > .desc {
    color: #fdebe3;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    text-align: center;
  }

  .seniority {
    display: flex;
    width: 100%;
    padding: 60px 40px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
  }

  .seniority .years {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .seniority .top {
    color: var(--primary);
    text-align: center;
    font-family: "Champagne & Limousines";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .seniority .bottom {
    color: #ad6833;
    text-align: center;
    font-family: "Keep Calm";
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .seniority .desc {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 704px;
    width: 100%;
    flex-shrink: 0;
  }

  .catalog {
    display: flex;
    width: 100%;
    padding: 40px 40px 80px 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
  }

  .catalog > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .catalog .cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    align-self: center;
    flex-wrap: wrap;
  }

  .catalog .card {
    display: flex;
    width: 250px;
    height: 280px;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #fefcfa;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  }

  .catalog .card:hover {
    transform: scale(1.01);
  }

  .catalog .card .title {
    color: #222;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    flex: 1 0 0;
    max-height: 40px;
    align-self: stretch;
  }

  .catalog .card img {
    height: 140px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 4px;
  }

  .catalog .card .desc {
    color: #404040;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    overflow: hidden;
  }

  footer {
    display: flex;
    width: 100%;
    padding: 20px 40px;
    gap: 30px;
    flex-wrap: wrap;
    background: #fefcfa;
    flex-direction: column;
    align-content: flex-start;
  }

  footer .main-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer > a img {
    height: 40px;
    width: fit-content;
  }

  footer .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
  }

  footer .loadinggif {
    height: 28px;
    width: fit-content;
  }

  footer .title {
    color: #28201b;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    align-self: stretch;
  }

  footer .column .item {
    color: rgba(46, 31, 20, 0.62);
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    align-self: stretch;
  }

  footer .column .item:hover {
    color: var(--primary);
  }

  footer .newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
  }

  footer .newsletter .desc {
    color: #28201b;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.075px;
    align-self: stretch;
  }

  footer .newsletter .input {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
  }

  footer .newsletter .input input {
    display: flex;
    padding: 8px 12px;
    border-radius: 8px;
    border: 0;
    background: var(--soft-brown);
    color: #28201b;
    text-overflow: ellipsis;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.075px;
    outline: none;
  }

  footer .newsletter .input input:focus {
    outline: 2px solid var(--primary);
  }

  footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  footer .wrapper .message {
    color: #28201b;
    font-family: "Poppins";
    font-size: 10px;
    font-weight: 600;
    align-self: stretch;
  }

  footer .wrapper .message.success {
    color: green;
  }
  footer .wrapper .message.error {
    color: red;
  }

  footer .newsletter .input button {
    display: flex;
    padding: 7px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1.5px solid rgba(110, 89, 73, 0.2);
    color: #28201b;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
  }

  footer .newsletter .input button:hover {
    cursor: pointer;
    background: var(--soft-brown);
    color: var(--primary);
  }

  footer .newsletter .input button:active {
    cursor: pointer;
    background: #f4dccc;
    color: #ad6833;
    border-color: #ad6833;
  }

  .cert-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    padding: 60px 30px;
  }

  .cert-section .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    width: 100%;
    align-self: stretch;
  }

  .cert-section .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 1020px;
    align-self: center;
  }

  .cert-section .certifications {
    display: inline-flex;
    align-items: center;
    gap: 40px;
  }

  .treat-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    position: relative;
  }

  .treat-section > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .treat-section .wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }

  .treat-section .treatment {
    display: flex;
    width: 100%;
    height: 500px;
    padding: 40px 70px;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow: hidden;
    min-width: 400px;
    flex: 1 0 0;
  }

  .treat-section .treatment > img {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .treat-section .treatment .gradient {
    position: absolute;
    height: -webkit-fill-available;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .treat-section .treatment .text {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .treat-section .treatment .text .wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .treat-section .treatment .treated {
    color: #fefcfa;
    text-align: center;
    font-family: "Champagne & Limousines";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .treat-section .treatment .title {
    color: #fefcfa;
    text-align: center;
    font-family: "Keep Calm";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .treat-section .treatment .desc {
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
    min-width: 380px;
    max-width: 1000px;
    flex: 1 0 0;
  }

  .spec-section {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 30px;
  }

  .spec-section > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .spec-section .specs {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .spec-section .specs .spec {
    display: flex;
    width: 380px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .spec-section .spec .title {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .spec-section .spec .desc {
    display: flex;
    padding: 8px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 5px;
    background: #fdebe3;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .about {
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .about .logos {
    display: inline-flex;
    align-items: center;
    gap: 40px;
  }

  .about .logos img {
    height: 110px;
    width: auto;
  }

  .about .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .about .desc {
    color: #fefcfa;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    padding: 0 80px;
  }

  .about .implink {
    text-decoration: underline;
  }

  .values {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 120px;
    position: relative;
  }

  .values .value {
    display: flex;
    width: 550px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .values .value .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .values .value .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 1020px;
    align-self: stretch;
  }

  .contact-section {
    position: relative;
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
  }

  .contact-section .background {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .contact-section .wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 30px;
    width: 100%;
    justify-content: space-between;
  }

  .contact-section .wrapper .contactinfo {
    display: flex;
    width: 441px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-section .wrapper .contactinfo .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section .contactinfo .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
  }

  .contact-section .contactinfo > .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section .info .desc {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
  }

  .contact-section .info .item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .contact-section .info .item p {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section form {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    background: #fefcfa;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  }

  .contact-section form .header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-section form .header .title {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 40px */
    align-self: stretch;
  }

  .contact-section form .header .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    align-self: stretch;
  }

  .contact-section form .inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-section form .inputs .namefields {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
  }

  .contact-section form input {
    display: flex;
    height: 40px;
    padding: 0px 15px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #28201b;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 5px;
    border: 1px solid #747474;
    background: #fefcfa;
    transition: all 0.15s ease-in-out;
  }

  .contact-section form input:focus,
  .contact-section form textarea:focus {
    outline: 2px solid var(--primary);
    border: 0;
    transition: all 0.15s ease-in-out;
  }

  .contact-section form textarea {
    outline: 0;
    height: 150px;
    padding: 10px 15px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid #747474;
    background: #fefcfa;
    color: #28201b;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    resize: none;
  }

  .contact-section form button {
    width: 190px;
    padding: 10px 15px;
    align-items: center;
    gap: 25px;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.2px;
    border: 0;
    cursor: pointer;
    font-family: Poppins;
  }

  .contact-section form .wrapper-submit {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .contact-section form .wrapper-submit .message {
    color: #ad6833;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    max-width: 350px;
    text-align: center;
  }

  .contact-section form .wrapper-submit .message.success {
    color: green;
  }

  .contact-section form .wrapper-submit .message.error {
    color: red;
  }

  .contact-section form .wrapper-submit .wrapper-load {
    display: flex;
    gap: 10px;
    flex-direction: row;
  }

  .contact-section form .wrapper-submit .wrapper-load img {
    height: 48px;
  }

  .contact-section form .wrapper-submit button {
    width: 190px;
    padding: 10px 15px;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.2px;
    border: 0;
    cursor: pointer;
    font-family: Poppins;
  }

  .contact-section form .wrapper-submit button:hover {
    background: #ad4a18;
  }

  .contact-section form .wrapper-submit button:active {
    background: #923a0d;
  }

  .policy-section {
    display: flex;
    width: 100%;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .policy-section .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .policy-section .sub {
    color: #222;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
  }

  .policy-section .desc {
    color: #222;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    align-self: stretch;
  }

  .policy-section .link {
    color: #222;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }

  .product-slider {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 30px;
  }

  .product-slider > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .slider .card {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 220px;
    gap: 4px;
    border-radius: 4px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 10px;
  }

  .slider .card:hover {
    transform: scale(1.01);
  }

  .slider .card .title {
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    flex: 1 0 0;
    max-height: 40px;
    align-self: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slider .card .desc {
    color: #404040;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media screen and (max-width: 450px) {
  ul {
    list-style-type: none;
  }

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

  .flx {
    flex: 1 0 0;
  }

  .wb {
    background: #fefcfa;
  }

  .heavytxt {
    font-weight: 700 !important;
  }

  .log1 {
    position: absolute;
    top: -100px;
    height: 250px;
    z-index: -3;
    left: 0;
  }

  .log2 {
    position: absolute;
    bottom: -100px;
    z-index: -3;
    height: 250px;
    right: 0;
  }

  .log3 {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -3;
    height: 250px;
  }

  .log4 {
    position: absolute;
    top: 0;
    height: 250px;
    right: 0;
    z-index: -3;
  }

  body {
    display: flex;
    flex-direction: column;
    background: var(--soft-brown);
  }

  header {
    width: 100%;
    display: flex;
    height: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--soft-brown);
    overflow: hidden;
  }

  header .navbar {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
  }

  header .navbar .logo {
    width: 220px;
    flex-shrink: 0;
    margin-left: 10px;
  }

  header .navbar ul a {
    color: black;
    font-family: "Champagne & Limousines";
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    padding: 10px 0;
    text-align: center;
    align-content: center;
  }

  .showcase-section {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }

  .showcase-section > img,
  .showcase-section > video {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .showcase-section .gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .showcase-section .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 30px;
  }

  .showcase-section .text .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
    max-width: 600px;
  }

  .showcase-section .text .desc {
    color: #fefcfa;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .seniority {
    display: flex;
    width: 100%;
    padding: 30px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
  }

  .seniority .years {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .seniority .top {
    color: var(--primary);
    text-align: center;
    font-family: "Champagne & Limousines";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .seniority .bottom {
    color: #ad6833;
    text-align: center;
    font-family: "Keep Calm";
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .seniority .desc {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 704px;
    width: 100%;
    flex-shrink: 0;
  }

  .catalog {
    display: flex;
    width: 100%;
    padding: 30px 0px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .catalog > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .catalog .cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    align-self: center;
    flex-wrap: wrap;
  }

  .catalog .card {
    display: flex;
    width: 150px;
    height: 220px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #fefcfa;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  }

  .catalog .card:hover {
    transform: scale(1.01);
  }

  .catalog .card .title {
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    flex: 1 0 0;
    max-height: 40px;
    align-self: stretch;
  }

  .catalog .card img {
    height: 80px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 4px;
  }

  .catalog .card .desc {
    color: #404040;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    overflow: hidden;
  }

  footer {
    display: flex;
    width: 100%;
    padding: 30px;
    gap: 20px;
    flex-wrap: wrap;
    background: #fefcfa;
    flex-direction: column;
    align-content: flex-start;
  }

  footer .main-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer > a img {
    height: 35px;
    width: fit-content;
  }

  footer .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
  }

  footer .loadinggif {
    height: 25px;
    width: fit-content;
  }

  footer .title {
    color: #28201b;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    align-self: stretch;
  }

  footer .column .item {
    color: rgba(46, 31, 20, 0.62);
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    align-self: stretch;
  }

  footer .column .item:hover {
    color: var(--primary);
  }

  footer .newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
  }

  footer .newsletter .desc {
    color: #28201b;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.075px;
    align-self: stretch;
  }

  footer .newsletter .input {
    display: flex;
    align-items: flex-start;
    gap: 2px 10px;
    align-self: stretch;
    flex-wrap: wrap;
  }

  footer .newsletter .input input {
    display: flex;
    padding: 8px 12px;
    border-radius: 8px;
    border: 0;
    background: var(--soft-brown);
    color: #28201b;
    text-overflow: ellipsis;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.075px;
    outline: none;
  }

  footer .newsletter .input input:focus {
    outline: 2px solid var(--primary);
  }

  footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
  }

  footer .wrapper .message {
    color: #28201b;
    font-family: "Poppins";
    font-size: 10px;
    font-weight: 600;
    align-self: stretch;
  }

  footer .wrapper .message.success {
    color: green;
  }
  footer .wrapper .message.error {
    color: red;
  }

  footer .newsletter .input button {
    display: flex;
    padding: 7px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1.5px solid rgba(110, 89, 73, 0.2);
    color: #28201b;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
  }

  footer .newsletter .input button:hover {
    cursor: pointer;
    background: var(--soft-brown);
    color: var(--primary);
  }

  footer .newsletter .input button:active {
    cursor: pointer;
    background: #f4dccc;
    color: #ad6833;
    border-color: #ad6833;
  }

  .main-section {
    display: flex;
    width: 100%;
    height: 700px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
  }

  .main-section .downarrow {
    position: absolute;
    bottom: 15px;
    left: calc(50% - 15px);
    width: 30px;
    animation: moveDownUp 2s ease-in-out infinite;
  }

  .main-section > img:nth-child(1),
  .main-section > video:nth-child(1) {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .main-section .gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .main-section .icon {
    z-index: -1;
    width: 150px;
    height: auto;
    flex-shrink: 1;
  }

  .main-section .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 30px 0 30px;
  }

  .main-section .text .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .text .desc {
    color: #fefcfa;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    flex-shrink: 1;
    max-width: 550px;
  }

  .main-section .wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 40px;
    gap: 20px 40px;
  }

  .main-section .dimcontainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 0 15px 10px;
  }

  .main-section .dimcontainer > img {
    width: 110px;
    height: auto;
  }

  .main-section .dimcontainer .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    align-self: stretch;
  }

  .main-section .dimcontainer .cont > .title {
    color: #fefcfa;
    font-family: "Public Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
    text-align: center;
  }

  .main-section .dimcontainer .cont .section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-section .dimcontainer .cont .section > .title {
    color: #fdebe3;
    text-align: center;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
  }

  .main-section .dimcontainer .cont .section > .desc {
    color: #fdebe3;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    text-align: center;
  }

  .cert-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 30px;
  }

  .cert-section .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    width: 100%;
    align-self: stretch;
  }

  .cert-section .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 1020px;
    align-self: center;
  }

  .cert-section .certifications {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .treat-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    position: relative;
  }

  .treat-section > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .treat-section .wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }

  .treat-section .treatment {
    display: flex;
    width: 100%;
    height: 400px;
    padding: 20px;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow: hidden;
    min-width: 230px;
    flex: 1 0 0;
  }

  .treat-section .treatment > img {
    position: absolute;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -2;
    object-fit: cover;
  }

  .treat-section .treatment .gradient {
    position: absolute;
    height: -webkit-fill-available;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 85%
    );
    z-index: -1;
  }

  .treat-section .treatment .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .treat-section .treatment .text .wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .treat-section .treatment .treated {
    color: #fefcfa;
    text-align: center;
    font-family: "Champagne & Limousines";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .treat-section .treatment .title {
    color: #fefcfa;
    text-align: center;
    font-family: "Keep Calm";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: auto !important;
  }

  .treat-section .treatment .desc {
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
    flex: 1 0 0;
  }

  .spec-section {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
  }

  .spec-section > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .spec-section .specs {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .spec-section .specs .spec {
    display: flex;
    flex: 1 0 0;
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .spec-section .spec .title {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .spec-section .spec .desc {
    display: flex;
    padding: 8px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: 5px;
    background: #fdebe3;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #222;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .about {
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .about .logos {
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }

  .about .logos img {
    height: 80px;
    width: auto;
  }

  .about .title {
    color: #fefcfa;
    font-family: "Champagne & Limousines";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .about .desc {
    color: #fefcfa;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    padding: 0 30px;
  }

  .about .implink {
    text-decoration: underline;
  }

  .values {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    position: relative;
  }

  .values .value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .values .value .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .values .value .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    max-width: 1020px;
    align-self: stretch;
  }

  .contact-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
  }

  .contact-section .background {
    width: 100%;
    height: 260px;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: -1;
  }

  .contact-section .wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 30px;
    row-gap: 20px;
    width: 100%;
    justify-content: space-between;
  }

  .contact-section .wrapper .contactinfo {
    display: flex;
    width: 441px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-section .wrapper .contactinfo .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section .contactinfo .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }

  .contact-section .contactinfo > .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section .info .desc {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
  }

  .contact-section .info .item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-section .info .item p {
    color: #ad6833;
    text-align: justify;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
  }

  .contact-section form {
    display: flex;
    flex: 1;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #fefcfa;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  }

  .contact-section form .header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-section form .header .title {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 40px */
    align-self: stretch;
  }

  .contact-section form .header .desc {
    color: #ad6833;
    text-align: center;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    align-self: stretch;
  }

  .contact-section form .inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .contact-section form .inputs .namefields {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    flex-direction: column;
  }

  .contact-section form input {
    display: flex;
    min-height: 40px;
    padding: 0px 15px;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    color: #28201b;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 5px;
    border: 1px solid #747474;
    background: #fefcfa;
    transition: all 0.15s ease-in-out;
  }

  .contact-section form input:focus,
  .contact-section form textarea:focus {
    outline: 2px solid var(--primary);
    border: 0;
    transition: all 0.15s ease-in-out;
  }

  .contact-section form textarea {
    outline: 0;
    height: 150px;
    padding: 10px 15px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid #747474;
    background: #fefcfa;
    color: #28201b;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    resize: none;
  }

  .contact-section form .wrapper-submit {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .contact-section form .wrapper-submit .message {
    color: #ad6833;
    font-family: Poppins;
    font-size: 8px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
  }

  .contact-section form .wrapper-submit .message.success {
    color: green;
  }

  .contact-section form .wrapper-submit .message.error {
    color: red;
  }

  .contact-section form .wrapper-submit .wrapper-load {
    display: flex;
    flex-direction: row;
  }

  .contact-section form .wrapper-submit .wrapper-load img {
    height: 40px;
    object-fit: contain;
  }

  .contact-section form .wrapper-submit button {
    width: 160px;
    padding: 10px 15px;
    border-radius: 5px;
    background: #ad6833;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: 0;
    cursor: pointer;
    font-family: Poppins;
  }

  .contact-section form .wrapper-submit button:hover {
    background: #ad4a18;
  }

  .contact-section form .wrapper-submit button:active {
    background: #923a0d;
  }

  .policy-section {
    display: flex;
    width: 100%;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .policy-section .title {
    color: #ad6833;
    font-family: "Public Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .policy-section .sub {
    color: #222;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
  }

  .policy-section .desc {
    color: #222;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    align-self: stretch;
  }

  .policy-section .link {
    color: #222;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }

  .product-slider {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
  }

  .product-slider > .title {
    color: #ad6833;
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    align-self: stretch;
  }

  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .slider .card {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 220px;
    gap: 4px;
    border-radius: 4px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 10px;
  }

  .slider .card:hover {
    transform: scale(1.01);
  }

  .slider .card .title {
    color: #222;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    flex: 1 0 0;
    max-height: 40px;
    align-self: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slider .card .desc {
    color: #404040;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.downarrow {
  transform: translateX(50%);
}

@keyframes moveDownUp {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}
