@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
: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: #333;
  --main: #004488;
  --main-10: rgb(0, 68, 136, 0.1);
  --main-20: rgb(0, 68, 136, 0.2);
  --secondary: #7c7c7c;
  --secondary-dark: #4c4c4c;
  --placeholder: #bdbdbd;
  --gray: #f5f5f5;
  --gray2: #e3e3e3;
  --swiper-wrapper-transition-timing-function: linear !important;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 130%;
  padding: 4px 0;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-link:hover {
  color: var(--main);
}
.footer-link svg {
  width: 20px;
  height: 20px;
  fill: var(--main);
}
header.header.fixed-header {
  box-shadow: 0 1px 8px var(--black-10);
}
.header-links .header-link {
  display: flex;
  padding: 4px 0;
  font-size: 14px;
  color: var(--secondary);
  font-weight: 500;
  line-height: 140%;
  align-items: center;
}
.header-links .header-link:hover {
  color: var(--primary);
}
.langs-wrapper.open .langs {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.langs-wrapper.open .lang-btn svg {
  rotate: -90deg;
}
.langs-wrapper .flag-wrapper {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gray2);
}
@media (max-width: 639px) {
  .langs-wrapper .flag-wrapper {
    width: 18px;
    height: 18px;
  }
}
.langs-wrapper .flag-wrapper img {
  width: 22px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 639px) {
  .langs-wrapper .flag-wrapper img {
    width: 16px;
    height: 16px;
  }
}
.langs-wrapper .lang-btn svg {
  rotate: 90deg;
}
.langs-wrapper .langs {
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateY(-10px) translateX(-50%);
  z-index: 91;
}
.langs-wrapper .langs .lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 8px;
  font-weight: 500;
  color: var(--primary);
}
.langs-wrapper .langs .lang-link:hover {
  color: var(--main);
  background-color: var(--main-10);
}
.header-menu {
  visibility: hidden;
  pointer-events: none;
  transform: translateX(105%);
  transition: all 0.3s;
  opacity: 0;
}
.header-menu.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: none;
}
.header-menu .header-links .header-link {
  color: var(--primary);
}
.header-menu .header-links .header-link:hover {
  opacity: 0.6;
}
.blackout {
  background-color: var(--black-40);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 98;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.blackout.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.advantage-card {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 30%;
}
@media (min-width: 768px) {
  .advantage-card {
    max-width: 500px;
  }
}
@media (max-width: 1279px) {
  .advantage-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 639px) {
  .advantage-card {
    gap: 12px;
  }
}
.advantage-card img {
  min-height: 90px;
  max-height: 90px;
  min-width: 90px;
  max-width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  .advantage-card img {
    min-height: 60px;
    max-height: 60px;
    min-width: 60px;
    max-width: 60px;
  }
}
@media (max-width: 639px) {
  .advantage-card img {
    min-height: 50px;
    max-height: 50px;
    min-width: 50px;
    max-width: 50px;
  }
}
.advantage-card .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.advantage-card .text-wrapper .title {
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 767px) {
  .advantage-card .text-wrapper .title {
    font-size: 18px;
  }
}
.advantage-card .text-wrapper .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--secondary);
}
.industry-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  padding: 40px;
}
@media (max-width: 1279px) {
  .industry-card {
    padding: 24px;
    height: 280px;
  }
}
@media (max-width: 639px) {
  .industry-card {
    padding: 24px 16px;
    height: 250px;
  }
}
.industry-card:hover .background-img {
  transform: scale(1.1);
}
.industry-card .background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s;
}
.industry-card .icon {
  min-height: 48px;
  max-height: 48px;
  min-width: 48px;
  max-width: 48px;
}
.industry-card .title {
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
}
@media (max-width: 767px) {
  .industry-card .title {
    font-size: 18px;
  }
}
.service-card {
  padding: 16px;
  border: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card .img-wrapper {
  border: 1px solid var(--gray);
  overflow: hidden;
}
.service-card .img-wrapper:hover img {
  transform: scale(1.1);
}
.service-card .img-wrapper img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
@media (max-width: 1535px) {
  .service-card .img-wrapper img {
    height: 220px;
  }
}
.service-card .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  position: relative;
}
.service-card .text-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: var(--black);
}
.service-card .text-wrapper .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service-card .text-wrapper .title:hover {
  color: var(--main);
}
@media (max-width: 1279px) {
  .service-card .text-wrapper .title {
    font-size: 18px;
  }
}
.service-card .text-wrapper .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--secondary);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.partners-section .swiper .swiper-slide {
  width: auto;
}
.partners-section .swiper .swiper-slide img {
  height: 100px;
  width: auto;
  max-width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 639px) {
  .partners-section .swiper .swiper-slide img {
    max-width: 200px;
  }
}
.form-transparent input,
.form-transparent textarea {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  border-radius: 0;
}
.form-transparent input::-moz-placeholder, .form-transparent textarea::-moz-placeholder {
  color: var(--white);
}
.form-transparent input::placeholder,
.form-transparent textarea::placeholder {
  color: var(--white);
}
*, ::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;
}
.absolute-center-y{
  position: absolute;
  top: 50%;
  --tw-translate-y: -50%;
  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));
}
.absolute-center-x{
  position: absolute;
  left: 50%;
  --tw-translate-x: -50%;
  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));
}
.bg-img{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.btn-main{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  gap: 0.5rem;
  border-radius: 4px;
  border-width: 1px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  line-height: 140%;
  border-color: var(--main);
  background-color: transparent;
  color: var(--main);
}
.btn-main:hover{
  background-color: var(--main);
  color: var(--white);
}
.btn-main-fill{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  gap: 0.5rem;
  border-radius: 4px;
  border-width: 1px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  line-height: 140%;
  border-color: var(--main);
  background-color: var(--main);
  color: var(--white);
}
.btn-main-fill:hover{
  background-color: transparent;
  color: var(--main);
}
.btn-white{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  gap: 0.5rem;
  border-radius: 4px;
  border-width: 1px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  line-height: 140%;
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}
.btn-white:hover{
  background-color: var(--white);
  color: var(--main);
}
.section-padding{
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px){
  .section-padding{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1024px){
  .section-padding{
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1280px){
  .section-padding{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.invisible{
  visibility: hidden;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.bottom-auto{
  bottom: auto;
}
.left-0{
  left: 0px;
}
.right-0{
  right: 0px;
}
.right-3{
  right: 0.75rem;
}
.top-0{
  top: 0px;
}
.top-\[calc\(100\%\+10px\)\]{
  top: calc(100% + 10px);
}
.top-full{
  top: 100%;
}
.z-\[-1\]{
  z-index: -1;
}
.z-\[90\]{
  z-index: 90;
}
.z-\[99\]{
  z-index: 99;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-\[60px\]{
  margin-bottom: 60px;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-\[60px\]{
  margin-top: 60px;
}
.flex{
  display: flex;
}
.hidden{
  display: none;
}
.size-8{
  width: 2rem;
  height: 2rem;
}
.h-2{
  height: 0.5rem;
}
.h-3{
  height: 0.75rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[20px\]{
  height: 20px;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-screen{
  height: 100vh;
}
.min-h-\[450px\]{
  min-height: 450px;
}
.w-2{
  width: 0.5rem;
}
.w-3{
  width: 0.75rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-\[150px\]{
  width: 150px;
}
.w-\[200px\]{
  width: 200px;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.w-screen{
  width: 100vw;
}
.min-w-5{
  min-width: 1.25rem;
}
.min-w-\[45px\]{
  min-width: 45px;
}
.max-w-\[240px\]{
  max-width: 240px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[800px\]{
  max-width: 800px;
}
.max-w-\[984px\]{
  max-width: 984px;
}
.max-w-full{
  max-width: 100%;
}
.grow{
  flex-grow: 1;
}
.translate-y-5{
  --tw-translate-y: 1.25rem;
  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));
}
.rotate-90{
  --tw-rotate: 90deg;
  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));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-\[1fr\2c 2fr\]{
  grid-template-columns: 1fr 2fr;
}
.grid-cols-\[1fr\2c 330px\]{
  grid-template-columns: 1fr 330px;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-10{
  gap: 2.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-\[60px\]{
  gap: 60px;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-4{
  row-gap: 1rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.border-t{
  border-top-width: 1px;
}
.border-gray2{
  border-color: var(--gray2);
}
.bg-black-50{
  background-color: var(--black-50);
}
.bg-gray{
  background-color: var(--gray);
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.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-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-main{
  fill: var(--main);
}
.fill-white{
  fill: var(--white);
}
.stroke-placeholder{
  stroke: var(--placeholder);
}
.stroke-primary{
  stroke: var(--primary);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.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-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[60px\]{
  padding-top: 60px;
  padding-bottom: 60px;
}
.\!pr-9{
  padding-right: 2.25rem !important;
}
.\!pt-0{
  padding-top: 0px !important;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pl-4{
  padding-left: 1rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.text-center{
  text-align: center;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-\[28px\]{
  font-size: 28px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.leading-100{
  line-height: 100%;
}
.leading-130{
  line-height: 130%;
}
.leading-140{
  line-height: 140%;
}
.leading-150{
  line-height: 150%;
}
.leading-160{
  line-height: 160%;
}
.text-secondary{
  color: var(--secondary);
}
.text-secondary-dark{
  color: var(--secondary-dark);
}
.text-white{
  color: var(--white);
}
.opacity-0{
  opacity: 0;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-80{
  opacity: 0.8;
}
.shadow-\[0_0_4px_-2px_var\(--black-40\)\]{
  --tw-shadow: 0 0 4px -2px var(--black-40);
  --tw-shadow-colored: 0 0 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-\[0_0_4px_0_rgba\(0\2c 0\2c 0\2c 0\.5\)\]{
  --tw-shadow: 0 0 4px 0 rgba(0,0,0,0.5);
  --tw-shadow-colored: 0 0 4px 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);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blur-\[3px\]{
  --tw-blur: blur(3px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\@container{
  container-type: inline-size;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
html:has(dialog[open]) {
  overflow-y: hidden;
}
body {
  scroll-behavior: smooth;
  overflow-x: clip;
  color: var(--primary);
  font-weight: 400;
  font-family: "Inter", 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 {
  line-height: 180%;
}
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  line-height: 140%;
  font-weight: 600;
}
.text-block h1 {
  font-size: 36px;
}
@media (max-width: 1023px) {
  .text-block h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .text-block h1 {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .text-block h1 {
    font-size: 24px;
  }
}
.text-block h2 {
  font-size: 32px;
}
@media (max-width: 1023px) {
  .text-block h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .text-block h2 {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .text-block h2 {
    font-size: 20px;
  }
}
.text-block h3 {
  font-size: 28px;
}
@media (max-width: 1023px) {
  .text-block h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .text-block h3 {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .text-block h3 {
    font-size: 18px;
  }
}
.text-block h4 {
  font-size: 24px;
}
@media (max-width: 1023px) {
  .text-block h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .text-block h4 {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .text-block h4 {
    font-size: 16px;
  }
}
.text-block h5 {
  font-size: 20px;
}
@media (max-width: 1023px) {
  .text-block h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .text-block h5 {
    font-size: 16px;
  }
}
.text-block h6 {
  font-size: 18px;
}
@media (max-width: 1023px) {
  .text-block h6 {
    font-size: 16px;
  }
}
.text-block img {
  display: inline-block;
}
.text-block div,
.text-block a,
.text-block li,
.text-block p {
  line-height: 180%;
  font-size: 16px;
}
.text-block a {
  color: var(--main);
}
.text-block ol,
.text-block ul {
  list-style-position: inside;
  line-height: 160%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-block ul {
  list-style-type: disc;
}
.text-block ol {
  list-style-type: decimal;
}
.text-block blockquote {
  background-color: var(--main-20);
  border-left: 3px solid var(--main);
  padding: 24px 20px;
}
textarea,
input {
  outline: none;
  border: 1px solid var(--gray2);
  transition: border 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
textarea:focus-visible,
input:focus-visible {
  border-color: var(--main);
  outline: none;
}
textarea:not([type=checkbox]), textarea:not([type=radio]),
input:not([type=checkbox]),
input:not([type=radio]) {
  line-height: 120%;
  min-height: 40px;
  padding: 0 15px;
  background-color: var(--white);
  width: 100%;
}
textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--placeholder);
  font-size: 14px;
}
textarea::placeholder,
input::placeholder {
  color: var(--placeholder);
  font-size: 14px;
}
textarea[type=checkbox], textarea[type=radio],
input[type=checkbox],
input[type=radio] {
  padding: 0;
  min-height: 0;
  width: auto;
}
textarea {
  padding-top: 8px !important;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.pagination .link,
.pagination .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: var(--secondary);
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s;
  border: 1px solid transparent;
}
@media (max-width: 639px) {
  .pagination .link,
  .pagination .text {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.pagination .link svg,
.pagination .text svg {
  width: 12px;
  height: 12px;
  stroke: var(--secondary);
}
.pagination .link:hover, .pagination .link.active {
  background-color: var(--main);
  color: var(--white);
}
.pagination .prev svg {
  rotate: 180deg;
}
.pagination .prev,
.pagination .next {
  border-color: var(--main);
  color: var(--main);
}
.pagination .prev svg,
.pagination .next svg {
  stroke: var(--main);
}
.pagination .prev:hover svg,
.pagination .next:hover svg {
  stroke: var(--white);
}
.accordion {
  --accordion-padding: 16px;
}
.accordion .content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}
.accordion.open .content {
  padding: var(--accordion-padding) 0 0;
  max-height: none;
  overflow: visible;
  opacity: 1;
}
.tabs .tab {
  display: none;
}
.tabs .tab.active {
  display: block;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
.section-heading .title {
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
}
@media (max-width: 1279px) {
  .section-heading .title {
    font-size: 32px;
  }
}
@media (max-width: 1023px) {
  .section-heading .title {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .section-heading .title {
    font-size: 24px;
  }
}
.section-heading .link {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 140%;
  padding: 4px 0;
}
.section-heading .link svg {
  stroke: var(--primary);
  width: 10px;
  height: 10px;
}
.breadcumbs {
  padding: 20px 0;
}
.breadcumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcumbs .container .link,
.breadcumbs .container .current {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}
.breadcumbs .container .link {
  color: var(--secondary);
}
.breadcumbs .container .link:hover {
  color: var(--primary);
}
.breadcumbs .container svg {
  width: 8px;
  height: 8px;
  stroke: var(--secondary);
}
.news-card {
  display: flex;
  flex-direction: column;
  height: auto;
  border: 1px solid var(--gray);
  container-type: inline-size;
  container-name: news-card;
}
.news-card .img-wrapper {
  display: flex;
  overflow: hidden;
  height: 250px;
}
@container news-card (width < 370px) {
  .news-card .img-wrapper {
    height: 200px;
  }
}
@container news-card (width < 270px) {
  .news-card .img-wrapper {
    height: 150px;
  }
}
.news-card .img-wrapper:hover img {
  transform: scale(1.1);
}
.news-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.news-card .text-wrapper {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card .text-wrapper .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-card .text-wrapper .title:hover {
  color: var(--main);
}
@media (max-width: 1279px) {
  .news-card .text-wrapper .title {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .news-card .text-wrapper .title {
    font-size: 16px;
  }
}
.news-card .text-wrapper .text {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.page-header-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .page-header-bg {
    height: 300px;
  }
}
@media (max-width: 639px) {
  .page-header-bg {
    height: 250px;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  container-type: inline-size;
  container-name: product-card;
}
.product-card .img-wrapper {
  display: flex;
}
.product-card .img-wrapper img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@container product-card (width < 350px) {
  .product-card .img-wrapper img {
    height: 350px;
  }
}
@container product-card (width < 300px) {
  .product-card .img-wrapper img {
    height: 300px;
  }
}
@container product-card (width < 250px) {
  .product-card .img-wrapper img {
    height: 250px;
  }
}
@container product-card (width < 200px) {
  .product-card .img-wrapper img {
    height: 200px;
  }
}
@container product-card (width < 150px) {
  .product-card .img-wrapper img {
    height: 150px;
  }
}
.product-card .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card .text-wrapper .title {
  font-weight: 500;
  font-size: 20px;
}
.product-card .text-wrapper .text {
  line-height: 130%;
  color: var(--secondary);
}
dialog::backdrop {
  background-color: var(--black-40);
}
.work-card {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .work-card {
    gap: 16px;
  }
}
.work-card .img-wrapper img {
  min-height: 160px;
  max-height: 160px;
  min-width: 160px;
  max-width: 160px;
}
@media (max-width: 639px) {
  .work-card .img-wrapper img {
    min-height: 120px;
    max-height: 120px;
    min-width: 120px;
    max-width: 120px;
  }
}
.work-card .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work-card .text-wrapper .title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
@media (max-width: 1279px) {
  .work-card .text-wrapper .title {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .work-card .text-wrapper .title {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .work-card .text-wrapper .title {
    font-size: 16px;
  }
}
.work-card .text-wrapper .text {
  line-height: 140%;
}
@media (max-width: 639px) {
  .work-card .text-wrapper .text {
    font-size: 14px;
  }
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
}
.hover\:text-main:hover{
  color: var(--main);
}
.group:hover .group-hover\:visible{
  visibility: visible;
}
.group:hover .group-hover\:translate-y-0{
  --tw-translate-y: 0px;
  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\:fill-main{
  fill: var(--main);
}
.group:hover .group-hover\:fill-white{
  fill: var(--white);
}
.group\/btn:hover .group-hover\/btn\:stroke-main{
  stroke: var(--main);
}
.group:hover .group-hover\:stroke-main{
  stroke: var(--main);
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.group.open .group-\[\.open\]\:-rotate-90{
  --tw-rotate: -90deg;
  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));
}
@container (min-width: 460px){
  .\@\[460px\]\:grid{
    display: grid;
  }
}
@container (min-width: 580px){
  .\@\[580px\]\:grid{
    display: grid;
  }
}
@media (min-width: 640px){
  .sm\:grid{
    display: grid;
  }
  .sm\:h-\[280px\]{
    height: 280px;
  }
  .sm\:min-h-\[500px\]{
    min-height: 500px;
  }
  .sm\:w-\[200px\]{
    width: 200px;
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:items-end{
    align-items: flex-end;
  }
  .sm\:gap-0{
    gap: 0px;
  }
  .sm\:gap-10{
    gap: 2.5rem;
  }
  .sm\:gap-2{
    gap: 0.5rem;
  }
  .sm\:gap-x-10{
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:py-\[60px\]{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px){
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:gap-12{
    gap: 3rem;
  }
  .md\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px){
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:w-\[250px\]{
    width: 250px;
  }
  .lg\:max-w-\[300px\]{
    max-width: 300px;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:gap-20{
    gap: 5rem;
  }
  .lg\:gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .lg\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .lg\:pr-3{
    padding-right: 0.75rem;
  }
}
@media (min-width: 1280px){
  .xl\:flex{
    display: flex;
  }
  .xl\:hidden{
    display: none;
  }
  .xl\:min-h-\[650px\]{
    min-height: 650px;
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:justify-between{
    justify-content: space-between;
  }
  .xl\:gap-\[120px\]{
    gap: 120px;
  }
  .xl\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .xl\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1536px){
  .\32xl\:max-w-\[300px\]{
    max-width: 300px;
  }
  .\32xl\:gap-6{
    gap: 1.5rem;
  }
}