/* ==========================================================================
   MAR-BUD - SCSS Stylesheet
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 90px;
}
@media (min-width: 768px) {
  body {
    padding-top: 103px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #000;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}

.container {
  max-width: 100%;
  width: 1230px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  header .container {
    padding: 40px 16px;
  }
}
header a.brand-logo {
  width: auto;
  height: 23px;
  aspect-ratio: 154/23;
  display: flex;
  align-items: center;
  gap: 8px;
}
header a.brand-logo img {
  height: 23px;
  width: auto;
}
header a.brand-logo svg {
  display: block;
}
header .desktop-nav {
  display: none;
}
header .desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
}
@media (min-width: 1024px) {
  header .desktop-nav ul {
    gap: 32px;
  }
}
header .desktop-nav ul li {
  line-height: 18px;
}
header .desktop-nav ul li a {
  color: #000 !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 1024px) {
  header .desktop-nav ul li a {
    font-size: 18px;
    line-height: 22px;
  }
}
header .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
header .mobile-nav.active {
  visibility: visible;
  opacity: 1;
}
header .mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}
header .mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
header .mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  header .mobile-nav-content {
    width: 100%;
    max-width: 100vw;
  }
}
header .mobile-nav-header {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 0 16px;
  border-bottom: 1px solid #e5e5e5;
}
header .mobile-nav-header svg {
  width: auto;
  height: 23px;
  aspect-ratio: 154/23;
}
header .mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 16px;
}
header .mobile-nav-menu li {
  text-align: center;
  margin-bottom: 8px;
}
header .mobile-nav-menu li a {
  height: auto;
  display: block;
  padding: 16px 0;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.2s ease;
}
header .mobile-nav-menu li a:hover {
  color: #ff3337;
}
header .mobile-nav-menu li:last-child a {
  border-bottom: none;
}
header .button-menu {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background: #ff3337;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10001;
}
header .button-menu:hover {
  background: #e52d31;
  transform: scale(1.05);
}
header .button-menu:active {
  transform: scale(0.95);
}
header .button-menu .menu-icon,
header .button-menu .close-icon {
  position: absolute;
  transition: all 0.3s ease;
}
header .button-menu .close-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}
header .button-menu.active .menu-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}
header .button-menu.active .close-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
@media (min-width: 768px) {
  header .desktop-nav {
    display: block;
  }
  header .button-menu {
    display: none;
  }
  header .mobile-nav {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70svh;
  background-image: url("/assets/img/hero.png");
  background-size: cover;
  background-position: center;
  padding-block: 32px;
}
@media (min-width: 768px) {
  .hero {
    padding-block: 64px;
  }
}
.hero:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
}
.hero .container {
  position: relative;
  z-index: 3;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.hero :is(h1, h2, h3, h4, h5, h6) {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero :is(h1, h2, h3, h4, h5, h6) {
    font-size: 48px;
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  .hero :is(h1, h2, h3, h4, h5, h6) {
    font-size: 64px;
    margin-bottom: 42px;
  }
}
.hero p {
  max-width: 100%;
  margin-inline: auto;
  width: 525px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  text-wrap: balance;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero p {
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  .hero p {
    margin-bottom: 42px;
  }
}

.button {
  display: inline-block;
  padding: 20px 40px;
  background-color: #ff3337;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  transition: 180ms ease-in-out;
}

.about-us {
  padding-block: 32px;
}
@media (min-width: 768px) {
  .about-us {
    padding-block: 64px;
  }
}
@media (min-width: 1024px) {
  .about-us {
    padding-block: 96px;
  }
}
.about-us .container .flex {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .about-us .container .flex {
    flex-direction: row;
    gap: 32px;
  }
}
.about-us .container .flex .col-desc {
  width: 100%;
}
@media (min-width: 768px) {
  .about-us .container .flex .col-desc {
    width: 41.6666666667%;
  }
}
.about-us .container .flex .col-desc h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .about-us .container .flex .col-desc h2 {
    font-size: 36px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .about-us .container .flex .col-desc h2 {
    font-size: 46px;
    margin-bottom: 72px;
  }
}
.about-us .container .flex .col-desc p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
}
.about-us .container .flex .col-desc p:last-child {
  margin-bottom: 0;
}
.about-us .container .flex .col-points {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
@media (min-width: 480px) {
  .about-us .container .flex .col-points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .about-us .container .flex .col-points {
    padding-left: 32px;
    width: 58.3333333333%;
  }
}
@media (min-width: 1024px) {
  .about-us .container .flex .col-points {
    padding-left: 64px;
  }
}
.about-us .container .flex .col-points .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .about-us .container .flex .col-points .box {
    align-items: flex-start;
    text-align: left;
  }
}
.about-us .container .flex .col-points .box svg {
  width: 94px;
  height: 94px;
  margin-bottom: 26px;
}
.about-us .container .flex .col-points .box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 22px;
}
@media (min-width: 1024px) {
  .about-us .container .flex .col-points .box h3 {
    font-size: 24px;
  }
}
.about-us .container .flex .col-points .box p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
  text-wrap: balance;
}
.about-us .container .flex .col-points .box p:last-child {
  margin-bottom: 0;
}

.our-products {
  background: #f2f2f2;
  padding-block: 32px;
}
@media (min-width: 768px) {
  .our-products {
    padding-block: 64px;
  }
}
@media (min-width: 1024px) {
  .our-products {
    padding-block: 96px;
  }
}
.our-products .container .flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .our-products .container .flex {
    flex-direction: row;
    gap: 32px;
  }
}
.our-products .container .flex .col-desc {
  width: 100%;
}
@media (min-width: 1024px) {
  .our-products .container .flex .col-desc {
    width: 41.6666666667%;
  }
}
.our-products .container .flex .col-desc h2 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  padding-top: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .our-products .container .flex .col-desc h2 {
    padding-top: 40px;
  }
}
.our-products .container .flex .col-desc h2:before {
  content: "";
  display: block;
  width: 45px;
  height: 5px;
  background: #ff3337;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .our-products .container .flex .col-desc h2:before {
    width: 90px;
    height: 9px;
  }
}
@media (min-width: 768px) {
  .our-products .container .flex .col-desc h2 {
    font-size: 36px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .our-products .container .flex .col-desc h2 {
    font-size: 46px;
    margin-bottom: 72px;
  }
}
.our-products .container .flex .col-desc p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
}
.our-products .container .flex .col-desc p:last-child {
  margin-bottom: 0;
}
.our-products .container .flex .col-photo {
  width: 100%;
}
@media (min-width: 1024px) {
  .our-products .container .flex .col-photo {
    padding-left: 64px;
    width: 58.3333333333%;
  }
}
.our-products .container .flex .col-photo figure {
  margin: 0;
  width: 100%;
}
.our-products .container .flex .col-photo figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 15px solid #fff;
}

.line {
  width: 100%;
  height: 32px;
  background: #d9d9d9;
  margin-top: -16px;
}
@media (min-width: 768px) {
  .line {
    height: 90px;
    margin-top: -45px;
  }
}

.gallery {
  padding-block: 32px;
}
@media (min-width: 768px) {
  .gallery {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .gallery {
    padding-bottom: 64px;
  }
}
.gallery .container h1,
.gallery .container h2 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery .container h1,
  .gallery .container h2 {
    font-size: 36px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .gallery .container h1,
  .gallery .container h2 {
    font-size: 46px;
    margin-bottom: 72px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1, 1fr));
  gap: 24px;
}
@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.gallery-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 100%;
}
.gallery-item .gallery-image {
  display: block;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}
.gallery-item .gallery-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}
.gallery-item:hover .zoom-icon {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.localization {
  background: #f2f2f2;
  padding-block: 32px;
}
@media (min-width: 768px) {
  .localization {
    padding-block: 64px;
  }
}
@media (min-width: 1024px) {
  .localization {
    padding-block: 96px;
  }
}
.localization .container .flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .localization .container .flex {
    flex-direction: row;
    gap: 32px;
  }
}
.localization .container .flex .col-desc {
  width: 100%;
  order: 1;
}
@media (min-width: 1024px) {
  .localization .container .flex .col-desc {
    width: 41.6666666667%;
    order: 2;
  }
}
.localization .container .flex .col-desc h2 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .localization .container .flex .col-desc h2 {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  .localization .container .flex .col-desc h2 {
    font-size: 46px;
    margin-bottom: 56px;
  }
}
.localization .container .flex .col-desc p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
}
.localization .container .flex .col-desc p:last-child {
  margin-bottom: 0;
}
.localization .container .flex .col-photo {
  width: 100%;
  order: 2;
}
@media (min-width: 1024px) {
  .localization .container .flex .col-photo {
    order: 1;
    padding-right: 32px;
    width: 50%;
  }
}
.localization .container .flex .col-photo figure {
  margin: 0;
  width: 100%;
}
.localization .container .flex .col-photo figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 60/47;
  object-fit: cover;
  display: block;
  border: 15px solid #fff;
}

.form {
  margin: 32px 0;
}
@media (min-width: 768px) {
  .form {
    margin: 64px 0;
  }
}
.form .form-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  width: 1064px;
  margin: auto;
  background: #000;
  padding: 42px 32px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .form .form-wrapper {
    flex-direction: row;
  }
}
.form .form-wrapper .col-half {
  width: 100%;
}
@media (min-width: 768px) {
  .form .form-wrapper .col-half {
    width: 50%;
  }
}
.form .form-wrapper .col-half h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .form .form-wrapper .col-half h2 {
    font-size: 36px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .form .form-wrapper .col-half h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.form .form-wrapper .col-half form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form .form-wrapper .col-half form .row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .form .form-wrapper .col-half form .row {
    flex-direction: row;
  }
}
.form .form-wrapper .col-half form .row label {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  left: -9999px;
}
.form .form-wrapper .col-half form .row .input-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .form .form-wrapper .col-half form .row .input-wrapper {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .form .form-wrapper .col-half form .row .input-wrapper.full-width {
    width: 100%;
  }
}
.form .form-wrapper .col-half form .row .input-wrapper.error input:not(:focus),
.form .form-wrapper .col-half form .row .input-wrapper.error textarea:not(:focus) {
  outline: 2px solid #ff3337;
}
.form .form-wrapper .col-half form .row .input-wrapper.error .error-msg {
  color: #ff3337;
  font-size: 11px;
}
.form .form-wrapper .col-half form .row input,
.form .form-wrapper .col-half form .row textarea {
  padding: 14px 18px;
  border: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  resize: vertical;
  width: 100%;
}
.form .form-wrapper .col-half form .row input:focus,
.form .form-wrapper .col-half form .row textarea:focus {
  outline: 2px solid #ff3337;
}
.form .form-wrapper .col-half form .row textarea {
  min-height: 126px;
}
.form .form-wrapper .col-half form .button {
  width: fit-content;
  cursor: pointer;
}
.form .form-wrapper .col-half .contact-figure {
  position: relative;
  width: fit-content;
  max-width: 100%;
}
.form .form-wrapper .col-half .contact-figure img {
  max-width: 100%;
  height: auto;
}
.form .form-wrapper .col-half .contact-figure .contact-card {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-top: 48px;
  background: #fff;
}
@media (min-width: 1024px) {
  .form .form-wrapper .col-half .contact-figure .contact-card {
    width: fit-content;
    position: absolute;
    bottom: -64px;
    right: -64px;
  }
}
.form .form-wrapper .col-half .contact-figure .contact-card svg {
  position: absolute;
  top: -31px;
  left: 0;
  right: 0;
  margin: auto;
  user-select: none;
  pointer-events: none;
}
.form .form-wrapper .col-half .contact-figure .contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}
.form .form-wrapper .col-half .contact-figure .contact-card a {
  color: #939393;
  transition: 180ms ease-in-out;
}
.form .form-wrapper .col-half .contact-figure .contact-card a:hover {
  color: #000;
}

.footer {
  background: #f4f4f4;
  padding-top: 285px;
  margin-top: -285px;
}
.footer .container {
  width: 1064px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .social-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.footer .social-wrapper a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: 180ms ease-in-out;
}
.footer .social-wrapper a:hover {
  background-color: rgb(0, 0, 0);
}

.page-header {
  padding: 24px 0;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 24px;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}
@media (min-width: 768px) {
  .page-header h1 {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .page-header h1 {
    font-size: 64px;
  }
}

.privacy ol,
.privacy ul {
  list-style-position: inside;
}
.privacy p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.privacy :is(h2, h3, h4, h5, h6) {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy :is(a) {
  color: #ff3337;
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
