@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora/Lora-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Rische";
  src: url("../assets/fonts/Rische/Rische-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rische";
  src: url("../assets/fonts/Rische/Rische-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Average";
  src: url("../assets/fonts/Average/Average-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@keyframes infiniti-slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lora", sans-serif;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #080707;
  background-color: #f5f5f5;
}
p + p {
  margin: 0 0 20px;
}
img {
  display: block;
  max-width: 100%;
}
.max-width {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.px-section {
  padding-left: 20px;
  padding-right: 20px;
}
.py-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.title-section {
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 20px;
}
.title-section span {
  font-size: 22px;
}
.text-white {
  color: #ffffff;
}
.btn {
  border-radius: 30px;
  border: 1px solid;
  padding: 10px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.btn-primary {
  background-color: #ed8a3d;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-primary:hover {
  background-color: #ffffff;
  color: #ed8a3d;
  border-color: #ed8a3d;
}
.btn-secondary {
  background-color: #3f4345;
  color: #ffffff;
  border-color: #3f4345;
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: #3f4345;
}
.btn-white {
  background-color: #ffffff;
  color: #90584c;
  border-color: #90584c;
}
.btn-white:hover {
  background-color: #90584c;
  color: #ffffff;
}
a.btn {
  display: block;
  text-align: center;
  text-decoration: none;
}
input,
textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 12px 10px;
  border: 1px solid #d9d9d9;
}
input::placeholder,
textarea::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}
input:focus:not(input[type="submit"]),
textarea:focus:not(input[type="submit"]) {
  outline: none;
  border-color: #ed8a3d;
  transition: 0.3s;
}
textarea {
  resize: vertical;
}
label {
  font-weight: 500;
  font-size: 16px;
}
form p {
  margin: 0;
}
@media (min-width: 576px) {
  .py-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .title-section {
    font-size: 30px;
  }
  .title-section span {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .max-width {
    max-width: 700px;
  }
  .py-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .title-section {
    font-size: 35px;
  }
  .title-section span {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .max-width {
    max-width: 900px;
  }
  .py-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .title-section {
    font-size: 40px;
  }
  .title-section span {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .max-width {
    max-width: 1100px;
  }
  .py-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .title-section {
    font-size: 45px;
  }
  .title-section span {
    font-size: 36px;
  }
}
@media (min-width: 1400px) {
  .max-width {
    max-width: 1280px;
  }
  .py-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .title-section {
    font-size: 52px;
  }
  .title-section span {
    font-size: 42px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.site-footer {
  padding: 20px;
}
.site-footer .brand-footer {
  height: 140px;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.site-footer .brand-footer img {
  height: 100%;
}
.site-footer .nav-footer {
  margin: 20px 0;
}
.site-footer .nav-footer a {
  text-decoration: none;
  color: inherit;
}
.site-footer .nav-footer .title-menu-footer,
.site-footer .nav-footer .menu-footer-item {
  font-size: 16px;
  text-transform: uppercase;
}
.site-footer .nav-footer .title-menu-footer {
  font-weight: 700;
  margin: 0 0 15px;
}
.site-footer .nav-footer .menu-footer {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .nav-footer .menu-footer .menu-footer-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .btn-toggle-footer-submenu {
  background-color: transparent;
  padding: 5px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.site-footer .nav-footer .menu-footer .menu-footer-item .submenu-footer {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  background-color: #3f4345;
  max-height: 0;
  overflow: auto;
  transition: 0.2s;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar-track {
  background: #3f4345;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar-thumb {
  background: #ffffff;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item
  .submenu-footer
  .menu-footer-item {
  padding: 10px;
  margin-bottom: 0 !important;
}
.site-footer .nav-footer .menu-footer .menu-footer-item:not(:last-child) {
  margin-bottom: 15px;
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item.has-submenu.active
  .btn-toggle-footer-submenu {
  transform: rotate(180deg);
}
.site-footer
  .nav-footer
  .menu-footer
  .menu-footer-item.has-submenu.active
  .submenu-footer {
  max-height: 285px;
}
.site-footer .newsletter-container {
  margin: 40px 0;
}
.site-footer .newsletter-container .btn {
  margin-top: 20px;
  width: 100%;
}
.site-footer .newsletter-container input {
  border-radius: 18px;
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.site-footer .footer-bottom a {
  color: #ffffff;
  font-size: 10px;
}
.site-footer .footer-bottom p {
  margin: 0;
}
.site-footer .footer-bottom .social-footer {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer .footer-bottom .social-footer .social-footer-item {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: #f5f5f5;
}
.site-footer .footer-bottom .social-footer .social-footer-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.site-footer .footer-bottom .social-footer .social-footer-item a svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .site-footer .nav-footer-container {
    display: flex;
    gap: 20px;
  }
  .site-footer .nav-footer {
    width: 50%;
  }
  .site-footer .footer-bottom {
    width: 100%;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .site-footer .footer-bottom .social-footer {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .site-footer {
    padding: 40px 20px 30px;
  }
  .site-footer .site-info {
    display: flex;
    flex-wrap: wrap;
  }
  .site-footer .site-info .brand-footer-container .brand-footer {
    margin: 0;
  }
  .site-footer .site-info .brand-footer-container {
    width: 20%;
  }
  .site-footer .site-info .nav-footer-container {
    width: 80%;
    flex-direction: row-reverse;
  }
  .site-footer .site-info .nav-footer-container .nav-footer {
    padding: 0 20px;
  }
  .site-footer .site-info .nav-footer-container .nav-footer .title-menu-footer {
    font-size: 18px;
  }
  .site-footer .site-info .footer-bottom {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    padding: 70px 20px 40px;
  }
  .site-footer .site-info {
    position: relative;
  }
  .site-footer .site-info .brand-footer-container {
    order: 3;
    position: absolute;
    left: 0;
    top: 45%;
  }
  .site-footer .site-info .nav-footer-container {
    order: 2;
    width: 60%;
    gap: 50px;
    padding-left: 50px;
  }
  .site-footer .site-info .nav-footer-container .nav-footer {
    padding: 0;
  }
  .site-footer .site-info .nav-footer-container .nav-footer .title-menu-footer {
    margin: 0 0 25px;
  }
  .site-footer
    .site-info
    .nav-footer-container
    .nav-footer
    .menu-footer
    .menu-footer-item:not(:last-child) {
    margin-bottom: 25px;
  }
  .site-footer
    .site-info
    .nav-footer-container
    .nav-footer
    .menu-footer
    .menu-footer-item:not(:last-child)
    .submenu-footer
    .menu-footer-item {
    padding: 10px 15px;
    margin: 0;
  }
  .site-footer .site-info .newsletter-container {
    order: 1;
    width: 40%;
  }
  .site-footer .site-info .footer-bottom {
    margin-top: 100px;
    order: 4;
  }
}
@media (min-width: 1400px) {
  .site-footer .site-info .brand-footer-container {
    bottom: 210px;
  }
  .site-footer .site-info .nav-footer-container {
    padding-top: 50px;
    padding-left: 100px;
  }
}
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 20px;
}
.site-header ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-header .nav-brand {
  display: block;
  height: 42px;
}
.site-header .nav-brand img {
  height: 100%;
}
.site-header .nav-top {
  display: flex;
  align-items: center;
}
.site-header .nav-top .btn:not(.btn-cart, .btn-lupa) {
  display: none;
}
.site-header .nav-top .nav-top_box-3 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.site-header .nav-top .btn-circle {
  width: 27px;
  height: 27px;
  padding: 5px;
}
.site-header .nav-top .btn-circle svg {
  width: 100%;
  height: 100%;
}
.site-header .nav-top .form-search-header {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 300px;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  width: 100%;
}
.site-header .nav-top .form-search-header .search-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.site-header .nav-top .form-search-header input[type="search"] {
  flex: 1;
  border: 1px solid transparent;
  outline: none;
  padding: 8px 12px;
  font-size: 14px;
  color: #080707;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
.site-header .nav-top .form-search-header input[type="search"]::placeholder {
  color: #74797b;
}
.site-header .nav-top .form-search-header button[type="submit"] {
  background-color: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90584c;
}
.site-header .nav-top .form-search-header button[type="submit"] svg {
  width: 20px;
  height: 20px;
}
.site-header .nav-top .form-search-header button[type="submit"]:hover {
  opacity: 0.7;
}
.site-header .nav-top .form-search-header .search-error-message {
  display: none;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 0;
  padding: 0 12px;
  line-height: 1.4;
}
.site-header .nav-top .form-search-header.active {
  display: flex;
}
.site-header .nav-top .btn-cart {
  position: relative;
}
.site-header .nav-top .btn-cart .btn-cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -6px;
  top: -3px;
  font-size: 11px;
  border: 1px solid #90584c;
  color: #90584c;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1px 3px;
}
.site-header .btn-toggle-menu {
  width: 30px;
  height: 22px;
  background-color: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.site-header .btn-toggle-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
}
.site-header .nav-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  padding: 0 20px;
  background-color: #3f4345;
  max-height: 0;
  transition: 0.2s;
  overflow: hidden;
}
.site-header .nav-bottom .nav-bottom_box-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .nav-bottom .btn-toggle-menu.active span:nth-child(2) {
  display: none;
}
.site-header .nav-bottom .btn-toggle-menu.active span:nth-child(1) {
  transform: translate(2px, 11px) rotate(45deg);
}
.site-header .nav-bottom .btn-toggle-menu.active span:nth-child(3) {
  transform: translate(2px, -9px) rotate(-45deg);
}
.site-header .nav-bottom .menu-header {
  margin: 20px auto 0;
}
.site-header .nav-bottom .menu-header a {
  text-decoration: none;
  color: inherit;
}
.site-header .nav-bottom .menu-header .btn-toggle-submenu {
  background-color: transparent;
  padding: 0 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}
.site-header .nav-bottom .menu-header .menu-header-item {
  color: #ffffff;
}
.site-header .nav-bottom .menu-header .menu-header-item:not(:last-child) {
  margin-bottom: 15px;
}
.site-header .nav-bottom .menu-header .has-submenu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .nav-bottom .menu-header .has-submenu > a {
  width: 70%;
}
.site-header .nav-bottom .menu-header .has-submenu .btn-toggle-submenu {
  width: fit-content;
}
.site-header .nav-bottom .menu-header .has-submenu .submenu-header {
  width: 100%;
  padding-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
}
.site-header
  .nav-bottom
  .menu-header
  .has-submenu
  .submenu-header
  .submenu-header
  .menu-header-item {
  opacity: 0.8;
}
.site-header .nav-bottom .menu-header .has-submenu.active > a {
  text-decoration: underline;
}
.site-header .nav-bottom .menu-header .has-submenu.active > .submenu-header {
  padding-top: 20px;
  max-height: 1000px;
}
.site-header
  .nav-bottom
  .menu-header
  .has-submenu.active
  > .btn-toggle-submenu {
  transform: rotate(180deg);
}
.site-header.active .nav-bottom {
  padding: 20px;
  max-height: 100dvh;
}
.site-header.scroll,
.site-header.no-banner {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.1176) 79.33%,
    rgba(0, 0, 0, 0) 93.41%
  );
  background-color: #3f4345;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .site-header {
    padding-bottom: 0;
  }
  .site-header .nav-brand {
    height: 54px;
  }
  .site-header .nav-top {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
  }
  .site-header .nav-top .btn:not(.btn-cart) {
    display: block;
  }
  .site-header .nav-top .btn-toggle-menu {
    display: none;
  }
  .site-header .nav-top .btn-circle {
    width: 32px;
    height: 32px;
  }
  .site-header .nav-top .nav-top_box-2 {
    display: flex;
    justify-content: center;
  }
  .site-header .nav-top .nav-top_box-3 {
    gap: 10px;
    position: relative;
  }
  .site-header .nav-top .form-search-header {
    display: none;
    margin-top: 10px;
  }
  .site-header .nav-top .form-search-header.active {
    display: flex;
  }
  .site-header .nav-top .nav-top_box .btn {
    width: fit-content;
  }
  .site-header .nav-bottom {
    position: initial;
    max-height: none;
    padding: 0;
    background-color: transparent;
    overflow: visible;
    height: auto;
  }
  .site-header .nav-bottom .max-width {
    max-width: fit-content;
  }
  .site-header .nav-bottom .nav-bottom_box-1 {
    display: none;
  }
  .site-header .nav-bottom .menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    position: relative;
    margin-top: 0;
  }
  .site-header .nav-bottom .menu-header > .menu-header-item {
    padding: 20px 0;
  }
  .site-header
    .nav-bottom
    .menu-header
    > .has-submenu.active
    > .submenu-header {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  }
  .site-header
    .nav-bottom
    .menu-header
    > .has-submenu
    > .submenu-header::before,
  .site-header
    .nav-bottom
    .menu-header
    > .has-submenu
    > .submenu-header::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
  }
  .site-header
    .nav-bottom
    .menu-header
    > .has-submenu
    > .submenu-header::after {
    width: 30%;
    z-index: -1;
    left: 0;
    background-color: #f3eeed;
  }
  .site-header
    .nav-bottom
    .menu-header
    > .has-submenu
    > .submenu-header::before {
    width: 100%;
    right: 0;
    z-index: -2;
    background-color: #ffffff;
  }
  .site-header .nav-bottom .menu-header .menu-header-item:not(:last-child) {
    margin-bottom: 0;
  }
  .site-header .nav-bottom .menu-header .menu-header-item.has-submenu > a {
    width: auto;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header {
    position: relative;
    padding: 0 30px;
    height: 280px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .menu-header-item:not(.submenu-header .submenu-header .menu-header-item) {
    width: 30%;
    padding: 10px;
    font-weight: 400;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .menu-header-item:not(
      .submenu-header .submenu-header .menu-header-item
    ).active {
    font-weight: 600;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .submenu-header {
    width: 70%;
    right: 0;
    left: auto;
    top: 0;
    background-color: #ffffff;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 30px;
    gap: 20px 10px;
    padding: 10px;
    opacity: 0;
    height: auto;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .submenu-header
    .menu-header-item {
    margin-bottom: 0;
    position: relative;
    opacity: 1;
    font-weight: 600;
    padding-left: 30px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .submenu-header
    .menu-header-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url("../assets/img/bullet-list.svg") no-repeat;
    background-size: contain;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    .submenu-header {
    position: absolute;
    padding: 0;
    top: 100%;
    left: 0;
    border-radius: 4px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    .submenu-header
    .menu-header-item {
    color: #080707;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    .submenu-header
    .btn-toggle-submenu {
    display: none;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu.active
    > .submenu-header {
    opacity: 1;
    z-index: 2;
  }
}
@media (min-width: 1200px) {
  .site-header .nav-brand {
    height: 62px;
  }
  .site-header .nav-bottom .menu-header {
    gap: 40px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .menu-header-item:not(.submenu-header .submenu-header .menu-header-item) {
    padding: 10px 20px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .menu-header-item:not(
      .submenu-header .submenu-header .menu-header-item
    ):first-child {
    padding-top: 20px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .submenu-header {
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  .site-header .nav-brand {
    height: 80px;
  }
  .site-header .nav-bottom .menu-header {
    gap: 70px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header {
    height: 330px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .menu-header-item:not(.submenu-header .submenu-header .menu-header-item) {
    padding: 10px 35px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .menu-header-item:not(
      .submenu-header .submenu-header .menu-header-item
    ):first-child {
    padding-top: 40px;
  }
  .site-header
    .nav-bottom
    .menu-header
    .menu-header-item.has-submenu
    > .submenu-header
    .submenu-header {
    padding: 35px 45px;
  }
}
.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-group > div {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-group h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 400;
  color: #080707;
}
.form-group label {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: #080707;
  width: 100%;
}
.form-group input,
.form-group select {
  width: 100%;
  max-width: 358px;
  padding: 12px 15px;
  border: 1px solid rgba(63, 67, 69, 0.6980392157);
  border-radius: 2px;
  background-color: #ffffff;
  font-size: 16px;
  color: #080707;
  transition: border-color 0.3s ease;
  margin: 0 auto;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ed8a3d;
}
.form-group input::placeholder,
.form-group select::placeholder {
  color: #767676;
}
.form-group input[readonly],
.form-group select[readonly] {
  cursor: pointer;
  background-color: #ffffff;
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23080707' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
