*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #FFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #2D162C;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  background: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #231B2B;
}

h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #2D162C;
  margin: 1rem auto 0;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 1000;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #231B2B;
}

.logo__icon {
  margin-right: 0.5rem;
}

.logo:hover {
  color: #231B2B;
  opacity: 0.8;
}

.nav {
  display: none;
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__item {
  margin-left: 2rem;
}

.nav__link {
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2D162C;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #231B2B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #FFF;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  height: calc(100vh - 76px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav__list {
  padding: 2rem;
}

.mobile-nav__item {
  margin-bottom: 1.5rem;
}

.mobile-nav__link {
  font-size: 1.25rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: #2D162C;
  color: #FFF;
}

.btn--primary:hover {
  background-color: #0b050b;
  color: #FFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(45, 22, 44, 0.3);
          box-shadow: 0 5px 15px rgba(45, 22, 44, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: #2D162C;
  border: 2px solid #2D162C;
}

.btn--secondary:hover {
  background-color: #2D162C;
  color: #FFF;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.hero {
  padding: 4rem 0;
  background-color: #F5F5F7;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

@media (min-width: 992px) {
  .hero {
    padding: 8rem 0;
  }
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .hero .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .hero__content {
    margin-bottom: 0;
    margin-right: 3rem;
  }
}

.hero__title {
  margin-bottom: 1.5rem;
  color: #231B2B;
}

.hero__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #777;
}

.hero__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero__stats {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hero__stats {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background-color: #FFF;
  padding: 1.5rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: #2D162C;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-card__number {
    font-size: 2.5rem;
  }
}

.stat-card__text {
  font-size: 0.875rem;
  color: #777;
}

@media (min-width: 768px) {
  .stat-card__text {
    font-size: 1rem;
  }
}

.showcase {
  overflow: hidden;
}

.showcase__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .showcase__gallery {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.showcase__image {
  overflow: hidden;
  border-radius: 4px;
  height: 250px;
}

@media (min-width: 768px) {
  .showcase__image {
    height: 300px;
  }
}

.showcase__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.showcase__image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.about {
  background-color: #FFF;
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text {
  color: #777;
  font-size: 1.125rem;
}

.about__tagline {
  font-weight: 700;
  font-size: 1.25rem;
  color: #231B2B;
  margin: 2rem 0;
}

.feature {
  background-color: #F5F5F7;
}

.feature .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .feature .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem;
}

@media (min-width: 992px) {
  .feature__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 2rem;
  }
}

.feature__title {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .feature__title {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .feature__title {
    font-size: 2.25rem;
  }
}

.feature__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .feature__image {
    margin-top: 0;
  }
}

.feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.craftsmanship {
  text-align: center;
  background-color: #231B2B;
  color: #FFF;
  padding: 4rem 0;
}

.craftsmanship .section-title {
  color: #FFF;
}

.craftsmanship .section-title::after {
  background-color: #FFF;
}

.craftsmanship__text {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.services {
  background-color: #FFF;
}

.services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .services__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
}

.service-card {
  background-color: #231B2B;
  color: #FFF;
  padding: 2rem;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 20px rgba(35, 27, 43, 0.2);
          box-shadow: 0 10px 20px rgba(35, 27, 43, 0.2);
}

.service-card__title {
  color: #FFF;
  margin-bottom: 1rem;
}

.service-card__text {
  opacity: 0.8;
}

.contact {
  background-color: #F5F5F7;
}

.contact .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact .container {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.contact__image img {
  width: 100%;
}

@media (min-width: 992px) {
  .contact__image {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
  }
  .contact__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contact__form-container {
  background-color: #FFF;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .contact__form-container {
    padding: 3rem;
  }
}

.contact__title {
  margin-bottom: 2rem;
  text-align: center;
}

.contact__form .form-group {
  margin-bottom: 1.5rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #EEE;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #2D162C;
  -webkit-box-shadow: 0 0 0 2px rgba(45, 22, 44, 0.2);
          box-shadow: 0 0 0 2px rgba(45, 22, 44, 0.2);
}

.contact__form textarea {
  min-height: 150px;
  resize: vertical;
}

.thank-you {
  padding: 5rem 0;
  min-height: calc(100vh - 76px - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thank-you__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thank-you__message {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.thank-you__details {
  color: #777;
  margin-bottom: 0.5rem;
}

.thank-you__tagline {
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer {
  background-color: #231B2B;
  color: #FFF;
  padding: 3rem 0;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__logo {
  color: #F5F5F7;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .footer__links {
    margin-top: 0;
  }
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 1.5rem;
}

.footer__link:first-child {
  margin-left: 0;
}

@media (min-width: 768px) {
  .footer__link:first-child {
    margin-left: 1.5rem;
  }
}

.footer__link:hover {
  color: #FFF;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__copyright {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer__copyright {
    text-align: left;
    margin-bottom: 0;
  }
}

.footer__copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer__copyright p:last-child {
  margin-bottom: 0;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-left: 1rem;
  color: #FFF;
}

.footer .social-link:first-child {
  margin-left: 0;
}

.footer .social-link:hover {
  background-color: #2D162C;
  color: #FFF;
}

.footer .social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #231B2B;
  color: #FFF;
  padding: 1rem;
  z-index: 1001;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cookie-popup.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-popup__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

.cookie-popup__content p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cookie-popup__content p {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}

.cookie-popup__content p a {
  color: #FFF;
  text-decoration: underline;
}

.cookie-popup__content p a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.has-error {
  position: relative;
}

.has-error .error-message {
  color: #FF3366;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.privacy {
  padding-top: 60px;
  padding-bottom: 60px;
}

.privacy h1 {
  font-size: 32px;
  margin-bottom: 28px;
}
/*# sourceMappingURL=style.css.map */