/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

/* document root */
:root {
  /* colors */
  --gray-100: #ebebeb;
  --gray-200: #707070;
  --gray-300: #363636;
  --gray-400: #888888;
  --gray-500: #9a9a9a;
  --cream-white: #ded1c9;
  --cream-mostly-white: #efefef;

  /* font families */
  --font-primary: "lato";
  --font-secondary: "merel";

  /* utilities */
  --scroll-padding-top: 74px;
}

html {
  scroll-padding-top: var(--scroll-padding-top);
}

body {
  font-family: var(--font-primary), system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  letter-spacing: 0.8px;
  line-height: 1.25;
  color: var(--bs-black);
}

body.hidden {
  overflow: hidden;
}

#app {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
}

.wrapper {
  width: 1080px;
  max-width: 100%;
  margin-inline: auto;
}

/* title styles */
.title__1,
.title__2,
.title__3,
.title__4,
.title__5,
.title__6 {
  font-family: var(--font-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.title__1 {
  font-weight: 900;
  font-size: 3.25rem;
  letter-spacing: 3.75px;
}

.title__2 {
  font-weight: 700;
}

.title__3 {
  font-size: 1.625rem;
}

/* text styles */
.text__20 {
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.text__18 {
  font-size: 1.125rem;
}

.text__16 {
  font-size: 1rem;
}

.text__12 {
  font-size: 0.75rem;
}

a {
  transition: 300ms ease;
}

.link__black {
  color: var(--bs-black);
  letter-spacing: 0.7px;
}

.link__black:hover {
  opacity: 0.75;
  color: var(--bs-black);
}

.link__gray-300 {
  color: var(--gray-300);
  letter-spacing: 0.7px;
}

.link__gray-300:hover {
  opacity: 0.75;
  color: var(--gray-300);
}

.link__white {
  color: var(--bs-white);
  letter-spacing: 0.7px;
}

.link__white:hover {
  opacity: 0.75;
  color: var(--bs-white);
}

.ic-btn-primary {
  background-color: var(--gray-300);
  border: 2px solid var(--bs-white);
  border-radius: 1rem;
  padding: 1rem 3.5rem;
  color: var(--bs-white);
  font-family: var(--font-primary);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.8px;
  text-shadow: 2px 6px 8px rgba(0, 0, 0, 0.25);
}

.ic-btn-primary:hover {
  color: var(--bs-white);
}

.transition-bounce__up {
  transition: scale 300ms;
}

.transition-bounce__up:hover {
  scale: 0.9;
}

.ic__backdrop {
  background: rgba(54, 54, 54, 0.25);
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.ic__backdrop-white {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.reboot-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.bg-holder {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bottom-line {
  position: relative;
  margin-bottom: 6rem !important;
}

.bottom-line::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  max-width: 100%;
  height: 0.375rem;
  background-color: var(--bs-white);
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.25);
}

/******************************************
=> header main
******************************************/
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--bs-black);
}

.navbar-main .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--bs-white);
}

.navbar-logo {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  transform: translateY(-50%);
  display: inline-block;
  width: 82px;
  height: 82px;
}

.navbar-logo img {
  width: 100%;
  height: 100%;
}

.menu-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
  display: none;
  gap: 0.5rem;
}

.menu-btn span {
  width: 32px;
  height: 2px;
  border-radius: 50rem;
  background-color: var(--bs-white);
  transition: 300ms ease;
}

.menu-btn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.collapsable-menu {
  margin-inline: auto;
}

.navbar-main__nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-block: 1.5rem;
}

.nav-item__link {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--bs-white);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: 300ms;
  letter-spacing: normal;
}

.nav-item__link:hover {
  color: var(--bs-white);
  opacity: 0.8;
}

/******************************************
=> hero
******************************************/
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .bg-holder {
  background-position: bottom center;
}

.hero .title__1 {
  color: var(--bs-white);
  text-shadow: 2px 6px 8px rgba(0, 0, 0, 0.251);
  margin-bottom: 2.5rem;
  max-width: 670px;
  margin-inline: auto;
}

/******************************************
=> banner text box
******************************************/
.banner-text-box {
  padding-block: 4rem 2rem;
}

.banner-text-box .box {
  border: 2px solid var(--gray-200);
  padding: 3rem 4rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.banner-text-box .title__tag {
  position: absolute;
  text-transform: capitalize;
  top: 0;
  left: 0;
  background-color: var(--gray-400);
  color: var(--bs-white);
  font-weight: 700;
  padding: 1.375rem 3.5rem;
  transform: translate(3.5rem, -50%);
}

.banner-text-box .link__black {
  font-size: 0.875rem;
  text-decoration: none;
}

/******************************************
=> footer main
******************************************/
.footer-main {
  margin-top: auto;
}

.featured-brands {
  padding-block: 4.5rem;
}

.featured-brands .item-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
}

.widgets {
  background-color: var(--gray-300);
  padding-top: 4rem;
  position: relative;
}

.widgets .wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 2rem 0;
  padding-bottom: 1.5rem;
}

.footer-logo {
  width: 155px;
  height: 155px;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 3.25rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.widgets .right {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  gap: 2rem 0;
}

.widget__title {
  color: var(--bs-white);
  border-bottom: 1px solid var(--bs-white);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.widget__nav-list {
  display: grid;
  gap: 1rem;
}

.widget__nav-list .nav__item-link {
  text-decoration: none;
  color: var(--bs-white);
  letter-spacing: 0.8px;
  display: inline-block;
}

.widget__nav-list .nav__item-link:hover {
  opacity: 0.75;
}

.widget__item .box {
  border: 1px solid var(--bs-white);
  padding: 1rem;
  color: var(--bs-white);
  margin-right: 2.5rem;
  margin-top: 2.5rem;
  margin-left: -1rem;
  font-weight: 500;
}

.widget__nav-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.375rem;
}

.widget__nav-social .nav__item-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.widget__nav-social .nav__item-link img {
  width: 3.5rem;
}

.widegt__nav-utils {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 0;
  margin-top: 6rem;
}

.nav-util__link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--bs-white);
  letter-spacing: 0.7px;
}

.nav-util__link:hover {
  color: var(--bs-white);
  opacity: 0.75;
}

.footer-divider {
  margin-block: 0;
  border-color: var(--bs-white);
  opacity: 1;
  margin-inline: 2rem;
}

.copyrights {
  background-color: var(--gray-300);
  padding-block: 1.5rem 2.5rem;
}

.copyrights .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.copyrights .text__12 {
  letter-spacing: 0.6px;
}

/******************************************
=> Home Page <== === === === === === === ===
******************************************/

/******************************************
=> featured sections
******************************************/
.featured-sections {
  padding-block: 5rem;
}

.featured-sections .bg-holder {
  background-position: top center;
}

.article-mb {
  margin-bottom: 6.25rem;
}

.featured-section {
  padding-block: 5.25rem 3rem;
}

.featured-section .bg-holder {
  width: 57%;
  background-size: 100% 100%;
}

.featured-section .content {
  max-width: 582px;
  margin-left: auto;
  padding: 5.75rem 0 5.75rem 7rem;
  position: relative;
  letter-spacing: 0.7px;
}

.featured-section .title__2 {
  color: var(--gray-300);
  letter-spacing: 1.5px;
}

.featured-section .text__18 {
  color: var(--gray-300);
  letter-spacing: 0.9px;
}

.featured-section .content::before {
  content: "";
  background-color: var(--bs-white);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translate(0, -50%);
  height: 100%;
  width: 300%;
}

.featured-section .link__gray-300 {
  text-decoration: none;
  font-size: 0.875rem;
}

.featured-section-alt .bg-holder {
  inset: 0 0 0 auto;
}

.featured-section-alt .content {
  margin-left: 0;
  margin-right: auto;
  padding: 5.75rem 7rem 5.75rem 0;
}

.featured-section-alt .content::before {
  left: auto;
  right: 0;
}

.made-in {
  padding-block: 2.5rem 1rem;
}

.made-in .wrapper {
  display: flex;
  gap: 2rem 4rem;
  align-items: center;
  width: 900px;
}

.made-in .wrapper .img-fluid {
  flex-shrink: 0;
  width: 200px;
}

/******************************************
=> contact us
******************************************/
.contact-us {
  background-color: var(--gray-100);
  padding-block: 5.75rem;
  text-align: center;
}

.contact-us .h1 {
  letter-spacing: 1.8px;
  margin-bottom: 2rem;
}

.contact-us .text__20 {
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.contact-us .ic-btn-primary {
  border-color: var(--gray-300);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

/******************************************
=> About Page <== === === === === === === ===
******************************************/

/******************************************
=> quality tested product
******************************************/
.quality-tested-product {
  padding-top: 7rem;
}

.quality-tested-product .box {
  padding: 4.5rem 6rem;
}

.quality-tested-product .graphic {
  text-align: right;
  margin-top: -8rem;
  margin-right: -0.5rem;
}

.quality-tested-product .graphic img {
  position: relative;
  background-color: var(--bs-white);
  clip-path: polygon(0 25%, 15% 15%, 100% 10%, 100% 100%, 0 100%);
}

/******************************************
=> years of expertise
******************************************/
.years-of-expertise .box {
  padding: 4.5rem 6rem;
}

.years-of-expertise .title__tag {
  left: 100%;
  transform: translate(-50%, 4.5rem);
}

.years-of-expertise .title__3 {
  max-width: 340px;
}

.years-of-expertise .graphic {
  margin-left: -5rem;
}

.years-of-expertise .graphic img {
  position: relative;
  background-color: var(--bs-white);
  clip-path: polygon(0 15%, 25% 0, 100% 0, 100% 100%, 0 85%);
}

/******************************************
=> contact us large
******************************************/
.contact-us-large {
  padding-block: 5rem;
}

.contact-us-large .content {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-us-large .content .title {
  font-weight: 700;
  padding: 1.5rem 3rem;
  background-color: var(--bs-black);
  color: var(--bs-white);
  margin-bottom: 2.5rem;
}

.contact-us-large .content .title__3 {
  font-weight: 600;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.contact-us-large .content .text__20 {
  margin-bottom: 2.5rem;
}

.contact-us-large .content .ic-btn-primary {
  color: var(--gray-300);
  font-weight: 600;
  border-color: var(--bs-black);
}

/******************************************
=> download catalog
******************************************/
.download-catalog .card {
  height: calc(100% - 1rem);
  border-radius: 0;
  background-color: var(--cream-white);
  border: 2px solid var(--bs-black);
  justify-content: center;
  padding: 5rem;
}

.download-catalog .title__3 {
  margin-bottom: 3rem;
}

/******************************************
=> Bathromms Page <== === === === === === 
******************************************/

/******************************************
=> static gallery
******************************************/
.gallery-grid,
.gallery-grid-alt {
  display: grid;
}

.gallery-grid {
  grid-template-columns: 45% 27.5%;
  justify-content: end;
}

.gallery-grid-alt {
  grid-template-columns: 27.5% 45%;
}

.static-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/******************************************
=> Contact Page <== === === === === === 
******************************************/
.contact-bg-holder {
  width: 100%;
  background-image: url("../assets/images/interni_cucine_thyme_comp05_4.webp"),
    url("../assets/images/11.webp");
  background-size: 64% 100%, 36% 100%;
  background-position: left center, right center !important;
}

.contact-form .card {
  position: relative;
  z-index: 0;
  border-radius: 0;
  padding: 5rem 6rem;
}

.contact-form .bg-holder {
  z-index: -1;
  background-size: 60%;
  background-position: center;
}

.contact-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.75rem;
}

.contact-form .card .h2 {
  font-weight: 900;
}

.contact-form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--bs-black);
  background-color: transparent;
}

.contact-form .form-control:focus {
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: var(--gray-400);
}

/* ==================================
=> Common styles
================================== */
.move-to-top {
  position: fixed;
  bottom: 5.25rem;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30rem);
  transition: 300ms ease;
}

.move-to-top.show {
  top: auto;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.move-to-top .container {
  text-align: right;
}

.move-top-btn {
  background-color: transparent;
  border: transparent;
  border-radius: 50%;
  pointer-events: all;
  transform: translateX(50%);
  padding: 0;
}

.move-top-btn > * {
  width: 4.5rem;
  height: auto;
}

.widget__nav-social .nav__item-link img {
	width: 90%;
}
.widget__nav-social.reboot-list li img {
  width: 60px;
  height: 60px;
}