@font-face {
  font-family: Pirulen;
  src: url("../fonts/pirulen.woff2");
}

* {
  font-family: "Calibri", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Pirulen", sans-serif;
}

body:has(.dropdown-menu.dropdown-menu-large.show) {
  overflow: hidden;
}

.omoda-text span {
  font-family: "Pirulen", sans-serif;
}

nav .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  color: black;
}

nav .dropdown-menu[data-bs-popper].dropdown-menu-large {
  width: 100dvw;
  border: none;
  border-radius: 0;
  left: 0;
  position: fixed;
  top: 54px;
  display: flex;
  padding: 0;
  border-top: 0.5px solid rgba(125, 125, 125);
}

nav .dropdown-menu[data-bs-popper].dropdown-menu-large::before {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
}

nav .dropdown-menu[data-bs-popper].dropdown-menu-large li {
  width: 100%;
  background-color: white;
}

nav .dropdown-menu[data-bs-popper].dropdown-menu-large li:first-child {
  border-right: 0.5px solid rgba(125, 125, 125, 0.5);
}

nav .models {
  display: flex;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
  padding-top: 32px;
  max-width: 1000px;
}

nav .model {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 200px;
}

nav .models img {
  max-width: 200px;
  width: 100%;
}

nav .models .model p {
  font-family: "Pirulen", sans-serif;
  font-size: 16px;
  margin: 0;
}

nav .brand-logo {
  max-width: 110px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
    margin: 0;
    border: none;
  }

  nav .dropdown-menu[data-bs-popper].dropdown-menu-large {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: calc(100dvh - 54px);
  }

  nav .model {
    width: 100%;
  }
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  top: 45px;
  border-top: none;
  border-radius: 0;
}

.sidebar-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.sidebar-btn {
  margin-left: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #292929;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: width 0.35s ease;
}

.sidebar-btn.active {
  background-color: white;
  border: 0.5px solid #292929;
  color: #292929;
}

.sidebar-btn i,
.sidebar-btn svg {
  min-width: 56px;
  text-align: center;
  font-size: 22px;
}

.sidebar-btn .text {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

@media (min-width: 768px) {
  .sidebar-btn:hover {
    filter: brightness(1.3);
    width: 190px;
    color: white;
    text-decoration: none;
  }

  .sidebar-btn:hover .text {
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
  }

  .sidebar-btn.active:hover {
    color: #292929;
  }
}
@media (max-width: 768px) {
  .sidebar-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: row;
  }

  .sidebar-btn {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    flex: 1;
  }

  .sidebar-btn::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.2);
  }

  .sidebar-btn:last-child::after {
    display: none;
  }

  .sidebar-btn span {
    opacity: 1;
    transform: none;
    font-size: 11px;
  }

  .sidebar-btn svg {
    min-width: auto;
  }

  .sidebar-btn .text {
    opacity: 1;
    transform: translateX(0);
    line-height: 1;
    white-space: wrap;
  }
}

#main-slider,
#main-slider .carousel-inner,
#main-slider .carousel-item {
  height: 60dvh;
}

#main-slider .carousel-item img,
#main-slider .carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main-slider .carousel-indicators [data-bs-target] {
  width: 50%;
}

#main-slider .dark::after {
  content: "";
  position: absolute;
  inset: 0px;
  pointer-events: none;
  background: linear-gradient(rgba(0, 0, 0, 0.38) 15%, rgba(0, 0, 0, 0) 100%);
}

#main-slider .floating-buttons {
  position: absolute;
  display: flex;
  gap: 8px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}

#main-slider .floating-text {
  top: 0;
  left: 0;
  z-index: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#main-slider .floating-text .container {
  padding-top: 100px;
}

#main-slider .floating-text h1 {
  color: white;
  font-family: "Pirulen", sans-serif;
}

#main-slider video {
  margin-bottom: -6px;
}

#main-slider .carousel-control-next,
#main-slider .carousel-control-prev {
  z-index: 3;
}

.btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 12px 24px;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: 0px;
  transition: 300ms ease-out;
  display: flex;
  justify-content: center;
}

.btn-transparent {
  border: 1px solid rgb(255, 255, 255);
  background-color: transparent;
  color: rgb(255, 255, 255);
}

.btn-transparent:hover {
  background-color: white;
  color: black;
}

.btn-dark {
  border: 1px solid rgb(48, 54, 58);
  color: rgb(48, 54, 58);
  background-color: transparent;
}

.btn-dark:hover {
  background-color: rgb(48, 54, 58);
  color: white;
}

.btn-light {
  background-color: rgb(255, 255, 255);
  color: rgb(48, 54, 58);
}

.btn-light:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(48, 54, 58);
}

.btn-full {
  background-color: #292929;
  color: white;
}

.btn-full:hover {
  border: 1px solid #292929;
}

.large-card h2,
.large-card p span {
  font-family: "Pirulen", sans-serif;
}

.models-selector h2,
.models-selector h3 {
  font-family: "Pirulen", sans-serif;
  font-weight: 900;
  text-align: center;
}

.models-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.models-tabs .nav-item .nav-link {
  color: black;
  border: 1px solid black;
  border-radius: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 25px;
}

.models-tabs .nav-item .nav-link:hover {
  color: white;
  background-color: #292929;
}

.models-tabs .nav-item .nav-link.active {
  color: white;
  background-color: #292929;
}

.models-tab-content .models {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.models-tab-content .models .model-card {
  width: calc(33% - 16px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.models-tab-content .models .model-card a {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .models-tab-content .models .model-card {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 768px) {
  .models-tab-content .models .model-card {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .models-tabs li {
    width: calc(50% - 16px);
  }

  .models-tabs li button {
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .models-tabs .nav-item .nav-link {
    padding: 5px 10px;
  }

  .models-tabs li {
    width: 100%;
  }
}

.video-banner {
  position: relative;
  height: 100%;
  max-height: 500px;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  margin-bottom: -6px;
  object-fit: cover;
}

.video-banner .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-align: center;
}

.video-banner .content h2 {
  font-family: "Pirulen", sans-serif;
  color: white;
}

.video-banner .content .title-wrapper {
  display: flex;
  align-items: center;
  width: 80%;
}

.video-banner .content .title-wrapper::before {
  content: "";
  display: block;
  flex: 1 1 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  margin-right: 20px;
}

.video-banner .content .title-wrapper::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  margin-left: 20px;
}

.video-banner p {
  color: white;
}

@media screen and (max-width: 768px) {
  .video-banner a {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 1024px) {
  .video-banner .content .title-wrapper {
    width: 100%;
    padding: 0 10px;
  }

  .video-banner {
    height: 500px;
  }
}

.page-banner {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner h1 {
  font-family: "Pirulen", sans-serif;
  text-align: center;
}

.key-points ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.key-points ul li {
  width: calc(50% - 12px);
}

.key-points span {
  font-family: "Pirulen", sans-serif;
}

.faq h3 {
  font-family: "Calibri", Arial, Helvetica, sans-serif;
}

.faq .accordion-button:not(.collapsed) {
  background-color: white;
}

.faq .accordion-button {
  box-shadow: none;
  color: black;
}

.faq .accordion-button:focus {
  outline: none;
  border-color: #dee2e6;
}

.model-banner {
  height: 60dvh;
  position: relative;
}

.model-banner .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  z-index: 2;
}

.model-banner .content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, black 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.model-banner .content h1,
.model-banner .content h3 {
  color: white;
}

.model-section h2 {
  width: 100%;
  border-bottom: 0.5px solid black;
  padding-bottom: 8px;
  margin-bottom: 32px;
}

.model-section .technical-data {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  height: calc(100% - 64px);
}

.model-section .technical-data .data {
  background-color: #292929;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% - 8px);
}

.model-section .technical-data .data p {
  color: white;
}

.model-section .technical-data .data p:first-child {
  font-size: 32px;
  font-family: "Pirulen", sans-serif;
}

.model-section .technical-data .data p:last-child {
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .model-section .technical-data .data p:first-child {
    font-size: 24px;
    font-family: "Pirulen", sans-serif;
  }
}

@media screen and (max-width: 576px) {
  .model-section .technical-data .data {
    width: 100%;
    padding: 16px;
  }

  .model-section .technical-data .data p {
    margin: 0;
  }
}

.model-section ul {
  font-size: 20px;
  height: calc(100% - 64px);
}

footer {
  background-color: rgb(48, 54, 58);
  color: white;
  text-decoration: none;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  footer .container {
    padding-bottom: 50px !important;
  }
}
