@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: #FFF;
  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;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.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;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border: #0F0F0F 1px solid;
  border-radius: 12px;
  padding: 16px 24px;
  transition: border 0.3s ease;
  font-weight: 500;
  font-family: "Work Sans", sans-serif, serif;
}
@media (max-width: 600px) {
  .account__block {
    padding: 8px 12px;
  }
}

.account__block:hover {
  border: #FE5000 1px solid;
}

.account__block p {
  text-wrap: nowrap;
  font-size: 18px;
  font-weight: 500;
  color: #0F0F0F;
  transition: color 0.3s ease;
}
@media (max-width: 600px) {
  .account__block p {
    display: none;
  }
}

.account__block:hover p {
  color: #FE5000;
}

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

.account__block:hover svg g path {
  transition: fill 0.3s ease;
  fill: #FE5000;
}

.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;
}

.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 */
