/* HEADER */
header {
  z-index: 99;
  background: var(--background);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  font-size: 1.25rem;
  border-bottom: 1px solid rgb(204, 204, 204);
}
header .title {
  font-family: "Protest Strike", sans-serif;
  color: var(--title);
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}
header #call-btn-nbr {
  font-weight: bold;
}

/* MAIN */
main {
  color: var(--text);
  background: var(--primary);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 3rem 0;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 5rem;
}
section .section-title {
  font-weight: bold;
  font-size: 2.5rem;
}

.info-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10%;
}
.info-list .info-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 1.2rem;
}
.info-list .info-list-item img {
  height: 1.2rem;
}
.info-list .info-list-item span {
  text-align: left;
}

/* HERO */
.hero {
  gap: 1.5rem;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: bolder;
  line-height: 1.25;
}
.hero p {
  font-size: 1.2rem;
  padding: 0 10%;
}
.hero .preview-wrapper {
  z-index: -1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 2rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 25rem;
}
.hero .preview-wrapper .preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: -1;
  width: 100%;
  background: var(--background);
  border-radius: 0.5rem;
  filter: drop-shadow(0 0 1rem #c4c4c4);
  padding: 1rem;
}
.hero .preview-wrapper .preview-container .pres-preview {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.hero .preview-wrapper .preview-container .pres-preview .pres-preview-pp {
  height: 5rem;
  width: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 1rem -0.5rem #000;
  border-radius: 0.25rem;
}
.hero .preview-wrapper .preview-container .pres-preview .pres-preview-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: bold;
}
.hero .preview-wrapper .preview-container .pres-preview .pres-preview-info .pres-preview-title {
  font-size: 1.1rem;
}
.hero .preview-wrapper .pres-preview-drop-down-content {
  display: block;
  flex: 1;
  text-align: center;
  line-height: 1.25;
}
.hero .preview-wrapper .pres-preview-drop-down-content.drop-down-visible {
  display: block;
}
.hero .preview-wrapper .pres-preview-drop-down-content.drop-down-hidden {
  display: none;
}

/* VEHICLES */
.vehicles {
  background: var(--secondary);
  color: var(--primary);
  padding: 4rem 2rem;
  gap: 3rem;
}
.vehicles .vehicles-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 460px) {
  .vehicles .vehicles-section-wrapper {
    max-width: 600px;
  }
}
.vehicles .vehicles-section-wrapper .carousel-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  color: var(--primary);
  text-align: left;
}
@media screen and (min-width: 460px) {
  .vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info {
    font-size: 1.25rem;
  }
  .vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-title {
    font-size: 2.5rem;
  }
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-name {
  font-size: 1.75rem;
  font-weight: bold;
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-name img {
  height: 1.5rem;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-description {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-description.text {
  font-weight: bold;
  font-style: italic;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-description img {
  height: 1.2rem;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .vehicle-info .vehicle-description img.arrow-down-right-icon {
  transform: rotate(270deg);
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel {
  position: relative;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .carousel-item {
  padding: 1rem;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/3;
  border-radius: 1rem;
  box-shadow: 0 0 1rem #000;
}
@media screen and (min-width: 460px) {
  .vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .carousel-item img {
    aspect-ratio: 4/3;
  }
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  width: 100%;
  bottom: 1.5rem;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 7px;
  border-radius: 1rem;
  background: #000;
  opacity: 40%;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-dots .owl-dot.active {
  opacity: 90%;
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  font-size: 2rem;
  font-weight: bold;
  pointer-events: none;
  color: var(--main);
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav .owl-next, .vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav .owl-prev {
  pointer-events: auto; /* Allow to click on buttons */
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav .owl-next.owl-prev, .vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav .owl-prev.owl-prev {
  transform: rotate(180deg);
}
.vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav .owl-next img, .vehicles .vehicles-section-wrapper .carousel-wrapper .owl-carousel .owl-nav .owl-prev img {
  width: 2rem;
}

/* CONTACTS */
.contacts {
  background: var(--primary);
  padding: 0 3rem 4rem 3rem;
  gap: 3rem;
}
.contacts .contacts-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}
.contacts .contacts-list .contact-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8%;
  padding: 2rem;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  background: rgb(230, 230, 230);
  box-shadow: 0 0 2rem -1.5rem #000;
  color: var(--secondary);
}
.contacts .contacts-list .contact-list-item .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c2dfd2;
  height: 4rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.contacts .contacts-list .contact-list-item .contact-icon img {
  position: relative;
  height: 50%;
}
.contacts .contacts-list .contact-list-item .contact-type {
  font-size: 1.75rem;
  font-weight: bold;
}
.contacts .contacts-list .contact-list-item .contact-btn {
  padding: 5% 0;
}

/* FOOTER */
footer {
  background: var(--secondary);
  color: var(--primary);
  width: 100%;
  position: relative;
  padding: 3rem 0.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
footer a {
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  cursor: pointer;
  border-radius: 0;
}

/*Main button*/
.main-btn {
  display: block;
  padding: 0.5em;
  border-radius: 0.25em;
  background: var(--secondary);
  color: var(--primary);
}

/*Call button*/
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.75em;
  padding: 1em;
  border-radius: 0.25em;
  background: var(--secondary);
  color: var(--primary);
}
.call-btn img {
  height: 1em;
}
.call-btn span {
  width: -moz-max-content;
  width: max-content;
}

/*Contact btn*/
.contact-btn {
  background: var(--main);
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: all 400ms;
}
.contact-btn:hover {
  opacity: 0.8;
}

/*Scroll down btn*/
.toggle-drop-down-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
}
.toggle-drop-down-btn:hover img, .toggle-drop-down-btn:active img {
  transform: translateY(2px);
}
.toggle-drop-down-btn.drop-down-active img {
  transform: rotate(180deg) translateY(-2px);
}
.toggle-drop-down-btn.drop-down-active:hover img {
  transform: rotate(180deg) translateY(0);
}
.toggle-drop-down-btn img {
  transition: all 0.2s ease-in-out;
  height: 1.5rem;
}

/* ===== MISC ===== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100vw;
  background: var(--background);
  font-family: Satoshi;
  text-align: center;
  line-height: 1;
}

.hidden {
  opacity: 0;
  transition: all 1s;
  transform: translateX(-2rem);
  filter: blur(0.2rem);
}

.show {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}
.divider {
  background: var(--title);
  opacity: 0.25;
  height: 0.1rem;
  width: 100%;
}/*# sourceMappingURL=index.css.map */