@font-face {
  font-family: "SourceSans3";
  src: url("../homepage/fonts/SourceSans3-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
header {
  height: 82px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
@media screen and (max-width: 375px) {
  header {
    height: 62px;
  }
}
header .right_section {
  display: flex;
  align-items: center;
  height: 100%;
}
header .right_section .logo {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
header .right_section .logo img {
  width: auto;
  height: 51px;
}
header button,
header a {
  border: none;
  background: none;
  height: 100%;
}
header a {
  display: flex;
  align-items: center;
}

.homepage {
  height: calc(100dvh - 82px);
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .homepage {
    overflow-y: auto;
    height: calc(100dvh - 82px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .homepage {
    height: calc(100dvh - 82px + 20px);
    padding: 20px 0;
  }
}
@media (orientation: landscape) and (max-width: 1023px) {
  .homepage {
    height: calc(100dvh - 82px);
    justify-content: unset;
  }
}
.homepage .hp_background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 82px;
  background-color: #fcd6b2;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 375px) {
  .homepage .hp_background {
    top: 62px;
  }
}
.homepage .hp_background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage .hp_content_title {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .homepage .hp_content_title {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    margin: 0 auto;
  }
}
.homepage .hp_content_title img {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .homepage .hp_content_title img {
    height: unset;
  }
}
.homepage .hp_content_title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  line-height: 23px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}
.homepage .hp_content {
  display: flex;
  justify-content: space-between;
  gap: 200px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .homepage .hp_content {
    gap: 25px;
    display: flex;
    flex-direction: column;
    justify-content: safe center;
    margin: 20px 0;
    position: relative;
    left: unset;
    top: unset;
    transform: none;
    flex-grow: 1;
  }
}
.homepage .hp_content .mobile-element {
  position: absolute;
  height: 100%;
  width: 90px;
}
.homepage .hp_content .mobile-element img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.homepage .hp_content .hp_categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1023px) {
  .homepage .hp_content .hp_categories {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 375px) {
  .homepage .hp_content .hp_categories {
    gap: 25px;
  }
}
.homepage .hp_content .hp_categories .hp_category {
  position: relative;
  width: 312px;
  height: 149px;
  background: url("../images/shape.png") no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 30px;
}
@media screen and (max-width: 1023px) {
  .homepage .hp_content .hp_categories .hp_category {
    background: unset;
    width: 100%;
    height: unset;
    padding: 0;
  }
}
.homepage .hp_content .hp_categories .hp_category .image-container {
  width: 125px;
  height: 117px;
  position: absolute;
  left: -35px;
  top: 60%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .homepage .hp_content .hp_categories .hp_category .image-container {
    width: 71px;
    height: 65px;
    order: 1;
    position: static;
    transform: none;
    flex-shrink: 0;
  }
}
.homepage .hp_content .hp_categories .hp_category .image-container img {
  height: 100%;
}
.homepage .hp_content .hp_categories .hp_category .hp_category_title {
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  letter-spacing: -0.3px;
  margin-top: 30px;
}
@media screen and (max-width: 1023px) {
  .homepage .hp_content .hp_categories .hp_category .hp_category_title {
    font-size: 24px;
    line-height: 26px;
    margin-top: unset;
    order: 2;
    flex-grow: 1;
  }
}
@media screen and (max-width: 375px) {
  .homepage .hp_content .hp_categories .hp_category .hp_category_title {
    font-size: 20px;
    line-height: 1;
  }
}
.homepage .hp_categories_btn {
  border: none;
  font-size: 20px;
  font-weight: 700;
  height: 50px;
  border-radius: 34px;
  padding: 0 20px;
  background: #ffd500;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 1;
  font-family: "SourceSans3";
  cursor: pointer;
  transition: transform 0.2s;
  color: #000;
}
.homepage .hp_categories_btn:hover {
  transform: scale(1.1);
}
@media (hover: none) {
  .homepage .hp_categories_btn:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 1023px) {
  .homepage .hp_categories_btn {
    font-size: 16px;
    height: 30px;
  }
}
.homepage .cta-leaf {
  position: absolute;
  bottom: 3rem;
  right: 0;
  background: white;
  color: #F26B40;
  border: none;
  padding: 20px;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  letter-spacing: -0.24px;
  line-height: clamp(20px, 1.25rem + (1vw - 10.24px) * 0.6696, 24px);
  font-size: clamp(18px, 1.125rem + (1vw - 10.24px) * 0.6696, 24px);
  padding-right: 40px;
}
@media (max-width: 1280px) {
  .homepage .cta-leaf {
    bottom: 1rem;
  }
}
@media (max-width: 1023px) {
  .homepage .cta-leaf {
    position: relative;
    bottom: 0;
    margin: 20px 0 20px auto;
    padding: 15px 20px;
    line-height: 20px;
    font-size: 20px;
    padding-right: 40px;
  }
}
@media (max-width: 1023px) and (orientation: landscape) {
  .homepage .cta-leaf {
    position: relative;
    margin: 20px 0 20px auto;
  }
}
@media (max-width: 375px) {
  .homepage .cta-leaf {
    padding: 8px 20px;
    font-size: 16px;
  }
}

.left_section,
button {
  transition: all 0.3s ease-in-out;
}
.left_section:hover,
button:hover {
  scale: 1.05;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

@font-face {
  font-family: "SourceSans3";
  src: url("../homepage/fonts/SourceSans3-Regular.ttf") format("ttf");
  font-weight: normal;
}
html {
  font-family: "SourceSans3", sans-serif;
}

button {
  cursor: pointer;
}

.break-inside-avoid {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */