

/* Start:/css/simple-lightbox.css?16989289335415*/
/*!
	By André Rinas, www.andrerinas.de
	Documentation, www.simplelightbox.de
	Available for use under the MIT License
	Version 2.12.1
*/
body.hidden-scroll {
  overflow: hidden; }

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
  z-index: 1035; }

.sl-wrapper {
  z-index: 1112;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed; }
  .sl-wrapper * {
    box-sizing: border-box; }
  .sl-wrapper button {
    border: 0 none;
    background: transparent;
    font-size: 28px;
    padding: 0;
    cursor: pointer; }
    .sl-wrapper button:hover {
      opacity: 0.7; }
  .sl-wrapper .sl-close {
    display: none;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 10060;
    margin-top: -14px;
    margin-right: -14px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    font-family: Arial, Baskerville, monospace;
    color: #000;
    font-size: 3rem; }
  .sl-wrapper .sl-counter {
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 10060;
    color: #000;
    font-size: 1rem; }
  .sl-wrapper .sl-download {
    display: none;
    position: fixed;
    bottom: 5px;
    width: 100%;
    text-align: center;
    z-index: 10060;
    color: #fff;
    font-size: 1rem; }
    .sl-wrapper .sl-download a {
      color: #fff; }
  .sl-wrapper .sl-navigation {
    width: 100%;
    display: none; }
    .sl-wrapper .sl-navigation button {
      position: fixed;
      top: 50%;
      margin-top: -22px;
      height: 44px;
      width: 22px;
      line-height: 44px;
      text-align: center;
      display: block;
      z-index: 10060;
      font-family: Arial, Baskerville, monospace;
      color: #000; }
      .sl-wrapper .sl-navigation button.sl-next {
        right: 5px;
        font-size: 2rem; }
      .sl-wrapper .sl-navigation button.sl-prev {
        left: 5px;
        font-size: 2rem; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 10px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 10px;
            font-size: 3rem; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 20px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 20px;
            font-size: 3rem; } }
  .sl-wrapper.sl-dir-rtl .sl-navigation {
    direction: ltr; }
  .sl-wrapper .sl-image {
    position: fixed;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 10000; }
    .sl-wrapper .sl-image img {
      margin: 0;
      padding: 0;
      display: block;
      border: 0 none;
      width: 100%;
      height: auto; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
    .sl-wrapper .sl-image iframe {
      background: #000;
      border: 0 none; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
    .sl-wrapper .sl-image .sl-caption {
      display: none;
      padding: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.8);
      font-size: 1rem;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-top {
        bottom: auto;
        top: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-outside {
        bottom: auto; }

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite; }

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms; }

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

/* End */


/* Start:/css/splide-core.min.css?16959230737062*/
@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list{display:block}.splide__track--fade>.splide__list>.splide__slide{left:0;opacity:0;position:absolute;top:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;position:relative;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}


.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
/* End */


/* Start:/local/templates/aurus2023/plg/tooltip/css/tooltipster.bundle.min.css?16953025076495*/
.tooltipster-fall,.tooltipster-grow.tooltipster-show{-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-base{display:flex;pointer-events:none;position:absolute}.tooltipster-box{flex:1 1 auto}.tooltipster-content{box-sizing:border-box;max-height:100%;max-width:100%;overflow:auto}.tooltipster-ruler{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade.tooltipster-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow.tooltipster-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing.tooltipster-show{opacity:1;-webkit-transform:rotateZ(0);-moz-transform:rotateZ(0);-o-transform:rotateZ(0);-ms-transform:rotateZ(0);transform:rotateZ(0);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,1);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-moz-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-ms-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-o-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);transition-timing-function:cubic-bezier(.23,.635,.495,2.4)}.tooltipster-fall{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-fall.tooltipster-initial{top:0!important}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0!important;opacity:0}.tooltipster-slide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-slide.tooltipster-initial{left:-40px!important}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0!important;opacity:0}@keyframes tooltipster-fading{0%{opacity:0}100%{opacity:1}}.tooltipster-update-fade{animation:tooltipster-fading .4s}@keyframes tooltipster-rotating{25%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}100%{transform:rotate(0)}}.tooltipster-update-rotate{animation:tooltipster-rotating .6s}@keyframes tooltipster-scaling{50%{transform:scale(1.1)}100%{transform:scale(1)}}.tooltipster-update-scale{animation:tooltipster-scaling .6s}.tooltipster-sidetip .tooltipster-box{background:#565656;border:2px solid #000;border-radius:4px}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip .tooltipster-content{color:#fff;line-height:18px;padding:6px 14px}.tooltipster-sidetip .tooltipster-arrow{overflow:hidden;position:absolute}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{height:10px;margin-left:-10px;top:0;width:20px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow{height:20px;margin-top:-10px;right:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow{height:20px;margin-top:-10px;left:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{bottom:0;height:10px;margin-left:-10px;width:20px}.tooltipster-sidetip .tooltipster-arrow-background,.tooltipster-sidetip .tooltipster-arrow-border{height:0;position:absolute;width:0}.tooltipster-sidetip .tooltipster-arrow-background{border:10px solid transparent}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#565656;left:0;top:3px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#565656;left:-3px;top:0}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{border-right-color:#565656;left:3px;top:0}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#565656;left:0;top:-3px}.tooltipster-sidetip .tooltipster-arrow-border{border:10px solid transparent;left:0;top:0}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#000}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border{border-left-color:#000}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border{border-right-color:#000}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{border-top-color:#000}.tooltipster-sidetip .tooltipster-arrow-uncropped{position:relative}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped{top:-10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped{left:-10px}
/* End */


/* Start:/local/templates/aurus2023/plg/tooltip/css/tooltipster.theme-shadow.css?16953025092396*/
.tooltip-template {
	display: none;
}

.tooltip-label {
	cursor: pointer;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
	border: none;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 0 10px 6px rgba(0, 0, 0, .1)
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-box {
	margin-top: 6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-box {
	margin-right: 6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-box {
	margin-left: 6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-box {
	margin-bottom: 6px
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-content {
	color: #000;
	padding: 0;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow {
	height: 6px;
	margin-left: -6px;
	width: 12px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow {
	height: 12px;
	margin-left: 0;
	margin-top: -6px;
	width: 6px
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background {
	display: none
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border {
	border: 6px solid transparent
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border {
	border-left-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border {
	border-right-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border {
	border-top-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-uncropped {
	left: -6px
}

.tooltip-text {
  position: relative;
  padding: 6px 15px 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}

.tooltip-text a {
  text-decoration: underline;
}

.tooltip-text a:hover {
  text-decoration: none;
  opacity: .8;
}

.tooltip-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: url("/local/templates/aurus2023/plg/tooltip/css/../images/ico/close.svg") no-repeat center center/10px;
  cursor: pointer;
}

.tooltip-close:hover {
  opacity: .8;
}
/* End */


/* Start:/css/app.css?1748264070201515*/
/*
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

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: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'GalaxiePolaris', Arial, 'Noto Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  font-size: 14px;
}

/*
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 */
}
* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizespeed;
  -webkit-tap-highlight-color: transparent;
}
/*
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;
}

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

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

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

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

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.left-1 {
  left: 0.25rem;
}

.left-1\.5 {
  left: 0.375rem;
}

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

.left-5 {
  left: 1.25rem;
}

.left-\[65px\] {
  left: 65px;
}

.right-0 {
  right: 0px;
}

.right-5 {
  right: 1.25rem;
}

.top-0 {
  top: 0px;
}

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

.top-5 {
  top: 1.25rem;
}

.top-\[100px\] {
  top: 100px;
}

.top-\[20\%\] {
  top: 20%;
}

.top-\[220px\] {
  top: 220px;
}

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

.top-\[60px\] {
  top: 60px;
}

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

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

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

.z-\[1000\] {
  z-index: 1000;
}

.z-\[11\] {
  z-index: 11;
}

.z-\[1\] {
  z-index: 1;
}

.z-\[2\] {
  z-index: 2;
}

.order-2 {
  order: 2;
}

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

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

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

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

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

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

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

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

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

.col-start-1 {
  grid-column-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.row-start-1 {
  grid-row-start: 1;
}

.row-start-2 {
  grid-row-start: 2;
}

.m-0 {
  margin: 0px;
}

.m-auto {
  margin: auto;
}

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

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

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

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

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

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

.-mb-px {
  margin-bottom: -1px;
}

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

.-ml-1\.5 {
  margin-left: -0.375rem;
}

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

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

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

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

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

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

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

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

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

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

.-mt-1\.5 {
  margin-top: -0.375rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-0\.5 {
  margin-top: 0.125rem;
}

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

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

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

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

.mt-2\.5 {
  margin-top: 0.625rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.h-0 {
  height: 0px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-20 {
  height: 5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-9 {
  height: 2.25rem;
}

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

.h-\[100vh\] {
  height: 100vh;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-full {
  height: 100%;
}

.w-0 {
  width: 0px;
}

.w-0\.5 {
  width: 0.125rem;
}

.w-1 {
  width: 0.25rem;
}

.w-1\.5 {
  width: 0.375rem;
}

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

.w-2\/5 {
  width: 40%;
}

.w-20 {
  width: 5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

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

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

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

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

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

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

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

.flex-none {
  flex: none;
}

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

.scale-150 {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  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));
}

.scale-\[2\] {
  --tw-scale-x: 2;
  --tw-scale-y: 2;
  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));
}

.cursor-pointer {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-0 {
  gap: 0px;
}

.gap-0\.5 {
  gap: 0.125rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-\[15px\] {
  gap: 15px;
}

.gap-\[30px\] {
  gap: 30px;
}

.gap-\[38px\] {
  gap: 38px;
}

.gap-\[42px\] {
  gap: 42px;
}

.gap-x-10 {
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.gap-x-2\.5 {
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}

.gap-x-5 {
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.gap-x-\[15px\] {
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.gap-x-\[9px\] {
  -moz-column-gap: 9px;
  column-gap: 9px;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-1\.5 {
  row-gap: 0.375rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

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

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

.border {
  border-width: 1px;
}

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

.border-\[17px\] {
  border-width: 17px;
}

.border-\[20px\] {
  border-width: 20px;
}

.border-\[37px\] {
  border-width: 37px;
}

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

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

.border-l {
  border-left-width: 1px;
}

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

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

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

.border-\[\#B88560\] {
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
}

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

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

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

.border-aurus-gold {
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
}

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

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

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

.bg-aurus-gold {
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
}

.bg-aurus-grey {
  --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-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

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

.bg-opacity-100 {
  --tw-bg-opacity: 1;
}

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

.bg-opacity-\[0\.78\] {
  --tw-bg-opacity: 0.78;
}

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

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

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

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

.p-4 {
  padding: 1rem;
}

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

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

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

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

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

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

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

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

.pb-0 {
  padding-bottom: 0px;
}

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

.pb-1\.5 {
  padding-bottom: 0.375rem;
}

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

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

.pb-2\.5 {
  padding-bottom: 0.625rem;
}

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

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

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

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

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

.pl-3 {
  padding-left: 0.75rem;
}

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

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

.pl-\[66px\] {
  padding-left: 66px;
}

.pl-\[70px\] {
  padding-left: 70px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-6 {
  padding-right: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[23px\] {
  font-size: 23px;
}

.text-\[27px\] {
  font-size: 27px;
}

.text-\[30vw\] {
  font-size: 30vw;
}

.text-\[37px\] {
  font-size: 37px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 13px;
  line-height: 1rem;
}

.font-medium {
  font-weight: 300;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-\[1\.3\] {
  line-height: 1.3;
}

.leading-\[1\.6\] {
  line-height: 1.6;
}

.leading-\[1\.7\] {
  line-height: 1.7;
}

.leading-\[27px\] {
  line-height: 27px;
}

.leading-none {
  line-height: 1;
}

.tracking-\[0\.02em\] {
  letter-spacing: 0.02em;
}

.tracking-\[0\.15\] {
  letter-spacing: 0.15;
}

.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-\[\#8a8a8a\] {
  --tw-text-opacity: 1;
  color: rgb(138 138 138 / var(--tw-text-opacity));
}

.text-aurus-black {
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

.text-aurus-gold {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

.text-aurus-grey {
  --tw-text-opacity: 1;
  color: rgb(239 239 239 / var(--tw-text-opacity));
}

.text-aurus-grey100 {
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

.text-aurus-grey200 {
  --tw-text-opacity: 1;
  color: rgb(49 59 67 / var(--tw-text-opacity));
}

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

.underline {
  text-decoration-line: underline;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.placeholder-\[\#8a8a8a\]::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(138 138 138 / var(--tw-placeholder-opacity));
}

.placeholder-\[\#8a8a8a\]::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(138 138 138 / var(--tw-placeholder-opacity));
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-\[0\.51\] {
  opacity: 0.51;
}

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

.blur {
  --tw-blur: blur(8px);
  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);
}

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

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

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

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: 'GalaxiePolaris', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('/css/../fonts/GalaxiePolaris-Book.ttf') format('truetype'),
  url('/css/../fonts/GalaxiePolaris-Book.woff2') format('woff2'),
  url('/css/../fonts/GalaxiePolaris-Book.woff') format('woff');
}

@font-face {
  font-family: 'GalaxiePolaris', sans-serif;
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url('/css/../fonts/GalaxiePolaris-Medium.otf') format('opentype'),
  url('/css/../fonts/GalaxiePolaris-Medium.woff2') format('woff2'),
  url('/css/../fonts/GalaxiePolaris-Medium.woff') format('woff');
}

@font-face {
  font-family: 'GalaxiePolaris';
  font-weight: 300;
  src: url('/css/../fonts/GalaxiePolaris-Light.otf') format('opentype'),
  url('/css/../fonts/GalaxiePolaris-Light.woff2') format('woff2'),
  url('/css/../fonts/GalaxiePolaris-Light.woff') format('woff');
}

.text-forum {
  font-family: 'Forum', cursive;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'GalaxiePolaris', 'Forum', sans-serif;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
  overflow-x: hidden;
}

body.modal-menu-shown,
body.news-shown,
body.bg-shown {
  overflow: hidden;
}

body.bg-shown:after {
  content: '';
  position: fixed;
  inset: 0px;
  display: block;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.aurus-container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  .aurus-container {
    padding-left: 65px;
    padding-right: 65px;
  }
}

.aurus-grid {
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  .aurus-grid {
    gap: 30px;
  }
}

.aurus-btn {
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 0.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .aurus-btn.large {
    height: 3.5rem;
  }
}

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

.aurus-btn.white:hover {
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
}

.aurus-btn.black {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

.aurus-btn.gold {
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

.aurus-btn.gold:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.aurus-btn.dark {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.grid10-wrapper.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .grid10-wrapper {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 15px;
  }
}

@media (min-width: 1536px) {
  .grid10-wrapper {
    gap: 30px;
  }
}

.rub {
  font-family: 'Verdana', sans-serif;
}

h1 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(49 59 67 / var(--tw-text-opacity));
  font-family: 'Forum', cursive;
}

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

@media (min-width: 1280px) {
  h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1536px) {
  h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
}

h1.news-header {
  text-align: left;
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 1024px) {
  h1.news-header {
    font-size: 50px;
    line-height: 1;
  }
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
  margin-right: 20px;
}

@media (min-width: 1024px) {
  .social-buttons {
    /* width: 320px; */
    flex: none;
  }
}

@media (min-width: 1280px) {
  .social-buttons {
    /* width: 450px; */
  }
}

.social-buttons a {
  display: flex;
  height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
}

.social-buttons a img {
  height: 1.5rem;
  width: 1.5rem;
}

header {
  z-index: 1111;
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

header.over {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
}

header .top {
  position: relative;
  display: flex;
  height: 5rem;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  header .top {
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  header .top {
    height: 106px;
    align-items: flex-start;
    padding-left: 65px;
    padding-right: 65px;
    padding-top: 2.25rem;
    padding-bottom: 0px;
  }
}

header .aurus-logo {
  position: absolute;
  left: 50%;
  margin-left: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .aurus-logo svg {
  height: 2.5rem;
  width: 52px;
}

@media (min-width: 1280px) {
  header .aurus-logo {
    margin-left: -3rem;
  }

  header .aurus-logo svg {
    height: 57px;
    width: 72px;
  }
}

header .left-block {
  display: none;
  padding-left: 70px;
  text-transform: uppercase;
}

header.grid10-wrapper .left-block {
  display: none;
}

header .left-block a {
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  header .left-block {
    display: flex;
    gap: 42px;
  }
}

@media (min-width: 1280px) {
  header .left-block {
    margin-top: 27px;
  }
}

header .right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.125rem;
}

@media (min-width: 640px) {
  header .right-block {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  header .right-block {
    gap: 38px;
  }
}

@media (min-width: 1280px) {
  header .right-block {
    margin-top: 17px;
  }
}

header .panavto-logo svg {
  height: 0.75rem;
  width: 100px;
}

@media (min-width: 1280px) {
  header .panavto-logo svg {
    height: 1.25rem;
    width: 174px;
  }
}

@media (min-width: 640px) {
  header .panavto-logo {
    order: 2;
    margin-top: 0.25rem;
  }
}

header .phone {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Forum', cursive;
}

@media (min-width: 640px) {
  header .phone {
    order: 1;
    font-size: 18px;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  header .phone {
    font-size: 20px;
    line-height: 1;
  }
}

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

header.light .toggle-main-menu span {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.toggle-main-menu {
  position: absolute;
  left: 1.25rem;
  top: 30px;
  z-index: 11;
  display: flex;
  cursor: pointer;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}

@media (min-width: 1280px) {
  .toggle-main-menu {
    left: 65px;
    top: 60px;
  }
}

.toggle-main-menu span {
  height: 1.25rem;
  width: 0.125rem;
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
}

.toggle-main-menu span:nth-child(1) {
  transition: height 0.3s 0.5s;
}

.toggle-main-menu span:nth-child(2) {
  transition: height 0.3s 0.4s;
}

.toggle-main-menu span:nth-child(3) {
  transition: height 0.3s 0.3s;
}

.toggle-main-menu .svg-close {
  position: absolute;
  top: 0px;
  left: 0.375rem;
  height: 1rem;
  width: 0px;
  overflow: hidden;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition: width 0.3s;
}

body.modal-menu-shown .toggle-main-menu span:nth-child(1) {
  height: 0px;
  transition: height 0.3s 0.7s;
}

body.modal-menu-shown .toggle-main-menu span:nth-child(2) {
  height: 0px;
  transition: height 0.3s 0.8s;
}

body.modal-menu-shown .toggle-main-menu span:nth-child(3) {
  height: 0px;
  transition: height 0.3s 0.9s;
}

body.modal-menu-shown .toggle-main-menu .svg-close {
  width: 1rem;
  transition: width 0.3s 1.2s;
}

.modal-menu {
  pointer-events: none;
  position: fixed;
  inset: 0px;
  z-index: 10;
  display: flex;
  border-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0;
  transition: background 0.5s 0.3s, border 0.7s 0.8s;
}

.modal-menu .menu-container {
  visibility: hidden;
  position: absolute;
  inset: 0px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  /* padding-top: 2.5rem; */
  padding-bottom: 2.5rem;
  padding-left: 10vw;
  padding-right: 10vw;
}

@media (min-width: 1280px) {
  .modal-menu .menu-container {
    /* padding-top: 4rem; */
  }
}

@media (min-width: 640px) {
  .modal-menu .menu-container {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
  }
}

@media (min-width: 768px) {
  .modal-menu .menu-container {
    position: relative;
    width: 50%;
    flex: none;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .modal-menu .menu-container {
    width: 60%;
  }
}

@media (min-width: 1200px) {
  .modal-menu .menu-container {
    /* padding-top: 163px; */
    padding-left: 30px;
  }
}
@media (min-width: 1650px) {
  .modal-menu .menu-container {
    /* padding-top: 163px; */
    padding-left: 147px;
  }
}

.modal-menu .menu-container .items {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  row-gap: 30px;
  font-size: 20px;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
  font-family: 'GalaxiePolaris';
  justify-content: center;
}
@media (max-width: 650px) {
  .modal-menu .menu-container .items {
    gap: 10px;
  }
}

.modal-menu .menu-container .items li ul {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.3s;
}

@media (min-width: 1024px) {
  .modal-menu .menu-container .items li ul {
    position: absolute;
    /* left: 0px; */
    right: 0;
    margin-top: 0px;
    margin-left: 16rem;
    visibility: hidden;
    opacity: 0;
    display: flex;
    width: 400px;
    gap: 40px 46px;
  }
}

@media (min-width: 1280px) {
  .modal-menu .menu-container .items li ul {
    margin-left: auto;
    width: 60%;
    font-size: 1.25rem;
    line-height: 1.75rem;
    visibility: hidden;
    opacity: 0;
  }
}

.modal-menu .menu-container .items li ul li {
  width: 50%;
}

@media (min-width: 1024px) {
  .modal-menu .menu-container .items li ul li {
    width: auto;
  }
}

.modal-menu .menu-container .items li ul li img {
  height: 1.5rem;
}

@media (min-width: 1024px) {
  .modal-menu .menu-container .items li ul li img {
    height: auto;
  }
}

@media (min-width: 400px) {
  .modal-menu .menu-container .items li ul li img {
    height: 2rem;
  }
}

@media (min-width: 500px) {
  .modal-menu .menu-container .items li ul li img {
    height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .modal-menu .menu-container .items li ul li img {
    height: 45px;
  }
}

.modal-menu .menu-container .items li ul li a {
  display: block;
  position: relative;
  z-index: 2;
}

.modal-menu .menu-container .items li ul li a span {
  margin-left: 0.5rem;
  display: inline-block;
  font-size: 14px;
  line-height: 1.1;
  margin-top: 13px;
}

@media (min-width: 400px) {
  .modal-menu .menu-container .items li ul li a span {
    margin-left: 1rem;
  }
}

@media (min-width: 500px) {
  .modal-menu .menu-container .items li ul li a span {
    margin-left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .modal-menu .menu-container .items li ul li a span {
    margin-left: 30px;
    font-size: 14px;
    line-height: 1.1;
    margin-top: 13px;
  }
}

.modal-menu .menu-container .items li ul li a:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  .modal-menu .menu-container .items li ul.active {
    visibility: visible;
    opacity: 1;
    border-left: 1px solid #574848;
  }
}

.modal-menu .menu-container .items li:hover {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-menu .menu-container .items li > a:hover {
  position: relative;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.modal-menu .menu-container .items li:hover > a {
  position: relative;
  --tw-text-opacity: 1;
  /* color: rgb(255 255 255 / var(--tw-text-opacity)); */
}

.modal-menu .menu-container .buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
@media (max-width: 760px) {
  .menu__bottom {
    margin-top: 0px;
  }
}

@media (min-width: 1280px) {
  .modal-menu .menu-container .buttons {
    flex-direction: row;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .modal-menu .menu-container .buttons {
    flex-direction: row;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
    margin-top: 20px;
  }
}
@media (min-width: 1480px) {
  .modal-menu .menu-container .buttons {
    margin-top: 0;
  }
}
.modal-menu .bg-image {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s 0.3s;
}

@media (min-width: 768px) {
  .modal-menu .bg-image {
    width: 50%;
    flex: none;
  }
}

@media (min-width: 1024px) {
  .modal-menu .bg-image {
    width: 40%;
    flex: none;
  }
}

.menu__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.menu__bottom .aurus-btn {
  width: 240px;
}

.modal-menu .bg-image > div {
  position: absolute;
  inset: 0px;
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  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));
  transition: all 0.8s;
  opacity: 0;
}
.modal-menu .bg-image > div.active {
  opacity: 1;
}

.modal-menu .bg-image > div.bg-1 {
  background-size: cover;
  background-position: center;
  background-image: url('/css/../images/menu-bg-1.jpg');
  transition: all 0.3s;
}
.modal-menu .bg-image > div.bg-s {
  background-size: cover;
  background-position: center;
  background-image: url('/css/../images/menu-bg-s.png');
  transition: all 0.3s;
}
.modal-menu .bg-image > div.bg-k {
  background-size: cover;
  background-position: center;
  background-image: url('/css/../images/menu-bg-k.jpg');
  transition: all 0.3s;
}
.modal-menu .bg-image > div.bg-s-l {
  background-size: cover;
  background-position: center;
  background-image: url('/css/../images/menu-bg-s-l.jpg');
  transition: all 0.3s;
}
.modal-menu .bg-image > div.bg-b {
  background-size: cover;
  background-position: center;
  background-image: url('/css/../images/menu-bg-b.jpg');
  transition: all 0.3s;
}

body.modal-menu-shown .modal-menu {
  pointer-events: auto;
  border-width: 17px;
  --tw-bg-opacity: 1;
  transition: border 0.7s, background 0.5s 0.7s;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 786px) {
  .modal-menu .bg-image > div.active {
    opacity: 0.2;
  }
}

@media (min-width: 1280px) {
  body.modal-menu-shown .modal-menu {
    border-width: 37px;
  }
}

body.modal-menu-shown .modal-menu .menu-container {
  visibility: visible;
  transition: visibility 0.2s 1s;
}

body.modal-menu-shown .modal-menu .bg-image {
  opacity: 1;
  transition: opacity 0.5s 0.8s;
}

body.modal-menu-shown .modal-menu .bg-image > div {
  --tw-scale-x: 1;
  --tw-scale-y: 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));
  transition: all 0.5s;
}

#breadcrumbs {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 13px;
  line-height: 1rem;
  line-height: 1.1;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #breadcrumbs {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  #breadcrumbs {
    margin-top: 50px;
    margin-bottom: 55px;
    padding-left: 65px;
    padding-right: 65px;
    font-size: 13px;
  }
}

#breadcrumbs a {
  margin-right: 0.5rem;
}

#breadcrumbs a:after {
  content: '|';
  margin-left: 0.5rem;
  display: inline-block;
}

#mainpage .banner {
  position: relative;
  z-index: 0;
}

#mainpage .banner img {
  width: 100%;
}

#mainpage .banner .title {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 20%;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(49 59 67 / var(--tw-text-opacity));
  font-family: 'Forum', cursive;
}

@media (min-width: 640px) {
  #mainpage .banner .title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .banner .title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

#mainpage .model-row {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  #mainpage .model-row {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

#mainpage .model-row .inner {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #mainpage .model-row .inner {
    gap: 30px;
  }
}

#content #mainpage .model-row .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #mainpage .model-row .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  #mainpage .model-row .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#mainpage .model-row .inner .title {
  z-index: 1;
  grid-column: span 3 / span 3;
  font-weight: bold;
}

@media (min-width: 1024px) {
  #mainpage .model-row .inner .title {
    grid-column: span 2 / span 2;
    grid-column-start: 1;
  }
}

#mainpage .model-row .inner .slide-counter {
  grid-column: span 1 / span 1;
  padding-top: 0.25rem;
  text-align: right;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #mainpage .model-row .inner .slide-counter {
    position: absolute;
    grid-column-start: 2;
    grid-row-start: 2;
    padding-top: 0px;
    text-align: left;
  }
}

#mainpage .model-row .inner #flag {
  position: absolute;
  top: 0px;
  z-index: 2;
  margin-right: -72px;
  margin-top: -35px;
  display: none;
}

.grid10-wrapper#mainpage .model-row .inner #flag {
  display: none;
}

@media (min-width: 1024px) {
  #mainpage .model-row .inner #flag {
    display: block;
  }
}

#mainpage .model-row .inner #flag {
  right: calc(((100vw - 40px - (9 * 15px)) / 10 * 2) + 2 * 15px);
}

@media (min-width: 1280px) {
  #mainpage .model-row .inner #flag {
    right: calc(((100vw - 130px - (9 * 15px)) / 10 * 2) + 2 * 15px);
  }
}

@media (min-width: 1536px) {
  #mainpage .model-row .inner #flag {
    right: calc(((100vw - 130px - (9 * 30px)) / 10 * 2) + 2 * 30px);
  }
}

#mainpage .model-row .title {
  margin-bottom: 1.25rem;
  font-size: 14px;
  line-height: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .model-row .title {
    margin-bottom: 0px;
  }
}

@media (min-width: 1280px) {
  #mainpage .model-row .title {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#mainpage .model-row .splide {
  grid-column: span 4 / span 4;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    grid-row: span 2 / span 2;
    margin-left: calc(
      -1 * (((100vw - 40px - (9 * 15px)) / 10 * 2) + 2 * 15px + 20px)
    );
    margin-right: calc(
      -1 * (((100vw - 40px - (9 * 15px)) / 10 * 2) + 2 * 15px + 20px)
    );
  }
}

@media (min-width: 1280px) {
  #mainpage .model-row .splide {
    margin-left: calc(
      -1 * (((100vw - 130px - (9 * 15px)) / 10 * 2) + 2 * 15px + 65px)
    );
    margin-right: calc(
      -1 * (((100vw - 130px - (9 * 15px)) / 10 * 2) + 2 * 15px + 65px)
    );
  }
}

@media (min-width: 1536px) {
  #mainpage .model-row .splide {
    margin-left: calc(
      -1 * (((100vw - 130px - (9 * 30px)) / 10 * 2) + 2 * 30px + 65px)
    );
    margin-right: calc(
      -1 * (((100vw - 130px - (9 * 30px)) / 10 * 2) + 2 * 30px + 65px)
    );
  }
}

#mainpage .model-row .splide__slide .picture {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide .picture {
    margin-bottom: 39px;
  }
}

#mainpage .model-row .splide__slide .about-model {
  opacity: 0;
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide .about-model {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    display: grid;
    gap: 15px;
  }

  #content #mainpage .model-row .splide__slide .about-model {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #mainpage .model-row .splide__slide .about-model {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #mainpage .model-row .splide__slide .about-model div:first-child {
    grid-column: span 4 / span 4;
  }

  #mainpage .model-row .splide__slide .about-model div:last-child {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1536px) {
  #mainpage .model-row .splide__slide .about-model {
    gap: 30px;
  }
}

#mainpage .model-row .splide__slide .about-model {
  opacity: 1 !important;
}

#mainpage .model-row .splide__slide.is-active .about-model {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

#mainpage .model-row .splide__slide .model {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide .model {
    margin-bottom: 50px;
    justify-content: flex-start;
  }
}

#mainpage .model-row .splide__slide .model .name {
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide .model .name {
    flex-basis: 75%;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .model-row .splide__slide .model .name {
    flex-basis: 66.666667%;
  }
}

#mainpage .model-row .splide__slide .model .count {
  margin-top: 0.125rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide .model .count {
    margin-top: 0.375rem;
    flex-basis: 25%;
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .model-row .splide__slide .model .count {
    flex-basis: 33.333333%;
  }
}

#mainpage .model-row .splide__slide .description {
  /* margin-bottom: 1.25rem; */
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
  margin-top: auto;
}
#mainpage .model-row .splide__slide a {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide .description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#mainpage .model-row .splide__slide a {
  max-width: 240px;
}

@media (min-width: 1024px) {
  #mainpage .model-row .splide__slide a {
    font-size: 13px;
    line-height: 1rem;
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  #mainpage .model-row .splide__slide a {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

#mainpage .model-row .splide__arrows {
  position: relative;
  width: 100%;
}

#mainpage .model-row .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#mainpage .model-row .splide__arrow {
  position: absolute;
  z-index: 1;
  margin-top: -31px;
  display: flex;
  height: 62px;
  width: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

#mainpage .model-row .splide__arrow:disabled {
  display: none;
}

.grid10-wrapper#mainpage .model-row .splide__arrow:disabled {
  display: none;
}

#mainpage .model-row .splide__arrow.splide__arrow--prev {
  margin-left: -31px;
  left: calc(20px + 15px + ((100vw - 40px - (9 * 15px)) / 10));
}

#mainpage .model-row .splide__arrow.splide__arrow--prev svg {
  --tw-rotate: 180deg;
  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));
}

@media (min-width: 1280px) {
  #mainpage .model-row .splide__arrow.splide__arrow--prev {
    left: calc(65px + 15px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #mainpage .model-row .splide__arrow.splide__arrow--prev {
    left: calc(65px + 30px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#mainpage .model-row .splide__arrow.splide__arrow--next {
  margin-right: -31px;
  right: calc(20px + 15px + ((100vw - 40px - (9 * 15px)) / 10));
}

@media (min-width: 1280px) {
  #mainpage .model-row .splide__arrow.splide__arrow--next {
    right: calc(65px + 15px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #mainpage .model-row .splide__arrow.splide__arrow--next {
    right: calc(65px + 30px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#mainpage .about-panavto {
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .about-panavto {
    padding-top: 120px;
    padding-bottom: 120px;
    background-position: left;
    background-repeat: no-repeat;
    background-image: url(/css/../images/AURUS.png);
    background-size: 600px;
  }
}

@media (min-width: 1280px) {
  #mainpage .about-panavto {
    background-size: 700px;
  }
}

@media (min-width: 1536px) {
  #mainpage .about-panavto {
    background-size: 900px;
    background-position: 0 400px;
  }
}

#mainpage .about-panavto .title {
  margin-bottom: 34px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 640px) {
  #mainpage .about-panavto .title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .title {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    line-height: 1.3;
  }
}

@media (min-width: 1280px) {
  #mainpage .about-panavto .title {
    font-size: 73px;
  }
}

#mainpage .about-panavto .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    display: grid;
    gap: 15px;
  }

  @media (min-width: 1536px) {
    #mainpage .about-panavto .inner {
      gap: 30px;
    }
  }

  #content #mainpage .about-panavto .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #mainpage .about-panavto .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

.news-back {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  text-decoration: underline;
}

#mainpage .about-panavto .sliders {
  margin-top: 34px;
  margin-bottom: 34px;
  overflow: hidden;
}
#mainpage .about-panavto .slidersTwo {
  margin-top: 34px;
  margin-bottom: 34px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .sliders {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  #mainpage .about-panavto .slidersTwo {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    display: flex;
    align-items: flex-start;
  }
}

#mainpage .about-panavto .splide.small {
  display: none;
  overflow: hidden;
  padding-bottom: 30px;
}

.grid10-wrapper#mainpage .about-panavto .splide.small {
  display: none;
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .splide.small {
    position: relative;
    display: block;
  }
}

#mainpage .about-panavto .splide.small .slide-counter {
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

@media (min-width: 1536px) {
  #mainpage .about-panavto .splide.small .slide-counter {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .splide.small img {
    aspect-ratio: 1 / 1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

#mainpage .about-panavto .splide.large {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
#mainpage .about-panavto .splide.large .splide__track {
  overflow: hidden;
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .splide.large {
    margin-left: 0px;
    margin-right: 0px;
    width: calc((100vw - 40px - 9 * 15px) / 10 * 5 + 15px * 4);
  }
}

@media (min-width: 1280px) {
  #mainpage .about-panavto .splide.large {
    width: calc((100vw - 130px - 9 * 15px) / 10 * 5 + 15px * 4);
  }
}

#mainpage .about-panavto .splide.large .hide {
  display: none;
}

.grid10-wrapper#mainpage .about-panavto .splide.large .hide {
  display: none;
}

#mainpage .about-panavto .splide.large img {
  aspect-ratio: 16 / 9;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .splide.large img {
    aspect-ratio: 3/2;
  }
}

#mainpage .about-panavto .splide .splide__pagination {
  margin-top: 2rem;
  display: flex;
  -moz-column-gap: 9px;
  column-gap: 9px;
}

@media (min-width: 1536px) {
  #mainpage .about-panavto .splide .splide__pagination {
    margin-top: 60px;
  }
}

#mainpage .about-panavto .splide .splide__pagination .splide__pagination__page {
  height: 0.125rem;
  width: 2rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  opacity: 0.2;
}

@media (min-width: 1536px) {
  #mainpage
    .about-panavto
    .splide
    .splide__pagination
    .splide__pagination__page {
    width: 60px;
  }
}

#mainpage
  .about-panavto
  .splide
  .splide__pagination
  .splide__pagination__page.is-active {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

#mainpage .about-panavto .descr {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  #mainpage .about-panavto .descr {
    grid-column: span 4 / span 4;
    grid-column-start: 3;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#mainpage .about-panavto .descr p:not(:last-child) {
  margin-bottom: 1.5rem;
}

#mainpage .about-panavto .descr span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

#mainpage .stock {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  #mainpage .stock {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  #mainpage .stock {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  #mainpage .stock .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    display: grid;
    gap: 15px;
  }

  @media (min-width: 1536px) {
    #mainpage .stock .inner {
      gap: 30px;
    }
  }

  #content #mainpage .stock .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #mainpage .stock .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#mainpage .stock .inner .title-sm {
  grid-column: span 2 / span 2;
  grid-column-start: 1;
  margin-bottom: 1.25rem;
  display: none;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

.grid10-wrapper#mainpage .stock .inner .title-sm {
  display: none;
}

@media (min-width: 1024px) {
  #mainpage .stock .inner .title-sm {
    margin-bottom: 0px;
    display: block;
    font-weight: bold;
  }
}

@media (min-width: 1280px) {
  #mainpage .stock .inner .title-sm {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#mainpage .stock .inner > .title {
  margin-bottom: 60px;
  font-size: 24px;
  line-height: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #mainpage .stock .inner > .title {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    margin-bottom: 90px;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .stock .inner > .title {
    font-size: 73px;
  }
}

#mainpage .stock .inner > .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

#mainpage .stock .inner .tab-links {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 239 239 / var(--tw-border-opacity));
}

@media (min-width: 1024px) {
  #mainpage .stock .inner .tab-links {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
  }
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .tab-links {
    margin-bottom: 5rem;
  }
}

#mainpage .stock .inner .tab-links a {
  margin-bottom: -1px;
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 0.625rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
}

@media (min-width: 1024px) {
  #mainpage .stock .inner .tab-links a {
    padding-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#mainpage .stock .inner .tab-links a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
}

#mainpage .stock .inner .splide {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

@media (min-width: 1024px) {
  #mainpage .stock .inner .splide {
    grid-column: span 10 / span 10;
  }
}

@media (min-width: 1280px) {
  #mainpage .stock .inner .splide {
    margin-left: -65px;
    margin-right: -65px;
  }
}
#mainpage .stock .inner .splide .splide__list {
  align-items: stretch;
}
#mainpage .stock .inner .splide .splide__slide a {
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.78;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide .splide__slide a {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

#mainpage .stock .inner .splide .title {
  height: 72px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide .title {
    font-size: 37px;
  }
}

#mainpage .stock .inner .splide .picture {
  margin-top: 2.5rem;
}

#mainpage .stock .inner .splide .params {
  margin-top: 2.5rem;
  margin-bottom: 34px;
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide .params {
    margin-top: 55px;
  }
}

#mainpage .stock .inner .splide .params div {
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
  background-image: url('/css/../images/aurus-bullet.svg');
  background-position: 0 3px;
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide .params div {
    font-size: 1rem;
    line-height: 1.5rem;
    background-position: 0 5px;
  }
}

#mainpage .stock .inner .splide .price {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
  margin-top: auto;
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide .price {
    margin-top: auto;
    font-size: 27px;
  }
}

#mainpage .stock .inner .splide__arrows {
  position: relative;
  width: 100%;
}

#mainpage .stock .inner .splide__arrow {
  position: absolute;
  top: 100px;
  z-index: 1;
  margin-top: -31px;
  display: flex;
  height: 62px;
  width: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide__arrow {
    top: 120px;
  }
}

#mainpage .stock .inner .splide__arrow:disabled {
  display: none;
}

.grid10-wrapper#mainpage .stock .inner .splide__arrow:disabled {
  display: none;
}

#mainpage .stock .inner .splide__arrow.splide__arrow--prev {
  margin-left: -70px;
  left: calc(20px + ((100vw - 40px - (9 * 15px)) / 10));
}

#mainpage .stock .inner .splide__arrow.splide__arrow--prev svg {
  --tw-rotate: 180deg;
  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));
}

@media (min-width: 1280px) {
  #mainpage .stock .inner .splide__arrow.splide__arrow--prev {
    left: calc(65px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide__arrow.splide__arrow--prev {
    left: calc(65px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#mainpage .stock .inner .splide__arrow.splide__arrow--next {
  margin-right: -70px;
  right: calc(20px + ((100vw - 40px - (9 * 15px)) / 10));
}

@media (min-width: 1280px) {
  #mainpage .stock .inner .splide__arrow.splide__arrow--next {
    right: calc(65px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #mainpage .stock .inner .splide__arrow.splide__arrow--next {
    right: calc(65px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#mainpage .stock .inner .button {
  margin-top: 45px;
}

@media (min-width: 1024px) {
  #mainpage .stock .inner .button {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    margin-top: 15px;
  }
}

#mainpage .stock .inner .button a {
  margin-left: auto;
  margin-right: auto;
  max-width: 240px;
}

@media (min-width: 1024px) {
  #mainpage .stock .inner .button a {
    margin-left: 0px;
    margin-right: 0px;
  }
}

#mainpage .service-finance {
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  #mainpage .service-finance {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

#mainpage .service-finance .inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #mainpage .service-finance .inner {
    gap: 30px;
  }
}

#content #mainpage .service-finance .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #mainpage .service-finance .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  #mainpage .service-finance .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#mainpage .service-finance .subtitle {
  grid-column: span 2 / span 2;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .service-finance .subtitle {
    grid-column-start: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .service-finance .subtitle {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#mainpage .service-finance .subtitle:not(:first-child) {
  margin-top: 3rem;
}

@media (min-width: 640px) {
  #mainpage .service-finance .subtitle:not(:first-child) {
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .subtitle:not(:first-child) {
    margin-top: 0px;
  }
}

#mainpage .service-finance .title {
  grid-column: span 2 / span 2;
  margin-bottom: 2.5rem;
  font-size: 24px;
  line-height: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #mainpage .service-finance .title {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .service-finance .title {
    margin-bottom: 90px;
    font-size: 72px;
  }
}

#mainpage .service-finance .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .service-finance .title:not(:nth-child(2)) {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    /*text-align: right;*/
  }
}

#mainpage .service-finance .button {
  grid-column: span 2 / span 2;
}

@media (min-width: 1024px) {
  #mainpage .service-finance .button {
    grid-column-start: 9;
  }
}

#mainpage .service-finance .button a {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 240px;
}

@media (min-width: 640px) {
  #mainpage .service-finance .button a {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .button a {
    margin-bottom: 0px;
  }
}

#mainpage .service-finance .service-container {
  grid-column: span 2 / span 2;
}

@media (min-width: 640px) {
  #mainpage .service-finance .service-container {
    grid-auto-rows: auto min-content 1fr;
    grid-column: span 2 / span 2;
    grid-column-start: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 15px;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    align-content: start;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .service-container {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    margin-bottom: 5rem;
  }
}

#mainpage .service-finance .service-container .text {
  padding-bottom: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 640px) {
  #mainpage .service-finance .service-container .text {
    grid-column: span 4 / span 4;
    grid-row-start: 1;
    padding-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .service-container .text {
    padding-bottom: 0px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 640px) {
  #mainpage .service-finance .service-container .block-1 {
    grid-column: span 3 / span 3;
    grid-column-start: 2;
    grid-row: span 2 / span 2;
    grid-row-start: 2;
  }

  #mainpage .service-finance .service-container .block-2 {
    grid-column-start: 1;
    grid-row-start: 2;
  }

  #mainpage .service-finance .service-container .block-3 {
    grid-column-start: 1;
    grid-row-start: 3;
    padding-top: 0.5rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .service-container .block-3 {
    padding-top: 1.25rem;
  }
}

#mainpage .service-finance .finance-container {
  grid-column: span 2 / span 2;
}

@media (min-width: 640px) {
  #mainpage .service-finance .finance-container {
    grid-column-start: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 15px;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    grid-auto-rows: min-content 1fr;
    align-content: start;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .finance-container {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  #mainpage .service-finance .finance-container .block-1 {
    grid-column-start: 4;
    grid-row-start: 1;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .finance-container .block-1 {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
    /*padding-top: 5rem;*/
  }
}

#mainpage .service-finance .finance-container .block-1 {
  align-self: start;
}

@media (min-width: 640px) {
  #mainpage .service-finance .finance-container .block-2 {
    grid-column: span 3 / span 3;
    grid-column-start: 1;
    grid-row: span 2 / span 2;
    grid-row-start: 1;
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .finance-container .block-2 {
    grid-column: span 4 / span 4;
  }
}

#mainpage .service-finance .finance-container .block-2 {
  align-self: start;
}

@media (min-width: 640px) {
  #mainpage .service-finance .finance-container .block-3 {
    grid-column-start: 4;
    grid-row-start: 2;
    /*padding-top: 1.25rem;*/
  }
}

@media (min-width: 1024px) {
  #mainpage .service-finance .finance-container .block-3 {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
  }
}

#mainpage .service-finance .finance-container .block-3 {
  align-self: start;
}

#mainpage .service-finance .blocks {
  margin-bottom: 35px;
}

@media (min-width: 640px) {
  #mainpage .service-finance .blocks {
    margin-bottom: 0px;
  }
}

#mainpage .service-finance .blocks:last-child {
  margin-bottom: 0px;
}

#mainpage .service-finance .blocks a {
  /* margin-top: 0.75rem; */
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
  text-decoration-line: underline;
}
#mainpage .service-finance .blocks img {
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  #mainpage .service-finance .blocks a {
    /* margin-top: 1.25rem; */
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #mainpage .service-finance .blocks img {
    margin-bottom: 1.25rem;
  }
}

#mainpage .news {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  #mainpage .news {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  #mainpage .news {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  #mainpage .news .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    display: grid;
    gap: 15px;
  }

  @media (min-width: 1536px) {
    #mainpage .news .inner {
      gap: 30px;
    }
  }

  #content #mainpage .news .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #mainpage .news .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#mainpage .news .subtitle {
  grid-column: span 2 / span 2;
  margin-bottom: 15px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .news .subtitle {
    grid-column-start: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .news .subtitle {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#mainpage .news .title {
  grid-column: span 2 / span 2;
  margin-bottom: 2.5rem;
  width: 100%;
  font-size: 24px;
  line-height: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #mainpage .news .title {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #mainpage .news .title {
    margin-bottom: 90px;
    font-size: 72px;
  }
}

#mainpage .news .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

#mainpage .news .link-all {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
  text-decoration-line: underline;
}

@media (min-width: 1024px) {
  #mainpage .news .link-all {
    grid-column-start: 10;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#mainpage .news .splide {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 1024px) {
  #mainpage .news .splide {
    grid-column: span 10 / span 10;
    margin-left: -65px;
    margin-right: -65px;
  }
}

#mainpage .news .splide a {
  font-size: 16px;
  line-height: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  #mainpage .news .splide a {
    font-size: 16px;
  }
}

#mainpage .news .splide .date {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .news .splide .date {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#mainpage .news .splide .date span:first-child {
  margin-right: 22px;
}

#mainpage .news .splide .date span:first-child:after {
  content: '';
  margin-left: 22px;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
  background-repeat: no-repeat;
  background-image: url('/css/../images/aurus-bullet-gray.svg');
  background-size: 12px;
}

#mainpage .news .splide__arrows {
  position: relative;
  width: 100%;
}

#mainpage .news .splide__arrow {
  position: absolute;
  top: 100px;
  z-index: 1;
  margin-top: -1.25rem;
  display: flex;
  height: 62px;
  width: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1536px) {
  #mainpage .news .splide__arrow {
    top: 120px;
  }
}

#mainpage .news .splide__arrow:disabled {
  display: none;
}

.grid10-wrapper#mainpage .news .splide__arrow:disabled {
  display: none;
}

#mainpage .news .splide__arrow.splide__arrow--prev {
  margin-left: -70px;
  left: calc(20px + ((100vw - 40px - (9 * 15px)) / 10));
}

#mainpage .news .splide__arrow.splide__arrow--prev svg {
  --tw-rotate: 180deg;
  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));
}

@media (min-width: 1280px) {
  #mainpage .news .splide__arrow.splide__arrow--prev {
    left: calc(65px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #mainpage .news .splide__arrow.splide__arrow--prev {
    left: calc(65px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#mainpage .news .splide__arrow.splide__arrow--next {
  margin-right: -70px;
  right: calc(20px + ((100vw - 40px - (9 * 15px)) / 10));
}

@media (min-width: 1280px) {
  #mainpage .news .splide__arrow.splide__arrow--next {
    right: calc(65px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #mainpage .news .splide__arrow.splide__arrow--next {
    right: calc(65px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#mainpage .benefits {
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  #mainpage .benefits {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  #mainpage .benefits {
    padding-top: 211px;
    padding-bottom: 120px;
  }
}

#mainpage .benefits .inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #mainpage .benefits .inner {
    gap: 30px;
  }
}

#content #mainpage .benefits .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #mainpage .benefits .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  #mainpage .benefits .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#mainpage .benefits .subtitle {
  grid-column: span 6 / span 6;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .benefits .subtitle {
    grid-column-start: 1;
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1280px) {
  #mainpage .benefits .subtitle {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#mainpage .benefits .subtitle:not(:first-child) {
  margin-top: 3rem;
}

@media (min-width: 640px) {
  #mainpage .benefits .subtitle:not(:first-child) {
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .benefits .subtitle:not(:first-child) {
    margin-top: 0px;
  }
}

#mainpage .benefits .title {
  grid-column: span 12 / span 12;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 6.6px;
  font-family: 'Forum', cursive;
  position: relative;
  font-size: 24px;
}
#mainpage .benefits .title:after {
  content: 'Aurus';
  text-transform: uppercase;
  color: #fff;
  font-family: 'Forum', cursive;
  font-size: 354px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 53.1px;
  text-transform: uppercase;
  opacity: 0.06;
  position: absolute;
  top: -190px;
  right: -66%;
}
@media (max-width: 1024px){
  #mainpage .benefits .title:after {
    top: -10px;
  }
}

#mainpage .benefits .benefits__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
#mainpage .benefits .benefits__item {
  display: flex;
  min-height: 171px;
}
#mainpage .benefits .benefits__item svg {
  margin-right: 26px;
  min-width: 12px;
  width: 12px;
  margin-top: 7px;
}

.benefits__image {
  margin-top: 32px;
}

@media (min-width: 1024px) {
  #mainpage .benefits .title {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 40px;
  }
}

@media (min-width: 1280px) {
  #mainpage .benefits .title {
    margin-bottom: 84px;
    font-size: 44px;
  }
}
@media (max-width: 1500px) {
  #mainpage .benefits .title br {
    display: none;
  }
}
#mainpage .benefits .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .benefits .title:not(:nth-child(2)) {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    text-align: right;
  }
}
@media (min-width: 768px) {
  #mainpage .benefits .title {
    font-size: 2.2rem;
  }
}

#mainpage .benefits .button {
  grid-column: span 2 / span 2;
}

@media (min-width: 1024px) {
  #mainpage .benefits .button {
    grid-column-start: 9;
  }
}

#mainpage .benefits .button a {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 240px;
}

@media (min-width: 640px) {
  #mainpage .benefits .button a {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .benefits .button a {
    margin-bottom: 0px;
  }
}

@media (max-width: 1300px) {
  #mainpage .benefits .benefits__item {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  #mainpage .benefits .benefits__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  #mainpage .benefits .benefits__item {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  #mainpage .benefits .benefits__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
#mainpage .benefits .benefits__container {
  grid-column: span 8 / span 8;
  grid-column-start: 3;
}

#mainpage .hang {
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  #mainpage .hang {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  #mainpage .hang {
    padding-top: 110px;
    padding-bottom: 70px;
  }
}

#mainpage .hang .inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #mainpage .hang .inner {
    gap: 30px;
  }
}

#content #mainpage .hang .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #mainpage .hang .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  #mainpage .hang .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#mainpage .hang .subtitle {
  grid-column: span 6 / span 6;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .hang .subtitle {
    grid-column-start: 1;
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1280px) {
  #mainpage .hang .subtitle {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#mainpage .hang .subtitle:not(:first-child) {
  margin-top: 3rem;
}

@media (min-width: 640px) {
  #mainpage .hang .subtitle:not(:first-child) {
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .hang .subtitle:not(:first-child) {
    margin-top: 0px;
  }
}

#mainpage .hang .title {
  grid-column: span 12 / span 12;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 6.6px;
  font-family: 'Forum', cursive;
  position: relative;
  font-size: 24px;
}
#mainpage .hang .title:after {
  content: 'Aurus';
  text-transform: uppercase;
  color: #fff;
  font-family: 'Forum', cursive;
  font-size: 354px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 53.1px;
  text-transform: uppercase;
  opacity: 0.06;
  position: absolute;
  top: 180px;
  left: -90%;
}

@media (min-width: 1024px) {
  #mainpage .hang .title {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 1500px) {
  #mainpage .hang .title br {
    display: none;
  }
}

@media (min-width: 1280px) {
  #mainpage .hang .title {
    margin-bottom: 84px;
    font-size: 59px;
  }
}

#mainpage .hang .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #mainpage .hang .title:not(:nth-child(2)) {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    text-align: right;
  }
}

@media (min-width: 768px) {
  #mainpage .benefits .title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  #mainpage .benefits .title {
    font-size: 59px;
  }
}
#mainpage .hang .button {
  grid-column: span 2 / span 2;
}

@media (min-width: 1024px) {
  #mainpage .hang .button {
    grid-column-start: 9;
  }
}

#mainpage .hang .button a {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 240px;
}

@media (min-width: 640px) {
  #mainpage .hang .button a {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #mainpage .hang .button a {
    margin-bottom: 0px;
  }
}

#mainpage .hang .hang__content {
  grid-column: span 4 / span 4;
  grid-column-start: 4;
}
#mainpage .hang .hang__content p {
  line-height: 27px;
}
@media (max-width: 1300px) {
  #mainpage .hang .hang__content p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  #mainpage .hang .hang__content {
    grid-column: span 12 / span 12;
    grid-column-start: 1;
  }
  #mainpage .hang .hang__images {
    grid-column: span 12 / span 12;
    grid-column-start: 1;
  }
}

#mainpage .hang .hang__images {
  grid-column: span 6 / span 6;
  grid-column-start: 3;
  display: flex;
  margin-top: 60px;
}
#mainpage .hang .hang__image:first-child {
  padding-right: 10px;
}
#modelpage {
  overflow: hidden;
}

/* .subtitle{
        @apply text-base font-medium text-aurus-grey100 text-center tracking-[0.2em] uppercase mt-[26px];
    } */

#modelpage .banner {
  position: relative;
  margin-bottom: 90px;
  height: 400px;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  padding-top: 5rem;
}

@media (min-width: 640px) {
  #modelpage .banner {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  #modelpage .banner {
    height: 600px;
  }
}

@media (min-width: 1280px) {
  #modelpage .banner {
    height: 750px;
  }
}

@media (min-width: 1536px) {
  #modelpage .banner {
    height: 1000px;
  }
}

#modelpage .banner h1 {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  #modelpage .banner h1 {
    margin-top: 0px;
  }
}

#modelpage .banner div {
  text-align: center;
  font-size: 28vw;
  line-height: 1;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  opacity: 0.5;
  font-family: 'Forum', cursive;
}

@media (min-width: 1280px) {
  #modelpage .banner div {
    font-size: 350px;
  }
}

@media (min-width: 1536px) {
  #modelpage .banner div {
    /* font-size: 460px; */
    font-size: 350px;
  }
}

#modelpage .banner img {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
  width: auto;
  display: block;
}

@media (min-width: 640px) {
  #modelpage .banner img {
    height: 210px;
  }
}

@media (min-width: 768px) {
  #modelpage .banner img {
    height: 260px;
  }
}

@media (min-width: 1024px) {
  #modelpage .banner img {
    top: 35%;
    height: 320px;
  }
}

@media (min-width: 1280px) {
  #modelpage .banner img {
    top: 40%;
    height: 370px;
  }
}

@media (min-width: 1536px) {
  #modelpage .banner img {
    top: auto;
    bottom: 150px;
    height: 440px;
  }
}

#modelpage .model-features {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #modelpage .model-features {
    gap: 30px;
  }
}

#content #modelpage .model-features {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #modelpage .model-features {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#modelpage .model-features .tab-links {
  grid-column: span 10 / span 10;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 239 239 / var(--tw-border-opacity));
}

@media (min-width: 1536px) {
  #modelpage .model-features .tab-links {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
    margin-bottom: 5rem;
  }
}

#modelpage .model-features .tab-links a {
  margin-bottom: -1px;
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 0.625rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
}

@media (min-width: 1024px) {
  #modelpage .model-features .tab-links a {
    padding-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#modelpage .model-features .tab-links a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
}

#modelpage .model-features .subtitle {
  grid-column: span 10 / span 10;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .model-features .subtitle {
    grid-column: span 2 / span 2;
    grid-column-start: 1;
  }
}

@media (min-width: 1280px) {
  #modelpage .model-features .subtitle {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#modelpage .model-features .title {
  grid-column: span 10 / span 10;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 640px) {
  #modelpage .model-features .title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  #modelpage .model-features .title {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #modelpage .model-features .title {
    margin-bottom: 4rem;
    font-size: 72px;
  }
}

@media (min-width: 390px) and (max-width: 459px) {
  #modelpage .model-features .title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 460px) and (max-width: 639px) {
  #modelpage .model-features .title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

#modelpage .model-features .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .model-features .title:not(:nth-child(2)) {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
  }
}

#modelpage .model-features .sliders {
  grid-column: span 10 / span 10;
}
#modelpage .model-features .slidersTwo {
  grid-column: span 10 / span 10;
}

@media (min-width: 1024px) {
  #modelpage .model-features .sliders {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    margin-bottom: 34px;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
@media (min-width: 1024px) {
  #modelpage .model-features .slidersTwo {
    grid-column: span 7 / span 7;
    grid-column-start: 3;
    margin-bottom: 34px;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

#modelpage .model-features .splide.small {
  display: none;
  overflow: hidden;
  padding-bottom: 30px;
}
.splide__pagination__page {
  border-radius: 0;
}
.grid10-wrapper#modelpage .model-features .splide.small {
  display: none;
}

@media (min-width: 1024px) {
  #modelpage .model-features .splide.small {
    position: relative;
    display: block;
  }
}

#modelpage .model-features .splide.small .slide-counter {
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

@media (min-width: 1536px) {
  #modelpage .model-features .splide.small .slide-counter {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  #modelpage .model-features .splide.small img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16/11;
  }
}

#modelpage .model-features .splide.large {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
#modelpage .model-features .splide.large .splide__track {
  overflow: hidden;
}
@media (max-width: 1023px) {
  /* .model-features .splide.large {
    display: none;
  } */
}
@media (min-width: 1024px) {
  #modelpage .model-features .splide.large {
    margin-left: 0px;
    margin-right: 0px;
    width: calc((100vw - 40px - 9 * 15px) / 10 * 5 + 15px * 4);
  }
}

@media (min-width: 1280px) {
  #modelpage .model-features .splide.large {
    width: calc((100vw - 130px - 9 * 15px) / 10 * 5 + 15px * 4);
  }
}

#modelpage .model-features .splide.large .hide {
  display: none;
}

.grid10-wrapper#modelpage .model-features .splide.large .hide {
  display: none;
}

#modelpage .model-features .splide.large img {
  aspect-ratio: 16 / 9;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 1024px) {
  #modelpage .model-features .splide.large img {
    aspect-ratio: 3/2;
  }
}

#modelpage .model-features .splide.large p {
  /* display: none; */
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

#modelpage .model-features .splide.large .splide__arrow {
  position: absolute;
  z-index: 1;
  margin-top: -31px;
  display: flex;
  height: 62px;
  width: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.grid10-wrapper#modelpage .model-features .splide.large p {
  display: none;
}

@media (min-width: 1024px) {
  #modelpage .model-features .splide.large p {
    margin-top: 2.5rem;
    display: block;
  }
}

#modelpage .model-features .splide .splide__pagination {
  margin-top: 2rem;
  display: flex;
  -moz-column-gap: 9px;
  column-gap: 9px;
  padding: 0px 40px;
  flex-wrap: nowrap;
  gap: 10px;
}
.splide__pagination li {
  /*width: 100%;*/
  display: block;
}
.splide__pagination__page.is-active {
  transform: none;
}
@media (min-width: 1536px) {
  #modelpage .model-features .splide .splide__pagination {
    margin-top: 60px;
  }
}

#modelpage
  .model-features
  .splide
  .splide__pagination
  .splide__pagination__page {
  height: 0.125rem;
  width: 2rem;
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  opacity: 0.2;
}

@media (min-width: 1536px) {
  #modelpage
    .model-features
    .splide
    .splide__pagination
    .splide__pagination__page {
    width: 100%;
  }
}

#modelpage
  .model-features
  .splide
  .splide__pagination
  .splide__pagination__page.is-active {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

#modelpage .view360 {
  margin-top: 90px;
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  padding-top: 93px;
  padding-bottom: 200px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1280px) {
  #modelpage .view360 {
    padding-left: 65px;
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  #modelpage .view360 {
    padding-bottom: 380px;
  }
}

#modelpage .view360 .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #modelpage .view360 .inner {
    gap: 30px;
  }
}

#content #modelpage .view360 .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #modelpage .view360 .inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#modelpage .view360 .inner .text-1 {
  grid-column: span 10 / span 10;
  font-size: 23px;
  letter-spacing: 0.1em;
  font-family: 'Forum', cursive;
}

@media (min-width: 768px) {
  #modelpage .view360 .inner .text-1 {
    grid-column: span 5 / span 5;
  }
}

#modelpage .view360 .inner .text-2 {
  grid-column: span 10 / span 10;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  #modelpage .view360 .inner .text-2 {
    grid-column: span 5 / span 5;
  }
}

#modelpage .view360 .inner .text-2 div {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  #modelpage .view360 .inner .text-2 div {
    width: 320px;
  }
}

#modelpage .view360 .inner .text-2 svg {
  height: 5rem;
  width: 5rem;
}

#modelpage .view360 .inner .rotator {
  grid-column: span 10 / span 10;
}

#modelpage .view360 .inner .rotator #model-rotator {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  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));
}

@media (min-width: 1024px) {
  #modelpage .view360 .inner .rotator #model-rotator {
    margin-top: -120px;
    --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));
  }
}

#modelpage .view360 .color-selector {
  grid-column: span 10 / span 10;
  display: none;
  /* display: grid; */
  width: 100%;
  overflow-x: auto;
}

@media (min-width: 1024px) {
  #modelpage .view360 .color-selector {
    justify-content: center;
    display: none;
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1536px) {
  #modelpage .view360 .color-selector {
    grid-column: span 8 / span 8;
    /*grid-column-start: 2;*/
  }
}

#modelpage .view360 .color-selector a {
  position: relative;
  z-index: 0;
  display: flex;
  height: 100px;
  width: 100px;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  #modelpage .view360 .color-selector a {
    height: 209px;
    width: 220px;
    row-gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  #modelpage .view360 .color-selector a {
    height: 209px;
    width: 220px;
    row-gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

#modelpage .view360 .color-selector a span:nth-child(1) {
  position: relative;
  z-index: 10;
  width: 90%;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (min-width: 1024px) {
  #modelpage .view360 .color-selector a span:nth-child(1) {
    width: auto;
  }
}

#modelpage .view360 .color-selector a span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  margin-left: -11px;
  margin-top: -11px;
  height: 22px;
  width: 22px;
}

@media (min-width: 1024px) {
  #modelpage .view360 .color-selector a span:nth-child(2) {
    border-radius: 9999px;
  }
}

#modelpage .view360 .color-selector a span:nth-child(3) {
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(49 59 67 / var(--tw-text-opacity));
}

#modelpage .view360 .color-selector a.active:after,
#modelpage .view360 .color-selector a:hover:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.375rem;
  margin-left: -0.375rem;
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  background-repeat: no-repeat;
  background-image: url('/css/../images/aurus-bullet-white.svg');
  background-position: 0 0px;
}

#modelpage .view360 .color-selector a.active:not(.light) span:nth-child(1),
#modelpage .view360 .color-selector a.active:not(.light) span:nth-child(3),
#modelpage .view360 .color-selector a:hover:not(.light) span:nth-child(1),
#modelpage .view360 .color-selector a:hover:not(.light) span:nth-child(3) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

#modelpage .view360 .color-selector a.active span:nth-child(2),
#modelpage .view360 .color-selector a:hover span:nth-child(2) {
  inset: 0px;
  margin: 0px;
  height: 100%;
  width: 100%;
  --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));
}

#modelpage .view360 .color-selector.active {
  display: flex;
  flex-wrap: nowrap;
}
@media (min-width: 1024px) {
  #modelpage .view360 .color-selector.active {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.color-selector__wrapper {
  display: grid;
  grid-column: span 8 / span 8;
  grid-column-start: 2;
  position: relative;
}
.color-selector__button {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  height: 4em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
  padding: 0 2em;
  margin: auto;
  text-transform: uppercase;
  font-size: 13px;
  font-family: 'Galaxie Polaris', Forum, Arial, Tahoma, sans-serif;
  letter-spacing: 2px;
}
.color-selector__toggle .color__second {
  display: none;
}
.color-selector__toggle.active .color__second {
  display: block;
}
.color-selector__toggle.active .color__main {
  display: none;
}
.color-selector__toggle {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4em;
  line-height: 4;
  cursor: pointer;
  background-color: #000;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
  color: #fff;
  white-space: nowrap;
  min-height: 210px;
}
@media (max-width: 1024px) {
  .color-selector__toggle {
    min-height: auto;
  }
}
.button-arrow {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin: 2px 0.8em 0 -0.3em;
}
.button-arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.35em;
  width: 1em;
  height: 1em;
  display: block;
  border: solid;
  border-width: 1px 1px 0 0;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(50grad);
  transform: rotate(50grad);
}
.button-arrow:before {
  content: '';
  display: block;
  border-bottom: 1px solid;
  width: 1.5em;
}
.color-selector__toggle.active {
  color: #000;
  background-color: #fff;
}
.color-selector__toggle.active .button-arrow {
  position: relative;
  margin: 0 -0.3em 0 0.8em;
  -ms-flex-order: 1;
  order: 1;
  transform: rotate(0deg);
}
.color-selector__toggle.active .button-arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.35em;
  width: 1em;
  height: 1em;
  display: block;
  border: solid;
  border-width: 1px 1px 0 0;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(50grad);
  transform: rotate(50grad);
}
.color-selector__toggle.active .button-arrow:before {
  content: '';
  display: block;
  border-bottom: 1px solid;
  width: 1.5em;
}
@media (max-width: 1024px) {
  .color-selector__wrapper {
    display: block;
    grid-column: span 12 / span 12;
    grid-column-start: 1;
    margin-left: -15px;
  }
  #modelpage .view360 .color-selector a {
    height: 125px;
    width: 125px;
    row-gap: 2.5rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .color-selector__toggle {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    transform: none;
    margin-bottom: 20px;
    background: none;
  }
  .color-selector__button {
    position: static;
    transform: none;
    position: relative;
    padding: 0;
    left: 0;
    color: #000;
    gap: 20px;
    letter-spacing: 1px;
  }
  .color-selector__toggle .color__second {
    display: block;
  }
  .button-arrow {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-bottom: 1px solid #000;
  }
  .button-arrow:after {
    display: none;
  }
  .button-arrow:before {
    display: none;
  }
  .color-selector__toggle.active .color__main {
    display: block;
  }
  .color-selector__toggle.active .button-arrow {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 50%;
    border-bottom: 1px solid #000;
  }
  .color-selector__toggle.active .button-arrow:before,
  .color-selector__toggle.active .button-arrow:after {
    display: none;
  }
  .color-selector__toggle.active {
    background: none;
  }
  #modelpage .view360 .color-selector.active {
    width: 100vw;
  }
  #modelpage .view360 .color-selector a span:nth-child(1) {
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  #modelpage .gallery-wrapper {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#modelpage .gallery {
  position: relative;
  margin-top: -165px;
}

@media (min-width: 1024px) {
  #modelpage .gallery {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
    margin-top: -220px;
  }
}

#modelpage .gallery img {
  margin-left: auto;
  margin-right: auto;
  height: 330px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 640px) {
  #modelpage .gallery img {
    height: auto;
  }
}

#modelpage .gallery .top-layer {
  position: absolute;
  inset: 0px;
  display: flex;
  flex-direction: column;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .gallery .top-layer {
    margin-top: 3rem;
  }
}

#modelpage .gallery .top-layer > div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (min-width: 1024px) {
  #modelpage .gallery .top-layer > div:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  #modelpage .gallery .top-layer > div:nth-child(1) div {
    grid-column: span 3 / span 3;
  }

  #modelpage .gallery .top-layer > div:nth-child(1) div:first-child {
    grid-column-start: 1;
    text-align: right;
  }

  #modelpage .gallery .top-layer > div:nth-child(1) div:last-child {
    grid-column-start: 6;
    text-align: left;
  }
}

#modelpage .gallery .top-layer > div:nth-child(1) a {
  border-bottom-width: 2px;
  border-color: transparent;
  text-decoration: underline;
  padding-bottom: 0.375rem;
}

@media (min-width: 1024px) {
  #modelpage .gallery .top-layer > div:nth-child(1) a {
    padding-bottom: 0.75rem;
  }
}

#modelpage .gallery .top-layer > div:nth-child(1) a:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

#modelpage .gallery .top-layer > div:nth-child(2) {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #modelpage .gallery .top-layer > div:nth-child(2) {
    align-items: flex-start;
    padding-top: 5rem;
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #modelpage .gallery .top-layer > div:nth-child(2) {
    padding-top: 8rem;
  }
}

@media (min-width: 1536px) {
  #modelpage .gallery .top-layer > div:nth-child(2) {
    padding-top: 16rem;
  }
}

#modelpage .gallery .top-layer > div:nth-child(3) {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
}

@media (min-width: 1024px) {
  #modelpage .gallery .top-layer > div:nth-child(3) {
    margin-bottom: 4rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.show-gallery {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

#modelpage .tech-features {
  padding-bottom: 1rem;
  padding-top: 2rem;
}

@media (min-width: 640px) {
  #modelpage .tech-features {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  #modelpage .tech-features {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  #modelpage .tech-features .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    display: grid;
    gap: 15px;
  }

  @media (min-width: 1536px) {
    #modelpage .tech-features .inner {
      gap: 30px;
    }
  }

  #content #modelpage .tech-features .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #modelpage .tech-features .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#modelpage .tech-features .inner .title-sm {
  grid-column: span 2 / span 2;
  grid-column-start: 1;
  margin-bottom: 1.25rem;
  display: none;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

.grid10-wrapper#modelpage .tech-features .inner .title-sm {
  display: none;
}

@media (min-width: 1024px) {
  #modelpage .tech-features .inner .title-sm {
    margin-bottom: 0px;
    display: block;
  }
}

@media (min-width: 1300px) {
  #modelpage .tech-features .inner .title-sm {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#modelpage .tech-features .inner > .title {
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #modelpage .tech-features .inner > .title {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #modelpage .tech-features .inner > .title {
    font-size: 72px;
  }
}

@media (min-width: 1536px) {
  #modelpage .tech-features .inner > .title {
    margin-bottom: 90px;
  }
}

#modelpage .tech-features .inner > .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

#modelpage .tech-features .inner .sidebar {
  grid-column: span 2 / span 2;
  grid-column-start: 2;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  #modelpage .tech-features .inner .sidebar {
    margin-bottom: 0px;
  }
}

#modelpage .tech-features .inner .sidebar .splide__slide {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  min-height: 30px;
  color: rgb(129 129 129 / var(--tw-text-opacity));
  border-width: 1px;
  --tw-text-opacity: 1;
  --tw-border-opacity: 1;
  border-color: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media (min-width: 1300px) {
  #modelpage .tech-features .inner .sidebar .splide__slide {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#modelpage .tech-features .inner .sidebar .splide__slide.is-active {
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .tech-features .inner .sidebar .splide__slide.is-active {
    border-width: 0px;
    /* padding-left: 0px; */
    /* padding-right: 0px; */
    --tw-text-opacity: 1;
    color: rgb(0 2 7 / var(--tw-text-opacity));
  }
  #modelpage .tech-features .inner .sidebar .splide__slide.is-active:after {
    content: '';
    display: block;
    margin-left: 15px;
    height: 1px;
    width: 100%;
    background: #efefef;
  }
}

#modelpage .tech-features .inner .content-main {
  grid-column: span 6 / span 6;
  overflow: hidden;
}

#modelpage .tech-features .inner .content-main .splide__slide {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: flex-start;
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #modelpage .tech-features .inner .content-main .splide__slide {
    gap: 30px;
  }
}

#content #modelpage .tech-features .inner .content-main .splide__slide {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #modelpage .tech-features .inner .content-main .splide__slide {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 640px) {
  #modelpage .tech-features .inner .content-main .splide__slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #modelpage .tech-features .inner .content-main .splide__slide {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 2.25rem;
  }
}

#modelpage .tech-features .inner .content-main .splide__slide .item {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px) {
  #modelpage .tech-features .inner .content-main .splide__slide .item {
    grid-column: span 2 / span 2;
  }
}

#modelpage
  .tech-features
  .inner
  .content-main
  .splide__slide
  .item
  div:first-child {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

#modelpage .gray-row {
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .gray-row {
    margin-top: 10rem;
  }

  #modelpage .gray-row .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    align-content: flex-end;
    display: grid;
    gap: 15px;
  }

  @media (min-width: 1536px) {
    #modelpage .gray-row .inner {
      gap: 30px;
    }
  }

  #content #modelpage .gray-row .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #modelpage .gray-row .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#modelpage .gray-row .inner .intro {
  grid-column: span 2 / span 2;
  grid-column-start: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

#modelpage .gray-row .inner .intro .counter {
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

#modelpage .gray-row .inner .content-images {
  grid-column: span 6 / span 6;
}
#modelpage .gray-row .inner .content-images .splide__track {
  overflow: hidden;
}
@media (min-width: 1024px) {
  #modelpage .gray-row .inner .content-images .splide__track {
    margin-top: -10rem;
  }
}

#modelpage .gray-row .inner .content-images img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#modelpage .stock {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  #modelpage .stock {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  #modelpage .stock .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    display: grid;
    gap: 15px;
  }

  @media (min-width: 1536px) {
    #modelpage .stock .inner {
      gap: 30px;
    }
  }

  #content #modelpage .stock .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  #news-list #modelpage .stock .inner {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

#modelpage .stock .inner .title-sm {
  grid-column: span 2 / span 2;
  grid-column-start: 1;
  margin-bottom: 1.25rem;
  display: none;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

.grid10-wrapper#modelpage .stock .inner .title-sm {
  display: none;
}

@media (min-width: 1024px) {
  #modelpage .stock .inner .title-sm {
    margin-bottom: 0px;
    display: block;
  }
}

@media (min-width: 1280px) {
  #modelpage .stock .inner .title-sm {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#modelpage .stock .inner > .title {
  margin-bottom: 2.5rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1024px) {
  #modelpage .stock .inner > .title {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #modelpage .stock .inner > .title {
    font-size: 72px;
  }
}

@media (min-width: 1536px) {
  #modelpage .stock .inner > .title {
    margin-bottom: 90px;
  }
}

#modelpage .stock .inner > .title span {
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

#modelpage .stock .inner .tab-links {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

@media (min-width: 1024px) {
  #modelpage .stock .inner .tab-links {
    grid-column: span 10 / span 10;
    grid-column-start: 3;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .tab-links {
    margin-bottom: 5rem;
  }
}

#modelpage .stock .inner .tab-links a {
  margin-bottom: -1px;
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 0.625rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .stock .inner .tab-links a {
    padding-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#modelpage .stock .inner .tab-links a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

#modelpage .stock .inner .splide {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

@media (min-width: 1024px) {
  #modelpage .stock .inner .splide {
    grid-column: span 10 / span 10;
  }
}

@media (min-width: 1280px) {
  #modelpage .stock .inner .splide {
    margin-left: -65px;
    margin-right: -65px;
  }
}

#modelpage .stock .inner .splide .splide__slide a {
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.78;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide .splide__slide a {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

#modelpage .stock .inner .splide .title {
  height: 72px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide .title {
    font-size: 37px;
  }
}

#modelpage .stock .inner .splide .picture {
  margin-top: 2.5rem;
}

#modelpage .stock .inner .splide .params {
  margin-top: 2.5rem;
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide .params {
    margin-top: 55px;
  }
}

#modelpage .stock .inner .splide .params div {
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
  background-image: url('/css/../images/aurus-bullet.svg');
  background-position: 0 3px;
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide .params div {
    font-size: 1rem;
    line-height: 1.5rem;
    background-position: 0 5px;
  }
}

#modelpage .stock .inner .splide .price {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide .price {
    margin-top: 34px;
    font-size: 27px;
  }
}

#modelpage .stock .inner .splide__arrows {
  position: relative;
  width: 100%;
}

#modelpage .stock .inner .splide__arrow {
  position: absolute;
  top: 100px;
  z-index: 1;
  margin-top: -31px;
  display: flex;
  height: 62px;
  width: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide__arrow {
    top: 120px;
  }
}

#modelpage .stock .inner .splide__arrow:disabled {
  display: none;
}

.grid10-wrapper#modelpage .stock .inner .splide__arrow:disabled {
  display: none;
}

#modelpage .stock .inner .splide__arrow.splide__arrow--prev {
  margin-left: -70px;
  left: calc(20px + ((100vw - 40px - (9 * 15px)) / 10));
}

#modelpage .stock .inner .splide__arrow.splide__arrow--prev svg {
  --tw-rotate: 180deg;
  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));
}

@media (min-width: 1280px) {
  #modelpage .stock .inner .splide__arrow.splide__arrow--prev {
    left: calc(65px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide__arrow.splide__arrow--prev {
    left: calc(65px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#modelpage .stock .inner .splide__arrow.splide__arrow--next {
  margin-right: -70px;
  right: calc(20px + ((100vw - 40px - (9 * 15px)) / 10));
}

@media (min-width: 1280px) {
  #modelpage .stock .inner .splide__arrow.splide__arrow--next {
    right: calc(65px + ((100vw - 130px - (9 * 15px)) / 10));
  }
}

@media (min-width: 1536px) {
  #modelpage .stock .inner .splide__arrow.splide__arrow--next {
    right: calc(65px + ((100vw - 130px - (9 * 30px)) / 10));
  }
}

#modelpage .stock .inner .button {
  margin-top: 45px;
}

@media (min-width: 1024px) {
  #modelpage .stock .inner .button {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    margin-top: 15px;
  }
}

#modelpage .stock .inner .button a {
  margin-left: auto;
  margin-right: auto;
  max-width: 240px;
}

@media (min-width: 1024px) {
  #modelpage .stock .inner .button a {
    margin-left: 0px;
    margin-right: 0px;
  }
}

#modelpage .show-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

#modelpage .show-more a {
  margin-top: 4rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #modelpage .show-more a {
    margin-top: 91px;
  }
}

#modelpage .show-more .title {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
  line-height: 1.1;
  font-family: 'Forum', cursive;
}

@media (min-width: 640px) {
  #modelpage .show-more .title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  #modelpage .show-more .title {
    margin-bottom: 65px;
    margin-top: 69px;
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #modelpage .show-more .title {
    font-size: 90px;
  }
}

#modelpage .show-more img {
  max-width: 80%;
}

@media (min-width: 1024px) {
  #modelpage .show-more img {
    max-width: none;
  }
}

#stock-mainpage {
  margin-bottom: 90px;
}

@media (min-width: 1536px) {
  #stock-mainpage {
    margin-bottom: 190px;
  }
}

#stock-mainpage h1 {
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  #stock-mainpage h1 {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1280px) {
  #stock-mainpage h1 {
    margin-bottom: 5rem;
  }
}

@media (min-width: 1536px) {
  #stock-mainpage h1 {
    margin-bottom: 116px;
  }
}

#stock-mainpage .links {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  max-width: 400px;
  gap: 15px;
  padding-bottom: 20px;
}

@media (min-width: 640px) {
  #stock-mainpage .links {
    max-width: 700px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #stock-mainpage .links {
    max-width: 1600px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  #stock-mainpage .links {
    gap: 30px;
  }
}

#stock-mainpage .links a {
  position: relative;
  max-width: 516px;
}

#stock-mainpage .links a .layer {
  position: absolute;
  inset: 0px;
  display: flex;
  flex-direction: column;
  padding-top: 45px;
  padding-bottom: 45px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

#stock-mainpage .links a .title {
  flex-grow: 1;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1.1;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1280px) {
  #stock-mainpage .links a .title {
    font-size: 45px;
  }
}

#stock-mainpage .links a .price {
  text-align: center;
  font-size: 15px;
}

#stock-mainpage .links a .price span {
  text-transform: uppercase;
}

#car-in-stock {
  margin-bottom: 90px;
}

@media (min-width: 1536px) {
  #car-in-stock {
    margin-bottom: 190px;
  }
}

#car-in-stock h1 {
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

@media (min-width: 1280px) {
  #car-in-stock h1 {
    margin-bottom: 55px;
  }
}

#car-in-stock .toggle-filter-stock {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

@media (min-width: 1280px) {
  #car-in-stock .toggle-filter-stock {
    margin-bottom: 55px;
  }
}

#car-in-stock .toggle-filter-stock a {
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 7px;
  font-weight: 300;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

#car-in-stock .toggle-filter-stock a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}


.stock .toggle-filter-stock {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  grid-column-start: 10;
}

@media (min-width: 1280px) {
  .stock .toggle-filter-stock {
    margin-bottom: 55px;
  }
}

.stock .toggle-filter-stock a {
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 7px;
  font-weight: 300;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

.stock .toggle-filter-stock a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

#car-in-stock .models {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  justify-items: center;
  gap: 15px;
}

@media (min-width: 575px) {
  #car-in-stock .models {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  #car-in-stock .models {
    margin-left: auto;
    margin-right: auto;
    width: 730px;
  }
}

@media (min-width: 1024px) {
  #car-in-stock .models {
    grid-column: span 10 / span 10;
    grid-column-start: 1;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  #car-in-stock .models {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
  }
}

@media (min-width: 1536px) {
  #car-in-stock .models {
    gap: 30px;
  }
}

#car-in-stock .models > div {
  width: 100%;
  max-width: 320px;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.78;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  #car-in-stock .models > div {
    max-width: none;
  }
}

@media (min-width: 1536px) {
  #car-in-stock .models > div {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

#car-in-stock .models > div .title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.15em;
  font-family: 'Forum', cursive;
}

@media (min-width: 1536px) {
  #car-in-stock .models > div .title {
    font-size: 37px;
  }
}

#car-in-stock .models > div .picture {
  margin-top: 2.5rem;
}

@media (min-width: 1536px) {
  #car-in-stock .models > div .picture {
    margin-top: 72px;
  }
}

#car-in-stock .models > div .params {
  margin-top: 2.5rem;
}

@media (min-width: 1536px) {
  #car-in-stock .models > div .params {
    margin-top: 55px;
  }
}

#car-in-stock .models > div .params div {
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
  background-image: url('/css/../images/aurus-bullet.svg');
  background-position: 0 3px;
}

@media (min-width: 1536px) {
  #car-in-stock .models > div .params div {
    font-size: 1rem;
    line-height: 1.5rem;
    background-position: 0 5px;
  }
}

#car-in-stock .models > div .price {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
}

@media (min-width: 1536px) {
  #car-in-stock .models > div .price {
    margin-top: 34px;
    font-size: 27px;
  }
}

#stock-modelpage .intro {
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  padding-top: 5rem;
  padding-bottom: 60px;
}

@media (min-width: 1280px) {
  #stock-modelpage .intro {
    padding-top: 100px;
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .intro {
    padding-bottom: 122px;
  }
}

#stock-modelpage .intro .card {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 15px;
}

@media (min-width: 1024px) {
  #stock-modelpage .intro .card {
    margin-top: 69px;
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .intro .card {
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  #stock-modelpage .intro .picture {
    grid-column: span 5 / span 5;
    grid-column-start: 1;
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .intro .picture {
    grid-column: span 6 / span 6;
  }
}

@media (min-width: 1024px) {
  #stock-modelpage .intro .description {
    grid-column: span 5 / span 5;
    grid-column-start: 6;
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .intro .description {
    grid-column: span 4 / span 4;
    grid-column-start: 7;
  }
}

@media (min-width: 1760px) {
  #stock-modelpage .intro .description {
    grid-column: span 3 / span 3;
  }
}

#stock-modelpage .intro .description .item {
  display: flex;
  height: 2.25rem;
  align-items: flex-end;
  justify-content: space-between;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 216 216 / var(--tw-border-opacity));
  padding-bottom: 0.625rem;
}

@media (min-width: 768px) {
  #stock-modelpage .intro .description .item {
    height: 47px;
  }
}

#stock-modelpage .intro .description .item .name {
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  #stock-modelpage .intro .description .item .name {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {
  #stock-modelpage .intro .description .item .name {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#stock-modelpage .intro .description .item .value {
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  #stock-modelpage .intro .description .item .value {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {
  #stock-modelpage .intro .description .item .value {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#stock-modelpage .intro .description .price {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 216 216 / var(--tw-border-opacity));
  padding-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  #stock-modelpage .intro .description .price {
    padding-top: 1.75rem;
    font-size: 27px;
  }
}

#stock-modelpage .intro .description .buttons {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 1.25rem;
}

@media (min-width: 640px) {
  #stock-modelpage .intro .description .buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  #stock-modelpage .intro .description .buttons {
    margin-top: 35px;
    gap: 1.25rem;
  }
}

#stock-modelpage .moreinfo {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  padding-top: 2.5rem;
  padding-bottom: 30px;
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo {
    gap: 30px;
  }
}

#content #stock-modelpage .moreinfo {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #stock-modelpage .moreinfo {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  #stock-modelpage .moreinfo {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo {
    padding-bottom: 190px;
  }
}

#stock-modelpage .moreinfo .tabs {
  grid-column: span 10 / span 10;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 239 239 / var(--tw-border-opacity));
}

@media (min-width: 640px) {
  #stock-modelpage .moreinfo .tabs {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  #stock-modelpage .moreinfo .tabs {
    gap: 130px;
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo .tabs {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
  }
}

#stock-modelpage .moreinfo .tabs a {
  margin-bottom: -1px;
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 0.625rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  #stock-modelpage .moreinfo .tabs a {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #stock-modelpage .moreinfo .tabs a {
    padding-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#stock-modelpage .moreinfo .tabs a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
}

#stock-modelpage .moreinfo .tab-data {
  grid-column: span 10 / span 10;
  display: none;
  padding-top: 15px;
  font-size: 13px;
  line-height: 1rem;
}

.grid10-wrapper#stock-modelpage .moreinfo .tab-data {
  display: none;
}

@media (min-width: 1024px) {
  #stock-modelpage .moreinfo .tab-data {
    padding-top: 45px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1280px) {
  #stock-modelpage .moreinfo .tab-data {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo .tab-data {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
    padding-top: 30px;
  }
}

#stock-modelpage .moreinfo .tab-data.shown {
  display: block;
}

#stock-modelpage .moreinfo .tab-data .data {
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo .tab-data .data {
    gap: 30px;
  }
}

#stock-modelpage .moreinfo .tab-data#tech .data {
  row-gap: 1.25rem;
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo .tab-data#tech .data {
    row-gap: 68px;
  }
}

#stock-modelpage .moreinfo .tab-data.clmn-2 .data {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  #stock-modelpage .moreinfo .tab-data.clmn-2 .data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#stock-modelpage .moreinfo .tab-data.clmn-4 .data {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  #stock-modelpage .moreinfo .tab-data.clmn-4 .data {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  #stock-modelpage .moreinfo .tab-data.clmn-4 .data {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

#stock-modelpage .moreinfo .tab-data .title {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
  #stock-modelpage .moreinfo .tab-data .title {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1280px) {
  #stock-modelpage .moreinfo .tab-data .title {
    margin-bottom: 46px;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

#stock-modelpage .moreinfo .tab-data .item {
  display: flex;
  flex-direction: column;
}

#stock-modelpage .moreinfo .tab-data .item .name {
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

#stock-modelpage .moreinfo .tab-data .list .params {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#stock-modelpage .moreinfo .tab-data .list .params div {
  background-repeat: no-repeat;
  padding-left: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
  background-image: url('/css/../images/aurus-bullet.svg');
  background-position: 0 3px;
}

@media (min-width: 1536px) {
  #stock-modelpage .moreinfo .tab-data .list .params div {
    background-position: 0 5px;
  }
}

#armored-cars {
  overflow: hidden;
}

#armored-cars .subtitle {
  margin-top: 26px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

#armored-cars .banner {
  position: relative;
  margin-bottom: 90px;
  height: 200px;
}

@media (min-width: 640px) {
  #armored-cars .banner {
    height: 300px;
  }
}

@media (min-width: 768px) {
  #armored-cars .banner {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  #armored-cars .banner {
    height: 480px;
  }
}

@media (min-width: 1280px) {
  #armored-cars .banner {
    height: 600px;
  }
}

@media (min-width: 1536px) {
  #armored-cars .banner {
    height: 550px;
  }
}

#armored-cars .banner div {
  text-align: center;
  font-size: 30vw;
  line-height: 1;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(239 239 239 / var(--tw-text-opacity));
  opacity: 0.51;
  font-family: 'Forum', cursive;
}

@media (min-width: 1280px) {
  #armored-cars .banner div {
    font-size: 350px;
  }
}

@media (min-width: 1536px) {
  #armored-cars .banner div {
    font-size: 460px;
  }
}

#armored-cars .banner img {
  position: absolute;
  top: 20%;
  left: 50%;
  margin-left: -140px;
  width: 280px;
}

@media (min-width: 640px) {
  #armored-cars .banner img {
    margin-left: -200px;
    width: 400px;
  }
}

@media (min-width: 768px) {
  #armored-cars .banner img {
    margin-left: -250px;
    width: 500px;
  }
}

@media (min-width: 1024px) {
  #armored-cars .banner img {
    top: 33.333333%;
    margin-left: -300px;
    width: 600px;
  }
}

@media (min-width: 1280px) {
  #armored-cars .banner img {
    margin-left: -350px;
    width: 700px;
  }
}

@media (min-width: 1536px) {
  #armored-cars .banner img {
    top: 25%;
    margin-left: -350px;
    width: 820px;
  }
}

#armored-cars .advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 239 239 / var(--tw-border-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
}

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

#armored-cars .advantages > div div:first-child {
  margin-bottom: 21px;
  background-repeat: no-repeat;
  padding-left: 2rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-image: url('/css/../images/aurus-bullet.svg');
  background-position: 0 10px;
}

#armored-cars .advantages > div div:last-child {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

#content {
  margin-bottom: 90px;
}

@media (min-width: 1536px) {
  #content {
    margin-bottom: 190px;
  }
}

#content h1 {
  margin-bottom: 82px;
}

#content h1.news-header {
  margin-bottom: 2.5rem;
}

#content .aurus-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#content .tab-links {
  grid-column: span 10 / span 10;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 239 239 / var(--tw-border-opacity));
}

@media (min-width: 1536px) {
  #content .tab-links {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
    margin-bottom: 5rem;
  }
}

#content .tab-links a {
  margin-bottom: -1px;
  border-bottom-width: 2px;
  border-color: transparent;
  padding-bottom: 0.625rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
}

@media (min-width: 1024px) {
  #content .tab-links a {
    padding-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#content .tab-links a.active {
  --tw-border-opacity: 1;
  border-color: rgb(0 2 7 / var(--tw-border-opacity));
}

#content .main-content {
  grid-column: span 10 / span 10;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 2rem;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  #content .main-content {
    row-gap: 52px;
  }
}

@media (min-width: 1536px) {
  #content .main-content {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

#content .aurus-btn {
  max-width: 240px;
  line-height: 1;
}

#content .title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.15em;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  #content .title {
    font-size: 13px;
    line-height: 1rem;
  }
}

@media (min-width: 768px) {
  #content .title {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1024px) {
  #content .title {
    font-size: 14px;
    line-height: 1.75rem;
  }
}

#content p,
#content ul {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  #content p,
  #content ul {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#content p + ul {
  margin-top: 22px;
}

#content .disclaimer p {
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #content .disclaimer p {
    font-size: 13px;
  }
}

#content .special {
  margin-top: 31px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

#content .special div:first-child {
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
}

@media (min-width: 1024px) {
  #content .special div:first-child {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#content .special div:last-child {
  flex: none;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 300;
}

@media (min-width: 1024px) {
  #content .special div:last-child {
    font-size: 21px;
  }
}

#content ul li {
  margin-bottom: 0.25rem;
  background-repeat: no-repeat;
  padding-left: 2rem;
  background-image: url('/css/../images/aurus-bullet.svg');
  background-position: 0 7px;
}

#content ul li span {
  text-transform: uppercase;
}

#content ul.more-space li {
  margin-bottom: 2rem;
}

#news-list {
  margin-bottom: 90px;
}

@media (min-width: 1536px) {
  #news-list {
    margin-bottom: 190px;
  }
}

#news-list h1 {
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  #news-list h1 {
    margin-bottom: 5rem;
  }
}

#news-list .aurus-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list .news {
  grid-column: span 10 / span 10;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 2.5rem;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

@media (min-width: 640px) {
  #news-list .news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  #news-list .news {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #news-list .news {
    row-gap: 65px;
  }
}

@media (min-width: 1536px) {
  #news-list .news {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

#news-list .news a {
  font-size: 14px;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  #news-list .news a {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  #news-list .news a {
    font-size: 16px;
  }
}

#news-list .news a img {
  width: 100%;
}

#news-list .news a .date {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 13px;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #news-list .news a .date {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#news-list .news a .date span:first-child {
  margin-right: 22px;
}

#news-list .news a .date span:first-child:after {
  content: '';
  margin-left: 22px;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
  background-repeat: no-repeat;
  background-image: url('/css/../images/aurus-bullet-gray.svg');
  background-size: 12px;
}

#news-list .more-news {
  grid-column: span 10 / span 10;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  #news-list .more-news {
    margin-top: 65px;
  }
}

#news-list .more-news a {
  max-width: 240px;
}

#news-modal {
  position: fixed;
  inset: 0px;
  z-index: 20;
  display: block;
  height: 0px;
  overflow: hidden;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.8;
  -webkit-backdrop-filter: blur(4px) brightness(125%);
  backdrop-filter: blur(4px) brightness(125%);
}

#news-modal .modal-container {
  height: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

#news-modal .content-inner {
  position: relative;
  height: 100vh;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  opacity: 0;
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #news-modal .content-inner {
    gap: 30px;
  }
}

#content #news-modal .content-inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #news-modal .content-inner {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-modal .content-inner .close-news {
  position: fixed;
  right: 0px;
  z-index: 1000;
  margin-right: 1.25rem;
  margin-top: 1.25rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  #news-modal .content-inner .close-news {
    margin-right: 50px;
    margin-top: 50px;
  }
}

#news-modal .content-inner .wrapper-image {
  grid-column: span 10 / span 10;
  grid-row-start: 2;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  #news-modal .content-inner .wrapper-image {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
    grid-row-start: 1;
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  #news-modal .content-inner .wrapper-image {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
  }
}

#news-modal .content-inner .wrapper-image img {
  width: 100%;
  max-width: 910px;
}

#news-modal .content-inner .sidebar {
  grid-column: span 10 / span 10;
  grid-row-start: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 78px;
}

@media (min-width: 640px) {
  #news-modal .content-inner .sidebar {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
    grid-row-start: 2;
    display: block;
  }
}

@media (min-width: 1024px) {
  #news-modal .content-inner .sidebar {
    grid-column-start: 2;
  }
}

#news-modal .content-inner .sidebar .date {
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

#news-modal .content-inner .sidebar .social {
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  #news-modal .content-inner .sidebar .social {
    margin-top: 201px;
  }
}

#news-modal .content-inner .sidebar .social .text {
  transform-origin: top left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  #news-modal .content-inner .sidebar .social .text {
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
      rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
      scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}

#news-modal .content-inner .sidebar .social .btns {
  display: flex;
  width: 104px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
}

@media (min-width: 640px) {
  #news-modal .content-inner .sidebar .social .btns {
    display: block;
    width: 52px;
  }
}

#news-modal .content-inner .sidebar .social .btns a {
  position: relative;
  display: flex;
  height: 52px;
  width: 52px;
  align-items: center;
  justify-content: center;
}

#news-modal .content-inner .sidebar .social .btns a:first-child:after {
  content: '';
  position: absolute;
  right: 0px;
  display: block;
  height: 1.5rem;
  border-right-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
}

@media (min-width: 640px) {
  #news-modal .content-inner .sidebar .social .btns a:first-child:after {
    right: auto;
    bottom: 0px;
    left: 50%;
    margin-left: -0.75rem;
    height: 0px;
    width: 1.5rem;
    border-right-width: 0px;
    border-bottom-width: 1px;
  }
}

#news-modal .content-inner .news-body {
  grid-column: span 10 / span 10;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  #news-modal .content-inner .news-body {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
  }
}

@media (min-width: 1024px) {
  #news-modal .content-inner .news-body {
    grid-column: span 6 / span 6;
  }
}

#news-modal .content-inner .news-body .wrapper {
  max-width: 910px;
}

#news-modal .content-inner .news-body .wrapper .title {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.15;
  font-family: 'Forum', cursive;
}

@media (min-width: 640px) {
  #news-modal .content-inner .news-body .wrapper .title {
    margin-top: 78px;
    margin-bottom: 68px;
  }
}

@media (min-width: 1024px) {
  #news-modal .content-inner .news-body .wrapper .title {
    font-size: 60px;
  }
}

#news-modal .content-inner .news-body .wrapper p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}

#news-modal .content-inner .news-body .news-navigation {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

@media (min-width: 640px) {
  #news-modal .content-inner .news-body .news-navigation {
    margin-top: 85px;
  }
}

@media (min-width: 1536px) {
  #news-modal .content-inner .news-body .news-navigation {
    gap: 30px;
  }
}

#news-modal .content-inner .news-body .news-navigation a div:first-child {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #news-modal .content-inner .news-body .news-navigation a div:first-child {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#news-modal .content-inner .news-body .news-navigation a div:last-child {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  --tw-text-opacity: 1;
  color: rgb(0 2 7 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  #news-modal .content-inner .news-body .news-navigation a div:last-child {
    font-size: 21px;
  }
}

#news-modal.shown {
  height: 100vh;
}

#news-modal.shown .modal-container {
  height: 100vh;
  transition-timing-function: linear;
  transition: height 1s;
}

#news-modal.shown .content-inner {
  opacity: 1;
  transition: opacity 1s 1s;
}

.simplebar-track.simplebar-vertical {
  pointer-events: none;
  display: none;
}

.grid10-wrapper.simplebar-track.simplebar-vertical {
  display: none;
}

.simplebar-scrollbar.simplebar-visible::before {
  pointer-events: none;
  opacity: 0;
}

#contacts {
  margin-bottom: 90px;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #contacts {
    gap: 30px;
  }
}

#content #contacts {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #contacts {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1536px) {
  #contacts {
    margin-bottom: 190px;
  }
}

#contacts h1 {
  grid-column: span 10 / span 10;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  #contacts h1 {
    margin-bottom: 5rem;
  }
}

#contacts .content {
  grid-column: span 10 / span 10;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #contacts .content {
    gap: 30px;
  }
}

#content #contacts .content {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #contacts .content {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 1536px) {
  #contacts .content {
    grid-column: span 8 / span 8;
    grid-column-start: 2;
  }
}

#contacts .content > div {
  grid-column: span 8 / span 8;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 15px;
}

@media (min-width: 1536px) {
  #contacts .content > div {
    gap: 30px;
  }
}

#content #contacts .content > div {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#news-list #contacts .content > div {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 640px) {
  #contacts .content > div {
    grid-column: span 4 / span 4;
    grid-template-rows: 100px 100px;
  }
}

@media (min-width: 1024px) {
  #contacts .content > div {
    grid-template-rows: 65px 65px;
  }
}

#contacts .content > div .mapBlock__block,
#contacts .content > div img {
  grid-column: span 2 / span 2;
}

#contacts .content > div :first-child .item:nth-child(3) {
  grid-column-start: 2;
}

#contacts .content .dealer-title {
  grid-column: span 2 / span 2;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (min-width: 640px) {
  #contacts .content .dealer-title {
    grid-column: span 1 / span 1;
  }
}

#contacts .content .dealer-address {
  grid-column: span 2 / span 2;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 640px) {
  #contacts .content .dealer-address {
    grid-column: span 1 / span 1;
  }
}

#contacts .content .item {
  grid-column: span 2 / span 2;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  #contacts .content .item {
    grid-column: span 1 / span 1;
  }
}

@media (min-width: 1536px) {
  #contacts .content .item {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

#contacts .content .item span {
  display: block;
  --tw-text-opacity: 1;
  color: rgb(129 129 129 / var(--tw-text-opacity));
}

#contacts .content .social {
  grid-column: span 1 / span 2;
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  ntacts .content .social {
    grid-column: span 1 / span 1;
    grid-column-start: 2;
    float: right;
  }
}

#contacts .content .social a {
  display: flex;
  height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
}

#maps {
  position: relative;
  margin-top: 285px;
  height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  #maps {
    margin-top: 0px;
  }
}

#maps {
  /* .page-model &{
        @apply mt-[260px];
    }  */
  background-image: url('/css/../images/big_map_top.jpg');
}

#maps .pointer {
  position: absolute;
  inset: 0px;
  top: -50px;
  margin: auto;
  height: 39px;
  width: 39px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
}

#maps .pointer span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  height: 50px;
  width: 50px;
  border-radius: 9999px;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

#maps .pointer:hover span,
#maps .pointer.active span {
  --tw-scale-x: 2;
  --tw-scale-y: 2;
  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));
  opacity: 1;
  --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);
  transition: opacity 0.5s, transform 1s;
}

#maps .about {
  position: absolute;
  top: 0px;
  margin-top: -260px;
  width: 100%;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
}

@media (min-width: 1024px) {
  #maps .about {
    top: 50%;
    left: 1.25rem;
    margin-top: -130px;
    width: auto;
  }
}

@media (min-width: 1536px) {
  #maps .about {
    left: 65px;
  }
}

#maps .about .clickable {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-left: 27px;
  padding-right: 27px;
  padding-top: 21px;
  padding-bottom: 21px;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

#maps .about .clickable div {
  flex-grow: 1;
  padding-left: 0.75rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}

#maps .about .clickable svg {
  flex: none;
}

#maps .about .clickable svg:last-child {
  --tw-rotate: 180deg;
  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));
}

#maps .about .info {
  margin-top: 0.625rem;
  display: none;
  height: 130px;
  flex-direction: column;
  padding-left: 27px;
  padding-right: 27px;
  font-size: 13px;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.grid10-wrapper#maps .about .info {
  display: none;
}

#maps .about .info a:first-child {
  margin-bottom: 0.25rem;
}

#maps .about .info a:last-child {
  margin-top: 0.75rem;
}
.main__contacts__hide {
  z-index: 4;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.mapBlock__block {
  overflow: hidden;
  background-image: linear-gradient(to top, #fff, #fff);
  position: relative;
  background-blend-mode: exclusion, hard-light;
  font-size: 0;
}
.ymaps-city-image {
  filter: invert(1);
  position: relative;
  z-index: 30;
}
.ymaps-city-image:before {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  position: absolute;
  background: url(/css/../images/map-pointer-1.png) 50% / cover no-repeat;
}
.ymaps-city-image:hover:before,
.ymaps-city-image:focus:before {
  transform: scale(2.5) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.ymaps-zapad-image {
  filter: invert(1);
  position: relative;
  z-index: 30;
}
.ymaps-zapad-image:before {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  position: absolute;
  background: url(/css/../images/contacts-image-2.jpg) 50% / cover no-repeat;
}
.ymaps-zapad-image:hover:before,
.ymaps-zapad-image:focus:before {
  transform: scale(2.5) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.ymaps-2-1-79-events-pane {
  pointer-events: none;
}
.mapBlock {
  mix-blend-mode: exclusion;
  filter: grayscale(100%);
}
#maps .toggle-address:last-child {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(49 59 67 / var(--tw-border-opacity));
}

#maps .toggle-address.active .clickable svg:last-child {
  --tw-rotate: 0deg;
  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));
}

#maps .toggle-address.active .info {
  display: flex;
}

footer {
  --tw-bg-opacity: 1;
  background-color: rgb(0 2 7 / var(--tw-bg-opacity));
  padding: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(184 133 96 / var(--tw-text-opacity));
}

@media (min-width: 1280px) {
  footer {
    padding-left: 66px;
    padding-right: 0px;
    padding-top: 57px;
    padding-bottom: 60px;
  }
}

footer .footer-menu {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.375rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 0.1em;
}
.footer__text {
  font-size: 13px !important;
}
@media (min-width: 1024px) {
  footer .footer-menu {
    margin-top: 0px;
    margin-bottom: 0px;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
  }
}

@media (min-width: 1536px) {
  footer .footer-menu div:nth-child(1) {
    width: 250px;
  }

  footer .footer-menu div:nth-child(2) {
    width: 250px;
  }

  footer .footer-menu div:nth-child(3) {
    width: 100px;
  }
}

.modal-gallery {
  display: none;
  align-items: center;
}
.modal-gallery .close-gallery svg {
  width: 30px;
  height: 30px;
}
.grid10-wrapper.modal-gallery {
  display: none;
}

.modal-gallery.shown {
  position: fixed;
  inset: 0px;
  z-index: 11111;
  display: flex;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  background: black;
}

.modal-gallery .close-gallery {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 11111;
}

@media (min-width: 1024px) {
  .modal-gallery .close-gallery {
    top: 52px;
    right: 66px;
  }
}

@media (min-width: 1280px) {
  .modal-gallery .splide__track {
    margin-left: 120px;
    margin-right: 120px;
  }
}
.splide__track {
  overflow: unset;
}
@media (min-width: 1536px) {
  .modal-gallery .splide__track {
    margin-left: 200px;
    margin-right: 200px;
  }
}

.modal-gallery .splide__list {
  transition: height 0.15s ease-out;
}

.modal-gallery .splide__pagination {
  margin-top: 0.75rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.25rem;
  /* overflow-x: scroll; */
}

@media (min-width: 1024px) {
  .modal-gallery .splide__pagination {
    position: relative;
    z-index: 10;
    margin-top: -5rem;
    width: 900px;
  }
}

@media (min-width: 1280px) {
  .modal-gallery .splide__pagination {
    margin-left: auto;
    margin-right: auto;
    width: 1024px;
  }
}

.modal-gallery .splide__pagination {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

/* Firefox */

@media (max-width: 1023px) {
  .modal-gallery .splide__pagination {
    width: calc(100vw - 20px);
  }
}

@media (min-width: 1024px) {
  .modal-gallery .splide__pagination {
    margin-left: calc((100% - 900px) / 2);
    margin-right: calc((100% - 900px) / 2);
  }
}

@media (min-width: 1280px) {
  .modal-gallery .splide__pagination {
    margin-left: calc((100% - 980px) / 2);
    margin-right: calc((100% - 980px) / 2);
  }
}

.modal-gallery .splide__pagination .splide__pagination__page {
  display: flex;
  height: 26px;
  width: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-width: 1px;
  border-color: transparent;
}

.modal-gallery .splide__pagination .splide__pagination__page:after {
  content: '';
  display: block;
  height: 0.375rem;
  width: 0.375rem;
  background-repeat: no-repeat;
  background-image: url(/css/../images/aurus-bullet-white.svg);
  background-size: 6px;
}

.modal-gallery .splide__pagination .splide__pagination__page.is-active {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.modal-form {
  display: none;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.grid10-wrapper.modal-form {
  display: none;
}

.modal-form.shown {
  position: fixed;
  inset: 0px;
  z-index: 2222;
  display: flex;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.modal-form .close-form {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
}

@media (min-width: 1024px) {
  .modal-form .close-form {
    top: 52px;
    right: 66px;
  }
}

.modal-form .form-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  border-width: 20px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
  padding: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.splide__track .splide__slide a {
  text-decoration: none;
  display: block;
}

.splide__track .splide__slide a.aurus-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .modal-form .form-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.modal-form .form-container p {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.modal-form .form-container input {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
  display: block;
  width: 100%;
  max-width: 400px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(116 116 116 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(138 138 138 / var(--tw-text-opacity));
}

.modal-form .form-container input::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(138 138 138 / var(--tw-placeholder-opacity));
}

.modal-form .form-container input::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(138 138 138 / var(--tw-placeholder-opacity));
}

.modal-form .form-container input.error {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}

.modal-form .label {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  display: flex;
  width: 100%;
  max-width: 400px;
  align-items: center;
  gap: 1.25rem;
}

.modal-form .label span.checkbox {
  position: relative;
  height: 23px;
  width: 23px;
  flex: none;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(116 116 116 / var(--tw-border-opacity));
}

.modal-form .label span.checkbox.checked:after {
  width: 9px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -9px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  transition: 0.3s linear;
  content: '';
  opacity: 0.7;
}

.modal-form .label span.delimiter {
  height: 1.25rem;
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(116 116 116 / var(--tw-border-opacity));
}

.modal-form .label div {
  font-size: 13px;
  line-height: 1rem;
}

.modal-form button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  display: block;
  width: 200px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(184 133 96 / var(--tw-border-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  --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;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-form button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
}

.modal-form button.disabled {
  opacity: 0.2;
}

.text-content p + p {
  margin-top: 0.5rem;
}

.hover\:bg-aurus-gold:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(184 133 96 / var(--tw-bg-opacity));
}

@media (min-width: 640px) {
  .sm\:bottom-0 {
    bottom: 0px;
  }

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

  .sm\:right-auto {
    right: auto;
  }

  .sm\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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

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

  .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .sm\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .sm\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .sm\:col-start-1 {
    grid-column-start: 1;
  }

  .sm\:col-start-2 {
    grid-column-start: 2;
  }

  .sm\:col-start-3 {
    grid-column-start: 3;
  }

  .sm\:col-start-4 {
    grid-column-start: 4;
  }

  .sm\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .sm\:row-start-1 {
    grid-row-start: 1;
  }

  .sm\:row-start-2 {
    grid-row-start: 2;
  }

  .sm\:row-start-3 {
    grid-row-start: 3;
  }

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

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

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

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

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

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

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

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

  .sm\:block {
    display: block;
  }

  .sm\:h-0 {
    height: 0px;
  }

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

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

  .sm\:h-auto {
    height: auto;
  }

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

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

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

  .sm\:-rotate-90 {
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
      rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
      scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

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

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

  .sm\:gap-12 {
    gap: 3rem;
  }

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

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

  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .sm\:pt-2 {
    padding-top: 0.5rem;
  }

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

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xs {
    font-size: 13px;
    line-height: 1rem;
  }
}

@media (min-width: 768px) {
  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

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

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

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

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

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

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:text-\[27px\] {
    font-size: 27px;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:left-0 {
    left: 0px;
  }

  .lg\:left-5 {
    left: 1.25rem;
  }

  .lg\:right-\[66px\] {
    right: 66px;
  }

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

  .lg\:top-1\/3 {
    top: 33.333333%;
  }

  .lg\:top-\[35\%\] {
    top: 35%;
  }

  .lg\:top-\[52px\] {
    top: 52px;
  }

  .lg\:col-span-10 {
    grid-column: span 10 / span 10;
  }

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

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:col-start-1 {
    grid-column-start: 1;
  }

  .lg\:col-start-10 {
    grid-column-start: 10;
  }

  .lg\:col-start-2 {
    grid-column-start: 2;
  }

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:col-start-5 {
    grid-column-start: 5;
  }

  .lg\:col-start-6 {
    grid-column-start: 6;
  }

  .lg\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .lg\:row-start-2 {
    grid-row-start: 2;
  }

  .lg\:-mx-\[65px\] {
    margin-left: -65px;
    margin-right: -65px;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

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

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

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

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

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

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

  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

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

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

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

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

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

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

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

  .lg\:ml-64 {
    margin-left: 16rem;
  }

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

  .lg\:mt-0 {
    margin-top: 0px;
  }

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

  .lg\:mt-1\.5 {
    margin-top: 0.375rem;
  }

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

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

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

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

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

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

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

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

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

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

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

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

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

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

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

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

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

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

  .lg\:w-auto {
    width: auto;
  }

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

  .lg\:basis-1\/4 {
    flex-basis: 25%;
  }

  .lg\:basis-3\/4 {
    flex-basis: 75%;
  }

  .lg\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
      rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
      scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, 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\:items-start {
    align-items: flex-start;
  }

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

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

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-\[130px\] {
    gap: 130px;
  }

  .lg\:gap-x-10 {
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }

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

  .lg\:gap-y-9 {
    row-gap: 2.25rem;
  }

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

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

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

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

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

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

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

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

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

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

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

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

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

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .lg\:text-\[13px\] {
    font-size: 13px;
  }

  .lg\:text-\[21px\] {
    font-size: 21px;
  }

  .lg\:text-\[60px\] {
    font-size: 60px;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:text-xs {
    font-size: 13px;
    line-height: 1rem;
  }

  .lg\:leading-\[1\.3\] {
    line-height: 1.3;
  }

  .lg\:leading-none {
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  .xl\:top-\[40\%\] {
    top: 40%;
  }

  .xl\:-mx-\[65px\] {
    margin-left: -65px;
    margin-right: -65px;
  }

  .xl\:mx-\[120px\] {
    margin-left: 120px;
    margin-right: 120px;
  }

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

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

  .xl\:mb-20 {
    margin-bottom: 5rem;
  }

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

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

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

  .xl\:ml-72 {
    margin-left: 18rem;
  }

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

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

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

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

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

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

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

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

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

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

  .xl\:basis-1\/3 {
    flex-basis: 33.333333%;
  }

  .xl\:basis-2\/3 {
    flex-basis: 66.666667%;
  }

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

  .xl\:gap-x-3 {
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
  }

  .xl\:gap-y-10 {
    row-gap: 2.5rem;
  }

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

  .xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:pt-16 {
    padding-top: 4rem;
  }

  .xl\:pt-32 {
    padding-top: 8rem;
  }

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

  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .xl\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .xl\:text-\[13px\] {
    font-size: 13px;
  }

  .xl\:text-\[350px\] {
    font-size: 350px;
  }

  .xl\:text-\[44px\] {
    font-size: 44px;
  }

  .xl\:text-\[45px\] {
    font-size: 45px;
  }

  .xl\:text-\[72px\] {
    font-size: 72px;
  }

  .xl\:text-\[90px\] {
    font-size: 90px;
  }

  .xl\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .\32xl\:bottom-\[150px\] {
    bottom: 150px;
  }

  .\32xl\:left-\[65px\] {
    left: 65px;
  }

  .\32xl\:top-1\/4 {
    top: 25%;
  }

  .\32xl\:top-\[120px\] {
    top: 120px;
  }

  .\32xl\:top-auto {
    top: auto;
  }

  .\32xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .\32xl\:col-start-2 {
    grid-column-start: 2;
  }

  .\32xl\:col-start-7 {
    grid-column-start: 7;
  }

  .\32xl\:mx-\[200px\] {
    margin-left: 200px;
    margin-right: 200px;
  }

  .\32xl\:-ml-\[350px\] {
    margin-left: -350px;
  }

  .\32xl\:mb-\[116px\] {
    margin-bottom: 116px;
  }

  .\32xl\:mb-\[190px\] {
    margin-bottom: 190px;
  }

  .\32xl\:mb-\[90px\] {
    margin-bottom: 90px;
  }

  .\32xl\:mt-\[34px\] {
    margin-top: 34px;
  }

  .\32xl\:mt-\[55px\] {
    margin-top: 55px;
  }

  .\32xl\:mt-\[60px\] {
    margin-top: 60px;
  }

  .\32xl\:h-\[1000px\] {
    height: 1000px;
  }

  .\32xl\:h-\[550px\] {
    height: 550px;
  }

  .\32xl\:w-\[546px\] {
    width: 546px;
  }

  .\32xl\:w-\[60px\] {
    width: 60px;
  }

  .\32xl\:w-\[820px\] {
    width: 820px;
  }

  .\32xl\:gap-\[30px\] {
    gap: 30px;
  }

  .\32xl\:gap-x-\[30px\] {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .\32xl\:gap-y-\[68px\] {
    row-gap: 68px;
  }

  .\32xl\:px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px;
  }

  .\32xl\:py-\[45px\] {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .\32xl\:pb-\[122px\] {
    padding-bottom: 122px;
  }

  .\32xl\:pb-\[190px\] {
    padding-bottom: 190px;
  }

  .\32xl\:pt-64 {
    padding-top: 16rem;
  }

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

  .\32xl\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .\32xl\:text-\[27px\] {
    font-size: 27px;
  }

  .\32xl\:text-\[37px\] {
    font-size: 37px;
  }

  .\32xl\:text-\[460px\] {
    font-size: 460px;
  }

  .\32xl\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/*  */
@-webkit-keyframes link-show {
  0% {
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes link-show {
  0% {
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes link-hide {
  0% {
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  to {
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes link-hide {
  0% {
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  to {
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
.section_blackColor {
  background-color: #000;
}
.p-model__block {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

.p-model__section_blackColor .p-model__block {
  z-index: 1;
}

.p-model__finish {
  position: relative;
  height: 681px;
  padding-top: 99px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  background: 0 0;
  z-index: 1;
  margin: 0;
}

.p-main__carousel::after,
.p-model__finish:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
}

.p-model__finish:before {
  clear: both;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 110vw;
  height: 100%;
  background-color: #000;
}

.p-model_color_black .p-model__finish:before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #efefef),
    color-stop(50%, #f0f0f5)
  );
  background: linear-gradient(180deg, #efefef 0, #f0f0f5 50%);
}

.p-model__finish-car {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat bottom center/81% auto;
  -webkit-transform: translate(0, 2%);
  transform: translate(0, 2%);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.p-model_color_black .p-model__finish-car {
  background-size: 60% auto;
}

.link:after,
.link:before {
  top: 50%;
  width: 31px;
  height: 1px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.link_gallery::before {
  width: 18px;
}
.link {
  display: inline-block;
  position: relative;
  padding-left: 52px;
  cursor: pointer;
  color: #b88560;
  text-decoration: none;
}
.link:before {
  left: 0;
  -webkit-transform: translate(0, -50%) scale(1, 1) translate3d(0, 0, 0);
  transform: translate(0, -50%) scale(1, 1) translate3d(0, 0, 0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
div {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.link:after {
  left: 107%;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.link:after,
.link:hover:before {
  -webkit-transform: translate(0, -50%) scale(0, 1) translate3d(0, 0, 0);
  transform: translate(0, -50%) scale(0, 1) translate3d(0, 0, 0);
}

.link:hover:after {
  -webkit-transform: translate(0, -50%) scale(1, 1) translate3d(0, 0, 0);
  transform: translate(0, -50%) scale(1, 1) translate3d(0, 0, 0);
}

.p-model__finish-subtitle {
  position: relative;
  margin-bottom: 64px;
  color: #b88560;
  text-transform: uppercase;
}

.p-model__finish-title {
  position: relative;
  color: #fff;
  white-space: pre-line;
}

.p-model_color_black .p-model__finish-title {
  color: #000207;
}
[data-inviewport]._show {
  -webkit-transition: 1.3s ease-in-out 0.2s;
  transition: 1.3s ease-in-out 0.2s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.p-model__finish:hover .p-model__finish-car {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.p-model__section {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.about__title,
.p-model__finish-title,
.parallax-carousel-slide__text {
  font-family: 'Forum', GalaxiePolaris, sans-serif;
  font-size: 65px;
  line-height: 100px;
}
.download__image:after,
.link:after,
.link:before {
  position: absolute;
  content: '';
  background-color: #b88560;
}
.link:after {
  left: 107%;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.link:after,
.link:hover:before {
  -webkit-transform: translate(0, -50%) scale(0, 1) translate3d(0, 0, 0);
  transform: translate(0, -50%) scale(0, 1) translate3d(0, 0, 0);
}

.link:hover:after {
  -webkit-transform: translate(0, -50%) scale(1, 1) translate3d(0, 0, 0);
  transform: translate(0, -50%) scale(1, 1) translate3d(0, 0, 0);
}

.link_bottom {
  padding-left: 0;
}

.link_bottom:after {
  display: none;
}

.link_bottom:before {
  top: 160%;
  width: 100%;
  -webkit-transform-origin: center left;
  transform-origin: center left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-animation: link-hide 0.3s forwards;
  animation: link-hide 0.3s forwards;
}

.link_bottom:hover:before {
  -webkit-animation: link-show 0.3s forwards;
  animation: link-show 0.3s forwards;
}
.link.p-model__info-link {
  padding: 0 0 0 52px;
}
.flb {
  align-items: flex-start;
}
.footer_logo {
  position: relative;
}
.footer_logo:before {
  content: '';
  position: absolute;
  left: 63px;
  pointer-events: none;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .confidentiality__item-title,
  .info__section,
  .info__text-label,
  .p-gallery-page__video-time,
  .p-main__carousel-title,
  .p-model__about-block-subtitle,
  .p-model__about-subtitle,
  .p-model__engine-slide-subtitle,
  .p-model__engine-title,
  .p-model__finish-subtitle,
  .p-model__gallery-subtitle,
  .p-model__info-sign,
  .select_main .select__label,
  .select_main .select__option-text {
    font-size: 2.813vmin;
    line-height: 5.625vmin;
    letter-spacing: 0.11em;
  }
  .p-model__block,
  .p-model__section_palette .p-model__block {
    width: 100vmin;
  }
  .p-model__finish {
    height: 57.813vmin;
    padding-top: 5vmin;
  }
  .p-model__finish-car {
    background-size: 96% auto;
  }
  .p-model__finish-subtitle {
    margin-bottom: 1.875vmin;
  }
  .link_bottom {
    padding-left: 0;
  }
  .link_bottom:before {
    top: 160%;
    width: 100%;
  }
  .about__title,
  .p-model__finish-title,
  .parallax-carousel-slide__text {
    font-size: 7.813vmin;
    line-height: 9.375vmin;
  }
}
.btn-up {
  position: fixed;
  background-color: #b88560;
  right: 40px;
  bottom: 40px;
  border-radius: 22px;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
}

.btn-up::before {
  content: '';
  text-align: center;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17V4M3 10l7-7 7 7'/%3E%3C/g%3E%3C/svg%3E");
}

.btn-up_hide {
  display: none;
}
html {
  scroll-behavior: smooth;
}
.block_info {
  width: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.block_info__date {
  color: var(--grey200, #818181);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 169%;
  margin-bottom: 234px;
}
.block_info__share {
  transform: rotate(-90deg);
  color: var(--grey200, #818181);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.5px; /* 168.182% */
  letter-spacing: 1.1px;
  text-transform: uppercase;
  bottom: 160px;
  left: -20px;
  position: absolute;
}
.block_info__socs {
  display: flex;
  padding: 14px;
  flex-direction: column;
  border: 1px solid var(--gold, #b88560);
  width: 52px;
}
.block_info__soc:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #b88560;
}
.df_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .block_info {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .block_info__date {
    margin-bottom: 10px;
    width: 100%;
    margin-top: 15px;
  }
  .block_info__share {
    position: unset;
    transform: unset;
    width: 100%;
    margin-bottom: 10px;
  }
  .block_info__socs {
    flex-direction: row;
    width: max-content;
  }
  .block_info__soc:not(:last-child) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #b88560;
  }
  .footer-menu {
    justify-content: space-between;
  }
  .footer-menu * {
    box-sizing: border-box;
  }
  .footer-menu .flex-col:nth-child(1) {
    width: calc(43% - 10px);
  }
  .footer-menu .flex-col:nth-child(2) {
    width: calc(43% - 10px);
    position: relative;
    left: -30px;
  }
  .footer-menu .flex-col:nth-child(3) {
    width: calc(50% - 10px);
    margin-left: auto;
  }
  .footer-menu .flex-col:nth-child(4) {
    width: calc(50% - 10px);
    margin-left: auto;
  }
  #contacts .mapBlock__block {
    display: none;
  }
}
@media all and (max-width: 380px) {
  .footer-menu {
    flex-direction: column;
  }
  .footer-menu .flex-col {
    position: unset !important;
    width: 100% !important;
  }
}
.bx-pagination .bx-pagination-container ul li.bx-active span {
  background-color: black;
}
.politic__content {
  padding: 40px 0;
}
.politic__content p {
  line-height: 1.5;
  margin-bottom: 5px;
}

.politic__content strong {
  font-weight: bold;
}

.politic__content h2 {
  font-size: 18px;
  margin: 15px 0;
}
.politic__content ul {
  list-style-type: circle;
  list-style-position: inside;
}
.download__image-text {
  font-size: 12px;
  line-height: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #b88560;
  z-index: 3;
  -webkit-transition: border-color .3s, color .3s;
  transition: border-color .3s, color .3s;
  font-weight: 700;
  text-transform: uppercase;
}
.download__image {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  max-width: 47px;
  max-height: 47px;
  height: 47px;
  width: 47px;
  margin-right: 23px;
  border: 1px solid #b88560;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.download__info {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.download__text {
  color: #b88560;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: .21em;
}

.download__description{
  text-transform: uppercase;
}
/* End */


/* Start:/local/templates/aurus2023/template_styles.css?17279598611579*/
#content p, #content ul{
    font-weight: 300;
}


.tooltip-template { display: none; }
.tooltip-content{
    padding: 5px 15px;
    color: #666666;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}
.tooltip-text{

}
.tooltip-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(/images/close.svg) no-repeat center center/10px;
    cursor: pointer;
}


.token{
    position: relative;
    right: 20px;
    top: 40px;
    float: right;
    background: #fff;
    opacity: 0.9;
    border-radius: 3px;
    font-size: 13px;
    padding: 6px;
    line-height: 15px;
    color:#000;
}
.token i{
    border-radius: 50%;
    width: 16px;
    height: 16px;
    padding: 2px;
    color: #fff;
    text-align: center;
    font: 13px Arial, sans-serif;
    display: inline-block;
    background: #000;
}

.token i:after{
    content:'i'
}
@media(max-width: 768px){
    .token{
        right: 5px;
        top:30px;
    }
}

#breadcrumbs .last-link:after {
    content: unset;
}

.sitemap__content {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 300px);
    justify-content: center;
    gap: 20px;
}
.sitemap__block {
    text-align: center;
}
.sitemap__content p {
    line-height: 1.5;
    margin-bottom: 5px;
}
.sitemap__content strong {
    font-weight: bold;
}
@media (max-width: 596px) {
    .sitemap__content {
        grid-template-columns: repeat(1, 300px);
    }
}
/* End */
/* /css/simple-lightbox.css?16989289335415 */
/* /css/splide-core.min.css?16959230737062 */
/* /local/templates/aurus2023/plg/tooltip/css/tooltipster.bundle.min.css?16953025076495 */
/* /local/templates/aurus2023/plg/tooltip/css/tooltipster.theme-shadow.css?16953025092396 */
/* /css/app.css?1748264070201515 */
/* /local/templates/aurus2023/template_styles.css?17279598611579 */
