@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import '../fonts/Marselis Pro/stylesheet.css';
header {
  background-color: #FFFFFF;
  padding: 12px 16px;
}
@media (max-width: 600px) {
  header {
    padding: 6px 8px;
  }
}
header.configurator-header {
  border-top: 6px solid var(--category-color);
}

.logo {
  width: 211px;
}
@media (max-width: 600px) {
  .logo {
    width: 200px;
  }
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 8px;
}
@media (max-width: 600px) {
  .navbar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .navbar .custom-logo-link {
    grid-area: 1/1/2/4;
    justify-self: start;
    align-self: start;
  }
}
.navbar .custom-logo-link img {
  width: 100%;
}
.navbar .burger {
  justify-self: center;
  grid-area: 1/1/2/2;
}
@media (max-width: 600px) {
  .navbar .page-title {
    grid-area: 2/1/3/7;
    justify-self: center;
    align-self: center;
    padding: 8px 0;
  }
}

.burger_menu__btn {
  display: none;
}
@media (max-width: 600px) {
  .burger_menu__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: #0F0F0F 1px solid;
    border-radius: 3px;
    padding: 12px;
  }
}

.account__block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 24px 16px 32px;
  transition: border 0.3s ease;
  border: 1px #0F0F0F solid;
  color: #0F0F0F;
  margin-left: 16px;
  cursor: pointer;
  background: #FFFFFF;
  position: relative;
  z-index: 105;
  font-family: "Work Sans", sans-serif, serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .account__block {
    margin-left: 0;
    grid-area: 1/4/2/7;
    gap: 6px;
    padding: 8px 12px 8px 16px;
    justify-self: end;
  }
}
.account__block .heart {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.account__block:hover {
  border-color: #FE5000;
}
.account__block:hover svg, .account__block:hover span {
  color: #FE5000;
}
.account__block:hover .heart {
  animation: heartbeat 0.75s ease-in-out;
}
.account__block:hover .my-stuff-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.account__block_menu-overlay {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 25;
  transition: 0.3s ease;
}
body:has(button.account__block:hover) .account__block_menu-overlay {
  opacity: 1;
  visibility: visible;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.25);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.my-stuff-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  right: 0;
  top: 100%;
  margin-top: 12px;
  list-style: none;
  border-radius: 12px;
  padding: 8px 12px;
  transform: translateY(12px);
  background-color: #FFFFFF;
  cursor: default;
  transition: 0.3s ease;
}
@media (min-width: 601px) {
  .my-stuff-menu {
    min-width: 120%;
  }
  .my-stuff-menu:before {
    content: "";
    width: 100%;
    height: 13px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 100%;
  }
}
.my-stuff-menu > li {
  padding: 8px;
  text-align: left;
}
.my-stuff-menu > li a {
  cursor: pointer;
  font-weight: 400;
}
.my-stuff-menu > li > a {
  color: inherit;
  transition: color 0.2s ease;
}
.my-stuff-menu > li > a:hover {
  color: #FE5000;
}
.my-stuff-menu > li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}

svg g path {
  transition: fill 0.3s ease;
}

.page-title {
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.02em;
}

.custom-logo-link {
  font-size: 0;
}

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "MarselisPro", sans-serif, serif;
  background-color: #E6E6E6;
  color: #0F0F0F;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  padding: 32px;
  gap: 32px;
  width: 100%;
}
@media (max-width: 600px) {
  .content {
    flex-direction: column;
    padding: 5% 5vw;
  }
}

.card {
  background-color: #fff;
  border-radius: 26px;
  padding: 32px;
  transition: transform 0.5s ease, border 0.5s ease;
  border: 6px solid transparent;
  max-width: 800px;
  width: 50%;
  min-height: unset;
}
@media (max-width: 1440px) {
  .card {
    min-height: 325px;
  }
}
@media (max-width: 600px) {
  .card {
    padding: 5vw;
    width: 100%;
    min-height: 425px;
  }
}

.card:hover {
  transform: scale(0.95);
  border: 6px solid #FE5000;
}

.card_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: #0F0F0F;
}

.card_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 43.2px;
  letter-spacing: 0;
  text-align: left;
  color: #0F0F0F;
  font-family: "MarselisPro", sans-serif, serif;
}

.card_description {
  font-family: "Work Sans", sans-serif, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  color: rgba(15, 15, 15, 0.7);
}

.card:hover p.card_description {
  transform: inherit;
}

.image_block {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 0;
  padding-top: 65.25%;
}

.card_img {
  display: flex;
  position: absolute;
  min-height: 100%;
  height: 100%;
  max-width: 800px;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .card_img {
    width: 100%;
    min-width: 250px;
  }
}

.img_hover__block {
  position: relative;
}

.img_hover__text {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  color: #FE5000;
  gap: 8px;
}

.img_hover__text p {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  text-align: center;
  font-family: "Work Sans", sans-serif, serif;
}

.card_img_hover {
  position: absolute;
  display: block;
  min-width: 250px;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  background-color: #E6E6E6;
  opacity: 0.4;
}

.card:hover .card_img {
  opacity: 0;
  visibility: hidden;
}

.img_hover__block {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5) translate(-100%, -100%);
}

.card:hover .img_hover__block {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(0, 0);
}

.card_img,
.img_hover__block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: visible;
  transform: scale(1);
}

.book_meeting__container {
  cursor: pointer;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 5px;
  bottom: 5px;
  background-image: url("../public/images/book-meeting.svg");
  background-size: cover;
  background-position: center;
  width: 120px;
  height: 185px;
  border: 4px solid #FE5000;
  border-radius: 26px;
  color: #0F0F0F;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 600px) {
  .book_meeting__container {
    display: none;
  }
}

.book_meeting__block {
  font-family: "Work Sans", sans-serif, serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70%;
  width: 80%;
  gap: 6px;
}

.book_meeting__block a {
  width: 100%;
  color: #0F0F0F;
  text-decoration: none;
}

footer {
  display: flex;
  margin-top: auto;
  align-items: end;
  justify-content: flex-start;
  width: 100%;
  padding: 10px 15px;
}
@media (max-width: 600px) {
  footer {
    justify-content: center;
  }
}

.footer_list {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .footer_list {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 50px 0 0 0;
    text-align: center;
    white-space: nowrap;
  }
}

.footer_list__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  gap: 5px;
}
.footer_list__item svg {
  transition: all 0.3s ease;
}
.footer_list__item svg path {
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .footer_list__item {
    font-size: 18px;
  }
}

.footer_list__item a {
  text-decoration: none;
  color: #0F0F0F;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.footer_list__item a.large {
  font-size: 18px;
}

.footer_list__item a:hover {
  color: #FE5000;
}
.footer_list__item a:hover svg path {
  fill: #FE5000 !important;
}

.footer_span {
  font-size: 18px;
}

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