@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

:root {
  --white: #fff;
  --black: #000;
  --black-10: rgba(0, 0, 0, 0.1);
  --black-40: rgba(0, 0, 0, 0.4);
  --black-50: rgba(0, 0, 0, 0.5);
  --primary: #252933;
  --primary-10: rgba(37, 41, 51, 0.1);
  --primary-40: rgba(37, 41, 51, 0.4);
  --main: #f00044;
  --main-10: rgba(240, 0, 68, 0.1);
  --main-50: rgba(240, 0, 68, 0.5);
  --main-dark: #ad1631;
  --main2: #004aba;
  --main-light: #54c8e8;
  --link: #007bff;
  --gray: #dfe0e4;
  --gray-bg: #f3f4f8;
  --gray2: #808895;
  --gray3: #585d69;
  --gray4: #3a3e47;
  --swiper-wrapper-transition-timing-function: linear !important;
  --radius-input: 0.5rem;
  --radius-btn: 0.5rem;
  --shadow-card: 0 0 0.75rem 0 var(--black-10);
  --shadow-header: 0 0.375rem 0.375rem -0.375rem var(--black-10);
  --scrollbar-size: 0px;
  --header-height: 0px;
  --header-top-height: 0px;
  --header-bottom-height: 0px;
  --btn-height: 2.5rem;
}
/* Buttons */
.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  --btn-text-color: var(--white);
  --btn-bg-color: var(--main);
  --btn-border-color: var(--main);
}
.main-btn:hover {
  --btn-bg-color: var(--main-dark);
  --btn-border-color: var(--main-dark);
}
.main-btn:disabled {
  --btn-bg-color: var(--gray) !important;
  --btn-text-color: var(--gray2) !important;
  --btn-border-color: var(--gray) !important;
  pointer-events: none;
}
.gray-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  --btn-text-color: var(--primary);
  --btn-bg-color: var(--gray-bg);
  --btn-border-color: var(--gray-bg);
}
.gray-btn svg {
  color: var(--main);
}
.gray-btn:hover {
  --btn-bg-color: var(--gray);
  --btn-border-color: var(--gray);
}
.gray-btn:disabled {
  --btn-bg-color: var(--gray) !important;
  --btn-text-color: var(--gray2) !important;
  --btn-border-color: var(--gray) !important;
  pointer-events: none;
}
textarea,
input,
select {
  border: 0.0625rem solid var(--gray);
  transition: border 0.3s;
  font-size: 1rem;
  border-radius: var(--radius-input);
}
textarea:not([type=checkbox]), textarea:not([type=radio]),
input:not([type=checkbox]),
input:not([type=radio]),
select:not([type=checkbox]),
select:not([type=radio]) {
  line-height: 120%;
  min-height: var(--btn-height);
  min-width: 2.625rem;
  padding: 0 1rem;
  background-color: var(--white);
  width: 100%;
  outline-offset: 0;
}
textarea::-moz-placeholder, input::-moz-placeholder, select::-moz-placeholder {
  color: var(--gray2);
  font-size: 1rem;
}
textarea::placeholder,
input::placeholder,
select::placeholder {
  color: var(--gray2);
  font-size: 1rem;
}
textarea[type=checkbox], textarea[type=radio],
input[type=checkbox],
input[type=radio],
select[type=checkbox],
select[type=radio] {
  padding: 0;
  min-height: 0;
  width: auto;
  min-width: 0;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url(/build/assets/chevron-5242hmRA.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
textarea {
  padding-top: 0.5rem !important;
  max-height: 31.25rem;
  height: 5rem;
}
.text-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.text-input select {
  z-index: 1;
}
.text-input:has(input:disabled), .text-input:has(select:disabled), .text-input:has(textarea:disabled) {
  opacity: 0.7;
}
.text-input:has(input:disabled) input,
.text-input:has(input:disabled) select,
.text-input:has(input:disabled) textarea, .text-input:has(select:disabled) input,
.text-input:has(select:disabled) select,
.text-input:has(select:disabled) textarea, .text-input:has(textarea:disabled) input,
.text-input:has(textarea:disabled) select,
.text-input:has(textarea:disabled) textarea {
  cursor: not-allowed;
}
.text-input.lock {
  opacity: 0.7;
}
.text-input.lock input,
.text-input.lock select,
.text-input.lock textarea {
  cursor: not-allowed;
}
.text-input.lock .text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.text-input.lock .text::after {
  font-family: "Font Awesome 6 Free";
  content: "\f023";
  font-weight: 900;
  line-height: 100%;
  color: var(--primary);
  display: block;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.text-input .text {
  font-size: 0.875rem;
  line-height: 120% !important;
}
.form-text {
  font-size: 0.875rem;
  color: var(--gray3);
}
.form-text .link {
  color: var(--link);
}
.form-text .link:hover {
  text-decoration: underline;
}
dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: transparent;
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 0;
  max-height: none;
  max-width: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, overlay 0.3s ease-out allow-discrete, display 0.3s ease-out allow-discrete;
}
dialog[open] {
  opacity: 1;
  transform: translateX(0%);
}
@starting-style {
  dialog[open] {
    opacity: 0;
    transform: translateX(100%);
  }
}
dialog::backdrop {
  background-color: var(--black-40);
}
dialog .content-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  max-width: 22.5rem;
  padding: 1.5rem 1rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
dialog .content-wrapper .close-btn {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  --btn-text-color: var(--white);
  --btn-bg-color: var(--main);
  --btn-border-color: var(--main);
  padding: 0;
}
dialog .content-wrapper .close-btn:hover {
  --btn-bg-color: var(--main-dark);
  --btn-border-color: var(--main-dark);
}
dialog .content-wrapper .close-btn:disabled {
  --btn-bg-color: var(--gray) !important;
  --btn-text-color: var(--gray2) !important;
  --btn-border-color: var(--gray) !important;
  pointer-events: none;
}
dialog .content-wrapper .close-btn svg {
  min-height: 1.5rem;
  max-height: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
}
@media (max-width: 1023px) {
  .footer-top .links-list {
    gap: 0.75rem;
  }
}
.footer-top .links-list .link {
  color: var(--white);
}
.footer-top .links-list .link:hover {
  color: var(--gray);
}
@media (max-width: 1023px) {
  .footer-bottom .links-list {
    gap: 1.25rem;
  }
}
.footer-bottom .links-list .link {
  color: var(--gray);
}
.footer-bottom .links-list .link:hover {
  color: var(--white);
}
.links-list {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
@media (max-width: 1023px) {
  .links-list {
    flex-direction: column;
  }
}
.links-list .link {
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--gray);
}
.links-list .link:hover {
  color: var(--white);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 1023px) {
  .footer-list {
    align-items: center;
    text-align: center;
  }
}
.footer-list .title {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--white);
}
.footer-list .list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 1023px) {
  .footer-list .list {
    align-items: center;
  }
}
.footer-list .list .link {
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--gray2);
}
.footer-list .list .link:hover {
  color: var(--white);
}
.header {
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header.fixed-header {
    box-shadow: var(--shadow-header);
  }
}
.header-bottom {
  transition: all 0.3s;
}
.header-bottom.fixed-header {
  box-shadow: var(--shadow-header);
}
@media (max-width: 1023px) {
  .header-bottom.fixed-header {
    box-shadow: none;
  }
}
.blackout {
  position: fixed;
  background-color: var(--primary-40);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 98;
  display: none;
}
.blackout.show {
  display: block;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.header-links .link {
  display: flex;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--gray4);
}
.header-links .link.has-sublinks {
  align-items: center;
  gap: 0.5rem;
}
.header-links .link.has-sublinks::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: 900;
  line-height: 100%;
  display: block;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.header-links .link:hover, .header-links .link.active {
  color: var(--main);
}
.lang-wrapper .link {
  display: flex;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--primary);
}
.lang-wrapper .link:hover, .lang-wrapper .link.active {
  color: var(--main);
}
.header-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.header-menu-links .sublink,
.header-menu-links .link {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gray4);
  padding: 0.5rem 0;
}
.header-menu-links .sublink:hover,
.header-menu-links .link:hover {
  color: var(--main);
}
.header-menu-links .link {
  color: var(--gray4);
}
.header-menu-links .sublink {
  color: var(--gray2);
}
.header-category-menu-btn.open .icon .bar {
  width: 1rem;
}
.header-category-menu-btn.open .icon .bar:first-child {
  rotate: 45deg;
  transform: translate(0.1875rem, 0.1875rem);
}
.header-category-menu-btn.open .icon .bar:nth-child(2) {
  display: none;
}
.header-category-menu-btn.open .icon .bar:last-child {
  rotate: -45deg;
  transform: translate(0.125rem, -0.1875rem);
}
.header-category-menu-btn .icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.125rem;
  width: 0.875rem;
  height: 0.625rem;
}
.header-category-menu-btn .icon .bar {
  height: 0.125rem;
  background-color: var(--white);
  border-radius: 0.125rem;
  transition: all 0.3s;
  width: 0.875rem;
}
.header-categories-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.header-categories-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.header-categories-menu .tab-btns .tab-btn {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  border: none;
  justify-content: space-between;
}
.header-categories-menu .tab-btns .tab-btn::after {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  font-weight: 900;
  line-height: 100%;
  color: var(--primary);
  display: block;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.header-categories-menu .tab-btns .tab-btn.active, .header-categories-menu .tab-btns .tab-btn:hover {
  --btn-bg-color: var(--gray-bg);
  --btn-border-color: var(--gray-bg);
}
.header-categories-menu .tab .list-wrappers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.header-categories-menu .tab .list-wrappers .list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header-categories-menu .tab .list-wrappers .list-wrapper .title {
  font-weight: 600;
}
.header-categories-menu .tab .list-wrappers .list-wrapper .list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.header-categories-menu .tab .list-wrappers .list-wrapper .list .link {
  padding: 0.125rem 0;
  color: var(--gray2);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
}
.header-categories-menu .tab .list-wrappers .list-wrapper .list .link:hover {
  color: var(--primary);
}
.header-bottom .header-links .link {
  padding: 0.5rem 0 1.25rem;
}
.header-bottom .header-production-menu .category-link {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  border: none;
  justify-content: space-between;
  font-size: 1rem;
}
.header-bottom .header-production-menu .category-link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  font-weight: 900;
  line-height: 100%;
  color: var(--primary);
  display: block;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.header-bottom .header-production-menu .category-link.active, .header-bottom .header-production-menu .category-link:hover {
  --btn-bg-color: var(--gray-bg);
  --btn-border-color: var(--gray-bg);
}
.header-bottom .header-production-menu .category-link.no-after::after {
  content: none;
  display: none;
}
.header-bottom .header-production-menu .sub-category-link {
  display: flex;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--gray4);
  width: -moz-fit-content;
  width: fit-content;
}
.header-bottom .header-production-menu .sub-category-link:hover, .header-bottom .header-production-menu .sub-category-link.active {
  color: var(--main);
}
.header-bottom-category .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-height);
  min-width: var(--btn-height);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 110%;
  font-weight: 500;
  border-radius: var(--radius-btn);
  color: var(--btn-text-color);
  background: var(--btn-bg-color);
  padding: 0.5rem 1rem;
  border: 0.0625rem solid var(--btn-border-color);
  transition: all 0.3s;
  width: 100%;
  justify-content: flex-start;
  text-align: start;
}
.header-bottom-category .link:hover {
  --btn-bg-color: var(--gray-bg);
}
.header-menu-dialog .header-search {
  flex-grow: 0;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.transition-300{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.swiper-with-grid{
  max-height: 100vh;
  min-height: 0px;
  width: 100%;
  min-width: 0px;
  max-width: 100%;
}
.bg-img{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-padding{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px){
  .section-padding{
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.section-heading{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  line-height: 100%;
}
@media (min-width: 1024px){
  .section-heading{
    font-size: 2rem;
  }
}
.page-title{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  line-height: 110%;
}
@media (min-width: 1024px){
  .page-title{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1536px){
  .page-title{
    font-size: 3rem;
    line-height: 1;
  }
}
.pointer-events-none{
  pointer-events: none;
}
.invisible{
  visibility: hidden;
}
.\!static{
  position: static !important;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.bottom-10{
  bottom: 2.5rem;
}
.left-0{
  left: 0px;
}
.left-full{
  left: 100%;
}
.right-10{
  right: 2.5rem;
}
.top-0{
  top: 0px;
}
.top-\[calc\(var\(--header-top-height\)\+var\(--header-height\)\)\]{
  top: calc(var(--header-top-height) + var(--header-height));
}
.top-full{
  top: 100%;
}
.z-0{
  z-index: 0;
}
.z-\[-1\]{
  z-index: -1;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[3\]{
  z-index: 3;
}
.z-\[80\]{
  z-index: 80;
}
.z-\[90\]{
  z-index: 90;
}
.z-\[91\]{
  z-index: 91;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-ml-px{
  margin-left: -1px;
}
.mb-\[1\.875rem\]{
  margin-bottom: 1.875rem;
}
.mb-\[3\.75rem\]{
  margin-bottom: 3.75rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[1\.875rem\]{
  margin-top: 1.875rem;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.size-4{
  width: 1rem;
  height: 1rem;
}
.size-5{
  width: 1.25rem;
  height: 1.25rem;
}
.size-6{
  width: 1.5rem;
  height: 1.5rem;
}
.size-\[1\.125rem\]{
  width: 1.125rem;
  height: 1.125rem;
}
.size-\[2\.625rem\]{
  width: 2.625rem;
  height: 2.625rem;
}
.size-full{
  width: 100%;
  height: 100%;
}
.h-5{
  height: 1.25rem;
}
.h-\[0\.0625rem\]{
  height: 0.0625rem;
}
.h-\[12\.5rem\]{
  height: 12.5rem;
}
.h-\[23\.125rem\]{
  height: 23.125rem;
}
.h-auto{
  height: auto;
}
.h-fit{
  height: -moz-fit-content;
  height: fit-content;
}
.h-full{
  height: 100%;
}
.max-h-\[12\.5rem\]{
  max-height: 12.5rem;
}
.min-h-\[13\.75rem\]{
  min-height: 13.75rem;
}
.min-h-\[31\.25rem\]{
  min-height: 31.25rem;
}
.w-16{
  width: 4rem;
}
.w-5{
  width: 1.25rem;
}
.w-\[9rem\]{
  width: 9rem;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.min-w-\[10rem\]{
  min-width: 10rem;
}
.min-w-\[25rem\]{
  min-width: 25rem;
}
.max-w-\[220px\]{
  max-width: 220px;
}
.max-w-\[26\.25rem\]{
  max-width: 26.25rem;
}
.max-w-\[40\.625rem\]{
  max-width: 40.625rem;
}
.max-w-\[48\.75rem\]{
  max-width: 48.75rem;
}
.max-w-\[50rem\]{
  max-width: 50rem;
}
.max-w-\[67\.5rem\]{
  max-width: 67.5rem;
}
.flex-1{
  flex: 1 1 0%;
}
.grow{
  flex-grow: 1;
}
.cursor-default{
  cursor: default;
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-\[1\.2fr_1fr\]{
  grid-template-columns: 1.2fr 1fr;
}
.grid-cols-\[1\.7fr_1fr\]{
  grid-template-columns: 1.7fr 1fr;
}
.grid-cols-\[18\.75rem_1fr\]{
  grid-template-columns: 18.75rem 1fr;
}
.grid-cols-\[1fr\2c 1\.25fr\]{
  grid-template-columns: 1fr 1.25fr;
}
.grid-cols-\[5fr\2c 7fr\]{
  grid-template-columns: 5fr 7fr;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.gap-1{
  gap: 0.25rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-14{
  gap: 3.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-7{
  gap: 1.75rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[0\.625rem\]{
  gap: 0.625rem;
}
.gap-\[0\.675rem\]{
  gap: 0.675rem;
}
.gap-\[1\.875rem\]{
  gap: 1.875rem;
}
.gap-\[3\.75rem\]{
  gap: 3.75rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-40{
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.gap-y-7{
  row-gap: 1.75rem;
}
.overflow-hidden{
  overflow: hidden;
}
.\!overflow-visible{
  overflow: visible !important;
}
.overflow-y-auto{
  overflow-y: auto;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-btn{
  border-radius: var(--radius-btn);
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-b-2xl{
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-b-btn{
  border-bottom-right-radius: var(--radius-btn);
  border-bottom-left-radius: var(--radius-btn);
}
.rounded-e-none{
  border-start-end-radius: 0px;
  border-end-end-radius: 0px;
}
.rounded-l-md{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-r-md{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.rounded-s-none{
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}
.border{
  border-width: 1px;
}
.border-l{
  border-left-width: 1px;
}
.border-r-0{
  border-right-width: 0px;
}
.border-s-0{
  border-inline-start-width: 0px;
}
.border-t{
  border-top-width: 1px;
}
.border-gray{
  border-color: var(--gray);
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-bg{
  border-color: var(--gray-bg);
}
.border-gray2{
  border-color: var(--gray2);
}
.border-gray4{
  border-color: var(--gray4);
}
.border-green-500{
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-main2{
  border-color: var(--main2);
}
.bg-gray{
  background-color: var(--gray);
}
.bg-gray-bg{
  background-color: var(--gray-bg);
}
.bg-main2{
  background-color: var(--main2);
}
.bg-primary{
  background-color: var(--primary);
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-white{
  background-color: var(--white);
}
.bg-\[linear-gradient\(360deg\2c var\(--black-50\)_0\%\2c var\(--black-50\)_100\%\)\]{
  background-image: linear-gradient(360deg,var(--black-50) 0%,var(--black-50) 100%);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.\!p-2{
  padding: 0.5rem !important;
}
.p-2{
  padding: 0.5rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.\!px-2{
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-\[0\.375rem\]{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-\[0\.625rem\]{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-\[7\.5rem\]{
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-4{
  padding-left: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-\[1\.875rem\]{
  padding-top: 1.875rem;
}
.text-center{
  text-align: center;
}
.\!text-start{
  text-align: start !important;
}
.text-start{
  text-align: start;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[14rem\]{
  font-size: 14rem;
}
.text-\[2\.5rem\]{
  font-size: 2.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.leading-110{
  line-height: 110%;
}
.leading-150{
  line-height: 150%;
}
.leading-5{
  line-height: 1.25rem;
}
.\!text-gray2{
  color: var(--gray2) !important;
}
.text-gray{
  color: var(--gray);
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray2{
  color: var(--gray2);
}
.text-gray3{
  color: var(--gray3);
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-main{
  color: var(--main);
}
.text-main2{
  color: var(--main2);
}
.text-white{
  color: var(--white);
}
.opacity-0{
  opacity: 0;
}
.shadow-card{
  --tw-shadow: var(--shadow-card);
  --tw-shadow-colored: var(--shadow-card);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ring-gray-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150{
  transition-duration: 150ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.\@container{
  container-type: inline-size;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
html:has(dialog[open]), html:has(dialog[open=true]) {
  overflow: hidden;
  margin-right: var(--scrollbar-size);
}
body {
  scroll-behavior: smooth;
  overflow-x: clip;
  color: var(--primary);
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.root {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main {
  scroll-behavior: smooth;
  flex-grow: 1;
  height: 100%;
}
img,
svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
a,
a svg,
a span,
button,
button svg,
button span {
  transition: all 0.3s !important;
}
.text-block-custom,
.text-block {
  line-height: 160%;
}
.text-block-custom *:last-child,
.text-block *:last-child {
  margin-bottom: 0;
}
.text-block-custom h1,
.text-block-custom h2,
.text-block-custom h3,
.text-block-custom h4,
.text-block-custom h5,
.text-block-custom h6,
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text-block-custom h1,
.text-block h1 {
  font-size: 2rem;
}
.text-block-custom h2,
.text-block h2 {
  font-size: 1.75rem;
}
.text-block-custom h3,
.text-block h3 {
  font-size: 1.5rem;
}
.text-block-custom h4,
.text-block h4 {
  font-size: 1.25rem;
}
.text-block-custom h5,
.text-block h5 {
  font-size: 1rem;
}
.text-block-custom h6,
.text-block h6 {
  font-size: 1rem;
}
.text-block-custom img,
.text-block img {
  width: 100%;
  height: 37.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--card-radius);
}
@media (max-width: 1279px) {
  .text-block-custom img,
  .text-block img {
    height: 31.25rem;
  }
}
@media (max-width: 1023px) {
  .text-block-custom img,
  .text-block img {
    height: 28.125rem;
  }
}
@media (max-width: 767px) {
  .text-block-custom img,
  .text-block img {
    height: 21.875rem;
  }
}
@media (max-width: 639px) {
  .text-block-custom img,
  .text-block img {
    height: 18.75rem;
  }
}
.text-block-custom div,
.text-block-custom a,
.text-block-custom li,
.text-block-custom p,
.text-block div,
.text-block a,
.text-block li,
.text-block p {
  line-height: 160%;
  font-size: 1rem;
}
.text-block-custom div,
.text-block-custom p,
.text-block-custom blockquote,
.text-block-custom ul,
.text-block-custom ol,
.text-block div,
.text-block p,
.text-block blockquote,
.text-block ul,
.text-block ol {
  margin-bottom: 1.25rem;
}
.text-block-custom a,
.text-block a {
  color: var(--link);
}
.text-block-custom ol,
.text-block-custom ul,
.text-block ol,
.text-block ul {
  list-style-position: inside;
  line-height: 160%;
}
.text-block-custom ul,
.text-block ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.text-block-custom ul li,
.text-block ul li {
  padding-left: 1.5rem;
  position: relative;
}
.text-block-custom ul li::before,
.text-block ul li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  min-height: 0.625rem;
  max-height: 0.625rem;
  min-width: 0.625rem;
  max-width: 0.625rem;
  background-color: var(--main2);
  border-radius: 100%;
}
@media (max-width: 639px) {
  .text-block-custom ul li::before,
  .text-block ul li::before {
    min-height: 0.5rem;
    max-height: 0.5rem;
    min-width: 0.5rem;
    max-width: 0.5rem;
  }
}
.text-block-custom ol,
.text-block ol {
  list-style-type: decimal;
}
.text-block-custom blockquote,
.text-block blockquote {
  background-color: var(--main-10);
  padding: 1rem;
  border-radius: var(--card-radius);
  font-size: 0.875rem;
}
.custom-tabs .tab-btns {
  display: flex;
}
.custom-tabs .tabs .tab {
  display: none;
}
.custom-tabs .tabs .tab.active {
  display: block;
}
.hover-tabs .tabs .tab {
  display: none;
}
.hover-tabs .tabs .tab.active {
  display: block;
}
.animation-accordion {
  --accordion-padding: 1rem;
  overflow: hidden;
}
.animation-accordion .content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}
.animation-accordion.open .content {
  padding: var(--accordion-padding) 0 0;
  max-height: none;
  overflow: visible;
  opacity: 1;
}
.question-accordion.open .icon::after {
  rotate: 45deg;
}
.question-accordion .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0.875rem;
  max-height: 0.875rem;
  min-width: 0.875rem;
  max-width: 0.875rem;
}
.question-accordion .icon::after {
  font-family: "Font Awesome 6 Free";
  content: "+";
  font-weight: 900;
  line-height: 100%;
  color: var(--primary);
  display: block;
  font-size: 1rem;
  transition: all 0.3s;
  transform-origin: center;
}
.accordion .content {
  display: block;
}
.accordion.hide .content {
  display: none;
}
.partners-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  width: auto;
}
.partners-swiper .swiper-slide img {
  height: 60;
  width: auto;
  max-width: 12.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-header {
  margin-bottom: 3.75rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .section-header {
    margin-bottom: 1.875rem;
  }
}
.socials .link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  max-height: 2.5rem;
  min-width: 2.5rem;
  max-width: 2.5rem;
  background-color: var(--gray4);
  border-radius: 0.75rem;
}
.socials .link:hover {
  opacity: 0.6;
}
.socials .link svg {
  min-height: 1.5rem;
  max-height: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  color: var(--white);
}
.scroll-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  max-height: 3.25rem;
  min-width: 3.25rem;
  max-width: 3.25rem;
  border-radius: 100%;
  background-color: var(--white);
  transition: all 0.3s;
  transform: translateX(2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.scroll-to-top-btn.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.scroll-to-top-btn::after {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  font-weight: 900;
  line-height: 100%;
  color: var(--gray2);
  display: block;
  font-size: 1rem;
  transition: all 0.3s;
  rotate: -90deg;
}
.production-tabs .tab-btns .tab-btn {
  color: var(--gray2);
  font-weight: 600;
  font-size: 2rem;
  line-height: 110%;
  text-align: start;
}
.production-tabs .tab-btns .tab-btn:hover {
  color: var(--white);
}
.production-tabs .tab-btns .tab-btn.active {
  font-size: 3rem;
  color: var(--white);
}
.production-images .swiper-slide {
  background-color: var(--white);
  box-shadow: 0 0 1.25rem -0.3125rem var(--black-10);
  border-radius: 1.5rem;
}
.production-images .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1.5rem;
}
.production-images .swiper-pagination {
  position: relative !important;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .production-images .swiper-pagination {
    display: none;
  }
}
.production-images .swiper-pagination::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background-color: var(--gray) !important;
}
.production-images .swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  height: 0.25rem;
  width: 100%;
  border-radius: 0;
  opacity: 0 !important;
  background-color: var(--gray) !important;
  transition: all 0.3s;
}
.production-images .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.production-swiper > .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.production-swiper > .swiper-pagination .swiper-pagination-bullet {
  min-height: 1.25rem;
  max-height: 1.25rem;
  min-width: 1.25rem;
  max-width: 1.25rem;
  opacity: 1 !important;
  background-color: var(--gray3);
  margin: 0 !important;
}
.production-swiper > .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
}
.certificates-swiper .swiper-slide {
  height: auto;
}
.certificates-swiper .swiper-slide img {
  border-radius: 1.5rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-header {
  background-image: url(/build/assets/page-header-bg--6vIOvDv.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-header .content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .page-header .content-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.page-header .content-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.page-header .content-wrapper .text-wrapper .text-block-wrapper {
  display: flex;
  justify-content: flex-end;
  border-top: 0.0625rem solid var(--gray);
  padding-top: 3.75rem;
}
@media (max-width: 1535px) {
  .page-header .content-wrapper .text-wrapper .text-block-wrapper {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .page-header .content-wrapper .text-wrapper .text-block-wrapper .text-block {
    max-width: 40.625rem;
  }
}
.page-header .content-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1.5rem;
}
.profiles-main .production-section {
  background-color: var(--gray-bg);
}
.profiles-main .production-section .section-heading {
  color: var(--primary);
}
.profiles-main .production-section .production-tabs .tab-btns .tab-btn:hover, .profiles-main .production-section .production-tabs .tab-btns .tab-btn.active {
  color: var(--primary);
}
.profiles-main .production-section .production-swiper > .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--gray2);
}
.profiles-main .production-section .production-swiper > .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.color-tabs .tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.25rem solid var(--gray);
  border-radius: 100%;
  min-height: 6.25rem;
  max-height: 6.25rem;
  min-width: 6.25rem;
  max-width: 6.25rem;
}
.color-tabs .tab-btn:hover {
  border-color: var(--main-50);
}
.color-tabs .tab-btn.active {
  border-color: var(--main);
}
@media (max-width: 639px) {
  .color-tabs .tab-btn {
    min-height: 3.125rem;
    max-height: 3.125rem;
    min-width: 3.125rem;
    max-width: 3.125rem;
  }
}
.color-tabs .tabs .tab {
  width: 100%;
}
.color-tabs .tabs .tab .content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url(/build/assets/alubest-bg-CSi8DxAB.png);
  background-size: 100% auto;
}
.contacts-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.contacts-card .title {
  font-weight: 600;
  font-size: 1.25rem;
}
.contacts-card .info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contacts-card .info .text,
.contacts-card .info .link {
  line-height: 150%;
}
.contacts-card .info .link {
  width: -moz-fit-content;
  width: fit-content;
}
.contacts-card .info .link:hover {
  color: var(--link);
}
.region-addresses {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.region-addresses .title {
  font-weight: 600;
}
.region-addresses .list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.simplebar-track {
  background-color: var(--gray-bg);
  border-radius: 0.5rem !important;
}
.simplebar-track .simplebar-scrollbar::before {
  opacity: 1 !important;
  background-color: var(--main);
  border-radius: 0.5rem !important;
}
.simplebar-offset {
  padding-right: 0.875rem !important;
}
@utility invisible-block {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@utility visible-block {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.custom-select {
  display: flex;
  position: relative;
  height: 100%;
}
.custom-select.open .menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.custom-select.open .btn::after {
  rotate: 180deg;
}
.custom-select .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.custom-select .menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: calc(100% + 0.625rem);
  background-color: var(--white);
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  /* min-width: 6.25rem; */
  min-width: 3.125rem;
  transform: translateY(-0.625rem);
  box-shadow: 0 0 0.375rem 0 var(--primary-10);
  transition: all 0.3s;
  z-index: 91;
  border-radius: var(--radius-btn);
}
.custom-select .menu .link {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  min-height: 2.25rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.875rem;
}
.custom-select .menu .link .flag {
  min-height: 1.5rem;
  max-height: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.custom-select .menu .link:hover {
  background-color: var(--main-10);
}
.text-block-wrapper-parent .text-block-wrapper-custom {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.text-block-wrapper-parent .text-block-wrapper-custom .text-block-custom {
  overflow: hidden;
  transition: all 0.5s;
}
.text-block-wrapper-parent .text-block-wrapper-custom.hide .btn .hide-text {
  display: none;
}
.text-block-wrapper-parent .text-block-wrapper-custom.hide .btn .show-text {
  display: inline-block;
}
.text-block-wrapper-parent .text-block-wrapper-custom .btn {
  color: var(--gray);
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
}
.text-block-wrapper-parent .text-block-wrapper-custom .btn .hide-text {
  display: inline-block;
}
.text-block-wrapper-parent .text-block-wrapper-custom .btn .show-text {
  display: none;
}
.breadcrumbs {
  padding: 24px 0;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs .container .link {
  color: var(--gray2);
}
.breadcrumbs .container .link:hover {
  color: var(--gray3);
}
.breadcrumbs .container .link,
.breadcrumbs .container .current {
  line-height: 120%;
  font-size: 14px;
  font-weight: 500;
}
.breadcrumbs .container svg {
  min-height: 8px;
  max-height: 8px;
  min-width: 8px;
  max-width: 8px;
  stroke: var(--gray2);
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .news-card {
    gap: 1rem;
  }
}
.news-card:hover .img-wrapper img {
  scale: 1.15;
}
.news-card:hover .title {
  color: var(--main-dark);
}
.news-card .img-wrapper {
  overflow: hidden;
  border-radius: 0.5rem;
  min-height: 15rem;
  max-height: 15rem;
}
.news-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
  border-radius: 0.5rem;
  min-height: 15rem;
  max-height: 15rem;
}
.news-card .title {
  font-weight: 600;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 640px) {
  .news-card .title {
    font-size: 1.125rem;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pagination .link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 0.0625rem solid var(--main);
  font-size: 0.875rem;
  min-height: 2rem;
  max-height: 2rem;
  min-width: 2rem;
  max-width: 2rem;
}
@media (min-width: 1024px) {
  .pagination .link {
    min-height: 2.5rem;
    max-height: 2.5rem;
    min-width: 2.5rem;
    max-width: 2.5rem;
  }
}
.pagination .link.active, .pagination .link:hover {
  background-color: var(--main);
  color: var(--white);
}
.pagination .link.active.prev svg, .pagination .link.active.next svg, .pagination .link:hover.prev svg, .pagination .link:hover.next svg {
  stroke: var(--white);
}
.pagination .link.prev svg, .pagination .link.next svg {
  stroke: var(--primary);
  min-height: 0.75rem;
  max-height: 0.75rem;
  min-width: 0.75rem;
  max-width: 0.75rem;
}
.pagination .link.prev svg {
  rotate: 180deg;
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:left-0::after{
  content: var(--tw-content);
  left: 0px;
}
.after\:top-0::after{
  content: var(--tw-content);
  top: 0px;
}
.after\:block::after{
  content: var(--tw-content);
  display: block;
}
.after\:h-full::after{
  content: var(--tw-content);
  height: 100%;
}
.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}
.after\:bg-\[var\(--black-50\)\]::after{
  content: var(--tw-content);
  background-color: var(--black-50);
}
.hover\:border-main2:hover{
  border-color: var(--main2);
}
.hover\:bg-gray-bg:hover{
  background-color: var(--gray-bg);
}
.hover\:bg-main2:hover{
  background-color: var(--main2);
}
.hover\:text-gray-400:hover{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-500:hover{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  color: var(--white);
}
.hover\:opacity-60:hover{
  opacity: 0.6;
}
.focus\:z-10:focus{
  z-index: 10;
}
.focus\:border-blue-300:focus{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:bg-gray-100:active{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.active\:text-gray-500:active{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.active\:text-gray-700:active{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.group\/category:hover .group-hover\/category\:pointer-events-auto{
  pointer-events: auto;
}
.group\/subcategory:hover .group-hover\/subcategory\:pointer-events-auto{
  pointer-events: auto;
}
.group:hover .group-hover\:pointer-events-auto{
  pointer-events: auto;
}
.group\/category:hover .group-hover\/category\:visible{
  visibility: visible;
}
.group\/subcategory:hover .group-hover\/subcategory\:visible{
  visibility: visible;
}
.group:hover .group-hover\:visible{
  visibility: visible;
}
.group:hover .group-hover\:scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-white{
  background-color: var(--white);
}
.group:hover .group-hover\:\!text-main{
  color: var(--main) !important;
}
.group:hover .group-hover\:text-gray{
  color: var(--gray);
}
.group:hover .group-hover\:text-main{
  color: var(--main);
}
.group:hover .group-hover\:text-main2{
  color: var(--main2);
}
.group:hover .group-hover\:text-primary{
  color: var(--primary);
}
.group:hover .group-hover\:text-white{
  color: var(--white);
}
.group\/category:hover .group-hover\/category\:opacity-100{
  opacity: 1;
}
.group\/subcategory:hover .group-hover\/subcategory\:opacity-100{
  opacity: 1;
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.group\/category:hover .group-hover\/category\:\[--btn-bg-color\:var\(--gray-bg\)\]{
  --btn-bg-color: var(--gray-bg);
}
.group\/category:hover .group-hover\/category\:\[--btn-border-color\:var\(--gray-bg\)\]{
  --btn-border-color: var(--gray-bg);
}
@container (min-width: 17.5rem){
  .\@\[17\.5rem\]\:h-\[25rem\]{
    height: 25rem;
  }
}
@container (min-width: 20rem){
  .\@\[20rem\]\:h-\[28\.75rem\]{
    height: 28.75rem;
  }
}
@media (min-width: 550px){
  .min-\[550px\]\:grid{
    display: grid;
  }
}
@media (min-width: 640px){
  .sm\:\!flex{
    display: flex !important;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:w-\[11rem\]{
    width: 11rem;
  }
  .sm\:w-auto{
    width: auto;
  }
  .sm\:flex-1{
    flex: 1 1 0%;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-center{
    justify-content: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:self-end{
    align-self: flex-end;
  }
  .sm\:\!overflow-hidden{
    overflow: hidden !important;
  }
  .sm\:border{
    border-width: 1px;
  }
  .sm\:bg-white{
    background-color: var(--white);
  }
  .sm\:p-5{
    padding: 1.25rem;
  }
  .sm\:p-6{
    padding: 1.5rem;
  }
  .sm\:p-8{
    padding: 2rem;
  }
  .sm\:py-\[10rem\]{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .sm\:text-center{
    text-align: center;
  }
  .sm\:text-start{
    text-align: start;
  }
  .sm\:text-\[4rem\]{
    font-size: 4rem;
  }
  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px){
  .md\:grid{
    display: grid;
  }
  .md\:gap-10{
    gap: 2.5rem;
  }
  .md\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (min-width: 1024px){
  .lg\:mb-\[3\.75rem\]{
    margin-bottom: 3.75rem;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:\!grid{
    display: grid !important;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-\[25rem\]{
    height: 25rem;
  }
  .lg\:h-\[28\.75rem\]{
    height: 28.75rem;
  }
  .lg\:max-h-\[25rem\]{
    max-height: 25rem;
  }
  .lg\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:items-start{
    align-items: flex-start;
  }
  .lg\:gap-10{
    gap: 2.5rem;
  }
  .lg\:gap-24{
    gap: 6rem;
  }
  .lg\:gap-4{
    gap: 1rem;
  }
  .lg\:gap-\[1\.875rem\]{
    gap: 1.875rem;
  }
  .lg\:p-10{
    padding: 2.5rem;
  }
  .lg\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .lg\:py-\[12\.5rem\]{
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
  .lg\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1280px){
  .xl\:top-\[var\(--header-top-height\)\]{
    top: var(--header-top-height);
  }
  .xl\:mb-\[3\.75rem\]{
    margin-bottom: 3.75rem;
  }
  .xl\:block{
    display: block;
  }
  .xl\:flex{
    display: flex;
  }
  .xl\:grid{
    display: grid;
  }
  .xl\:\!hidden{
    display: none !important;
  }
  .xl\:hidden{
    display: none;
  }
  .xl\:max-w-\[50rem\]{
    max-width: 50rem;
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-\[2fr_1fr\]{
    grid-template-columns: 2fr 1fr;
  }
  .xl\:gap-10{
    gap: 2.5rem;
  }
  .xl\:py-\[15rem\]{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}
@media (min-width: 1536px){
  .\32xl\:max-w-\[62\.5rem\]{
    max-width: 62.5rem;
  }
  .\32xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .\32xl\:gap-16{
    gap: 4rem;
  }
}
.rtl\:flex-row-reverse:where([dir="rtl"], [dir="rtl"] *){
  flex-direction: row-reverse;
}
@media (prefers-color-scheme: dark){
  .dark\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }
  .dark\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }
  .dark\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
  .dark\:hover\:text-gray-300:hover{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .dark\:focus\:border-blue-700:focus{
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  }
  .dark\:focus\:border-blue-800:focus{
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }
  .dark\:active\:bg-gray-700:active{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }
  .dark\:active\:text-gray-300:active{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
}