.content-image {
	display: flex;
  margin: 30px 0;
}
@media (max-width: 575.98px) {
  .content-image {
    display: block;
  }
}
.content-image__image, .content-image__text {
	width: 50%;
}
@media (max-width: 575.98px) {
  .content-image__image, .content-image__text {
    width: 100%;
  }
}
.content-image__image {
	cursor: pointer;
}
.content-image__image img {
  max-height: 325px;
}

.content-image__text {
	margin-left: 30px;
}
@media (max-width: 575.98px) {
  .content-image__text {
    margin-top: 30px;
    margin-left: 0;
  }
}

.modelpagina-intro {
	margin: 30px 0;
}
#collection {
  box-shadow: unset;
}

.custom-steps {
  margin-top: 30px;
}
.custom-steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
}
.custom-steps__text {
  flex: 0 0 70%;
}
@media (max-width: 991.98px) {
  .custom-steps-wrapper {
  	flex-direction: column;
    align-items: start;
  }
  .custom-steps__text {
  	flex: 0 0 100%;
  }
}
.custom-steps-wrapper .btn-bsp {
    background: #7B898B;
    color: #fff;
    box-shadow: -1px 4px 4px rgb(0 0 0 / 8%);
    height: var(--btnHeight);
    width: fit-content;
    margin-right: 15px;
  	display: inline-flex;
}
@media (max-width: 991.98px) {
  .custom-steps-wrapper .btn-bsp {
  	margin-top: 15px;
  }
}

.custom-steps-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-top: 30px;
}
.custom-steps-item .custom-steps-item__image {
  position: relative;
  height: 175px;
  width: 100%;
}
.custom-steps-item .custom-steps-item__image img {
	  height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
  	cursor: pointer;
}
.custom-steps-item .custom-steps-item__body {
	background-color: rgb(29 29 27 / 10%);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.custom-steps-item .custom-steps__title {
	font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.specs-wrapper {
  display: flex;
  gap: 30px;
}
.custom-steps .owl-nav .owl-prev, .custom-steps .owl-nav .owl-next {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background-color: black !important;
}
.custom-steps .owl-nav .owl-prev, .custom-steps .owl-nav .owl-next i:before, .custom-steps .owl-nav > button > i::before {
  color: white !important;
}
.custom-steps .owl-nav .owl-prev {
  left: -15px;
}
.custom-steps .owl-nav .owl-next {
	right: -15px;
}
.custom-steps .owl-dots {
	display: none;
}
@media (max-width: 991.98px) {
  .specs-wrapper {
   	flex-direction: column;
  }
}
.specs-wrapper .specs-column {
	width: 100%;
}
.specs-wrapper .specs-column table {
	width: 100%;
  border-spacing: 0;
}
.specs-wrapper .specs-column table tr {
	background-color: rgb(29 29 27 / 10%);
}
.specs-wrapper .specs-column table tr:nth-child(odd)  {
	background-color: var(--bodyBG);
}
.specs-wrapper .specs-column table th {
	text-align: start;
}
.specs-wrapper .specs-column table th, .specs-wrapper .specs-column table td {
	padding: 8px 15px;
}

.faq {
	margin-top: 30px;
}
.faq .faq-container {
 	width: calc(100% - 400px);
  margin: 0 auto;
}
@media (max-width: 1198.98px) {
  .faq .faq-container {
    width: calc(100% - 200px);
  }
}
@media (max-width: 991.98px) {
  .faq .faq-container {
    width: 100%;
  }
}

.faq .faq-item {
  border: 1px solid rgb(29 29 27 / 10%);
  width: 100%;
  padding: 10px 15px;
  margin-top: 0;
  margin-bottom: 10px;
}
.faq .faq-item__header{
  font-size: 16px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 15px;
}
.faq .faq-item__header .icon-arrow-down:before {
    color: #7B898B;
}
.faq .faq-item__header .icon-arrow-down {
    transition: transform .3s ease;
  	will-change: transform;
    font-size: 12px;
}
.faq .faq-item__header.is-active .icon-arrow-down {
	transform: rotate(180deg) !important;
}

.faq .faq-item__content {
	font-size: 1rem;
  display: none;
  padding: 20px 0 10px 0;
}
.faq .faq-item__content p {
	margin: 0;
}
#modelpage-outro {
	margin-bottom: 30px;
}