
.model-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.model-title h1 {
  margin-top: 40px;
  font-size: 4rem;
  margin-top: 70px;
  color: #373737;
}

.slider {
  width: 1300px;
  max-width: 100vw;
  height: 700px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.35);
  transition: 0.2s ease-in-out;
}

.slider .typewriter {
  position: absolute;
  z-index: 10;
}

.slider .typewriter p {
  padding: 1em 6em;
}

.slider .typewriter span {
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
}

.slider .typewriter span::after {
  content: "";
  display: inline-block;
  animation: blink 1s linear infinite;
  width: 16px;
  height: 22px;
  background-image: url("../img/pictos/square.svg");
  background-repeat: no-repeat;
  vertical-align: top;
}

.slider .list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
}

.slider .list img {
  width: 1300px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
}

.slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
}

.slider .dots {
  position: absolute;
  bottom: 10px;
  color: #fff;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.slider .dots li {
  list-style: none;
  margin: 20px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 20px;
  transition: .2s;
}

.slider .dots li.active {
  width: 30px;
}

.detail-table {
  display: grid;
  grid-template-columns: 70% 30%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 1300px;
  max-width: 100vw;
  gap: 20px;
  color: #373737;
}

.detail-table .detail-specs,
.detail-table .detail-features {
  background: #f6f8fa;
  border-radius: 15px;
  height: 100%;
  padding: 20px 0;
}

.detail-table .detail-specs ul,
.detail-table .detail-features ul {
  margin: 0;
  padding: 0 20px;
}

.detail-table .detail-specs li,
.detail-table .detail-features li {
  font-size: 0.875rem;
  list-style: none;
  border-bottom: 1px solid #dedede;
  padding: .5em 2em;
}

.detail-table .detail-specs li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.detail-table .detail-features li {
  list-style-type: none;
  background-image: url('../img/pictos/check.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15px;
}

.detail-specs .detail-label {
  font-weight: bold;
}

.detail-specs {
  color: #373737;
}

.detail-features {
  display: flex;
  flex-direction: column;
  width: 100%;
}
