header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  height: 60px;
  background: var(--color-bg-header);
  z-index: 20;
}
header p, header img {
  cursor: pointer;
}
header #burger {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
header .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .right .book-btn {
  padding: 0 8px;
  height: 50px;
  font-size: 20px;
  font-weight: 300;
}

@media (min-width: 769px) {
  header {
    height: 120px;
  }
  header .logo img {
    height: 28px;
  }
}
@media (min-width: 1367px) {
  header .logo img {
    height: 36px;
  }
  header .right {
    gap: 24px;
  }
  header .right .book-btn {
    padding: 0 18px;
    font-size: 23px;
  }
}
@media (min-width: 1601px) {
  header .left {
    gap: 24px;
  }
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px 60px 16px;
  background: var(--color-bg-primary);
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}
footer hr {
  margin: 32px 0;
  width: 100%;
  border: 1px solid rgba(198, 198, 198, 0.3098039216);
}
footer .content {
  display: flex;
  flex-direction: column;
}
footer .content .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content .left .logo {
  margin-bottom: 24px;
  width: 100%;
  max-width: 170px;
}
footer .content .left .description {
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 100%;
}
footer .content .left form {
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  width: 100%;
  gap: 10px;
  background: var(--color-bg-form);
}
footer .content .left form > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .content .left form > div input {
  padding: 0 14px;
  height: 44px;
  width: 100%;
  border: 1px solid #FFFFFF;
  border-radius: var(--border-radius-base);
  color: black;
  outline: none;
}
footer .content .left form > div .iti__selected-dial-code {
  color: black;
}
footer .content .left form > div > button {
  margin-top: 14px;
  height: 46px;
  color: var(--color-bg-primary);
  font-size: 20px;
  background: #FFFFFF;
  border-color: #FFFFFF;
}
footer .content .left form p {
  font-size: 12px;
  line-height: 100%;
}
footer .content .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content .right .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
footer .content .right .info div {
  display: flex;
  align-items: center;
}
footer .content .right .info .selectors {
  gap: 20px;
}
footer .content .right .info .item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}
footer .content .right .payments {
  display: flex;
  align-items: center;
  width: 100%;
}
footer .content .right .payments img {
  height: 56px;
}
footer .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
footer .bottom .policies {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}
footer .bottom .policies a {
  font-size: 14px;
}
footer .bottom .copyright {
  width: 100%;
  font-size: 14px;
  line-height: 100%;
}

@media (min-width: 769px) {
  footer {
    padding: 64px 16px 0 16px;
  }
  footer .content {
    margin-bottom: 40px;
    gap: 40px;
  }
  footer .content .left .description {
    font-size: 16px;
  }
  footer .content .right {
    gap: 24px;
  }
  footer .content .right .payments {
    justify-content: flex-end;
  }
  footer .content .right .menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
  }
  footer .content .right .menu p {
    padding: 6px 12px;
    border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
    font-size: 20px;
  }
  footer .content .right .menu ul {
    list-style-type: none;
    gap: 8px;
  }
  footer .content .right .menu ul li {
    padding: 5px 12px;
    border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
    cursor: pointer;
  }
  footer .content .right .menu ul li a, footer .content .right .menu ul li span {
    font-size: 20px;
  }
  footer .content .right .menu .brands ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
  footer .content .right .menu .brands ul li a {
    font-size: 12px;
  }
  footer .content .right .menu .brands ul li, footer .content .right .menu .types ul li {
    font-size: 12px;
  }
  footer .bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 40px;
    height: 106px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }
  footer .bottom .policies {
    margin-bottom: 0;
    width: auto;
  }
  footer .bottom .policies a {
    font-size: 18px;
  }
  footer .bottom .copyright {
    width: auto;
    font-size: 18px;
  }
}
@media (min-width: 1367px) {
  footer {
    padding-top: 64px !important;
  }
}
@media (min-width: 1601px) {
  footer .content {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
  footer .content .left {
    width: 50%;
    align-items: flex-start;
  }
  footer .content .left .logo {
    max-width: none;
    width: auto;
    height: 130px;
  }
  footer .content .left form > div {
    flex-direction: row;
  }
  footer .content .left form > div > button {
    margin-top: 0;
    height: 44px;
  }
  footer .content .right {
    width: 50%;
    justify-content: space-between;
  }
  footer .content .right .menu {
    justify-content: flex-end;
  }
}
.page-404 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -16px;
  margin-bottom: 0;
  width: calc(100% + 32px);
  height: calc(100svh - 60px);
}
.page-404 img, .page-404 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.page-404 h1 {
  margin-bottom: 80px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 200px;
}
.page-404 p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .page-404 {
    height: calc(100svh - 120px);
  }
  .page-404 h1 {
    font-size: 400px;
  }
  .page-404 p {
    font-size: 80px;
  }
}
@media (min-width: 1367px) {
  .page-404 {
    margin-left: -120px;
    width: calc(100% + 240px);
  }
}
section.policy {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  gap: 20px;
}
section.policy .header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
section.policy .header a {
  position: absolute;
  top: 6px;
  left: 0;
}
section.policy .header a img {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}
section.policy .header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}
section.policy p, section.policy b, section.policy li {
  font-size: 12px;
  line-height: 140%;
}
section.policy b {
  font-weight: 700;
}
section.policy ul {
  margin-left: 20px;
}

@media (min-width: 769px) {
  section.policy .header {
    margin-bottom: 40px;
  }
  section.policy .header a {
    top: 20px;
  }
  section.policy .header a img {
    width: 28px;
    height: 28px;
  }
  section.policy .header h1 {
    font-size: 70px;
  }
  section.policy p, section.policy b, section.policy li {
    font-size: 22px;
  }
}
section.car-gallery {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 8px;
}
section.car-gallery li {
  border-radius: var(--border-radius-base);
}
section.car-gallery li img {
  border-radius: var(--border-radius-base);
}
section.car-gallery .car-gallery-thumbnail-slider {
  opacity: 0.7;
}
section.car-gallery .car-gallery-thumbnail-slider li {
  border: none !important;
}
section.car-gallery .splide__arrow {
  background: transparent;
  opacity: 1;
}
section.car-gallery .splide__arrow.splide__arrow--next {
  right: 0;
}
section.car-gallery .splide__arrow.splide__arrow--prev {
  left: 0;
}
section.car-gallery .splide__arrow svg path {
  fill: white;
}

section.car-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 8px;
}
section.car-info .item {
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
  cursor: pointer;
}
section.car-info .item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
section.car-info .item label span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
}
section.car-info .item label img {
  min-width: 24px;
  height: 24px;
}
section.car-info .item .content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
section.car-info .item .content p {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  font-size: 12px;
  line-height: 140%;
}
section.car-info .item .content p span {
  font-size: 12px;
  line-height: 140%;
}
section.car-info .item input {
  display: none;
}
section.car-info .item input:checked ~ label img {
  transform: rotate(90deg);
}
section.car-info .item input:checked ~ .content {
  max-height: 3000px;
}

section.car-advantages {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 8px;
}
section.car-advantages div {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 32px;
  gap: 6px;
  border-radius: var(--border-radius-base);
  background: #1A1A1A;
}
section.car-advantages div img {
  width: 24px;
  height: 24px;
}
section.car-advantages div h3 {
  font-size: 14px;
}

section.car-related h2 {
  margin-bottom: 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
}
section.car-related .splide__pagination {
  bottom: -24px;
}

section.car-advantages h3 {
  font-family: "Bebas Neue", sans-serif;
}

section.about {
  margin-top: 80px;
}
section.about .company {
  display: flex;
  align-items: stretch;
  margin-bottom: 32px;
}
section.about .company .content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 50%;
  gap: 16px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
}
section.about .company .content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  font-weight: 300;
}
section.about .company .content p {
  font-size: 24px;
  line-height: 125%;
}
section.about .company .img-container {
  position: relative;
  width: 50%;
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}
section.about .company .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}
section.about .advantages {
  display: flex;
  margin-bottom: 120px;
  gap: 16px;
}
section.about .advantages .content {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 16px;
}
section.about .advantages .content .item {
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 100%;
  gap: 16px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
}
section.about .advantages .content .item h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  font-weight: 300;
}
section.about .advantages .content .item p {
  font-size: 20px;
}
section.about .advantages .img-container {
  position: relative;
  width: 50%;
  border-radius: var(--border-radius-base);
}
section.about .advantages .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-base);
}

.header-menu.desktop {
  display: none !important;
  align-items: center;
  list-style-type: none;
}
.header-menu.desktop li {
  position: relative;
  padding: 18px 4px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.header-menu.desktop li a {
  font-size: 16px;
}
.header-menu.desktop li:hover a, .header-menu.desktop li:hover label span {
  opacity: 0.4;
}
.header-menu.desktop li:focus {
  color: red;
}
.header-menu.desktop li label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-menu.desktop li label span {
  font-size: 16px;
}
.header-menu.desktop li label img {
  margin-top: 2px;
  width: 16px;
}
.header-menu.desktop li ul {
  position: absolute;
  top: 50px;
  left: 0;
  height: 0;
  width: 300px;
  overflow: auto;
  background: #282828;
  border-radius: var(--border-radius-base);
}
.header-menu.desktop li ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
  cursor: pointer;
}
.header-menu.desktop li ul li:last-child {
  border-bottom: none;
}
.header-menu.desktop li input:checked + label img {
  transform: rotate(90deg);
}
.header-menu.desktop li input:checked + label + ul {
  padding: 12px;
  height: auto;
  max-height: 50svh;
}

@media (min-width: 1025px) {
  .header-menu.desktop {
    display: flex !important;
  }
}
@media (min-width: 1601px) {
  .header-menu.desktop li {
    padding: 18px 8px;
    font-size: 20px;
  }
  .header-menu.desktop li a {
    font-size: 20px;
  }
  .header-menu.desktop li label span {
    font-size: 20px;
  }
  .header-menu.desktop li label img {
    width: 20px;
  }
}
.language {
  position: relative;
}
.language span {
  position: relative;
  display: flex;
  text-transform: uppercase;
  cursor: pointer;
}
.language span::after {
  content: "";
  display: inline-block;
  margin-top: 4px;
  width: 4px;
  height: 4px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.language .selector {
  position: absolute;
  top: 37px;
  left: -12px;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  width: 100%;
  background: #1A1A1A;
  list-style-type: none;
  gap: 24px;
}
.language .selector li {
  cursor: pointer;
}
.language .selector li a {
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .language span {
    font-size: 16px;
  }
  .language span::after {
    margin-top: 5px;
  }
  .language .selector {
    padding: 8px;
    left: -4px;
  }
  .language .selector li a {
    font-size: 16px;
  }
}
@media (min-width: 1367px) {
  .language span {
    font-size: 20px;
  }
  .language .selector li a {
    font-size: 20px;
  }
}
.currency {
  position: relative;
}
.currency span {
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}
.currency span::after {
  content: "";
  display: inline-block;
  margin-top: 4px;
  width: 4px;
  height: 4px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.currency .selector {
  position: absolute;
  top: 37px;
  left: -12px;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  width: 100%;
  background: #1A1A1A;
  list-style-type: none;
  gap: 24px;
}
.currency .selector li {
  cursor: pointer;
}
.currency .selector li a {
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .currency span {
    font-size: 16px;
  }
  .currency span::after {
    margin-top: 5px;
  }
  .currency .selector {
    padding: 8px;
    left: -4px;
  }
  .currency .selector li {
    font-size: 16px;
  }
}
@media (min-width: 1367px) {
  .currency span {
    font-size: 20px;
  }
  .currency .selector li {
    font-size: 20px;
  }
}
.iti {
  width: 100%;
}
.iti .iti__selected-dial-code {
  margin-top: 1px;
  font-size: 14px;
}
.iti .iti__selected-country {
  padding-left: 10px;
}
.iti .iti__dropdown-content {
  background-color: #282828;
}
.iti .iti__search-icon svg {
  width: 20px;
  height: 20px;
}
.iti .iti__search-input {
  padding-left: 40px;
  height: 56px;
  background: #1A1A1A;
  color: var(--color-text-primary);
  font-size: 18px;
  outline: none;
}

.contact-form-modal {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 100;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}
.contact-form-modal .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 50svh;
  background: #1A1A1A;
}
.contact-form-modal .content #contact-form-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  margin: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.contact-form-modal .content #contact-form-modal-close img {
  width: 24px;
  height: 24px;
}

.contact-form-modal .content form, section.contact-form form {
  display: flex;
  flex-direction: column;
  padding: 24px 14px;
  width: 100%;
  background: #1A1A1A;
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}
.contact-form-modal .content form h2, section.contact-form form h2 {
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
}
.contact-form-modal .content form p, section.contact-form form p {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.contact-form-modal .content form .inputs, section.contact-form form .inputs {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 8px;
}
.contact-form-modal .content form .inputs .input, section.contact-form form .inputs .input {
  position: relative;
  width: 100%;
}
.contact-form-modal .content form .inputs .input img, section.contact-form form .inputs .input img {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 24px;
  height: 24px;
}
.contact-form-modal .content form .inputs .input input, section.contact-form form .inputs .input input {
  padding: 10px 16px 10px 50px;
  width: 100%;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(240, 248, 255, 0.6980392157);
  border-radius: var(--border-radius-base);
  color: rgba(240, 248, 255, 0.5019607843);
  font-size: 16px;
  outline: none;
}
.contact-form-modal .content form .inputs .input input:read-only, section.contact-form form .inputs .input input:read-only {
  cursor: pointer;
}
.contact-form-modal .content form .book, section.contact-form form .book {
  height: 46px;
  font-size: 20px;
}
.contact-form-modal .content img, section.contact-form img {
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
}

section.contact-form {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .contact-form-modal {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  section.contact-form form {
    width: 50%;
  }
  .contact-form-modal .content, section.contact-form {
    flex-direction: row;
  }
  .contact-form-modal .content form h2, section.contact-form form h2 {
    font-size: 60px;
  }
  .contact-form-modal .content form p, section.contact-form form p {
    font-size: 20px;
  }
  .contact-form-modal .content form .book, section.contact-form form .book {
    height: 74px;
    font-size: 40px;
  }
  .contact-form-modal .content img, section.contact-form img {
    width: 50%;
    height: 500px;
    object-fit: cover;
    border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
  }
}
@media (min-width: 1367px) {
  .contact-form-modal .content form, section.contact-form form {
    padding: 40px;
  }
}
.car-select-modal {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  width: 100%;
  max-width: 800px;
  height: 100%;
  z-index: 100;
  background: #282828;
  transition: all 0.3s ease-in-out;
}
.car-select-modal .header {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.car-select-modal .header button {
  position: absolute;
  top: 6px;
  left: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.car-select-modal .header button img {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}
.car-select-modal .header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}
.car-select-modal .brands {
  list-style-type: none;
  overflow: auto;
}
.car-select-modal .brands li .brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  height: 40px;
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
}
.car-select-modal .brands li .brand img {
  display: block;
  max-width: 80px;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.car-select-modal .brands li .brand span {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
}
.car-select-modal .brands li .cars {
  list-style-type: none;
  padding-left: 60px;
}
.car-select-modal .brands li .cars li button {
  justify-content: flex-start;
  padding: 13px 14px;
  width: 100%;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.date-select-modal {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  width: 100%;
  max-width: 800px;
  height: 100%;
  z-index: 100;
  background: #282828;
  transition: all 0.3s ease-in-out;
}
.date-select-modal .header {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.date-select-modal .header button {
  position: absolute;
  top: 6px;
  left: 0;
  margin: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.date-select-modal .header button img {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}
.date-select-modal .header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}
.date-select-modal .calendar {
  height: 100%;
  overflow: auto;
}
.date-select-modal .calendar #date-select-modal-calendar {
  height: 0;
  overflow: hidden;
}
.date-select-modal .apply {
  margin-top: 24px;
  height: 46px;
  font-size: 20px;
}

.success-modal {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 100;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}
.success-modal .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1A1A1A;
  width: 100%;
  max-width: 800px;
  height: 50svh;
}
.success-modal .content button {
  position: absolute;
  top: 12px;
  right: 16px;
  margin: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.success-modal .content button img {
  width: 24px;
  height: 24px;
}
.success-modal .content h2 {
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  text-align: center;
}
.success-modal .content p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #1E4B5C;
  transition: all 0.3s ease-in-out;
}
.mobile-menu .cross {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  padding-right: 14px;
}
.mobile-menu .cross button {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.mobile-menu .logo {
  margin-bottom: 32px;
  height: 75px;
}
.mobile-menu ul {
  list-style-type: none;
  overflow: auto;
}
.mobile-menu ul li {
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
  font-size: 14px;
  text-transform: uppercase;
}
.mobile-menu ul li a, .mobile-menu ul li label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  height: 45px;
  font-size: 14px;
  text-transform: uppercase;
}
.mobile-menu ul li label {
  border-bottom: 1px solid transparent;
}
.mobile-menu ul li label span {
  font-size: 14px;
  text-transform: uppercase;
}
.mobile-menu ul li ul {
  padding-left: 60px;
  height: 0;
  overflow: hidden;
}
.mobile-menu ul li ul li {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  width: 100%;
  min-height: 46px;
  height: 46px;
  max-height: 46px;
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
  gap: 12px;
}
.mobile-menu ul li ul li:last-child {
  border-bottom: 0;
}
.mobile-menu ul li ul li span {
  font-size: 14px;
}
.mobile-menu ul li ul li .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  margin-left: auto;
  height: 100%;
  width: 80px;
}
.mobile-menu ul li ul li .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.mobile-menu ul li input:checked + label {
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
}
.mobile-menu ul li input:checked + label img {
  transform: rotate(90deg);
}
.mobile-menu ul li input:checked + label + ul {
  height: auto;
}
.mobile-menu .buttons {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}
.mobile-menu .buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  background: #F0F8FF;
  border-radius: var(--border-radius-base);
}

section.promo {
  display: flex;
  flex-direction: column;
  margin-top: -60px;
  margin-bottom: 0;
  height: 100svh;
}
section.promo .overlay {
  position: absolute;
  top: 0;
  left: -16px;
  width: calc(100% + 32px);
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
section.promo .bottom-overlay {
  position: absolute;
  bottom: 0;
  left: -16px;
  width: calc(100% + 32px);
  height: 100px;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, #282828 86.06%);
}
section.promo img {
  position: absolute;
  top: 0;
  left: -16px;
  width: calc(100% + 32px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
section.promo h1 {
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
section.promo h1 span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  line-height: 87%;
}
section.promo h1 span i {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  line-height: 102%;
  font-style: normal;
}
section.promo h1 span:first-child {
  font-size: 34px;
}
section.promo .advantages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
section.promo .advantages p {
  display: flex;
  align-items: center;
  padding: 0 8px;
  height: 36px;
  background: #23292C;
  border-radius: var(--border-radius-base);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
section.promo button {
  margin-top: auto;
  margin-bottom: 100px;
}

@media (min-width: 769px) {
  section.promo {
    margin-top: -120px;
    margin-bottom: 100px;
  }
  section.promo .overlay {
    display: none;
  }
  section.promo h1 {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 150px;
  }
  section.promo h1 span {
    font-size: 90px;
  }
  section.promo h1 span i {
    font-size: 90px;
    line-height: 87%;
  }
  section.promo h1 span:first-child {
    width: 100%;
    font-size: 60px;
    font-weight: 300;
  }
  section.promo h1 span:last-child {
    margin-left: 12px;
  }
  section.promo .advantages {
    gap: 16px;
  }
  section.promo .advantages p {
    padding: 0 16px;
    height: 42px;
    font-size: 26px;
    font-weight: 300;
  }
  section.promo button {
    margin-top: 30px;
    margin-bottom: 0;
    width: 400px;
    height: 68px;
    font-size: 36px;
  }
}
@media (min-width: 1367px) {
  section.promo img, section.promo .bottom-overlay {
    left: -120px;
    width: calc(100% + 240px);
  }
  section.promo h1 span {
    font-size: 120px;
  }
  section.promo h1 span i {
    font-size: 120px;
  }
  section.promo h1 span:first-child {
    font-size: 80px;
  }
}
section.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  gap: 6px;
}
section.brands button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  height: 24px;
  width: auto;
  background: transparent;
  border: 1px solid var(--color-text-primary);
  border-radius: var(--border-radius-base);
}
section.brands button img {
  width: auto;
  height: 100%;
}
section.brands button:nth-child(15) img {
  width: 100px;
}
section.brands button:nth-child(16) img {
  width: 130px;
}
section.brands button:nth-child(17) img {
  width: 65px;
}
section.brands button:nth-child(18) img {
  width: 120px;
}

.beautiful-image {
  width: 100%;
}
.beautiful-image img, .beautiful-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-base);
}

@media (min-width: 769px) {
  .beautiful-image {
    display: flex;
    justify-content: center;
  }
  .beautiful-image img, .beautiful-image video {
    width: 60svw;
  }
}
section.offers-slider {
  margin-bottom: 48px;
  border-radius: var(--border-radius-base);
}
section.offers-slider h2 {
  margin-bottom: 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 300;
}
section.offers-slider .splide__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: var(--border-radius-base);
}
section.offers-slider .splide__slide a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.offers-slider .splide__slide a img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-base);
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}
section.offers-slider .splide__slide div {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 4px;
}
section.offers-slider .splide__slide div p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  background: #23292C;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
section.offers-slider .splide__slide h2 {
  position: relative;
  width: 100%;
  max-width: 150px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
}
section.offers-slider .splide__slide h2::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -50%;
  width: 200%;
  height: 160%;
  background: rgba(0, 0, 0, 0.6);
  filter: blur(12px);
  z-index: -1;
}
section.offers-slider .splide__slide button {
  margin-top: auto;
  width: 130px;
  height: 36px;
  font-size: 15px;
  font-weight: 400;
}
section.offers-slider .splide__pagination {
  bottom: -24px;
}

@media (min-width: 769px) {
  section.offers-slider h2 {
    font-size: 60px;
  }
  section.offers-slider .splide__slide div p {
    font-size: 18px;
  }
  section.offers-slider .splide__slide h2 {
    font-size: 56px;
    max-width: 250px;
  }
  section.offers-slider .splide__slide h2::before {
    left: 0;
    width: 100%;
  }
  section.offers-slider .splide__slide button {
    height: 46px;
    font-size: 20px;
  }
}
@media (min-width: 1601px) {
  section.offers-slider .splide__slide div p {
    font-size: 20px;
  }
}
.cars-select-types-modal, .cars-select-brands-modal {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #282828;
  transition: all 0.3s ease-in-out;
  gap: 36px;
}
.cars-select-types-modal .header, .cars-select-brands-modal .header {
  position: relative;
  display: flex;
  justify-content: center;
}
.cars-select-types-modal .header button, .cars-select-brands-modal .header button {
  position: absolute;
  top: 6px;
  left: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.cars-select-types-modal .header button img, .cars-select-brands-modal .header button img {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}
.cars-select-types-modal .header h2, .cars-select-brands-modal .header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}
.cars-select-types-modal .body, .cars-select-brands-modal .body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
}
.cars-select-types-modal .body label, .cars-select-brands-modal .body label {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  width: 100%;
  min-height: 46px;
  max-height: 46px;
  border-bottom: 1px solid rgba(240, 248, 255, 0.3019607843);
  gap: 12px;
}
.cars-select-types-modal .body label span, .cars-select-brands-modal .body label span {
  font-size: 14px;
}
.cars-select-types-modal .body label input, .cars-select-brands-modal .body label input {
  width: 20px;
  height: 20px;
  border-radius: var(--border-radius-base);
  outline: none;
}
.cars-select-types-modal .body label .logo, .cars-select-brands-modal .body label .logo {
  display: flex;
  justify-content: center;
  margin-left: auto;
  height: 100%;
  width: 80px;
}
.cars-select-types-modal .body label .logo img, .cars-select-brands-modal .body label .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.cars-select-types-modal .apply, .cars-select-brands-modal .apply {
  margin-top: auto;
  height: 46px;
  font-size: 20px;
}

section.cars {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 32px;
}
section.cars .head {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
section.cars .head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 300;
}
section.cars .head .filters {
  position: sticky;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
section.cars .head .filters button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  width: 100%;
  height: 36px;
  background: #282828;
  border: 1px solid #F0F8FF;
  border-radius: var(--border-radius-base);
  cursor: pointer;
}
section.cars .head .filters button span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
section.cars .head .filters button span i {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
}
section.cars .head .filters button img {
  width: 14px;
  height: 14px;
}
section.cars .cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.cars .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
section.cars .pagination button, section.cars .pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  height: 26px;
  width: 36px;
  background: transparent;
  border: 1px solid #F0F8FF;
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 0;
  transition: all 0.3s ease-in-out;
}
section.cars .pagination button:hover, section.cars .pagination button.current, section.cars .pagination span:hover, section.cars .pagination span.current {
  background: #F0F8FF;
  color: #091231;
}

@media (min-width: 769px) {
  section.cars .head h2 {
    font-size: 60px;
  }
  section.cars .head .filter {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  section.cars .head .filter .search {
    display: flex;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 62px;
    border: 1px solid #F0F8FF;
    border-radius: var(--border-radius-base);
  }
  section.cars .head .filter .search input {
    width: 100%;
    background: transparent;
    border: none;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    font-weight: 700;
    outline: none;
  }
  section.cars .head .filter button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 62px;
    gap: 16px;
    background: transparent;
    border: 1px solid #F0F8FF;
    border-radius: var(--border-radius-base);
  }
  section.cars .head .filter button img:last-child {
    margin-left: auto;
  }
  section.cars .head .filter button span {
    margin-top: 2px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
  section.cars .head .filter button span i {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
  }
  section.cars .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  section.cars .cards .car-card {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1367px) {
  section.cars .head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  section.cars .head h2 {
    width: 50%;
  }
  section.cars .cards .car-card {
    width: calc(33.3% - 16px);
  }
}
.cars-filters {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.5019607843);
  transition: all 0.3s ease-in-out;
}
.cars-filters .content {
  display: flex;
  flex-direction: column;
  padding: 22px;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: #282828;
  gap: 32px;
}
.cars-filters .header {
  display: flex;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(240, 248, 255, 0.6980392157);
  gap: 16px;
}
.cars-filters .header > img {
  width: 26px;
}
.cars-filters .header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.cars-filters .header button {
  margin-left: auto;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.cars-filters .header button img {
  width: 16px;
  height: 16px;
}
.cars-filters .body {
  display: flex;
  flex-direction: column;
  padding-right: 12px;
  height: 100%;
  overflow: auto;
}
.cars-filters .body > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 12px;
}
.cars-filters .body > div h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.cars-filters .body > div .noUi-base .noUi-origin:nth-child(2) {
  right: 22px;
}
.cars-filters .body > div .noUi-base .noUi-origin:nth-child(3) {
  left: 12px;
}
.cars-filters .body > div .noUi-horizontal {
  height: 2px;
}
.cars-filters .body > div .noUi-handle {
  top: -11px;
  width: 20px;
  height: 20px;
  border-radius: var(--border-radius-full);
  cursor: pointer;
}
.cars-filters .body > div .noUi-handle::before, .cars-filters .body > div .noUi-handle::after {
  display: none;
}
.cars-filters .body > div .inputs {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  gap: 8px;
}
.cars-filters .body > div .inputs div {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.cars-filters .body > div .inputs div span {
  padding-bottom: 2px;
  font-size: 11px;
  text-transform: uppercase;
}
.cars-filters .body > div .inputs div input {
  padding: 0 12px;
  width: 100%;
  max-width: 120px;
  height: 36px;
  background: transparent;
  border: 0.5px solid rgba(240, 248, 255, 0.6980392157);
  border-radius: var(--border-radius-base);
}
.cars-filters .body > div .items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.cars-filters .body > div .items label {
  cursor: pointer;
}
.cars-filters .body > div .items label input {
  display: none;
}
.cars-filters .body > div .items label p {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 36px;
  border: 1px solid rgba(240, 248, 255, 0.6980392157);
  border-radius: var(--border-radius-base);
  font-size: 15px;
  gap: 6px;
}
.cars-filters .body > div .items label input:checked + p {
  background: var(--color-bg-primary);
}
.cars-filters .body > div.colors .items label {
  position: relative;
}
.cars-filters .body > div.colors .items label input:checked + p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5019607843);
  border-radius: var(--border-radius-base);
}
.cars-filters .body > div.colors .items label input:checked + p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 6px;
  border-left: 3px solid #22c55e;
  border-bottom: 3px solid #22c55e;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.cars-filters .body > div.colors .items label p {
  padding: 0;
  width: 30px;
  height: 30px;
}
.cars-filters .body > div #cars-filters-price-slider {
  margin-top: 18px;
  padding: 0 24px;
}
.cars-filters .apply {
  margin-top: auto;
  height: 46px;
  font-size: 20px;
  background: var(--color-text-primary);
  color: var(--color-bg-primary);
}

.car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-base);
}
.car-card .badge {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 14px;
  height: 36px;
  background: #1E4B5C;
  border-radius: var(--border-radius-base) var(--border-radius-base) var(--border-radius-base) 0;
  font-family: "Bebas Neue", sans-serif;
  z-index: 1;
}
.car-card .brand {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 14px;
  max-width: 50%;
  height: 36px;
  background: rgba(45, 46, 47, 0.5019607843);
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) var(--border-radius-base);
  z-index: 1;
}
.car-card .brand img {
  display: block;
  max-width: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.car-card .poster {
  position: relative;
  height: 200px;
}
.car-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}
.car-card .poster div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111111 100%);
}
.car-card .info {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 20px 12px;
  gap: 20px;
  background: #101010;
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
}
.car-card .info .advantages {
  display: flex;
  align-items: center;
  gap: 4px;
}
.car-card .info .advantages span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  height: 24px;
  width: 100%;
  background: #2d2e2f;
  border-radius: var(--border-radius-base);
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  text-wrap: nowrap;
}
.car-card .info .title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.car-card .info .title h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}
.car-card .info .title p {
  font-size: 12px;
}
.car-card .info .price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.car-card .info .price div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  height: 32px;
  background: #363738;
  border: 1px solid transparent;
  border-radius: var(--border-radius-base);
  gap: 8px;
}
.car-card .info .price div span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}
.car-card .info .price .currency {
  padding: 0;
}
.car-card .info .price .currency span {
  position: relative;
}
.car-card .info .price .currency span::after {
  content: "";
  display: inline-block;
  margin-top: 6px;
  width: 4px;
  height: 4px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.car-card .info .price p {
  width: 80px;
  font-size: 10px;
}
.car-card .info .actions {
  display: flex;
  gap: 16px;
}
.car-card .info .actions button, .car-card .info .actions a {
  height: 46px;
  font-size: 20px;
}
.car-card .info .actions a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid #F0F8FF;
  border-radius: var(--border-radius-base);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .car-card .poster {
    height: 400px;
  }
  .car-card .info .advantages {
    display: none;
  }
  .car-card .info .title h3 {
    font-size: 40px;
  }
  .car-card .info .title p {
    font-size: 16px;
  }
  .car-card .info .price p {
    width: 120px;
    font-size: 14px;
  }
}
section.special {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-base);
}
section.special img, section.special video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-base);
}
section.special h3 {
  position: absolute;
  top: 20px;
  left: 14px;
  padding-right: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
}

section.advantages {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 8px;
}
section.advantages .advantage {
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  border-radius: var(--border-radius-base);
  gap: 10px;
  background: #1A1A1A;
}
section.advantages .advantage > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.advantages .advantage > div > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
section.advantages .advantage > div > div img {
  width: 30px;
  height: 30px;
}
section.advantages .advantage > div > div h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}
section.advantages .advantage > div span {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
}
section.advantages .advantage p {
  width: 90%;
  font-size: 14px;
  line-height: 120%;
}

section.choices-slider h2 {
  margin-bottom: 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 300;
}
section.choices-slider .splide__pagination {
  bottom: -24px;
}

@media (min-width: 769px) {
  section.choices-slider h2 {
    font-size: 70px;
  }
}
section.steps {
  display: flex;
  flex-direction: column;
  padding: 30px 14px;
  gap: 20px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
}
section.steps .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.steps .items > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
section.steps .items > div::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: -40%;
  height: 60%;
  border: 1px solid #FFFFFF;
}
section.steps .items > div:last-child::after {
  display: none;
}
section.steps .items > div > span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  height: 24px;
  border: 1px solid var(--color-text-primary);
  border-radius: 100%;
  font-weight: 500;
  z-index: 1;
}
section.steps .items > div > div {
  display: flex;
  flex-direction: column;
  padding: 24px 14px;
  width: 100%;
  gap: 8px;
  border: 1px solid var(--color-text-primary);
  border-radius: var(--border-radius-base);
}
section.steps .items > div > div p {
  font-size: 18px;
  font-weight: 500;
}
section.steps .items > div > div span {
  font-size: 14px;
}

@media (min-width: 769px) {
  section.steps {
    position: relative;
    background: transparent;
  }
  section.steps img {
    position: absolute;
    left: -16px;
    width: calc(100% + 32px);
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  section.steps .overlay {
    position: absolute;
    left: -16px;
    width: calc(100% + 32px);
    height: 100%;
    background: rgba(0, 0, 0, 0.6666666667);
    z-index: -1;
  }
  section.steps .title {
    margin-top: 40px;
  }
  section.steps .title h2 {
    font-size: 70px;
  }
  section.steps .title p {
    font-size: 28px;
  }
  section.steps .items {
    padding-left: 40px;
    width: 60%;
  }
  section.steps .items .item p {
    font-size: 25px;
  }
  section.steps .items .item span {
    font-size: 20px;
  }
  section.steps button {
    margin-left: 72px;
    width: calc(60% - 72px);
    height: 65px;
    font-size: 30px;
  }
}
@media (min-width: 1367px) {
  section.steps img {
    left: -120px;
    width: calc(100% + 240px);
  }
  section.steps .overlay {
    left: -120px;
    width: calc(100% + 240px);
  }
}
@media (min-width: 1601px) {
  section.steps .items {
    width: 50%;
  }
  section.steps button {
    width: calc(50% - 72px);
  }
}
section.reviews {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 14px;
  gap: 20px;
  background: rgba(26, 26, 26, 0.6666666667);
  border-radius: var(--border-radius-base);
}
section.reviews > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-base);
  object-fit: cover;
  z-index: -1;
}
section.reviews .title a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 56px;
  width: fit-content;
  background: #1E4B5C;
  border-radius: var(--border-radius-base);
  gap: 18px;
}
section.reviews .title a img {
  height: 50px;
  width: 50px;
}
section.reviews .title a span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
}
section.reviews .title a p {
  width: 70px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}
section.reviews .reviews-slider {
  margin-bottom: 24px;
}
section.reviews .reviews-slider .splide__slide {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--color-text-primary);
  border-radius: var(--border-radius-base);
  gap: 20px;
}
section.reviews .reviews-slider .splide__slide .stars {
  display: flex;
  align-items: center;
}
section.reviews .reviews-slider .splide__slide .stars img {
  width: 16px;
  height: 16px;
}
section.reviews .reviews-slider .splide__slide .content {
  height: 100%;
  overflow: auto;
}
section.reviews .reviews-slider .splide__slide .content p {
  font-size: 14px;
  line-height: 140%;
}
section.reviews .reviews-slider .splide__slide .reviewer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
section.reviews .reviews-slider .splide__slide .reviewer span:first-child {
  color: var(--color-bg-primary);
  font-size: 18px;
}
section.reviews .reviews-slider .splide__pagination {
  bottom: -24px;
}

@media (min-width: 769px) {
  section.reviews {
    padding: 40px;
  }
  section.reviews .title {
    gap: 16px;
  }
  section.reviews .title h2 {
    font-size: 70px;
  }
  section.reviews .title p {
    font-size: 28px;
  }
  section.reviews .title a {
    margin-top: 8px;
    height: 70px;
  }
  section.reviews .title a p {
    width: 140px;
  }
  section.reviews .reviews-slider {
    margin-bottom: 0;
  }
  section.reviews .reviews-slider .splide__slide .stars img {
    width: 24px;
    height: 24px;
  }
  section.reviews .reviews-slider .splide__slide .content p {
    font-size: 18px;
  }
  section.reviews .reviews-slider .splide__slide .reviewer span, section.reviews .reviews-slider .splide__slide .reviewer span:first-child {
    font-size: 22px;
  }
  section.reviews button {
    display: none;
  }
}
section.social {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
section.social .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.social .head div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.social .head div h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-weight: 300;
  text-transform: uppercase;
}
section.social .head div p {
  font-size: 28px;
}
section.social .head a {
  display: flex;
  align-items: center;
  padding: 0 55px;
  height: 86px;
  background: #1E4B5C;
  border-radius: var(--border-radius-base);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}
section.social .body {
  display: flex;
  padding: 40px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
  gap: 16px;
}
section.social .body a {
  position: relative;
  display: block;
  width: 100%;
  height: 690px;
}
section.social .body a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius-base);
}
section.social .body a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-base);
}
section.social .body a .play {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  background: #D9D9D9;
  border-radius: var(--border-radius-full);
}
section.social .body a .play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent #1A1A1A;
}

section.conditions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
section.conditions .head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.conditions .head .left {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 50%;
}
section.conditions .head .left > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
  object-fit: cover;
}
section.conditions .head .left h3 {
  margin-bottom: 16px;
  width: 100%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  font-weight: 300;
  z-index: 1;
}
section.conditions .head .left > p {
  margin-bottom: 46px;
  font-size: 28px;
  z-index: 1;
}
section.conditions .head .left div {
  display: flex;
  gap: 8px;
  z-index: 1;
}
section.conditions .head .left div p {
  padding: 6px 12px;
  font-size: 16px;
  border: 1px solid #F0F8FF;
  border-radius: var(--border-radius-base);
}
section.conditions .head .right {
  position: relative;
  width: 50%;
}
section.conditions .head .right video, section.conditions .head .right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}
section.conditions .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
section.conditions .body .item {
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  width: calc(50% - 8px);
  border-radius: var(--border-radius-base);
  gap: 10px;
  background: #1A1A1A;
}
section.conditions .body .item > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.conditions .body .item > div h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 300;
}
section.conditions .body .item > div span {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
}
section.conditions .body .item p {
  width: 90%;
  font-size: 20px;
  line-height: 120%;
}

@media (min-width: 1367px) {
  section.conditions .head {
    flex-direction: row;
  }
  section.conditions .head video, section.conditions .head img {
    width: 40%;
  }
  section.conditions .body .item {
    width: calc(33% - 12px);
  }
}
section.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.faq .image-title {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-base);
}
section.faq .image-title img, section.faq .image-title video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-base);
}
section.faq .image-title h2 {
  position: absolute;
  top: 20px;
  left: 14px;
  padding-right: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 300;
}
section.faq .items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.faq .items > img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 24px);
  height: 100%;
  border-radius: var(--border-radius-base);
  object-fit: cover;
}
section.faq .items h2 {
  display: none;
  z-index: 1;
}
section.faq .items .item {
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
  cursor: pointer;
  z-index: 1;
}
section.faq .items .item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
section.faq .items .item label span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
}
section.faq .items .item label img {
  min-width: 24px;
  height: 24px;
}
section.faq .items .item .content {
  padding-right: 54px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
section.faq .items .item .content p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 150%;
}
section.faq .items .item input {
  display: none;
}
section.faq .items .item input:checked ~ label img {
  transform: rotate(90deg);
}
section.faq .items .item input:checked ~ .content {
  max-height: 500px;
}

@media (min-width: 769px) {
  section.faq {
    flex-direction: row-reverse;
    background: #1A1A1A;
    border-radius: var(--border-radius-base);
  }
  section.faq .image-title h2 {
    display: none;
  }
  section.faq .image-title > div {
    position: relative;
    height: 100%;
  }
  section.faq .image-title > div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  section.faq .items {
    padding: 40px;
    gap: 0;
  }
  section.faq .items > img {
    display: block;
  }
  section.faq .items h2 {
    display: block;
    margin-bottom: 40px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 70px;
    font-weight: 300;
  }
  section.faq .items .item {
    padding: 20px;
    background: transparent;
    border-bottom: 1px solid #F0F8FF;
    border-radius: 0;
  }
  section.faq .items .item label span {
    font-family: "Inter", sans-serif;
    font-size: 22px;
  }
  section.faq .items .item .content p {
    font-size: 16px;
  }
  section.faq .items .item .content p:first-child {
    margin-top: 26px;
  }
}
section.desktop-advantages {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
section.desktop-advantages .head {
  display: flex;
  background: #1A1A1A;
}
section.desktop-advantages .head .left {
  position: relative;
  width: 50%;
  min-height: 170px;
}
section.desktop-advantages .head .left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
  object-fit: cover;
}
section.desktop-advantages .head .left h3 {
  position: relative;
  padding: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  font-weight: 300;
  z-index: 1;
}
section.desktop-advantages .head .right {
  position: relative;
  width: 50%;
}
section.desktop-advantages .head .right video, section.desktop-advantages .head .right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}
section.desktop-advantages .content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
section.desktop-advantages .content .advantage {
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  width: calc(50% - 8px);
  border-radius: var(--border-radius-base);
  gap: 10px;
  background: #1A1A1A;
}
section.desktop-advantages .content .advantage > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.desktop-advantages .content .advantage > div > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
section.desktop-advantages .content .advantage > div > div img {
  width: 30px;
  height: 30px;
}
section.desktop-advantages .content .advantage > div > div h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
}
section.desktop-advantages .content .advantage > div span {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
}
section.desktop-advantages .content .advantage p {
  width: 90%;
  font-size: 20px;
  line-height: 120%;
}

@media (min-width: 1367px) {
  section.desktop-advantages .content .advantage {
    width: calc(25% - 12px);
  }
}
section.contacts {
  position: relative;
  display: flex;
  padding: 40px;
  background: rgba(26, 26, 26, 0.6666666667);
  border-radius: var(--border-radius-base);
  gap: 60px;
}
section.contacts > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-base);
  object-fit: cover;
  z-index: -1;
}
section.contacts .content {
  width: calc(50% - 30px);
}
section.contacts .content h2 {
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-weight: 300;
}
section.contacts .content .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 14px;
}
section.contacts .content .item img {
  width: 24px;
  height: 24px;
}
section.contacts .content .item p {
  font-size: 24px;
}
section.contacts .content button {
  margin-top: 40px;
  padding: 0 18px;
  width: fit-content;
  font-size: 30px;
  font-weight: 300;
}
section.contacts iframe {
  height: 440px;
  width: calc(50% - 30px);
}

section.car-title.mobile {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  gap: 8px;
}
section.car-title.mobile a {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
section.car-title.mobile a img {
  width: 14px;
  height: 14px;
  rotate: 180deg;
}
section.car-title.mobile a span {
  color: #F0F8FF;
  font-size: 14px;
}
section.car-title.mobile h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}
section.car-title.mobile p {
  font-size: 12px;
}

section.car-title.desktop {
  display: flex;
  flex-direction: column;
  margin-top: -120px;
  margin-bottom: 80px;
  height: 100svh;
}
section.car-title.desktop .bottom-overlay {
  position: absolute;
  bottom: 0;
  left: -16px;
  width: calc(100% + 32px);
  height: 100px;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, #282828 86.06%);
}
section.car-title.desktop img {
  position: absolute;
  top: 0;
  left: -16px;
  width: calc(100% + 32px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
section.car-title.desktop .info {
  position: absolute;
  bottom: 50px;
  right: 0;
  padding: 36px;
  width: 100%;
  max-width: 640px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
}
section.car-title.desktop .info > h1 {
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
}
section.car-title.desktop .info > p {
  margin-bottom: 50px;
  font-size: 28px;
}
section.car-title.desktop .info .car-book {
  margin-bottom: 0;
}
section.car-title.desktop .info .car-book > div {
  margin-bottom: 40px;
  padding: 0;
}
section.car-title.desktop .info .car-book > div > div > div {
  height: 50px;
}
section.car-title.desktop .info .car-book > div > div > div span {
  font-size: 30px;
}
section.car-title.desktop .info .car-book > div > div > div .currency > span::after {
  margin-top: 10px;
}
section.car-title.desktop .info .car-book > div > div > div .currency .selector {
  padding: 0;
}
section.car-title.desktop .info .car-book > div > div > div .currency .selector li {
  font-size: 30px;
}
section.car-title.desktop .info .car-book > div > div p {
  font-size: 16px;
}
section.car-title.desktop .info .car-book button {
  height: 79px;
  border-radius: var(--border-radius-base);
  font-size: 40px;
}
section.car-title.desktop .arrows {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  z-index: -1;
}

@media (min-width: 1367px) {
  section.car-title.desktop .bottom-overlay, section.car-title.desktop img {
    left: -120px;
    width: calc(100% + 240px);
  }
}
@media (min-width: 1601px) {
  section.car-title.desktop .arrows {
    width: 100%;
  }
}
.car-book {
  margin-bottom: -24px;
  width: 100%;
}
.car-book > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 12px;
  background: #1A1A1A;
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}
.car-book > div > div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.car-book > div > div:first-child div {
  background: transparent;
  border: 1px solid rgba(240, 248, 255, 0.6980392157);
}
.car-book > div > div:last-child div {
  background: #363738;
  border: 1px solid transparent;
}
.car-book > div > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  height: 32px;
  border-radius: var(--border-radius-base);
  gap: 8px;
}
.car-book > div > div > div span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}
.car-book > div > div > div .currency {
  padding: 0;
  border: none;
}
.car-book > div > div > div .currency span {
  position: relative;
}
.car-book > div > div > div .currency span::after {
  content: "";
  display: inline-block;
  margin-top: 6px;
  width: 4px;
  height: 4px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.car-book > div > div p {
  font-size: 10px;
  text-align: center;
  justify-content: center;
}
.car-book button {
  height: 46px;
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
  font-size: 20px;
  cursor: pointer;
}

.car-badges {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -24px;
  gap: 8px;
}
.car-badges div {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 32px;
  gap: 6px;
  border-radius: var(--border-radius-base);
  background: #1A1A1A;
}
.car-badges div img {
  width: 24px;
  height: 24px;
}
.car-badges div h3 {
  font-size: 14px;
}

@media (min-width: 769px) {
  .car-badges {
    margin-bottom: -16px;
    gap: 12px;
  }
  .car-badges div {
    padding: 0 20px;
    height: 60px;
    gap: 8px;
  }
  .car-badges div img {
    width: 40px;
    height: 40px;
  }
  .car-badges div h3 {
    font-size: 22px;
  }
}
section.car-data {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.car-data .car-data-slider {
  width: 100%;
}
section.car-data .car-data-slider li {
  border-radius: var(--border-radius-base);
}
section.car-data .car-data-slider li img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-base);
  object-fit: cover;
}
section.car-data .car-data-slider .splide__arrow {
  background: transparent;
  opacity: 1;
}
section.car-data .car-data-slider .splide__arrow.splide__arrow--next {
  right: 0;
}
section.car-data .car-data-slider .splide__arrow.splide__arrow--prev {
  left: 0;
}
section.car-data .car-data-slider .splide__arrow svg {
  width: 60px;
  height: 40px;
}
section.car-data .car-data-slider .splide__arrow svg path {
  fill: white;
}
section.car-data .info {
  padding: 32px;
  width: 100%;
  background: #1A1A1A;
  border-radius: var(--border-radius-base);
}
section.car-data .info h2 {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 24px;
  height: 45px;
  width: fit-content;
  border: 1px solid #F0F8FF;
  border-radius: var(--border-radius-base);
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
section.car-data .info h2:last-of-type {
  margin-top: 24px;
}
section.car-data .info p {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 4px;
  font-size: 18px;
}
section.car-data .info p span {
  font-size: 18px;
}

section.car-data-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
  gap: 24px;
}
section.car-data-content p {
  font-size: 18px;
  line-height: 150%;
}

@media (min-width: 1367px) {
  section.car-data {
    flex-direction: row;
  }
  section.car-data .info {
    width: 33%;
  }
}
@font-face {
  font-family: "Bebas Neue";
  src: url("/wp-content/themes/continental/assets/fonts/BebasNeueRegular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("/wp-content/themes/continental/assets/fonts/BebasNeueBold.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvvYwYL8g.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvmYwYL8g.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvsYwYL8g.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcviYwY.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-primary);
  border-radius: 6px;
}

:root {
  --color-bg-overlay: #282828;
  --color-bg-header: linear-gradient(180deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.6) 100%);
  --color-bg-primary: #1E4B5C;
  --color-bg-form: #FFFFFF1A;
  --color-text-primary: #F0F8FF;
  --border-radius-base: 5px;
  --border-radius-full: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 100%;
  text-decoration: none;
}

html {
  scroll-padding-top: 80px;
}

@media (min-width: 769px) {
  html {
    scroll-padding-top: 160px;
  }
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-overlay);
}

#up {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: none;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: var(--color-bg-primary);
  border-radius: 100%;
  cursor: pointer;
  z-index: 10;
}
#up svg {
  width: 36px;
  height: 36px;
}
#up svg path {
  fill: white;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  width: 100%;
  height: 52px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-bg-primary);
  border-radius: var(--border-radius-base);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes loader {
  to {
    transform: rotate(0.5turn);
  }
}
.loader {
  display: none;
  margin: 0 auto;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff rgba(255, 255, 255, 0);
  animation: loader 1s infinite;
}

.desktop {
  display: none !important;
}

.mobile {
  display: flex !important;
}

@media (min-width: 769px) {
  .mobile {
    display: none !important;
  }
  .desktop {
    display: flex !important;
  }
}
.container {
  width: 100%;
}

@media (min-width: 1367px) {
  .container {
    padding: 0 120px;
  }
}
main {
  padding: 0 16px;
}
main .currency .selector li {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}
main section {
  position: relative;
  margin-bottom: 48px;
}
main section .title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main section .title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 300;
}
main section .title p {
  font-size: 14px;
  font-weight: 500;
}
main section.contact-form {
  margin-bottom: 32px;
}

.arrows {
  display: flex;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}
@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.arrows svg {
  width: 60px;
}
.arrows svg path {
  stroke: var(--color-text-primary);
  fill: transparent;
  stroke-width: 2px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}
.arrows svg path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}
.arrows svg path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}
.arrows svg path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

/*# sourceMappingURL=styles.css.map */
