/*!
Theme Name: iquiisport
Theme URI: https://iquii.com/
Author: giovanni
Author URI: https://iquii.com/
Description: Iquii sport theme
Version: 1.0.0
Tested up to: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: iqs
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

iquiisport is based on _tw https://underscoretw.com/, (C) 2021-2022 Greg Sullivan
_tw is distributed under the terms of the GNU GPL v2 or later.

_tw is based on Underscores https://underscores.me/ and Varia https://github.com/Automattic/themes/tree/master/varia, (C) 2012-2022 Automattic, Inc.
Underscores and Varia are distributed under the terms of the GNU GPL v2 or later.
*/

#cssmenu > ul > li {
  position: relative;
}

#cssmenu > ul > li > a:hover {
  opacity: 1;
}

#cssmenu > ul > li > a {
  margin-right: 20px;
  opacity: 0.8;
  text-transform: uppercase;
}

#cssmenu > ul > li > a:hover {
  opacity: 1;
}

#cssmenu ul li > div {
  background: transparent;
  display: none;
  width: 248px;
  position: absolute;
  top: 25px;
  z-index: 999;
}

#cssmenu ul li.has-sub:hover > div {
  display: block;
}

#cssmenu ul li > div > ul {
  border-radius: 8px;
  background: white;
  position: relative;
  margin-top: 48px;
  padding-top: 30px;
  padding-bottom: 15px;
  padding-left: 25px;
}

#cssmenu ul li > div > ul li > div {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  background: #ecf5ff;
  display: none;
  width: 260px;
  top: 0;
  height: 100%;
  right: calc(8px - 100%);
  position: absolute;
  z-index: 999;
}

#cssmenu ul li > div > ul li.has-sub > a::after {
  padding-right: 30px;
  content: url("assets/icons/chevron/right.svg");
}

#cssmenu ul li > div > ul li > div > ul {
  margin-top: 0;
  background: #ecf5ff;
}

#cssmenu ul li > div > ul li a {
  color: #2d2d2d;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
  justify-content: space-between;
  display: flex;
}

#cssmenu ul li > div > ul li a:hover {
  color: #0053a1;
}

#cssmenu ul li > div > ul li a:hover:after {
  filter: invert(15%) sepia(98%) saturate(3205%) hue-rotate(198deg)
			brightness(95%) contrast(101%);
}

#cssmenu ul li > div > ul li.focus > a {
  color: #0053a1;
}

#cssmenu ul li > div > ul li.focus > a:after {
  filter: invert(15%) sepia(98%) saturate(3205%) hue-rotate(198deg)
			brightness(95%) contrast(101%);
}

#cssmenu .external-link:after {
  padding-right: 30px;
  transition: 0.6s ease;
  content: url("assets/icons/arrows/up-right.svg");
}

#cssmenu .no-arrow .external-link:after {
  content: none!important;
}

/* #menu */

.open {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.sidenav {
  text-align: left;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
  left: -100vw;
  position: fixed;
  z-index: 40;
  top: 0;
  transition: 0.5s;
  background-color: #0053a1;
  background-image: url("assets/images/colosseo.png");
  background-position: right 5px bottom 10px;
  background-repeat: no-repeat;
}

.open .sidenav {
  left: 0;
}

/*     
.sidenav-wrapper{
	display: none;
}
.open .sidenav-wrapper {
	display: block;
	background-color: $black;
	opacity: 0.6;
	z-index: 998;
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	@media (min-width: 768px) { 
		display: none;
	}
} */

#hamburger {
  cursor: pointer;
  margin-left: 20px;
}

#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: white;
  margin-bottom: 4px;
  transition: 0.25s ease-in-out;
}

#hamburger span:last-child {
  margin-bottom: 0;
}

.open #hamburger span:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 0;
}

.open #hamburger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.open #hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -16px;
}

#mobile-menu li {
  display: block;
}

#mobile-menu li > a {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#mobile-menu li > a > span {
  pointer-events: none;
  /* fix propagating click */
  display: block;
}

#mobile-menu li.vertical > a:after {
  transition: 0.6s ease;
  content: url("assets/icons/chevron/down.svg");
  filter: invert(99%) sepia(79%) saturate(80%) hue-rotate(153deg)
				brightness(119%) contrast(100%);
}

#mobile-menu li.vertical-active > a:after {
  transform: rotate(-180deg);
}

#mobile-menu .vertical {
  overflow: hidden;
  position: relative;
}

#mobile-menu .vertical > div {
  height: auto;
  max-height: 0;
  transition: max-height 500ms linear;
}

#mobile-menu .vertical-active > div {
  max-height: 600px;
}

#mobile-menu .vertical div a {
  margin-left: 20px;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}

#mobile-menu .panel > div {
  height: 100vh;
  width: 100vw;
  left: -100vw;
  position: fixed;
  z-index: 41;
  top: 0;
  overflow-x: hidden;
  transition: 0.5s;
  background-color: #0053a1;
  padding-left: 16px;
  padding-right: 16px;
}

#mobile-menu .panel > a:after {
  transition: 0.6s ease;
  content: url("assets/icons/arrows/right.svg");
  filter: invert(99%) sepia(79%) saturate(80%) hue-rotate(153deg)
				brightness(119%) contrast(100%);
}

#mobile-menu .panel-active > div {
  left: 0;
}

#mobile-menu .panel-back:before {
  margin-right: 8px;
  transition: 0.6s ease;
  content: url("assets/icons/arrows/left.svg");
  filter: invert(99%) sepia(79%) saturate(80%) hue-rotate(153deg)
				brightness(119%) contrast(100%);
}

#mobile-menu .external-link:after {
  transition: 0.6s ease;
  content: url("assets/icons/arrows/up-right.svg");
  filter: invert(99%) sepia(79%) saturate(80%) hue-rotate(153deg)
				brightness(119%) contrast(100%);
}

#mobile-menu .no-arrow .external-link:after {
  content: none!important;
}

/**
 * The line above injects the WordPress file header. It needs to be first,
 * before this comment.
 */

/**
 * This injects custom `@font-face` rules.
 */

/**
 * Custom `@font-face` rules
 *
 * These will be added immediately before Tailwind’s `base` layer.
 */

@font-face {
  font-family: 'DINNextLTPro-Bold';

  src: url('assets/fonts/dinnextltpro-bold-webfont.woff2') format('woff2'),
         url('assets/fonts/dinnextltpro-bold-webfont.woff') format('woff');

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: 'DINNextLTPro-Medium';

  src: url('assets/fonts/dinnextltpro-medium-webfont.woff2') format('woff2'),
         url('assets/fonts/dinnextltpro-medium-webfont.woff') format('woff');

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: 'DINNextLTPro-Regular';

  src: url('assets/fonts/dinnextltpro-regular-webfont.woff2') format('woff2'),
         url('assets/fonts/dinnextltpro-regular-webfont.woff') format('woff');

  font-weight: normal;

  font-style: normal;
}

/**
 * This injects Tailwind's base styles and any base styles registered by
 * plugins, then adds custom base styles.
 */

/*! tailwindcss v3.2.1 | 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.
*/

html {
  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: DINNextLTPro-Regular;
  /* 4 */
}

/*
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. 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-size: 1em;
  /* 2 */
}

/*
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-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: 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,
[type='button'],
[type='reset'],
[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;
}

/*
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] {
  display: none;
}

[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

h1,
	.h1 {
  font-size: 48px;
  line-height: 52px;
}

@media (min-width: 768px) {
  h1,
	.h1 {
    font-size: 56px;
    line-height: 64px;
  }
}

h2,
	.h2 {
  font-size: 32px;
  line-height: 36px;
}

@media (min-width: 768px) {
  h2,
	.h2 {
    font-size: 48px;
    line-height: 52px;
  }
}

h3,
	.h3 {
  font-size: 24px;
  line-height: 28px;
}

@media (min-width: 768px) {
  h3,
	.h3 {
    font-size: 32px;
    line-height: 36px;
  }
}

h4,
	.h4 {
  font-size: 20px;
  line-height:  24px;
}

@media (min-width: 768px) {
  h4,
	.h4 {
    font-size: 24px;
    line-height: 28px;
  }
}

h5,
	.h5 {
  font-size: 16px;
  line-height: 20px;
}

@media (min-width: 768px) {
  h5,
	.h5 {
    font-size: 20px;
    line-height:  24px;
  }
}

h6,
	.h6 {
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 768px) {
  h6,
	.h6 {
    font-size: 16px;
    line-height: 20px;
  }
}

.body-small {
  font-size: 14px;
  line-height: 18px;
  line-height: 1.25rem;
}

@media (min-width: 768px) {
  .body-small {
    font-size: 16px;
    line-height: 20px;
    line-height: 1.5rem;
  }
}

/* ... */

select {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00024 9L12.0002 15L18.0002 9' stroke='%230053A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

select.form-white {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00024 9L12.0002 15L18.0002 9' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

input[type="text"] {
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(106 106 106 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(106 106 106 / var(--tw-text-opacity));
}

input[type="text"]:-moz-read-only {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(147 147 147 / var(--tw-text-opacity));
}

input[type="text"]:read-only {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(147 147 147 / var(--tw-text-opacity));
}

input[type="text"]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

input[type="checkbox"] {
  margin-right: 0.5rem;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.25rem;
  --tw-border-opacity: 1;
  border-color: rgb(161 209 255 / var(--tw-border-opacity));
}

input[type="checkbox"]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

input[type="checkbox"]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 137 70 / var(--tw-ring-opacity));
  --tw-ring-offset-width: 0px;
}

input[type="checkbox"]:active {
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

input[type="checkbox"]:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(161 209 255 / var(--tw-text-opacity));
}

input[type="radio"] {
  margin-right: 0.5rem;
  height: 1.5rem;
  width: 1.5rem;
  --tw-border-opacity: 1;
  border-color: rgb(161 209 255 / var(--tw-border-opacity));
}

input[type="radio"]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

input[type="radio"]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 137 70 / var(--tw-ring-opacity));
  --tw-ring-offset-width: 0px;
}

input[type="radio"]:active {
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

input[type="radio"]:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(161 209 255 / var(--tw-text-opacity));
}

*, ::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-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:  ;
}

::-webkit-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-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:  ;
}

::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-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:  ;
}

/**
 * Custom styles to immediately follow Tailwind’s `base` layer
 *
 * “Add things like base typography styles [or] opinionated global resets.”
 *
 * — from https://tailwindcss.com/docs/plugins#adding-base-styles
 */

/**
 * This uses the background and foreground colors declared in the
 * `theme.json` file and is applied both to the frontend and in the block
 * editor.
*/

html {
  scroll-behavior: smooth;
}

body {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-family: DINNextLTPro-Regular;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(33 33 33 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 24px;
    line-height: 1.75rem;
  }
}

body.fixed {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  overflow: hidden;
}

.entry-content p:not(.is-block) {
  margin-bottom: 0.75rem;
  font-family: DINNextLTPro-Regular;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.entry-content h3:not(.is-block) {
  margin-bottom: 2rem;
}

.entry-content .wp-block-group .wp-block-group{
  padding: 0 16px;
}

.entry-content .wp-block-table {
  margin-bottom: 2rem;
  box-shadow: 0px 45px 112px rgba(0, 0, 0, 0.06),
			0px 22.7812px 48.825px rgba(0, 0, 0, 0.0405),
			0px 9px 18.2px rgba(0, 0, 0, 0.03),
			0px 1.96875px 6.475px rgba(0, 0, 0, 0.0195);
  border-radius: 10px;
}

.entry-content .wp-block-table table thead tr {
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(118 100 46 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
  text-align: left;
  font-family: DINNextLTPro-Bold;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.entry-content .wp-block-table table th,
			.entry-content .wp-block-table table td {
  padding: 20px;
  border: none;
}

.entry-content .wp-block-table table tbody > tr {
  border: none;
  border-bottom: 1px solid #939393;
}

.entry-content .wp-block-table table tbody > tr:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  font-family: DINNextLTPro-Medium;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

.entry-content .wp-block-table table tbody > tr:last-child {
  border-bottom: none;
}

.copy-menu > li:after {
  margin-left: 2px;
  margin-right: 2px;
  content: "|";
}

.copy-menu > li:last-child:after {
  margin-left: 2px;
  margin-right: 2px;
  content: "";
}

.flip-card {
  background-color: transparent;
  -o-perspective:1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
}

/* This container is needed to position the front and back side */

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Style the back side */

.flip-card-back {
  transform: rotateY(180deg);
}

/* apre clamp */

.is-clamped {
  overflow-y: hidden;
  max-height: 124px;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.is-clamped .dots {
  display: inline;
}

.is-clamped .more {
  display: none;
}

@media (min-width: 768px) {
  .is-clamped {
    max-height: 72px
  }
}

.is-clamped.open {
  max-height: 100rem;
  transition: max-height 0.3s cubic-bezier(0.9, 0, 0.8, 0.2);
}

.is-clamped.open .dots {
  display: none;
}

.is-clamped.open .more {
  display: inline;
}

.has-errors {
  --tw-border-opacity: 1 !important;
  border-color: rgb(197 38 46 / var(--tw-border-opacity)) !important;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_37_29475)'%3E%3Cpath d='M7.99967 14.6667C11.6816 14.6667 14.6663 11.6819 14.6663 8.00004C14.6663 4.31814 11.6816 1.33337 7.99967 1.33337C4.31778 1.33337 1.33301 4.31814 1.33301 8.00004C1.33301 11.6819 4.31778 14.6667 7.99967 14.6667Z' stroke='%23C5262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 5.33337V8.00004' stroke='%23C5262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 10.6666H8.00667' stroke='%23C5262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_37_29475'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: right 16px center;
}

.has-text-align-left > img {
  display: unset;
}

#masthead {
  transition: transform 0.4s;
}

.scroll-down #masthead {
  transform: translate3d(0, -120%, 0);
}

.scroll-up #masthead {
  position: fixed;
  transform: none;
  background-color: white;
  color: black;
  box-shadow: #7c7a7a 1px 1px 5px 0px;
}

.scroll-up #masthead ul {
  color: black;
}

#match-bar {
  position: fixed;
  z-index: 0;
  top: -70px;
  transition: transform 0.4s;
}

@media (min-width: 768px) {
  #match-bar {
    top: -88px
  }
}

.scroll-down #match-bar {
  z-index: 0;
  transform: translate3d(0, -70px, 0);
}

@media (min-width: 768px) {
  .scroll-down #match-bar {
    transform: translate3d(0, -88px, 0)
  }
}

.scroll-up #match-bar {
  top: 70px;
  z-index: 9;
  display: block;
  position: fixed;
}

@media (min-width: 1156px) {
  .scroll-up #match-bar {
    top: 88px
  }
}

#global-progress-bar {
  max-width: 100%;
  overflow: hidden;
}

@-webkit-keyframes decrease-width {
  0% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

@keyframes decrease-width {
  0% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

#global-progress-bar.decreasing {
  -webkit-animation: decrease-width 7s ease-in-out infinite;
          animation: decrease-width 7s ease-in-out infinite;
  width: 0%;
}

#global-progress-bar.reset {
  width: 100%;
}

.progress-bar {
  width: 0%;
  overflow: hidden;
  transition: width 7s ease-in-out;
}

.progress-bar-ext {
  -webkit-animation: scroll 7s;
          animation: scroll 7s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes scroll {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes scroll {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.player-width {
  width: calc(50% - 18px);
}

.score-width {
  width: calc(50% - 90px);
}

@media (min-width: 768px) {
  .score-width {
    width: calc(50% - 112px)
  }
}

.dropdown-icon {
  transition: 0.25s ease-in-out;
}

.active-modal .dropdown-icon {
  transform: rotate(-180deg);
}

.accordion-icon {
  transition: 0.25s ease-in-out;
}

.is-open .accordion-icon {
  transform: rotate(-180deg);
}

@-webkit-keyframes growProgressBar {
  0%,
	33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@keyframes growProgressBar {
  0%,
	33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";

  inherits: false;

  initial-value: 0;
}

div[role="circleprogressbar"] {
  --size: 45px;
  --fg: #0053a1;
  --bg: #ecf5ff;
  --pgPercentage: var(--value);
  -webkit-animation: growProgressBar 3s 1 forwards;
          animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
			closest-side,
			white 80%,
			transparent 0 99.9%,
			white 0
		),
		conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  //font-size: calc(var(--size) / 5);
  //color: var(--fg);
}

#clubs-container {
  --scrollbar-border-thickness: 0px;
  --scrollbar-border-radius: 20px;
  --scrollbar-width: 3px;
  --scrollbar-height: 0px;
  --scrollbar-track-color: #c3c3c3;
  --scrollbar-border-color: #e91e63f2;
  --scrollbar-thumb-color: #a7a7b0;
  --show-double-buttons: none;
}

#clubs-container::-webkit-scrollbar {
  width: var(--scrollbar-width, 20px);
  height: var(--scrollbar-height, 20px);
}

#clubs-container::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color, #3b82f6);
  border: var(--scrollbar-border-thickness, 3px) solid
		var(--scrollbar-border-color, rgb(255, 255, 255));
  border-radius: var(--scrollbar-border-radius, 4px);
}

#clubs-container::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color, #a1a1aa);
  border-radius: var(--scrollbar-border-radius, 4px);
}

#clubs-container::-webkit-scrollbar-corner {
  background: var(--scrollbar-corner-color, #ffffff);
  border: var(--scrollbar-border-thickness, 3px) solid
		var(--scrollbar-border-color, rgb(255, 255, 255));
  border-radius: var(--scrollbar-border-radius, 4px);
}

#clubs-container::-webkit-scrollbar-button:vertical:start:increment {
  display: var(--show-double-buttons, none);
}

.signin-button > div > div > svg {
  height: 56px;
  width: 100%;
}

.wp-block-gallery.has-nested-images {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-image.aligncenter {
  margin: 0 auto;
}

.home-shop-section {
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%), url('assets/images/triangoli_white.jpg'), lightgray 50% / cover no-repeat;
}

p.folder-icon {
  margin-bottom: 10px;
}

p.folder-icon a::before {
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.8531 9.35375L22.7289 5.22958C22.1821 4.68271 21.4398 4.375 20.6668 4.375H10.2077C8.59622 4.375 7.29102 5.68021 7.29102 7.29167V27.7083C7.29102 29.3198 8.59622 30.625 10.2077 30.625H24.791C26.4025 30.625 27.7077 29.3198 27.7077 27.7083V11.4158C27.7077 10.6429 27.4 9.90063 26.8531 9.35375V9.35375Z' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M27.7077 11.6667H21.8743C21.0693 11.6667 20.416 11.0133 20.416 10.2083V4.375' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15.0781 24.1354H19.9198' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.7969 18.5952V16.8919C15.7969 16.4223 16.1775 16.0417 16.6471 16.0417H18.3504C18.82 16.0417 19.2006 16.4223 19.2006 16.8919V18.5952C19.2006 19.0648 18.82 19.4454 18.3504 19.4454H16.6471C16.1775 19.4439 15.7969 19.0633 15.7969 18.5952Z' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.666 25.3998V23.6965C11.666 23.2269 12.0466 22.8463 12.5162 22.8463H14.2196C14.6891 22.8463 15.0698 23.2269 15.0698 23.6965V25.3998C15.0698 25.8694 14.6891 26.25 14.2196 26.25H12.5162C12.0466 26.25 11.666 25.8694 11.666 25.3998Z' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.9297 25.3998V23.6965C19.9297 23.2269 20.3103 22.8463 20.7799 22.8463H22.4832C22.9528 22.8463 23.3334 23.2269 23.3334 23.6965V25.3998C23.332 25.8694 22.9514 26.25 22.4818 26.25H20.7784C20.3103 26.25 19.9297 25.8694 19.9297 25.3998H19.9297Z' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M20.7665 22.8521L18.5645 19.4104' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M14.2324 22.8521L16.4345 19.4104' stroke='%23FF0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
  margin-right: 10px;
}

p.folder-icon a {
  display: flex;
  align-items: center;
}

p.external-link-icon {
  margin-bottom: 10px;
}

p.external-link-icon a {
  display: flex;
  align-items: center;
}

p.external-link-icon a::before {
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7' stroke='%2325282B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 7H17V17' stroke='%2325282B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  margin-right: 10px;
}

.email-icon {
  margin-bottom: 5px;
  align-items: center;
  display: inline-flex;
}

.email-icon::before {
  height:16px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-envelope' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z'/%3E%3C/svg%3E");
  margin-right: 10px;
}

.phone-icon {
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
}

.phone-icon::before {
  height:16px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-telephone' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
  margin-right: 10px;
}

/* newsletter form template */

.col-form {
  margin: 0;
  padding: 0;
  margin-top: 70px;
  border-radius: 43px;
  background-color: white;
  box-shadow: 29.7px 29.7px 80px 0 rgba(0, 0, 0, 0.3);
  border: 13px solid white;
  padding-left: 20px;
  padding-right: 0;
  margin-bottom: 20px;
}

.col-form .tnp-subscription input.tnp-submit {
  width: auto;
  margin: 0;
  display: inline-block;
  float: right;
  background-color: #205ebd !important;
  border: 0;
  outline: none !important;
  border-radius: 43px;
  color: white !important;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  height: 66px;
  padding-left: 80px;
  padding-right: 80px;
  font-size: 16px;
}

.col-form .tnp-subscription input[type=text], .col-form .tnp-subscription input[type=email] {
  background-color: transparent;
}

.col-form .tnp-subscription label, .tnp-profile label{
  display: none;
}

/**
 * This injects Tailwind's component classes and any component classes
 * registered by plugins, then adds custom component classes.
 *
 * The `@import-glob` line imports all CSS files from the `components`
 * directory (except for `components.css`, which is imported on the following
 * line). This is meant to simplify the process of integrating styles from
 * JavaScript components or WordPress plugins.
 */

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
}

@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: 1156px) {
  .container {
    max-width: 1156px;
  }
}

/**
 * Custom styles to immediately follow Tailwind’s `components` layer
 *
 * “Add more opinionated, complex classes like buttons, form controls, alerts,
 * etc; the sort of pre-built components you often see in other frameworks that
 * you might need to override with utility classes.”
 *
 * — from https://tailwindcss.com/docs/plugins#adding-components
 */

/**
 * Post title styles
 *
 * These will be applied to all headings with a `page-title` or `entry-title`
 * class on the frontend and to the post title in the block editor.
 *
 * The supplied styles are meant to match the default `h1` classes from
 * Tailwind Typography.
 *
 * The `$post-title-selector` variable is replaced by PostCSS. Please see the
 * `postcss.config.js` file for details.
 */

/* $(post-title-selector) {
	@apply mx-auto mb-6 max-w-content text-3xl font-extrabold text-neutral-900;
} */

/**
 * Layout styles for centered content areas
 *
 * If you are controlling the width of your content area with styles applied
 * to its container, you can delete the following styles whose selectors begin
 * with `.page-content >` and `.entry-content >`. For more details, please see
 * the following:
 *
 * https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/
 */

/* .page-content > *,
.entry-content > * {
	/* Content width from the `theme.json` file */

/* #@apply mx-auto max-w-content;
} */

.entry-content > .alignwide {
  /* Wide width from the `theme.json` file */
  max-width: 1400px;
}

.entry-content > .alignfull {
  max-width: none;
}

.alignfull {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.entry-content > .alignleft {
  float: left;
  margin-right: 2rem;
}

.entry-content > .alignright {
  float: right;
  margin-left: 2rem;
}

.entry-content > ol {
  padding-left: 24px;
  list-style: auto;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
}

.entry-content > ul {
  padding-left: 24px;
  list-style: disc;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
}

#ultimi-aggiornamenti:before {
  height: 24px;
  margin-right: 8px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.9361 13.4318C20.1744 17.9511 16.1378 21.176 11.5618 20.921C6.98589 20.666 3.33256 17.0127 3.0776 12.4368C2.82263 7.86081 6.04749 3.82424 10.5668 3.0625' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.4994 8.79688C20.6966 9.32668 20.843 9.87404 20.9366 10.4316' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.0052 6.19364C18.6442 5.75669 18.2426 5.35505 17.8057 4.99414' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.2021 3.50055C14.6723 3.3029 14.125 3.15617 13.5674 3.06237' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.0022 12.3893H11.6094V6.99609' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#ultimi-aggiornamenti.active {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  font-family: DINNextLTPro-Bold;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

#ultimi-aggiornamenti.active:before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.9361 13.4318C20.1744 17.9511 16.1378 21.176 11.5618 20.921C6.98589 20.666 3.33256 17.0127 3.0776 12.4368C2.82263 7.86081 6.04749 3.82424 10.5668 3.0625' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.4994 8.79688C20.6966 9.32668 20.843 9.87404 20.9366 10.4316' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.0052 6.19364C18.6442 5.75669 18.2426 5.35505 17.8057 4.99414' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.2021 3.50055C14.6723 3.3029 14.125 3.15617 13.5674 3.06237' stroke='%230053A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.0022 12.3893H11.6094V6.99609' stroke='%230053A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
}

#ultimi-aggiornamenti.active:after {
  position: absolute;
  right: 0;
  height: 38px;
  width: 3px;
  content: "";
  border-radius: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

#document-tree > li {
  white-space: nowrap;
  margin-bottom: 12px;
}

#document-tree > li:before {
  margin-right: 4px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 16L14 12L10 8' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%3C/svg%3E%0A");
}

#document-tree > li > a {
  display: inline-flex;
  white-space: normal;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

#document-tree > li > a:before {
  margin-right: 8px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 11.2716V8.94C20 7.83543 19.1046 6.94 18 6.94H12.5291C12.1981 6.94 11.8886 6.7762 11.7024 6.50253L10.2974 4.43747C10.1111 4.16379 9.80157 3.99999 9.47054 4H5C3.89543 4 3 4.89543 3 6V18.5C3 19.3284 3.67157 20 4.5 20V20C5.32843 20 6 19.3284 6 18.5V13C6 11.8954 6.89543 11 8 11H19C20.1046 11 21 11.8954 21 13V18C21 19.1046 20.1046 20 19 20H4.5' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-tree > li.open:before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10L12 14L16 10' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-tree > li.open > a:before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.9992 11H4.00099C3.39435 11 2.8205 11.2753 2.44091 11.7485C2.06132 12.2218 1.91702 12.8417 2.04862 13.4339L3.15973 18.4339C3.36308 19.3489 4.1747 20 5.1121 20H18.7579C19.6769 20 20.4776 19.3738 20.699 18.4819L21.9403 13.4819C22.0885 12.8847 21.9537 12.2525 21.5746 11.7679C21.1955 11.2832 20.6145 11 19.9992 11Z' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21 11.2714V8.94C21 7.83543 20.1046 6.94 19 6.94H12.5291C12.1981 6.94 11.8886 6.7762 11.7024 6.50253L10.2974 4.43747C10.1111 4.16379 9.80157 3.99999 9.47054 4H5C3.89543 4 3 4.89543 3 6V11.2714' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-tree > li.cat-item .children {
  display: none;
  padding-left: 34px;
}

#document-tree > li.cat-item .children li {
  position: relative;
}

#document-tree > li.cat-item .children li > a {
  margin-right: 1.75rem;
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
}

#document-tree > li.cat-item .children li > a:before {
  margin-right: 8px;
  height: 24px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.0028 6.93733H12.5291C12.1967 6.93749 11.8859 6.77254 11.6997 6.49714L10.2991 4.43328C10.1123 4.15902 9.80164 3.99526 9.46979 3.9961H4.99693C3.8919 3.9961 2.99609 4.8919 2.99609 5.99693V18.0019C2.99609 19.107 3.8919 20.0028 4.99693 20.0028H19.0028C20.1078 20.0028 21.0036 19.107 21.0036 18.0019V8.93816C21.0036 7.83313 20.1078 6.93733 19.0028 6.93733Z' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.99609 9.87873H9.46979C9.80058 9.87857 10.1099 9.71492 10.2961 9.44154L11.6967 7.37568C11.8829 7.10163 12.1927 6.93755 12.5241 6.9375' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-tree > li.cat-item .children li.active > a {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  font-family: DINNextLTPro-Bold;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

#document-tree > li.cat-item .children li.active > a:before {
  margin-right: 8px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.0028 6.93733H12.5291C12.1967 6.93749 11.8859 6.77254 11.6997 6.49714L10.2991 4.43328C10.1123 4.15902 9.80164 3.99526 9.46979 3.9961H4.99693C3.8919 3.9961 2.99609 4.8919 2.99609 5.99693V18.0019C2.99609 19.107 3.8919 20.0028 4.99693 20.0028H19.0028C20.1078 20.0028 21.0036 19.107 21.0036 18.0019V8.93816C21.0036 7.83313 20.1078 6.93733 19.0028 6.93733Z' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.99609 9.87873H9.46979C9.80058 9.87857 10.1099 9.71492 10.2961 9.44154L11.6967 7.37568C11.8829 7.10163 12.1927 6.93755 12.5241 6.9375' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-tree > li.cat-item .children li.active > a:after {
  position: absolute;
  right: 0;
  height: 38px;
  width: 3px;
  content: "";
  border-radius: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

#document-tree > li.cat-item.open .children {
  display: block;
}

#document-subtree > li {
  white-space: nowrap;
  margin-bottom: 32px;
}

#document-subtree > li:before {
  margin-right: 4px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%230053A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-subtree > li > a {
  display: inline-flex;
  white-space: normal;
  font-family: DINNextLTPro-Bold;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

#document-subtree > li > a:before {
  margin-right: 8px;
  content: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.0028 7.93733H13.5291C13.1967 7.93749 12.8859 7.77254 12.6997 7.49714L11.2991 5.43328C11.1123 5.15902 10.8016 4.99526 10.4698 4.9961H5.99693C4.8919 4.9961 3.99609 5.8919 3.99609 6.99693V19.0019C3.99609 20.107 4.8919 21.0028 5.99693 21.0028H20.0028C21.1078 21.0028 22.0036 20.107 22.0036 19.0019V9.93816C22.0036 8.83313 21.1078 7.93733 20.0028 7.93733Z' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.99609 10.8787H10.4698C10.8006 10.8786 11.1099 10.7149 11.2961 10.4415L12.6967 8.37568C12.8829 8.10163 13.1927 7.93755 13.5241 7.9375' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
}

#document-subtree > li > a > span {
  margin-left: 0.75rem;
  height: 1.75rem;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(161 209 255 / var(--tw-bg-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-family: DINNextLTPro-Bold;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

#document-subtree > li.open:before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%230053A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#document-subtree > li.open > a:before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.9992 11H4.00099C3.39435 11 2.8205 11.2753 2.44091 11.7485C2.06132 12.2218 1.91702 12.8417 2.04862 13.4339L3.15973 18.4339C3.36308 19.3489 4.1747 20 5.1121 20H18.7579C19.6769 20 20.4776 19.3738 20.699 18.4819L21.9403 13.4819C22.0885 12.8847 21.9537 12.2525 21.5746 11.7679C21.1955 11.2832 20.6145 11 19.9992 11Z' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21 11.2714V8.94C21 7.83543 20.1046 6.94 19 6.94H12.5291C12.1981 6.94 11.8886 6.7762 11.7024 6.50253L10.2974 4.43747C10.1111 4.16379 9.80157 3.99999 9.47054 4H5C3.89543 4 3 4.89543 3 6V11.2714' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
}

#document-subtree > li.subcat-item .children {
  display: none;
  padding-left: 34px;
}

#document-subtree > li.subcat-item .children li {
  margin-top: 20px;
  position: relative;
}

#document-subtree > li.subcat-item .children li > a {
  margin-right: 1.75rem;
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-family: DINNextLTPro-Medium;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  line-height: 1.5rem;
}

#document-subtree > li.subcat-item .children li > a:before {
  margin-right: 8px;
  height: 24px;
  content: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.0028 7.93733H13.5291C13.1967 7.93749 12.8859 7.77254 12.6997 7.49714L11.2991 5.43328C11.1123 5.15902 10.8016 4.99526 10.4698 4.9961H5.99693C4.8919 4.9961 3.99609 5.8919 3.99609 6.99693V19.0019C3.99609 20.107 4.8919 21.0028 5.99693 21.0028H20.0028C21.1078 21.0028 22.0036 20.107 22.0036 19.0019V9.93816C22.0036 8.83313 21.1078 7.93733 20.0028 7.93733Z' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.99609 10.8787H10.4698C10.8006 10.8786 11.1099 10.7149 11.2961 10.4415L12.6967 8.37568C12.8829 8.10163 13.1927 7.93755 13.5241 7.9375' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
}

#document-subtree > li.subcat-item .children li > a > span {
  margin-left: 0.75rem;
  height: 1.75rem;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(161 209 255 / var(--tw-bg-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-family: DINNextLTPro-Bold;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

#document-subtree > li.subcat-item.open .children {
  display: block;
}

#widget-document-tree > li {
  position: relative;
}

#widget-document-tree > li > a {
  margin-right: 1.75rem;
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
}

#widget-document-tree > li > a:before {
  margin-right: 8px;
  height: 24px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.0028 6.93733H12.5291C12.1967 6.93749 11.8859 6.77254 11.6997 6.49714L10.2991 4.43328C10.1123 4.15902 9.80164 3.99526 9.46979 3.9961H4.99693C3.8919 3.9961 2.99609 4.8919 2.99609 5.99693V18.0019C2.99609 19.107 3.8919 20.0028 4.99693 20.0028H19.0028C20.1078 20.0028 21.0036 19.107 21.0036 18.0019V8.93816C21.0036 7.83313 20.1078 6.93733 19.0028 6.93733Z' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.99609 9.87873H9.46979C9.80058 9.87857 10.1099 9.71492 10.2961 9.44154L11.6967 7.37568C11.8829 7.10163 12.1927 6.93755 12.5241 6.9375' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#widget-document-tree > li.active > a {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  font-family: DINNextLTPro-Bold;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

#widget-document-tree > li.active > a:before {
  margin-right: 8px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.0028 6.93733H12.5291C12.1967 6.93749 11.8859 6.77254 11.6997 6.49714L10.2991 4.43328C10.1123 4.15902 9.80164 3.99526 9.46979 3.9961H4.99693C3.8919 3.9961 2.99609 4.8919 2.99609 5.99693V18.0019C2.99609 19.107 3.8919 20.0028 4.99693 20.0028H19.0028C20.1078 20.0028 21.0036 19.107 21.0036 18.0019V8.93816C21.0036 7.83313 20.1078 6.93733 19.0028 6.93733Z' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.99609 9.87873H9.46979C9.80058 9.87857 10.1099 9.71492 10.2961 9.44154L11.6967 7.37568C11.8829 7.10163 12.1927 6.93755 12.5241 6.9375' stroke='%2300539F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#widget-document-tree > li.active > a:after {
  position: absolute;
  right: 0;
  height: 38px;
  width: 3px;
  content: "";
  border-radius: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

#widget-document-tree > li.cat-item.open .children {
  display: block;
}

.cat-item-none {
  display: flex;
}

#spalla {
  text-align: left;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  right: -100vw;
  position: fixed;
  z-index: 40;
  top: 0;
  transition: 0.5s;
}

@media (min-width: 460px) {
  #spalla {
    right: -50vw;
    width: 50vw
  }
}

#spalla.open {
  right: 0;
}

#backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 39;
}

.wp-block-quote > p {
  margin-left: 5rem;
  margin-top: -2.5rem;
  font-size: 24px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .wp-block-quote > p {
    font-size: 32px;
    line-height: 36px;
  }
}

.wp-block-quote:before {
  content: url("assets/images/quote.svg");
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  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: 500ms;
}

.btn-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 62 120 / var(--tw-bg-opacity));
}

.btn-primary:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #9F8946;
}

.btn-primary:active {
  --tw-bg-opacity: 1;
  background-color: rgb(0 41 79 / var(--tw-bg-opacity));
}

.btn-primary:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(161 209 255 / var(--tw-text-opacity));
}

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

.btn-primary-white {
  display: inline-flex;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-primary-white:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

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

.btn-secondary {
  display: inline-flex;
  white-space: nowrap;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
  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: 500ms;
}

.btn-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

.btn-secondary:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #9F8946;
}

.btn-secondary:active {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

.btn-secondary:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(161 209 255 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .btn-secondary {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
    line-height: 24px;
  }
}

.btn-secondary-white {
  display: inline-flex;
  white-space: nowrap;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  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: 500ms;
}

.btn-secondary-white:hover {
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.25;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-secondary-white:focus {
  border-width: 0px;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.25;
  outline-style: solid;
  outline-width: 2px;
  outline-color: #9F8946;
}

.btn-secondary-white:active {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.25;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.btn-secondary-white:disabled {
  border-width: 0px;
  --tw-bg-opacity: 0.25;
}

@media (min-width: 768px) {
  .btn-secondary-white {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
    line-height: 24px;
  }
}

.btn-tertiary {
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.25rem;
  background-color: transparent;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(118 100 46 / var(--tw-text-opacity));
  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: 500ms;
}

.btn-tertiary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 243 209 / var(--tw-bg-opacity));
}

.btn-tertiary:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #4D411A;
}

.btn-tertiary:active {
  --tw-bg-opacity: 1;
  background-color: rgb(241 214 132 / var(--tw-bg-opacity));
}

.btn-tertiary:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(255 252 243 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(200 175 99 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .btn-tertiary {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
    line-height: 24px;
  }
}

.btn-tertiary-white {
  display: inline-flex;
  white-space: nowrap;
  border-radius: 0.25rem;
  background-color: transparent;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 16px;
  line-height: 20px;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  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: 500ms;
}

.btn-tertiary-white:disabled {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .btn-tertiary-white {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
    line-height: 24px;
  }
}

.card {
  margin-right: 1rem;
  width: 290px;
  --tw-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  --tw-shadow-colored: 0 3px 8px 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) {
  .card {
    margin-right: 1.5rem;
    width: 360px;
  }
}

.card-video {
  margin-right: 1rem;
  height: 240px;
  width: 300px;
  border-radius: 0.25rem;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .card-video {
    margin-right: 1.25rem;
    height: 480px;
    width: 744px;
  }
}

.card-video-small {
  margin-right: 1rem;
  height: 240px;
  width: 300px;
  border-radius: 0.25rem;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .card-video-small {
    margin-right: 1.25rem;
    height: 228px;
    width: 360px;
  }
}

.card-video-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-top: auto;
  width: 75%;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: DINNextLTPro-Medium;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 768px) {
  .card-video-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.card-date {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 20px;
  background-color: rgb(118 100 46 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.8;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .card-date {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 14px;
    line-height: 18px;
    line-height: 1.75rem;
  }
}

/*** definitivi */

.tag {
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 14px;
  line-height: 18px;
  line-height: 1rem;
}

.tag:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/** news page grid */

.news-card {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
  padding: 1rem;
  --tw-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0 4px 20px 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) {
  .news-card {
    padding: 0px;
  }
}

.news-card-bg {
  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));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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: 300ms;
}

.group:hover .news-card-bg {
  --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));
}

.news-card-bg.featured {
  height: 99px;
  width: 140px;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .news-card-bg.featured {
    height: 328px;
    width: 100%;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

.news-card-bg.standard {
  aspect-ratio: 12 / 7;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .news-card-bg.standard {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

.news-card-title {
  order: 1;
}

@media (min-width: 768px) {
  .news-card-title {
    order: 2;
  }

  .news-card-title.standard {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
  }

  .news-card-title.featured {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1.5rem;
    font-size: 24px;
    line-height: 28px;
    line-height: 1.75rem;
  }
}

/**match-card full **/

.match-card-full {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  --tw-shadow: 0px 8px 8px rgba(0, 0, 0, 0.12);
  --tw-shadow-colored: 0px 8px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  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: 300ms;
}

.match-card-full:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

@media (min-width: 768px) {
  .match-card-full {
    margin-bottom: 1rem;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

/*tabs */

.tab-item {
  border-bottom-width: 1px;
  border-color: rgb(45 45 45 / var(--tw-border-opacity));
  --tw-border-opacity: 0.2;
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

.tab-item:hover {
  border-top-right-radius: 0.125rem;
  border-top-left-radius: 0.125rem;
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

.tab-item:focus {
  border-radius: 0.5rem;
  --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);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 137 70 / var(--tw-ring-opacity));
}

.tab-item.tab-item-active {
  pointer-events: none;
  border-bottom-width: 3px;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
  --tw-border-opacity: 1;
  font-family: DINNextLTPro-Bold;
  font-weight: 700;
}

/*news tab */

.news-tab-item {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-text-opacity: 0.3;
  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-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.news-tab-item:hover {
  font-family: DINNextLTPro-Bold;
  font-weight: 700;
  --tw-text-opacity: 1;
}

.news-tab-item:hover:after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 75%;
  --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));
  border-bottom-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(134 116 58 / var(--tw-border-opacity));
  content: '';
}

.news-tab-item.news-tab-item-active {
  font-family: DINNextLTPro-Medium;
  font-weight: 500;
  --tw-text-opacity: 1;
}

.news-tab-item.news-tab-item-active:after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 75%;
  --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));
  border-bottom-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(134 116 58 / var(--tw-border-opacity));
  content: '';
}

/** micromodal ***/

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
		helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .modal__overlay {
    align-items: center
  }
}

.modal__container {
  background-color: #fff;
  width: 100%;
  padding: 24px 40px;
  max-height: 80%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0px 8px 16px rgba(142, 141, 208, 0.12);
  overflow-y: auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .modal__container {
    max-width: 600px;
    min-height: auto;
    border-radius: 8px
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
}

.modal__btn {
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/** flatpkr **/

.flatpickr-calendar {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6,
		0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth
	.flatpickr-days
	.dayContainer:nth-child(n + 1)
	.flatpickr-day.inRange:nth-child(7n + 7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth
	.flatpickr-days
	.dayContainer:nth-child(n + 2)
	.flatpickr-day.inRange:nth-child(7n + 1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
  /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/

/*
      /*rtl:end:ignore*/

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
  /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/

/*
      /*rtl:end:ignore*/

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month
	.flatpickr-monthDropdown-months
	.flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.toastify {
  padding: 16px;
  display: flex;
  position: fixed;
  align-items: flex-start;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
  color: #212121;
}

.toastify > div {
  padding: 0 50px 0 10px;
}

.avatar {
  border-radius: 100%;
}

.toastify.on {
  opacity: 1;
}

.toastify.info:before {
  margin-top: 5px;
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_44_6815)'%3E%3Cpath d='M10.0003 18.3333C14.6027 18.3333 18.3337 14.6024 18.3337 9.99999C18.3337 5.39762 14.6027 1.66666 10.0003 1.66666C5.39795 1.66666 1.66699 5.39762 1.66699 9.99999C1.66699 14.6024 5.39795 18.3333 10.0003 18.3333Z' stroke='%230053A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 13.3333V10' stroke='%230053A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 6.66666H10.0083' stroke='%230053A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_44_6815'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.toastify.info {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
}

.toastify.success:before {
  margin-top: 5px;
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_44_6837)'%3E%3Cpath d='M18.3337 9.23336V10C18.3326 11.797 17.7507 13.5456 16.6748 14.9849C15.5988 16.4242 14.0864 17.4771 12.3631 17.9866C10.6399 18.4961 8.79804 18.4349 7.11238 17.8122C5.42673 17.1894 3.98754 16.0384 3.00946 14.5309C2.03138 13.0234 1.56682 11.2401 1.68506 9.44696C1.80329 7.65383 2.498 5.94697 3.66556 4.58092C4.83312 3.21488 6.41098 2.26285 8.16382 1.86682C9.91665 1.47079 11.7505 1.65198 13.392 2.38336' stroke='%230E7D5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3333 3.33331L10 11.675L7.5 9.17498' stroke='%230E7D5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_44_6837'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.toastify.success {
  border: 1px solid #0e7d5c;
  background: #f1fff4;
}

.toastify.error:before {
  margin-top: 5px;
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.57465 3.21665L1.51632 15C1.37079 15.252 1.29379 15.5377 1.29298 15.8288C1.29216 16.1198 1.36756 16.4059 1.51167 16.6588C1.65579 16.9116 1.86359 17.1223 2.11441 17.2699C2.36523 17.4174 2.65032 17.4968 2.94132 17.5H17.058C17.349 17.4968 17.6341 17.4174 17.8849 17.2699C18.1357 17.1223 18.3435 16.9116 18.4876 16.6588C18.6317 16.4059 18.7071 16.1198 18.7063 15.8288C18.7055 15.5377 18.6285 15.252 18.483 15L11.4247 3.21665C11.2761 2.97174 11.0669 2.76925 10.8173 2.62872C10.5677 2.48819 10.2861 2.41437 9.99965 2.41437C9.71321 2.41437 9.43159 2.48819 9.18199 2.62872C8.93238 2.76925 8.72321 2.97174 8.57465 3.21665V3.21665Z' stroke='%23C5262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 7.5V10.8333' stroke='%23C5262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 14.1667H10.0083' stroke='%23C5262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.toastify.error {
  border: 1px solid #c5262e;
  background: #fff5f5;
}

.toast-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-right,
	.toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.accordion-content {
  max-height: 0;
  transition: max-height 0.35s;
}

.accordion input:checked ~ .accordion-content {
  max-height: 100em;
}

/**
 * This injects Tailwind's utility classes and any utility classes registered
 * by plugins, then adds custom utility classes.
 */

.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;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.-top-32 {
  top: -8rem;
}

.-left-6 {
  left: -1.5rem;
}

.left-0 {
  left: 0px;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.top-1\/2 {
  top: 50%;
}

.left-1\/2 {
  left: 50%;
}

.bottom-0 {
  bottom: 0px;
}

.top-1 {
  top: 0.25rem;
}

.bottom-4 {
  bottom: 1rem;
}

.right-4 {
  right: 1rem;
}

.bottom-32 {
  bottom: 8rem;
}

.left-2\/3 {
  left: 66.666667%;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.order-2 {
  order: 2;
}

.order-1 {
  order: 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

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

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-\[6px\] {
  margin-top: 6px;
  margin-bottom: 6px;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-\[30px\] {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-\[9px\] {
  margin-top: 9px;
  margin-bottom: 9px;
}

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

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.-ml-10 {
  margin-left: -2.5rem;
}

.mt-auto {
  margin-top: auto;
}

.mt-40 {
  margin-top: 10rem;
}

.mb-40 {
  margin-bottom: 10rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mt-28 {
  margin-top: 7rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-\[10px\] {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

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

.mt-16 {
  margin-top: 4rem;
}

.\!ml-0 {
  margin-left: 0px !important;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-60 {
  margin-top: 15rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-\[10px\] {
  margin-right: 10px;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.-mt-4 {
  margin-top: -1rem;
}

.-ml-12 {
  margin-left: -3rem;
}

.\!mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-\[33\%\] {
  margin-left: 33%;
}

.mr-14 {
  margin-right: 3.5rem;
}

.\!mb-0 {
  margin-bottom: 0px !important;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-auto {
  margin-right: auto;
}

.mt-\[2px\] {
  margin-top: 2px;
}

.mt-6px {
  margin-top: 6px;
}

.mb-\[48px\] {
  margin-bottom: 48px;
}

.ml-10px {
  margin-left: 10px;
}

.mb-\[6px\] {
  margin-bottom: 6px;
}

.mt-\[50px\] {
  margin-top: 50px;
}

.ml-\[41px\] {
  margin-left: 41px;
}

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.\!flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-sponsor {
  aspect-ratio: 2 / 1;
}

.aspect-quattroterzi {
  aspect-ratio: 4 / 3;
}

.aspect-\[3\/2\] {
  aspect-ratio: 3/2;
}

.aspect-news {
  aspect-ratio: 4 / 2.5;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3/4;
}

.h-px {
  height: 1px;
}

.h-7 {
  height: 1.75rem;
}

.h-full {
  height: 100%;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-20 {
  height: 5rem;
}

.h-8 {
  height: 2rem;
}

.h-40 {
  height: 10rem;
}

.h-5 {
  height: 1.25rem;
}

.h-heromobile {
  height: 627px;
}

.h-gradient {
  height: 270px;
}

.h-2 {
  height: 0.5rem;
}

.h-38 {
  height: 156px;
}

.h-22 {
  height: 88px;
}

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

.h-14 {
  height: 3.5rem;
}

.h-9 {
  height: 2.25rem;
}

.h-card {
  height: 266px;
}

.h-16 {
  height: 4rem;
}

.h-promo {
  height: 493px;
}

.h-4 {
  height: 1rem;
}

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

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

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

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

.h-newsmobile {
  height: 630px;
}

.h-18 {
  height: 72px;
}

.h-mobilemenu {
  height: calc(100vh - 200px);
}

.max-h-card {
  max-height: 266px;
}

.max-h-full {
  max-height: 100%;
}

.max-h-15 {
  max-height: 62px;
}

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

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

.min-h-18 {
  min-height: 72px;
}

.w-full {
  width: 100%;
}

.w-28 {
  width: 7rem;
}

.w-auto {
  width: auto;
}

.w-20 {
  width: 5rem;
}

.w-12 {
  width: 3rem;
}

.w-\[50px\] {
  width: 50px;
}

.w-32 {
  width: 8rem;
}

.w-\[70px\] {
  width: 70px;
}

.w-10 {
  width: 2.5rem;
}

.w-7 {
  width: 1.75rem;
}

.\!w-0 {
  width: 0px !important;
}

.w-5 {
  width: 1.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-8 {
  width: 2rem;
}

.w-\[78px\] {
  width: 78px;
}

.w-0 {
  width: 0px;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-\[52px\] {
  width: 52px;
}

.w-40 {
  width: 10rem;
}

.w-cardmobile {
  width: 290px;
}

.w-\[100\%\] {
  width: 100%;
}

.w-\[75\%\] {
  width: 75%;
}

.w-\[60\%\] {
  width: 60%;
}

.w-56 {
  width: 14rem;
}

.w-px {
  width: 1px;
}

.w-4 {
  width: 1rem;
}

.w-card {
  width: 360px;
}

.w-\[73px\] {
  width: 73px;
}

.w-48 {
  width: 12rem;
}

.w-\[122px\] {
  width: 122px;
}

.w-\[456px\] {
  width: 456px;
}

.max-w-\[460px\] {
  max-width: 460px;
}

.max-w-\[1344px\] {
  max-width: 1344px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-15 {
  max-width: 62px;
}

.max-w-\[286px\] {
  max-width: 286px;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.basis-full {
  flex-basis: 100%;
}

.basis-1\/2 {
  flex-basis: 50%;
}

.translate-y-1\/2 {
  --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));
}

.-translate-x-1\/2 {
  --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));
}

.translate-y-6 {
  --tw-translate-y: 1.5rem;
  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));
}

.translate-x-6 {
  --tw-translate-x: 1.5rem;
  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));
}

.-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));
}

.translate-y-10 {
  --tw-translate-y: 2.5rem;
  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));
}

.-translate-y-1\/2 {
  --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));
}

.transform {
  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));
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.columns-2 {
  -moz-columns: 2;
       columns: 2;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

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

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-y-\[21px\] {
  row-gap: 21px;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

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

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

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

.rounded-tr-20 {
  border-top-right-radius: 20px;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.\!border-0 {
  border-width: 0px !important;
}

.border-2 {
  border-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-r {
  border-right-width: 1px;
}

.border-dashed {
  border-style: dashed;
}

.border-none {
  border-style: none;
}

.border-stroke {
  --tw-border-opacity: 1;
  border-color: rgb(86 86 86 / var(--tw-border-opacity));
}

.border-E5E5E5 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}

.border-gold {
  --tw-border-opacity: 1;
  border-color: rgb(159 137 70 / var(--tw-border-opacity));
}

.border-grafite {
  --tw-border-opacity: 1;
  border-color: rgb(45 45 45 / var(--tw-border-opacity));
}

.border-medal {
  --tw-border-opacity: 1;
  border-color: rgb(134 116 58 / var(--tw-border-opacity));
}

.border-\[\#6A6A6A\] {
  --tw-border-opacity: 1;
  border-color: rgb(106 106 106 / var(--tw-border-opacity));
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}

.border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

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

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

.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.border-primary-100 {
  --tw-border-opacity: 1;
  border-color: rgb(161 209 255 / var(--tw-border-opacity));
}

.border-lightgrey {
  --tw-border-opacity: 1;
  border-color: rgb(201 200 211 / var(--tw-border-opacity));
}

.border-x-primary-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(236 245 255 / var(--tw-border-opacity));
  border-right-color: rgb(236 245 255 / var(--tw-border-opacity));
}

.border-opacity-50 {
  --tw-border-opacity: 0.5;
}

.border-opacity-60 {
  --tw-border-opacity: 0.6;
}

.bg-gold {
  --tw-bg-opacity: 1;
  background-color: rgb(159 137 70 / var(--tw-bg-opacity));
}

.bg-tertiary {
  --tw-bg-opacity: 1;
  background-color: rgb(118 100 46 / var(--tw-bg-opacity));
}

.bg-primary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(161 209 255 / var(--tw-bg-opacity));
}

.bg-medal {
  --tw-bg-opacity: 1;
  background-color: rgb(134 116 58 / var(--tw-bg-opacity));
}

.bg-grafite {
  --tw-bg-opacity: 1;
  background-color: rgb(45 45 45 / var(--tw-bg-opacity));
}

.bg-primary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 245 255 / var(--tw-bg-opacity));
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

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

.bg-transparent {
  background-color: transparent;
}

.bg-primary-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 62 120 / var(--tw-bg-opacity));
}

.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgb(221 5 43 / var(--tw-bg-opacity));
}

.bg-\[\#EFEFEF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-tertiary-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(56 56 56 / var(--tw-bg-opacity));
}

.bg-tertiary-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(159 137 70 / var(--tw-bg-opacity));
}

.bg-\[\#E5E5E5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
}

.bg-\[\#665b39\] {
  --tw-bg-opacity: 1;
  background-color: rgb(102 91 57 / var(--tw-bg-opacity));
}

.bg-\[\#F2F2F2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-\[\#1877F2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(24 119 242 / var(--tw-bg-opacity));
}

.bg-opacity-40 {
  --tw-bg-opacity: 0.4;
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.bg-opacity-60 {
  --tw-bg-opacity: 0.6;
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}

.bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}

.bg-opacity-0 {
  --tw-bg-opacity: 0;
}

.bg-\[url\(\'assets\/images\/bg31\.png\'\)\] {
  background-image: url('assets/images/bg31.png');
}

.bg-\[url\(\'assets\/images\/sample\.jpg\'\)\] {
  background-image: url('assets/images/sample.jpg');
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-\[url\(\'assets\/images\/bg22\.png\'\)\] {
  background-image: url('assets/images/bg22.png');
}

.bg-\[url\(\'assets\/images\/video1\.png\'\)\] {
  background-image: url('assets/images/video1.png');
}

.bg-\[url\(\'assets\/images\/video2\.png\'\)\] {
  background-image: url('assets/images/video2.png');
}

.bg-\[url\(\'assets\/images\/bg22mob\.png\'\)\] {
  background-image: url('assets/images/bg22mob.png');
}

.bg-\[url\(\'assets\/images\/triangoli_white\.jpg\'\)\] {
  background-image: url('assets/images/triangoli_white.jpg');
}

.bg-\[url\(\'assets\/images\/team_bg_mob\.png\'\)\] {
  background-image: url('assets/images/team_bg_mob.png');
}

.from-transparent {
  --tw-gradient-from: transparent;
  --tw-gradient-to: rgb(0 0 0 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black {
  --tw-gradient-from: #000;
  --tw-gradient-to: rgb(0 0 0 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-gradient {
  --tw-gradient-to: #00539f;
}

.to-black {
  --tw-gradient-to: #000;
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-center {
  background-position: center;
}

.bg-right-top {
  background-position: right top;
}

.bg-left {
  background-position: left;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.fill-gray-100 {
  fill: #f3f4f6;
}

.fill-primary {
  fill: #0053A1;
}

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

.p-4 {
  padding: 1rem;
}

.p-\[12px\] {
  padding: 12px;
}

.\!p-0 {
  padding: 0px !important;
}

.p-6 {
  padding: 1.5rem;
}

.p-12 {
  padding: 3rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

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

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

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}

.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-\[42px\] {
  padding-top: 42px;
  padding-bottom: 42px;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-\[6px\] {
  padding-left: 6px;
  padding-right: 6px;
}

.py-\[18px\] {
  padding-top: 18px;
  padding-bottom: 18px;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pt-\[30px\] {
  padding-top: 30px;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.\!pl-0 {
  padding-left: 0px !important;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-\[10px\] {
  padding-bottom: 10px;
}

.pt-\[6px\] {
  padding-top: 6px;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pt-\[38px\] {
  padding-top: 38px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-\[46px\] {
  padding-top: 46px;
}

.pb-\[52px\] {
  padding-bottom: 52px;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pt-\[326px\] {
  padding-top: 326px;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-36 {
  padding-top: 9rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-24 {
  padding-top: 6rem;
}

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

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

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

.font-medium {
  font-family: DINNextLTPro-Medium;
}

.font-bold {
  font-family: DINNextLTPro-Bold;
}

.text-base {
  font-size: 16px;
  line-height: 20px;
}

.text-xl {
  font-size: 20px;
  line-height:  24px;
}

.text-lg {
  font-size: 18px;
  line-height: 24px;
}

.text-2xl {
  font-size: 24px;
  line-height: 28px;
}

.text-sm {
  font-size: 14px;
  line-height: 18px;
}

.text-\[56px\] {
  font-size: 56px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-xs {
  font-size: 14px;
  line-height: 16px;
}

.text-3xl {
  font-size: 32px;
  line-height: 36px;
}

.text-4xl {
  font-size: 48px;
  line-height: 52px;
}

.text-base-lg {
  font-size: 16px;
  line-height: 24px;
}

.text-xxxs {
  font-size: 12px;
  line-height: 16px;
}

.text-xxs {
  font-size: 13px;
  line-height: 19px;
}

.font-medium {
  font-weight: 500;
}

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

.font-normal {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-\[22px\] {
  line-height: 22px;
}

.leading-\[64px\] {
  line-height: 64px;
}

.leading-4 {
  line-height: 1rem;
}

.leading-7 {
  line-height: 1.75rem;
}

.leading-normal {
  line-height: 1.5;
}

.leading-\[52px\] {
  line-height: 52px;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-5 {
  line-height: 1.25rem;
}

.leading-\[25px\] {
  line-height: 25px;
}

.leading-3 {
  line-height: .75rem;
}

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

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(0 83 161 / var(--tw-text-opacity));
}

.text-grafite {
  --tw-text-opacity: 1;
  color: rgb(45 45 45 / var(--tw-text-opacity));
}

.text-tertiary {
  --tw-text-opacity: 1;
  color: rgb(118 100 46 / var(--tw-text-opacity));
}

.text-\[\#6A6A6A\] {
  --tw-text-opacity: 1;
  color: rgb(106 106 106 / var(--tw-text-opacity));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-\[\#5F646D\] {
  --tw-text-opacity: 1;
  color: rgb(95 100 109 / var(--tw-text-opacity));
}

.text-foreground {
  --tw-text-opacity: 1;
  color: rgb(33 33 33 / var(--tw-text-opacity));
}

.text-silver {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity));
}

.text-lightgrey {
  --tw-text-opacity: 1;
  color: rgb(201 200 211 / var(--tw-text-opacity));
}

.text-gold {
  --tw-text-opacity: 1;
  color: rgb(159 137 70 / var(--tw-text-opacity));
}

.text-error {
  --tw-text-opacity: 1;
  color: rgb(197 38 46 / var(--tw-text-opacity));
}

.text-red {
  --tw-text-opacity: 1;
  color: rgb(221 5 43 / var(--tw-text-opacity));
}

.text-\[\#939393\] {
  --tw-text-opacity: 1;
  color: rgb(147 147 147 / var(--tw-text-opacity));
}

.text-\[\#4F4F4F\] {
  --tw-text-opacity: 1;
  color: rgb(79 79 79 / var(--tw-text-opacity));
}

.text-medal {
  --tw-text-opacity: 1;
  color: rgb(134 116 58 / var(--tw-text-opacity));
}

.text-opacity-50 {
  --tw-text-opacity: 0.5;
}

.text-opacity-80 {
  --tw-text-opacity: 0.8;
}

.text-opacity-100 {
  --tw-text-opacity: 1;
}

.text-opacity-60 {
  --tw-text-opacity: 0.6;
}

.underline {
  text-decoration-line: underline;
}

.accent-primary {
  accent-color: #0053A1;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-0 {
  opacity: 0;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-50 {
  opacity: 0.5;
}

.shadow-medium {
  --tw-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0 4px 20px 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 {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px 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-lighter {
  --tw-shadow: 0px 16px 48px rgba(0, 0, 0, 0.08);
  --tw-shadow-colored: 0px 16px 48px 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-light {
  --tw-shadow: 0px 8px 8px rgba(0, 0, 0, 0.12);
  --tw-shadow-colored: 0px 8px 8px 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-card {
  --tw-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  --tw-shadow-colored: 0 3px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
  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);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.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-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/**
 * Custom styles to immediately follow Tailwind’s `utilities` layer
 *
 * Add your own utility classes to this theme. Complex utility classes should
 * be added using Tailwind’s plugin system:
 *
 * https://tailwindcss.com/docs/plugins#adding-utilities
 */

.right-fluid {
  margin-right: calc(50% - 50vw) !important;
}

.right-fluid-mobile {
  margin-right: calc(50% - 50vw) ;
}

@media (min-width: 768px) {
  .right-fluid-mobile {
    margin-right: unset
  }
}

.gradient-info {
  background: linear-gradient(
		180deg,
		rgba(204, 204, 204, 0.5) -12.13%,
		rgba(151, 133, 77, 0) -12.12%,
		rgba(151, 133, 77, 0.2) 98%
	);
}

.gradient-header {
  background: linear-gradient(180deg, #0e263c 0%, #0153a0 100%);
  height: 177px;
}

@media (min-width: 768px) {
  .gradient-header {
    height: 352px
  }
}

.swiper {
  margin-left: -16px;
  padding-left: 16px;
}

@media (min-width: 768px) {
  .swiper {
    margin-left: -10px;
    padding-left: 10px
  }
}

.swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.aspect-video > iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.swiper-pagination{
  bottom: 30px !important;
}

.swiper-pagination-bullet{
  background-color: #9f8946 !important;
  border-radius: 4px;
  opacity: 0.8!important;
}

.swiper-pagination-bullet-active {
  background-color: #9f8946 !important;
  border-radius: 4px;
  opacity: 1!important;
  width:78px;
}

.swiper-pagination-bullet-active + span {
  width:30px!important;
}

.aspect-square > iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.not-swiper .hero-pagination {
  display: none;
}

.not-swiper .hero-date {
  display: none;
}

.last\:mr-0:last-child {
  margin-right: 0px;
}

.read-only\:border-\[\#E5E5E5\]:-moz-read-only {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}

.read-only\:border-\[\#E5E5E5\]:read-only {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}

.read-only\:bg-\[\#E5E5E5\]:-moz-read-only {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
}

.read-only\:bg-\[\#E5E5E5\]:read-only {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
}

.read-only\:text-\[\#939393\]:-moz-read-only {
  --tw-text-opacity: 1;
  color: rgb(147 147 147 / var(--tw-text-opacity));
}

.read-only\:text-\[\#939393\]:read-only {
  --tw-text-opacity: 1;
  color: rgb(147 147 147 / var(--tw-text-opacity));
}

.hover\:border:hover {
  border-width: 1px;
}

.hover\:border-2:hover {
  border-width: 2px;
}

.hover\:border-primary:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

.hover\:bg-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

.hover\:bg-opacity-60:hover {
  --tw-bg-opacity: 0.6;
}

.hover\:bg-opacity-50:hover {
  --tw-bg-opacity: 0.5;
}

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

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

.disabled\:border-\[\#E5E5E5\]:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}

.disabled\:bg-\[\#E5E5E5\]:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
}

.disabled\:text-red:disabled {
  --tw-text-opacity: 1;
  color: rgb(221 5 43 / var(--tw-text-opacity));
}

.disabled\:text-\[\#939393\]:disabled {
  --tw-text-opacity: 1;
  color: rgb(147 147 147 / var(--tw-text-opacity));
}

.group:hover .group-hover\:block {
  display: block;
}

.group:hover .group-hover\:flex {
  display: flex;
}

.group:hover .group-hover\:border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(0 83 161 / var(--tw-border-opacity));
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group.is-open .group-\[\.is-open\]\:block {
  display: block;
}

.group.is-open .group-\[\.is-open\]\:bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(0 83 161 / var(--tw-bg-opacity));
}

.group.is-open .group-\[\.is-open\]\:ring-2 {
  --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);
}

.group.is-open .group-\[\.is-open\]\:ring-inset {
  --tw-ring-inset: inset;
}

.group.is-open .group-\[\.is-open\]\:ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity));
}

@media (min-width: 768px) {
  .md\:fixed {
    position: fixed;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:-left-16 {
    left: -4rem;
  }

  .md\:-top-16 {
    top: -4rem;
  }

  .md\:-left-32 {
    left: -8rem;
  }

  .md\:left-1\/2 {
    left: 50%;
  }

  .md\:z-20 {
    z-index: 20;
  }

  .md\:order-last {
    order: 9999;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .md\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:ml-2 {
    margin-left: 0.5rem;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mt-24 {
    margin-top: 6rem;
  }

  .md\:mt-40 {
    margin-top: 10rem;
  }

  .md\:mt-\[420px\] {
    margin-top: 420px;
  }

  .md\:mr-6 {
    margin-right: 1.5rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:ml-5 {
    margin-left: 1.25rem;
  }

  .md\:mb-28 {
    margin-bottom: 7rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }

  .md\:mt-6 {
    margin-top: 1.5rem;
  }

  .md\:-mt-10 {
    margin-top: -2.5rem;
  }

  .md\:mt-\[120px\] {
    margin-top: 120px;
  }

  .md\:-mr-3 {
    margin-right: -0.75rem;
  }

  .md\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:mb-20 {
    margin-bottom: 5rem;
  }

  .md\:-mr-4 {
    margin-right: -1rem;
  }

  .md\:-ml-4 {
    margin-left: -1rem;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:mt-16 {
    margin-top: 4rem;
  }

  .md\:ml-6 {
    margin-left: 1.5rem;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:aspect-3\/4 {
    aspect-ratio: 3 / 4;
  }

  .md\:aspect-hero {
    aspect-ratio: 12 / 7;
  }

  .md\:h-150 {
    height: 600px;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:h-hero {
    height: 840px;
  }

  .md\:h-52 {
    height: 13rem;
  }

  .md\:h-\[175px\] {
    height: 175px;
  }

  .md\:h-px {
    height: 1px;
  }

  .md\:h-\[100px\] {
    height: 100px;
  }

  .md\:h-\[480px\] {
    height: 480px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:max-h-hero {
    max-height: 840px;
  }

  .md\:w-10 {
    width: 2.5rem;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-2\/3 {
    width: 66.666667%;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-card {
    width: 360px;
  }

  .md\:w-\[100\%\] {
    width: 100%;
  }

  .md\:w-\[75\%\] {
    width: 75%;
  }

  .md\:w-\[70\%\] {
    width: 70%;
  }

  .md\:w-12 {
    width: 3rem;
  }

  .md\:w-\[580px\] {
    width: 580px;
  }

  .md\:w-40 {
    width: 10rem;
  }

  .md\:w-\[456px\] {
    width: 456px;
  }

  .md\:max-w-\[850px\] {
    max-width: 850px;
  }

  .md\:basis-auto {
    flex-basis: auto;
  }

  .md\:translate-x-0 {
    --tw-translate-x: 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));
  }

  .md\: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));
  }

  .md\:translate-y-20 {
    --tw-translate-y: 5rem;
    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));
  }

  .md\:-translate-x-1\/2 {
    --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));
  }

  .md\:columns-3 {
    -moz-columns: 3;
         columns: 3;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

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

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

  .md\:justify-start {
    justify-content: flex-start;
  }

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

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .md\:rounded-b-none {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .md\:border-b {
    border-bottom-width: 1px;
  }

  .md\:border-r {
    border-right-width: 1px;
  }

  .md\:border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }

  .md\:border-medal {
    --tw-border-opacity: 1;
    border-color: rgb(134 116 58 / var(--tw-border-opacity));
  }

  .md\:bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:bg-opacity-50 {
    --tw-bg-opacity: 0.5;
  }

  .md\:bg-\[url\(\'assets\/images\/bg222\.png\'\)\] {
    background-image: url('assets/images/bg222.png');
  }

  .md\:bg-\[url\(\'assets\/images\/team_bg\.png\'\)\] {
    background-image: url('assets/images/team_bg.png');
  }

  .md\:bg-cover {
    background-size: cover;
  }

  .md\:bg-top {
    background-position: top;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .md\:pt-14 {
    padding-top: 3.5rem;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

  .md\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pt-12 {
    padding-top: 3rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

  .md\:pt-28 {
    padding-top: 7rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pb-8 {
    padding-bottom: 2rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .md\:pr-28 {
    padding-right: 7rem;
  }

  .md\:pt-40 {
    padding-top: 10rem;
  }

  .md\:pb-40 {
    padding-bottom: 10rem;
  }

  .md\:pt-\[230px\] {
    padding-top: 230px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-base {
    font-size: 16px;
    line-height: 20px;
  }

  .md\:text-herotitle {
    font-size: 46px;
    line-height: 52px;
    letter-spacing: 0.2px;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-4xl {
    font-size: 48px;
    line-height: 52px;
  }

  .md\:text-3xl {
    font-size: 32px;
    line-height: 36px;
  }

  .md\:leading-6 {
    line-height: 1.5rem;
  }

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

  .md\:backdrop-blur-10 {
    --tw-backdrop-blur: blur(10px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }

  .md\:line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .md\:line-clamp-none {
    -webkit-line-clamp: unset;
  }
}

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-3 {
    order: 3;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:col-start-2 {
    grid-column-start: 2;
  }

  .lg\:ml-6 {
    margin-left: 1.5rem;
  }

  .lg\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .lg\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:mr-6 {
    margin-right: 1.5rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-\[230px\] {
    margin-top: 230px;
  }

  .lg\:mt-40 {
    margin-top: 10rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:aspect-hero {
    aspect-ratio: 12 / 7;
  }

  .lg\:h-promo {
    height: 493px;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:max-h-hero {
    max-height: 840px;
  }

  .lg\:w-14 {
    width: 3.5rem;
  }

  .lg\:w-\[116px\] {
    width: 116px;
  }

  .lg\:w-\[calc\(100\%_-_384px\)\] {
    width: calc(100% - 384px);
  }

  .lg\:w-card {
    width: 360px;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:shrink-0 {
    flex-shrink: 0;
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:border {
    border-width: 1px;
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem;
  }

  .lg\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-xl {
    font-size: 20px;
    line-height:  24px;
  }

  .lg\:text-\[72px\] {
    font-size: 72px;
  }

  .lg\:text-3xl {
    font-size: 32px;
    line-height: 36px;
  }

  .lg\:text-herotitle {
    font-size: 46px;
    line-height: 52px;
    letter-spacing: 0.2px;
  }

  .lg\:leading-\[76px\] {
    line-height: 76px;
  }

  .lg\:text-lightgrey {
    --tw-text-opacity: 1;
    color: rgb(201 200 211 / var(--tw-text-opacity));
  }
}

@media (min-width: 1156px) {
  .xl\:mr-6 {
    margin-right: 1.5rem;
  }

  .xl\:block {
    display: block;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:grid {
    display: grid;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:w-2\/3 {
    width: 66.666667%;
  }

  .xl\:w-1\/3 {
    width: 33.333333%;
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
}
