:root {
  --spacing-relative-xl: 28px;
  --spacing-relative-2xl: 36px;
}
html {
  scroll-behavior: smooth;
}
body,
html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "AudiType", Arial;
  overflow-x: hidden;
  background-color: hsla(216, 23%, 8%, 1);
  color: rgb(252, 252, 253);
}
*::after,
*::before,
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
section {
  position: relative;
}
[v-cloak] {
  display: none;
}

h1, h2, h3 {
  letter-spacing: 0px;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  font-stretch: 130%;
}

p {
  margin: 15px 0px;
  color: rgba(252, 252, 253, 0.7);
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-stretch: 105%;
}

.bg-dark {
  background-color: rgb(2, 2, 3);
}

.container {
  padding-inline: 16px;
}
.container--big {
  margin-inline: 0px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 20px;
}
.logo__image {
  max-width: 100px;
}
.logo__dealer {
  font-size: 16px;
  font-weight: 300;
}
.logo__dealer strong {
  font-weight: bold;
}

.header {
  padding-block: var(--spacing-relative-xl);
}
.header h1 {
  margin-block: 24px var(--spacing-relative-xl);
}

.offer {
  padding-block: var(--spacing-relative-xl);
  margin-block-end: 72px;
}
.offer h2 {
  margin-block-end: var(--spacing-relative-2xl);
}
.offer__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.offer__flex-elem {
  max-width: 100%;
  width: 100%;
  background-color: rgba(252, 252, 253, 0.15);
  padding: 24px 28px;
}
.offer__flex-elem:first-of-type {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.offer__flex-elem:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.offer__flex-elem h4 {
  margin-block-end: 16px;
  color: rgb(252, 252, 253);
  letter-spacing: 0px;
  font-weight: 500;
  text-decoration: none;
  font-size: 20px;
  line-height: 32px;
  font-stretch: 130%;
}
.offer__flex-elem p {
  margin: 0px;
  margin-block-end: 16px;
}

.bundle {
  padding-block: var(--spacing-relative-xl);
}
.bundle h2 {
  margin-block-end: var(--spacing-relative-xl);
}
.bundle__list {
  border-width: 0px 0px 1px;
  border-style: solid;
  border-color: rgba(252, 252, 253, 0.2);
}
.bundle__list-header {
  margin: 0px;
  border-width: 1px 0px 0px;
  border-style: solid;
  border-color: rgba(252, 252, 253, 0.2);
  background-color: rgba(154, 163, 177, 0);
  padding: 16px;
  display: flex;
  flex: 1 1 auto;
  -webkit-box-align: center;
  align-items: center;
  text-align: start;
  -webkit-box-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  letter-spacing: 0px;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-stretch: 105%;
  color: rgb(252, 252, 253);
  column-gap: 8px;
  transition-property: color, background-color;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
.bundle__list-header:hover {
  background-color: rgb(44, 52, 63);
  color: rgba(252, 252, 253, 0.7);
}
.bundle__list-header .arrow {
  display: flex;
  transition: all 0.4s ease-in-out;
  transform: rotate(0deg);
}
.bundle__list-header .rotate {
  transform: rotate(180deg);
}
.bundle__list-content {
  overflow: hidden;
  transition-timing-function: ease-in;
  transition-duration: 320ms;
  transition-property: all;
  opacity: 0;
  padding: 0px 16px;
  visibility: hidden;
  max-height: 0px;
}
.bundle__list-content.active {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  max-height: 900px;
}
.bundle__list-content ul{
  position: relative;
  margin-block: 16px;
  list-style-type: none;
  padding: 16px 0px 16px calc(32px);
  letter-spacing: 0px;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-stretch: 105%;
  color: rgba(252, 252, 253, 0.7);
}
.bundle__list-content ul li {
  position: relative;
  line-height: 1.5;
}
.bundle__list-content ul li:not(:last-child) {
  margin-bottom: 16px;
}
.bundle__list-content ul li::before{
  content: url('../img/arrow-down-s.svg');
  position: absolute;
  left: -25px;
  filter: invert(1);
  transform: rotate(-90deg);
  top: -3px;
}

.photoText {
  padding-block: var(--spacing-relative-2xl) var(--spacing-relative-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.photoText:nth-of-type(even) {
  flex-wrap: wrap-reverse;
}
.photoText__image {
  max-width: 100%;
  width: 100%;
}
.photoText__image img {
  border-radius: 20px;
}
.photoText__content {
  padding-inline: var(--spacing-relative-2xl);
  max-width: 100%;
  width: 100%;
}

.button {
  border: 0px;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  transition-duration: 250ms;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 0px;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-stretch: 105%;
  padding: 12px 24px;
  min-height: 48px;
  background-color: rgb(24, 29, 37);
  color: rgb(252, 252, 253);
  box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  transition-property: color, box-shadow, background-color;
  margin-block-start: 15px;
}
.button.gray {
  background: rgb(101, 112, 129);
  color: rgb(252, 252, 253);
  box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
}
.button:hover {
  background-color: rgb(44, 52, 63);
  color: rgb(252, 252, 253);
  box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
}

.footer {
  text-align: center;
  padding-block: 20px;
}
.footer p {
  color: #ffffff;
}

@media(min-width: 375px) {
  .container {
    padding-inline: 28px;
  }
  h1, h2, h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media(min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}
@media(min-width: 1024px) {
  :root {
    --spacing-relative-2xl: 40px;
  }
  h1, h2, h3 {
    font-size: 28px;
    line-height: 40px;
  }
  .container {
    padding-inline: 60px;
  }
  .offer__flex-elem {
    max-width: calc((100% / 3) - 1px);
  }
  .offer__flex-elem:first-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
  }
  .offer__flex-elem:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    border-top-left-radius: 0px;
  }
  .photoText {
    flex-wrap: nowrap;
    gap: 0px;
  }
  .photoText__image {
    max-width: 50%;
  }
  .photoText__content {
    max-width: 50%;
  }
}
@media(min-width: 1440px) {
  :root {
    --spacing-relative-xl: 32px;
    --spacing-relative-2xl: 56px;
  }
  h1, h2, h3 {
    font-size: 32px;
    line-height: 44px;
  }
  .container {
    padding-inline: 96px;
  }
  .offer__flex-elem h4 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media(min-width: 1920px) {
  :root {
    --spacing-relative-xl: 40px;
    --spacing-relative-2xl: 72px;
  }
  .container {
    padding-inline: 96px;
  }
  .container--big {
    max-width: 1440px;
    margin-inline: auto;
  }
  h1, h2, h3 {
    font-size: 36px;
    line-height: 52px;
  }
}