/* Cookie Consent Banner */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  padding: 1.5rem;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-consent-banner.is-visible {
  visibility: visible;
}

.cookie-consent-banner.is-active {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-consent-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
}

.cookie-consent-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.cookie-policy-link {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-policy-link:hover {
  color: #1d4ed8;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-consent-actions {
    width: auto;
    flex-shrink: 0;
  }
}

.cookie-consent-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-consent-btn-accept {
  background-color: #2563eb;
  color: #ffffff;
}

.cookie-consent-btn-accept:hover {
  background-color: #1d4ed8;
}

.cookie-consent-btn-reject {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.cookie-consent-btn-reject:hover {
  background-color: #e5e7eb;
}

.cookie-consent-btn-settings {
  background-color: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.cookie-consent-btn-settings:hover {
  background-color: #eff6ff;
}

/* Cookie Settings Panel */

.cookie-settings-panel {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-panel.is-visible {
  visibility: visible;
}

.cookie-settings-panel.is-active {
  opacity: 1;
}

.cookie-settings-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.cookie-settings-panel.is-active .cookie-settings-content {
  transform: translateY(0);
}

.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  color: #6b7280;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-close:hover {
  color: #1f2937;
}

.cookie-settings-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
}

.cookie-settings-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.5rem 0;
}

.cookie-settings-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.cookie-setting-item {
  padding: 1.25rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.cookie-setting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cookie-setting-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex: 1;
}

.cookie-setting-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

.cookie-setting-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-setting-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}

.cookie-setting-status {
  font-size: 0.75rem;
  color: #6b7280;
  padding: 0.25rem 0.5rem;
  background-color: #e5e7eb;
  border-radius: 0.25rem;
}

.cookie-setting-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
}

/* Page */

.page_default {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.page_header {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}

.page_header .section_container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .page_header .section_container {
    text-align: left;
  }
}

.page_header h1 {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .page_header h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.page_header .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_header .breadcrumbs a {
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.page_header .breadcrumbs a:hover {
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_header .breadcrumbs .breadcrumb_last {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container {
  max-width: 960px;
}

.page_content {
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  --tw-shadow: 0px 25px 80px -40px rgba(14,30,37,0.32);
  --tw-shadow-colored: 0px 25px 80px -40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px) {
  .page_content {
    padding: 2.5rem;
  }
}

.page_content .section_container h2 {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .page_content .section_container h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.page_content .section_container h3 {
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .page_content .section_container h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.page_content .section_container h4 {
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .page_content .section_container h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.page_content .section_container h5 {
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .page_content .section_container h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.page_content .section_container h6 {
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .page_content .section_container h6 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.page_content .section_container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container ul {
  margin-bottom: 1rem;
  list-style-position: inside;
  list-style-type: disc;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container ol {
  margin-bottom: 1rem;
  list-style-position: inside;
  list-style-type: decimal;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container li {
  margin-bottom: 0.25rem;
  line-height: 1.625;
}

.page_content .section_container blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(71 177 216 / var(--tw-border-opacity, 1));
  background-color: rgb(246 246 246 / 0.5);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  height: auto;
  max-width: 100%;
  border-radius: 0.5rem;
  --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);
}

.page_content .section_container a {
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
  text-decoration-line: underline;
  text-underline-offset: 4px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.page_content .section_container a:hover {
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container strong {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .section_container em {
  font-style: italic;
}

.page_content .section_container code {
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.page_content .section_container pre {
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
  padding: 1rem;
}

.page_content .section_container table {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  border-collapse: collapse;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity, 1));
}

.page_content .section_container th,
.page_content .section_container td {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

.page_content .section_container th {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.page_content .page-links {
  margin-top: 2rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity, 1));
  padding-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.page_content .entry-footer {
  margin-top: 1.5rem;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity, 1));
  padding-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

*, ::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: "Exo 2", sans-serif;
  /* 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;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

main {
  min-height: 100vh;
  overflow: hidden;
}

@font-face {
  font-family: "Exo 2";

  src: url("../fonts/Exo2.ttf") format("truetype");

  font-style: normal;
}

@font-face {
  font-family: "Exo 2";

  src: url("../fonts/Exo2-Italic.ttf") format("truetype");

  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.absolute {
  position: absolute;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-5 {
  margin-top: 1.25rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.h-5 {
  height: 1.25rem;
}

.h-\[auto\] {
  height: auto;
}

.min-h-\[500px\] {
  min-height: 500px;
}

.min-h-screen {
  min-height: 100vh;
}

.w-5 {
  width: 1.25rem;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.resize {
  resize: both;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-5 {
  gap: 1.25rem;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.bg-nt_blue {
  --tw-bg-opacity: 1;
  background-color: rgb(71 177 216 / var(--tw-bg-opacity, 1));
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-9xl {
  font-size: 8rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Global styles */

.section_container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1300px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding_section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .padding_section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .padding_section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.margin_section {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .margin_section {
    margin-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .margin_section {
    margin-top: 5rem;
  }
}

.btn-primary {
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(47 52 84 / var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.btn-primary:hover {
  background-color: rgb(47 52 84 / 0.8);
}

@media (min-width: 768px) {
  .btn-primary {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.default_headline {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .default_headline {
    max-width: 800px;
  }
}

.default_title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .default_title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  .default_title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

/* Header | Top Header */

.top_header {
  --tw-bg-opacity: 1;
  background-color: rgb(47 52 84 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.top_header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media not all and (min-width: 1024px) {
  .top_header > div {
    display: none;
  }
}

.top_header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top_header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header_contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header_contact svg {
  height: 1rem;
  width: 1rem;
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

.header_contact span {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.header_contact span:hover {
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

.top_header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top_header-right a {
  border-right-width: 1px;
  border-color: rgb(255 255 255 / 0.2);
  padding-right: 1rem;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.top_header-right a:last-child {
  border-right-width: 0px;
  padding-right: 0px;
}

.top_header-right a:hover {
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

/* Header | Main Header */

.main_header {
  --tw-bg-opacity: 1;
  background-color: rgb(71 177 216 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.main_header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

header .logo {
  height: auto;
  width: 200px;
  max-width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media not all and (min-width: 1024px) {
  header .logo {
    width: 150px;
  }
}

header .logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main_header-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media not all and (min-width: 1024px) {
  .main_header-menu {
    display: none;
  }
}

.main_header-menu a {
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.main_header-menu a:hover {
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.mobile_menu-toggle {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .mobile_menu-toggle {
    display: none;
  }
}

.mobile_menu-toggle svg {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Header | Mobile Menu */

.mobile_menu {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 50;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.mobile_menu-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.mobile_menu-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mobile_menu-main_menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile_menu-main_menu a {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.mobile_menu-main_menu a:hover {
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.mobile_menu-top_menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile_menu-top_menu a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.mobile_menu-top_menu a:hover {
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
}

.mobile_menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Hero */

.hero {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

canvas {
  position: absolute;
  height: 100%;
  width: 100%;
}

#particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: #255BCF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 91 207 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #D554A6 var(--tw-gradient-to-position);
}

.hero .line_2 {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .hero .line_2 {
    margin-bottom: 2rem;
  }
}

.typing-section {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.typing-line {
  display: inline-block;
}

.typing-text {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 768px) {
  .typing-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  .typing-text {
    font-size: 3rem;
    line-height: 1;
  }
}

/* Курсор как псевдоэлемент — он идёт сразу после текста */

.typing-text::after {
  content: "|";
  margin-left: 4px;
  line-height: 1.2;
  color: #6ec1e4;
  animation: typingCursorBlink 0.8s infinite;
}

@keyframes typingCursorBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero .section_container {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero .section_container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero .line_1 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 42px;
  line-height: 1;
}

@media (min-width: 768px) {
  .hero .line_1 {
    font-size: 58px;
  }
}

@media (min-width: 1024px) {
  .hero .line_1 {
    font-size: 90px;
  }
}

.hero .line_1 .image {
  height: 72px;
  width: 72px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .hero .line_1 .image {
    height: 90px;
    width: 90px;
    padding: 1rem;
  }
}

.hero .line_1 .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero .line_1 span {
  font-weight: 700;
}

.action_block {
  display: flex;
  max-width: 800px;
  align-items: center;
  gap: 1.25rem;
}

@media not all and (min-width: 768px) {
  .action_block {
    flex-direction: column;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.hero .action_block > a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

/* About */

.about_block .about_block-content {
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(71 177 216 / var(--tw-bg-opacity, 1));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .about_block .about_block-content {
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .about_block .about_block-content {
    padding: 2.5rem;
  }
}

.about_block p {
  margin-bottom: 1rem;
}

.about_block p:last-child {
  margin-bottom: 0px;
}

.about_block ul {
  list-style-position: inside;
  list-style-type: disc;
}

.about_block ol {
  list-style-position: inside;
  list-style-type: decimal;
}

.about_block ul li {
  margin-bottom: 0.25rem;
}

.about_block ul li:last-child {
  margin-bottom: 0px;
}

/* Tabs */

.bx-tabs {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
}

.bx-tabs .bx-tabs__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .bx-tabs .bx-tabs__inner {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}

/* контент */

.bx-tabs .bx-tabs__content {
  flex: 1 1 0%;
}

@media (min-width: 1024px) {
  .bx-tabs .bx-tabs__content {
    max-width: calc(100% - 280px);
    flex: 1 1 0%;
  }
}

.bx-tabs .bx-tab-panel {
  display: none;
}

.bx-tabs .bx-tab-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bx-tabs .bx-tab-panel__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  padding: 1.25rem;
}

@media (min-width: 1024px) {
  .bx-tabs .bx-tab-panel__content {
    padding: 2.5rem;
  }
}

.bx-tabs .bx-tab-panel__content > * {
  margin: 0px;
}

.bx-tabs .bx-tab-panel h3 {
  margin-bottom: 0.25rem;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(71 177 216 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.bx-tabs .bx-tab-panel strong {
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

.bx-tabs .bx-tab-panel ul {
  display: flex;
  list-style-position: inside;
  list-style-type: disc;
  flex-direction: column;
  gap: 0.375rem;
  padding-left: 1.25rem;
}

.bx-tabs a {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
}

/* навигация */

.bx-tabs .bx-tabs__nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .bx-tabs .bx-tabs__nav {
    position: sticky;
    top: 5rem;
    min-width: 260px;
    max-width: 280px;
    flex-direction: column;
    overflow-x: visible;
  }
}

.bx-tabs .bx-tabs__nav::-webkit-scrollbar {
  height: 0.25rem;
}

.bx-tabs .bx-tab-link {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(47 52 84 / 0.1);
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(47 52 84 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

@media (min-width: 1024px) {
  .bx-tabs .bx-tab-link {
    width: 100%;
    white-space: normal;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: left;
  }
}

.bx-tabs .bx-tab-link {
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.bx-tabs .bx-tab-link.is-active {
  --tw-border-opacity: 1;
  border-color: rgb(47 52 84 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(47 52 84 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Team */

.team_swiper {
  position: relative;
  margin-left: 0px;
  overflow: hidden;
}

.team_swiper .team_item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  row-gap: 1.25rem;
}

@media (min-width: 768px) {
  .team_swiper .team_item {
    flex-direction: row;
    gap: 2rem;
  }
}

.team_swiper .team_swiper .team_item.swiper-slide-active {
  opacity: 1;
}

.team_swiper .team_item > * {
  width: 100%;
}

@media (min-width: 768px) {
  .team_swiper .team_item > * {
    width: 50%;
  }
}

.team_swiper .team_item-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .team_swiper .team_item-image {
    aspect-ratio: auto;
  }
}

.team_swiper .team_item-image img {
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
  border-radius: 0.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  --tw-shadow: 0px 8px 8px -4px #1118270a;
  --tw-shadow-colored: 0px 8px 8px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.team_swiper .team_item-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team_swiper .team_item-header {
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(71 177 216 / var(--tw-border-opacity, 1));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.team_swiper .team_item-position {
  margin: 0px;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

.team_swiper .team_item-name {
  margin: 0px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.team_swiper .team_item-description {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.team_swiper .team_item-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .team_swiper .team_item-btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.team_swiper .swiper_nav {
  margin-top: 1.75rem;
  width: 100%;
}

.team_swiper .swiper_nav > * {
  position: relative;
  left: auto;
  top: auto;
}

.team_swiper .swiper-pagination-bullet-active {
  --tw-bg-opacity: 1;
  background-color: rgb(71 177 216 / var(--tw-bg-opacity, 1));
}

/* Advantages */

.advantages_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .advantages_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .advantages_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.advantages_item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(71 177 216 / var(--tw-bg-opacity, 1));
  padding: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.advantages_item-header {
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 0.75rem;
}

.advantages_item-image {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantages_item hr {
  height: 0.25rem;
  width: 48px;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

/* Form */

.bit24_form_block {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}

.bit24_form_block .section_container {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

@media (min-width: 768px) {
  .bit24_form_block .section_container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .bit24_form_block .section_container .default_headline {
    text-align: left;
  }
}

/* Cases */

.cases_item {
  height: auto !important;
  cursor: pointer;
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
  padding: 1.25rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

@media (min-width: 1024px) {
  .cases_item {
    border-width: 1px;
    border-color: transparent;
  }

  .cases_item:hover {
    border-color: rgb(47 52 84 / 0.1);
  }
}

.cases_item img {
  margin-bottom: 1.25rem;
  height: 100px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cases_item-title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.cases_item-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Footer */

.footer {
  --tw-bg-opacity: 1;
  background-color: rgb(47 52 84 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.footer_top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-bottom-width: 1px;
  border-color: rgb(255 255 255 / 0.1);
}

@media (min-width: 768px) {
  .footer_top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer_top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer_top .logo {
  margin-bottom: 1.25rem;
  display: block;
  height: auto;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media not all and (min-width: 1024px) {
  .footer_top .logo {
    width: 150px;
  }
}

.footer_top .column_2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer_top .column_2 .footer_title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.footer_top .column_2 .footer_contact {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.1;
}

.footer_top .column_2 .footer_contact svg {
  height: 1rem;
  min-height: 1rem;
  width: 1rem;
  min-width: 1rem;
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

.footer_top .links_column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_top .links_column .footer_link {
  text-transform: uppercase;
  line-height: 1;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.footer_top .links_column .footer_link:hover {
  --tw-text-opacity: 1;
  color: rgb(71 177 216 / var(--tw-text-opacity, 1));
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media not all and (min-width: 768px) {
  .footer_bottom {
    flex-direction: column;
  }
}

.hover\:bg-nt_blue\/80:hover {
  background-color: rgb(71 177 216 / 0.8);
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2: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(2px + 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);
}

.focus\:ring-nt_blue:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 177 216 / var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}