/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* @font-face {
  font-family: "AnastasiaScript";
  src: url("../fonts/AnastasiaScript.woff2") format("woff2"),
    url("../fonts/AnastasiaScript.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
:root {
  --dark-black: #000;
  --black: #181818;
  --light-black: #333439;
  --gray: #f5f5f5;
  --gray3: #a8a8a8;
  --white: #fff;
  --red: #ea001b;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: #000;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #fbfbfb;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #000c49;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1200px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.hover-word-js {
  position: relative;
  overflow: hidden;
  display: block;
  width: max-content;
}
.hover-word-js p {
  position: relative;
  transition: 0.3s;
}
.hover-word-js:hover p:nth-child(1) {
  transform: translateY(-100%);
}
.hover-word-js:hover p:nth-child(2) {
  transform: translateY(0);
}
.hover-word-js p:nth-child(2) {
  position: absolute;
  top: 0;
  transform: translateY(100%);
}
.title,
.title-hero {
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
section {
  margin-bottom: 110px;
  overflow: hidden;
}

.link-red {
  display: block;
  color: var(--gray);
  font-size: 16px;
  font-weight: 600;
  border-radius: 60px;
  background: var(--red);
  padding: 16px 40px;
  cursor: pointer;
  transition: 0.3s all;
  width: max-content;
  text-align: center;
}

/**************************************************/
/**                 FOOTER                       **/
/**************************************************/
.footer {
  background-color: var(--light-black);
  position: relative;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: start;
  padding: 80px 0;
}
.footer-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  display: flex;
  align-items: flex-end;
}
.footer_center-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}
.footer_center ul {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.footer_center ul p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}
.footer_top {
  width: 190px;
}
.footer_bottom-cart {
  width: 200px;
  margin-bottom: 40px;
}
.footer_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer_bottom a {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_bottom p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}
.footer_bottom a p {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.footer_bottom a img {
  width: 42.958px;
  height: 18px;
}
/**************************************************/
/**                 Contacts                     **/
/**************************************************/
.contacts_inner {
  display: flex;
}
.contacts_inner .title {
  color: var(--white);
}
.contacts-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  gap: 40px;
  background-color: var(--light-black);
}
.contacts-block_title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.contacts-block_title img {
  width: 32px;
  height: 32px;
}
.contacts-block_title p {
  color: var(--gray);
  font-size: 24px;
  font-weight: 600;
  width: max-content;
}
.contacts-descr {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacts-descr p {
  color: var(--gray);
  font-size: 18px;
  font-weight: 400;
}
/**************************************************/
/**                     FAQ                      **/
/**************************************************/
.faq-content {
  margin-top: 56px;
  background-color: var(--gray);
}
.faq-item {
  position: relative;
  cursor: pointer;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ececec;
}
.faq-item:last-child {
  border-bottom: none;
}
.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-top-num {
  color: var(--red);
  font-size: 20px;
  font-weight: 600;
  padding-right: 20px;
}
.f-close {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}
.f-bottom > div {
  min-height: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
}
.f-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}
.f-bottom span {
  display: block;
  height: 32px;
}
.active .f-bottom {
  grid-template-rows: 1fr;
}
.faq-top_title {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
}
.f-bottom {
  font-size: 18px;
  font-weight: 400;
}

.icon path {
  transition: all 0.4s ease;
  transform-origin: center;
}
.icon .to-cross,
.active .to-arrow {
  opacity: 0;
  transform: scale(0.5) rotate(45deg);
}
.active .bg {
  fill: #ea001b;
}
.bg {
  fill: #333439;
}
.active .to-cross {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
/**************************************************/
/**                    VIDEO                     **/
/**************************************************/
.video {
  overflow: hidden;
  padding-bottom: 13px;
}
.video-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.video-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-center {
  display: flex;
  gap: 20px;
  margin: 40px 0 50px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.video-center::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
}
.video-tab {
  color: var(--light-black);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 16px 36px;
  min-width: max-content;
  background-color: var(--gray);
  border-radius: 64px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: 0.3s all;
}

.video-tab.active {
  color: var(--gray);
  background-color: var(--light-black);
}
.video-navigation-button {
  padding: 12px 7px;
  border-radius: 50px;
  background-color: var(--red);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
}
.video-navigation-button:hover {
  background-color: #d9d9d9;
}
.video-navigation-button img {
  width: 14px;
  height: 8px;
}
.link-red.video-link {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 2;
  color: var(--red);
  background: var(--gray);
}
.link-red.video-link:hover {
  color: var(--gray);
  background: var(--red);
}
.video-swiper .swiper-wrapper {
    justify-content: center;
}
.video-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.line.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: 10px;
  height: 2px;
  background: #d9d9d9;
}
.line span.swiper-pagination-progressbar-fill {
  background: var(--red);
}
.video-bottom {
  position: relative;
}
.video-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
  transition: 0.3s ease-out;
}
.video-content.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
/**************************************************/
/**                    LEGAL                     **/
/**************************************************/
.legal {
  background-color: var(--gray);
  position: relative;
  overflow: hidden;
}
.legal-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.legal-img .legal-img-desc {
  object-fit: cover;
  height: 100%;
  max-height: 400px;
}
.legal-img .legal-img-mobail {
  display: none;
}
.legal_left {
  position: relative;
  z-index: 2;
  width: 60%;
  padding-bottom: 90px;
}
.legal_right {
  display: flex;
  align-items: center;
  align-items: flex-end;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 0;
}
.legal_right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.legal_right-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.legal_right-social img {
  width: 44px;
  height: 44px;
}
.legal_right p {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  width: max-content;
}
.legal_title {
  color: var(--black);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}
.legal_inner {
  display: flex;
  padding: 60px 0 20px;
}
.legal_descr {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  margin: 40px 0;
}
/**************************************************/
/**                    PRICE                     **/
/**************************************************/
section.price,
section.process {
  overflow: visible;
}
.price-left_descr {
  color: var(--gray3);
  font-size: 20px;
  font-weight: 500;
}
.price-content {
  margin-top: 40px;
}
.price .link-red {
  width: 255px;
}
.price-right {
  background-image: url(../images/price_bg.png);
  background-color: #333439;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 88%;
}
.price-right {
  max-height: 648px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.price-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.price-left,
.price-right {
  flex: 1;
}
.price-left-item {
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  padding: 40px;
}
.price-left-item:last-child {
  margin-bottom: 0;
}

.price-right_title,
.price-right_title span {
  color: var(--white);
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 400px;
}
.price-right_title span {
  display: block;
  color: var(--red);
  font-weight: 700;
}
.price-right-text {
  color: var(--gray);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin: 38px 0 52px;
}
/* .price-right_bottom {
  color: var(--white);
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  margin-top: 80px;
} */
.price-left-item_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 10px;
}
.price-title {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
.price_price {
  color: var(--red);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  min-width: max-content;
}
.price-left-item_descr,
.price-left-item_descr-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-left-item_descr p {
  color: var(--black);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
.price-left-item_descr {
  margin-top: 16px;
}
/**************************************************/
/**                  PROCESS                     **/
/**************************************************/
.process .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.process-left {
  position: sticky;
  top: 83px;
  height: 400px;
}
.process-left,
.process-right {
  flex: 1;
}
.process-right_item {
  display: flex;
  padding: 40px 0;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid #d9d9d9;
}
.process-right_item img {
  width: 72px;
  height: 72px;
}
.process-right-text_title {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
}
.process-right-text_descr {
  margin-top: 20px;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
}
.process {
  position: relative;
}
.process_car {
  position: absolute;
  top: -140px;
  width: 37vw;
  z-index: -1;
  right: calc(50vw - 700px);
}
.process_red {
  position: absolute;
  bottom: 0;
  width: 48%;
  height: 136px;
}
/**************************************************/
/**                 SERVICES                     **/
/**************************************************/
.services-content {
  margin-top: 55px;
  background: var(--gray);
}
.services-top_descr {
  color: var(--gray3);
  font-size: 20px;
  font-weight: 500;
  display: contents;
}
.services-bottom-text {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.services-bottom p {
  flex: 1;
}
.services-bottom-img {
  margin-top: 32px;
}
.services-top_title.faq-top_title {
  font-size: 28px;
  display: flex;
  align-items: center;
}
/**************************************************/
/**                   MACHINE                    **/
/**************************************************/
.bg {
  position: relative;
  z-index: 2;
}
.bg > img {
  position: absolute;
  top: 0;
  left: -130px;
  width: 46vw;
  aspect-ratio: 1177 / 1160;
}
.configurator-content .box-brand-label {
  color: var(--red) !important;
}
.machine-capabilities-section .mmm div.box-brand-label {
  color: var(--red) !important;
}
.configurator-content .configurator-dropdowns .btn-show-remaps,
.configurator-content .boxCarData .tbl-tuning tr.power td:nth-child(odd) {
  background-color: var(--red) !important;
}
.configurator-content .configurator-dropdowns .btn-show-remaps {
  background-color: #c30f0f !important;
  color: #fff;
  padding: 0.85rem 1.75rem 0.85rem 1.75rem;
  text-align: center;
}
button#catalogue-init {
  background-color: #ea001b !important;
}
button#catalogue-init:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  left: 10%;
  background-color: #ff01016b;
}
/**************************************************/
/**                    HERO                      **/
/**************************************************/
.hero {
  background-image: url(../images/hero_bg.png);
  /* background-image: url(../images/bg1.png); */
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  overflow: hidden;
}
.hero_car2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_car {
  position: absolute;
  top: 27%;
  max-width: 921px;
  right: 5%;
  width: 50%;
}
.hero_right {
  max-width: 670px;
  padding-top: 27.5vh;
}
.hero_bottom-social {
  display: flex;
  gap: 8px;
}
.hero_bottom-social img {
  height: 32px;
  width: 32px;
}
.hero_bottom {
  position: absolute;
  bottom: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero_right .hero_bottom p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.hero_right p {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  margin: 40px 0;
}
.button_hero {
  display: flex;
  gap: 16px;
}
.link-red.reverce {
  color: var(--red);
  background-color: var(--gray);
}

/**************************************************/
/**                   HEADER                     **/
/**************************************************/
.header {
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  background: var(--gray);
  transition: transform 0.3s ease;
}
.nav-mob-img {
  display: none;
}
header.nav-hidden {
  transform: translateY(-200%);
  transition: transform 0.5s ease;
}
.menu {
  display: none;
}
.heade-menu {
  padding: 20px 0;
}
.heade-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header .logo {
  padding-top: 14px;
  width: 160px;
}
.heade-menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.heade-menu * {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.heade-menu .header-navigation {
  display: flex;
  gap: 40px;
  align-items: center;
}
.heade-menu .header-navigation .translate {
  font-weight: 500;
  color: var(--red);
  font-size: 16px;
}
.heade-menu .link-red {
  color: var(--gray);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 32px;
}
.heade-menu ul li {
  position: relative;
}
.heade-menu .submenu {
  position: absolute;
  top: auto;
  left: -20px;
  opacity: 0;
  background: var(--gray);
  z-index: -2;

  transition: 0.2s all;
}
.submenu > div {
  padding: 30px 20px 20px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.first {
  position: relative;
}
.flex {
  display: flex;
  gap: 5px;
  align-items: center;
}
.first svg {
  top: 45%;
  left: 65px;
}
.first:hover .submenu {
  opacity: 1;
  z-index: 2;
}
/**************************************************/
/**                     NEWS                     **/
/**************************************************/
.news .container {
  overflow: hidden;
}
.open-popup {
  cursor: pointer;
}
.news_top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.news-swiper .swiper-slide {
  padding: 20px;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.news-time {
  color: #acacac;
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0 12px;
}
.news-title {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
}
.news-descr {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: #181818;
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.news .link-red {
  width: 100%;
  margin-top: 20px;
}
.news_bottom {
  margin-top: 40px;
  padding-bottom: 10px;
}
.news.line.swiper-pagination-progressbar {
  position: relative;
  z-index: 1;
}

/**************************************************/
/**                 NEWS-POPUP                   **/
/**************************************************/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 11;
  transition: 0.3s all;
}
.popup.hidden {
  top: -100%;
  z-index: -1;
  opacity: 0;
}

.popup .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: white;
  padding: 40px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  font-size: 16px;
}
.popup-top {
  position: relative;
}
.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 24px;
}
.popup-time {
  color: #acacac;
  font-size: 16px;
  font-weight: 400;
}
.popup-title {
  width: 90%;
  color: var(--black);
  font-size: 28px;
  font-weight: 600;
  margin-top: 12px;
}
.popup-text {
  margin-top: 32px;
}
/**************************************************/
/**                  TRANSLATE                   **/
/**************************************************/
#trp-floater-ls {
  display: none;
}

.trp-language-switcher .trp-ls-shortcode-current-language {
  width: unset !important;
}

.trp-language-switcher {
  position: relative;
  width: unset;
  height: unset;
  z-index: 10000;
}

.trp-ls-shortcode-language {
  width: unset !important;
  padding: 0 !important;
}

.trp-language-switcher:hover .trp-ls-shortcode-language {
  display: flex !important;
  flex-direction: column;
}

.trp-language-switcher > div {
  border: none;
  /* background-image: none; */
  /* background: transparent; */
  background-color: transparent;
}
.trp-language-switcher > div {
  box-sizing: border-box;
  border-radius: 2px;
  background-image: url(../../assets/images/Polygon.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
}
.trp-ls-shortcode-current-language {
  padding: 0 !important;
}

.trp-language-switcher > div > a,
.trp-language-switcher > div > a.trp-ls-shortcode-disabled-language {
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px !important;
  background: transparent;
  display: block;
}

.trp-language-switcher > div > a:hover {
  background: #0000002c !important;
}

.mobile-lang .trp-language-switcher > div > a,
.mobile-lang
  .trp-language-switcher
  > div
  > a.trp-ls-shortcode-disabled-language {
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 10px !important;
  background: transparent;
  display: block;
}
