/* DARIUS CSS */

/* normalize */
header {
  padding: 0 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
header .container {
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  height: 110px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
header .logo img {
  max-width: 350px;
  max-height: 80px;
  height: 100%;
  width: 100%;
}
header .container .action {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: end;
  width: 100%;
}
header .container .links {
  display: flex;
  align-items: center;
  gap: 30px;
  /* width: 100%; */
}
header .container .buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 480px;
  width: 100%;
}
header .container .buttons .header-button {
  max-width: 230px;
  width: 100%;
}

.button {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 10px;
}
.button.white {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}
.button.black {
  background-color: var(--black);
  color: #fff;
}

body {
  font-family: "Montserrat";
}
.button {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 10px;
}
.button.white {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}
.button.black {
  background-color: var(--black);
  color: #fff;
}
.button.transparent {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
a {
  text-decoration: none;
  color: inherit;
}

.hero-container {
  width: 100%;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
.hero-container .hero-content {
  z-index: 1;
  position: relative;
  max-width: 705px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
.hero-container .hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-container .overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.hero-container .hero-content .title {
  font-size: 40px;
  text-align: center;
  color: #fff;
}
.hero-container .hero-content .button {
  max-width: 300px;
  width: 100%;
}
.hero-container .hero-content .button-double {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.hero-container .hero-content .button-double .button:first-child a {
  font-size: 20px;
}
.from-marketplace {
  padding: 0 20px;
}
.from-marketplace .container {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 70px;
}
.from-marketplace .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: var(--black);
  margin-bottom: 70px;
}
.from-marketplace .marketplace-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.from-marketplace .marketplace-box .marketplace-item {
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-width: 395px;
  width: 100%;
}
.from-marketplace .marketplace-box .marketplace-item .image {
  position: relative;
}
/* .from-marketplace .marketplace-box .marketplace-item .image i {
  color: #fff;
} */
/* .from-marketplace .marketplace-box .marketplace-item.saved .image i {
  color: var(--black);
} */
.from-marketplace .marketplace-box .marketplace-item .image i {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
}
.from-marketplace .marketplace-box .marketplace-item .image img {
  width: 395px;
  height: 320px;

  object-fit: cover;
}
.from-marketplace .marketplace-box .marketplace-item .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.from-marketplace .marketplace-box .marketplace-item .content .model {
  margin-bottom: 10px;
  font-size: 20px;
}
.from-marketplace .marketplace-box .marketplace-item .content .type {
  margin-bottom: 20px;
  font-size: 20px;
}
.from-marketplace .marketplace-box .marketplace-item .content .tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.from-marketplace .marketplace-box .marketplace-item .content .tags .tag {
  padding: 5px;
  border-radius: 5px;
  background-color: var(--background);
}
.from-marketplace .marketplace-box .marketplace-item .content .price {
  font-weight: bold;
  font-size: 20px;
}

.how-it-works {
  background-color: var(--background);
  padding: 70px 20px;
}
.how-it-works .container {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;

  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.how-it-works .container .image img {
  max-width: 810px;
  width: 100%;
}
.how-it-works .container .content {
  max-width: 810px;
}
.how-it-works .container .content .title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 70px;
  text-align: center;
}
.how-it-works .container .content .description {
  text-align: center;
}

.from-community {
  margin-top: 70px;
  padding: 0 20px;
}
.from-community .container {
  max-width: 951px;
  margin: 0 auto;
  width: 100%;
}
.from-community .container .title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 90px;
}
.community-item.of-the-day::after {
  content: "Video des Tages";
  background-color: var(--black);
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  right: 0;
  top: 0;
  padding: 20px;
  border-bottom-left-radius: 30px;
}
.community-item {
  overflow: hidden;
  position: relative;
  margin-bottom: 70px;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-sizing: border-box;
  padding: 30px;
}
.community-item .user-profile {
  display: flex;
  align-items: start;
  gap: 20px;
}
.community-item .user-profile .image img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.community-item .user-profile .user-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.community-item .user-profile .user-content .name {
  font-size: 20px;
  font-weight: bold;
}
.community-item .user-profile .user-content .if-tags {
  font-size: 20px;
}

.community-item .post .description {
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.community-item .post .media video {
  max-width: 891px;
  width: 100%;
  border-radius: 30px;
}
.community-item .post .media {
  margin-bottom: 20px;
}
.community-item .post .likes {
  display: flex;
  align-items: center;
  gap: 20px;
}
.community-item .post .likes .like img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.community-item .post .action-like {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.community-item .post .comments .comment {
  box-sizing: border-box;
  padding: 30px;
  border-radius: 30px;
  background-color: var(--background);
  display: flex;
  align-items: start;
  gap: 30px;
  margin-left: 50px;
}
.community-item .post .comments .comment .profile-img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.community-item .post .comments .comment .content .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.community-item .post .comments .comment .content .text {
  font-size: 20px;
}
.burger-menu {
  display: none;
}
.advantages {
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--background);
  padding-top: 75px;
  padding-bottom: 70px;
}
.advantages .container {
  max-width: 1625px;
  width: 100%;
  margin: 0 auto;
}
.advantages .container .title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 75px;
}
.advantage-item {
  text-align: center;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.advantages .advantages-items {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}
.advantage-item .name {
  font-weight: bold;
}
.advantage-item .image {
  width: 100px;
  height: 100px;
  background-color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-item .image img {
  width: 50px;
  height: 50px;
}
.register-for-free {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.register-for-free .content {
  max-width: 810px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 70px;
}
.register-for-free .content .button-register {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.register-for-free .register-for-free-image img {
  max-width: 960px;
  width: 100%;
}

/* HEADER */

/* NAVBAR */
.nav-bar .container {
  max-width: 1642px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  gap: 6px;
}
.nav-bar {
  padding: 10px 20px;
  background-color: #eeeff2;
}
.nav-bar .container .nav-button {
  width: 100%;
}
.nav-bar .container .nav-button .button {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.nav-bar .container .nav-button.selected .button {
  background-color: var(--black);
  color: #fff;
}
/* NAVBAR */

/* FOOTER */

.col {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
}
footer {
  background-color: var(--black);
  padding: 0 20px;
}
footer .container {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 0px;
}
footer .container .row {
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
  color: #fff;
}
footer .container .row .col .title {
  margin-bottom: 15px;
  font-size: 17px;
  text-transform: uppercase;
}
footer .container .row .col .footer-link {
  margin-bottom: 10px;
}
footer .container .row .col .social {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .container .copyright {
  padding-top: 30px;
  border-top: 2px solid #fff;
  margin-top: 70px;
  color: #fff;
}
/* FOOTER */

/* UBERUNS */
.hero img {
  width: 100%;
}
.hero {
  position: relative;
}

.image-container {
  width: 100%;
}

.overlay-container {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0%);
  max-width: 710px;
  width: 100%;
}
.title-hero-section {
  color: #fff;
  font-size: 40px;
  font-family: "Montserrat";
  text-align: center;
  margin-bottom: 70px;
}
.community-button a {
  display: flex;
  color: #fff;
  width: 100%;
  height: 50px;
  font-size: 16px;
  border-radius: 25px;
  max-width: 300px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
}

.community-button {
  text-align: center;
  padding-bottom: 75px;
}

.double-buttons {
  display: flex;
  justify-content: center;
}

.double-buttons {
  gap: 50px;
}
.double-buttons a {
  display: flex;
  color: #fff;
  background-color: #242424;

  width: 100%;
  height: 50px;
  font-size: 16px;
  border-radius: 25px;
  max-width: 300px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.double-buttons a:last-child {
  display: flex;
  color: #242424;
  background-color: #fff;
  width: 100%;
  height: 50px;
  font-size: 16px;
  border-radius: 25px;
  max-width: 300px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.content {
  width: 100%;
}

.content-begin {
  text-align: center;
  font-size: 30px;
  font-family: "Montserrat-Bold";
  margin-bottom: 70px;
  box-sizing: border-box;
  padding: 0 30px;
}

.paragraph-section {
  font-size: 16px;
  font-family: "Montserrat";
  width: 100%;
  max-width: 1086px;
  margin: 0 auto;
}

.image-section img {
  max-width: 860px;
  width: 100%;
}

.video-section {
  width: 100%;
  background-color: #eeeff2;
}

.title.video-section {
  font-size: 30px;
  text-align: center;
  font-family: "Montserrat-Bold";
  padding-top: 70px;
  margin-bottom: 70px;
}

.video {
  max-width: 891px;
  height: 550px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 70px;
}

.video video {
  width: 100%;
  border-radius: 30px;
}

.register-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-section {
  margin-left: 100px;
}

.text-section .title {
  font-size: 30px;
  font-family: "Montserrat-Bold";
  text-align: center;
}

.text-section .information {
  font-family: "Montserrat";
  font-size: 16px;
  text-align: center;
}

.register-button a {
  display: flex;
  color: #fff;
  background-color: #242424;
  border: 1px solid #242424;
  width: 100%;
  height: 50px;
  font-size: 16px;
  border-radius: 25px;
  max-width: 300px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.register-button {
  max-width: 300px;
  width: 100%;
}
.text-content {
  width: 100%;
  max-width: 810px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
}
.our-team-section {
  background-color: #eeeff2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-team-section .title {
  font-size: 30px;
  text-align: center;
  font-family: "Montserrat-Bold";
  padding-top: 70px;
}
.members {
  width: 100%;
  max-width: 1196px;
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 75px;
}

.member {
  max-width: 450px;
  width: 100%;
}

.name {
  font-size: 16px;
  font-family: "Montserrat-Bold";
  padding-bottom: 30px;
}

.description {
  font-size: 16px;
  font-family: "Montserrat";
  text-align: center;
}

.photo {
  padding-bottom: 30px;
}

.photo img {
  max-height: 390px;
  width: 100%;
  max-width: 450px;
}
/* UBERUNS */

/* KONTAKT */
.content.contact-page {
  max-width: 510px;
  margin: 0 auto;
  text-align: center;
  padding: 0 30px;
}

.title-kontakt {
  font-size: 30px;
  font-family: "Montserrat-Bold";
  color: #242424;
  margin-top: 83px;
  margin-bottom: 54px;
}
.text {
  font-size: 16px;
  color: #393939;
  font-family: "Montserrat";
  margin-bottom: 31px;
}

.email-button button {
  width: 259px;
  height: 51px;
  border-radius: 30px;
  background-color: #242424;
  background-size: cover;
  font-family: "Montserrat";
  font-size: 16px;
  color: #ffffff;
  text-decoration: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 37px;
}
/* KONTAKT */

/* IMPRESSUM */
.impressum-container {
  font-size: 16px;
  padding: 0 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: "Montserrat-Light";
  font-weight: 300;
}

.impr-content {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5rem;
}

.impr-content h2 {
  font-size: 30px;
  text-align: center;
  padding-top: 20px;
  font-family: "Montserrat";
}
/* IMPRESSUM */

/* FAQ */
.accordion {
  border-style: solid;
  border-color: rgb(200, 200, 200);
  border-width: 1px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  margin-left: 200px;
  max-width: 1350px;
  width: 100%;
  margin: 5px 15px;
  padding: 5px;
  border-radius: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.accordion {
  border: none;
  margin: 10px 15px;
}
.accordion .accordion-content {
  margin: 10px 0;
  border-radius: 4px;
  padding-left: 20px;
  border: 1px solid --gray-text;
  overflow: hidden;
}

.accordion-content .accordion-inside-header {
  gap: 30px;
}

.accordion-content .accordion-inside-header {
  display: flex;
  min-height: 50px;
  padding: 15px 30px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s linear;
}

.accordion-content .accordion-inside-header .accordion-title {
  font-size: 20px;
  font-family: "Montserrat";
  color: #000;
}
.accordion-content .accordion-inside-header i {
  font-size: 15px;
  color: #000;
}

.accordion-content .accordion-description {
  height: 0;
  font-size: 16px;
  color: #000;
  font-family: "Monserrat";
  padding: 0 30px;
  margin-top: 10px;
  transition: all 0.2s linear;
}

.accordion .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 98px;
}

.accordion .title {
  color: #242424;
  font-family: "Monserrat";
  font-weight: bold;
  font-size: 30px;
  margin: 58px 0;
  text-align: center;
}
/* FAQ */

/*BLOGDETAILSEITE */
.title-blog {
  font-size: 26px;
  font-family: "Montserrat-Bold";
  text-align: center;
  padding-bottom: 55px;
  margin-top: 80px;
}
.image-and-list-cars {
  display: flex;
  align-items: start;
  padding-top: 104px;
  justify-content: center;
  gap: 176px;
  padding: 0 40px;
}

.car-img img {
  width: 100%;
  max-width: 844px;

  border-radius: 30px;
  object-fit: contain;
}

.car-img-and-description {
  display: flex;
  max-width: 844px;
  flex-direction: column;
}

.car-description p {
  font-size: 16px;
  font-family: "Montserrat";
  text-align: justify;
  margin-top: 30px;
  margin-bottom: 55px;
}
.car-img {
  max-width: 844px;
}
.car-img.bmw img {
  width: 100%;

  border-radius: 30px;
  object-fit: contain;
}

.list-of-cars .title-list {
  font-size: 20px;
  font-family: "Montserrat-Bold";
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}

.list-of-cars {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 170px;
}

.mini-car-with-description {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}

.mini-img-car {
  max-width: 103px;
  width: 100%;
}

.mini-img-car img {
  width: 100%;
  max-width: 103px;
  height: 62px;
  border-radius: 30px;
}

.mini-car-description {
  font-size: 16px;
  font-family: "Montserrat";
}
/*BLOGDETAILSEITE */

/* UNDERSBLOG */
.cars-content {
  max-width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  gap: 160px;
}

.big-car-list-content {
  max-width: 899px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.big-car-list-title-blog {
  font-size: 26px;
  font-family: "Montserrat-Bold";
}

.car-row .car-img {
  max-width: 380px;
  width: 100%;
}

.car-row {
  display: flex;
  gap: 23px;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  padding-top: 20px;
}

.car-row .car-img img {
  width: 100%;
  border-radius: 30px;
  height: 232px;
  object-fit: cover;
}
.car-row-description {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 496px;
  gap: 10px;
}

.car-row-description-title {
  font-size: 20px;
  font-family: "Montserrat-Bold";
}

.car-row-description-data {
  font-size: 16px;
}
.car-row-description-text p {
  font-family: "Montserrat";
  font-size: 16px;
  text-align: justify;
}

.page-buttons {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 65px;
}

.page-buttons .page button {
  width: 100%;
  height: 22px;
  padding: 0 8px;
  border-radius: 30px;
  border: 1px solid #8c8c8c;
  color: #8c8c8c;
  background-color: #fff;
}
.page-buttons .page.selected button {
  border: 1px solid #0d0d0d;
  color: #0d0d0d;
}

.mini-lists {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
}

.category-list-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-lists-title {
  font-size: 26px;
  font-family: "Montserrat-Bold";
  border-bottom: 1px solid #666666;
}

.category-button {
  max-width: 300px;
}

.category-button button {
  width: 100%;
  height: 39px;
  border-radius: 20px;
  font-size: 16px;
  font-family: "Montserrat";
  border: 2px solid #242424;
  color: #242424;
  background-color: #fff;
}

.mini-lists-title {
  max-width: 300px;
  margin-bottom: 23px;
  padding-bottom: 5px;
}

.mini-lists .list-of-cars {
  padding-top: 25px;
}
/* UNDERSBLOG */

/* Newsfeed */
.main-list-body {
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
  gap: 30px;
}

.document-post-body {
  width: 100%;
  display: flex;
  border-radius: 30px;
  border: 1px solid #c8c8c8;
  align-items: center;
  padding: 10px 30px;
}

.profile-picture {
  border-radius: 180px;
  display: flex;
  align-items: center;
}

.profile-picture img {
  width: 100%;
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.whats-new-text-section {
  max-width: 100%;
  width: 100%;
  font-size: 20px;
  font-family: "Montserrat";
  color: #333;
}

.whats-new-text-section input {
  width: 100%;
  box-sizing: border-box;
  border: none;
}

.upload-image {
  max-width: 34px;
  width: 100%;
  position: relative;
}

.upload-image input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.picture-and-text {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 100%;
  width: 100%;
}

.img-and-button {
  max-width: 300px;
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
}

.button-upload {
  max-width: 220px;
  width: 100%;
}

.document-post-body-with-video {
  display: flex;
  max-width: 1060px;
  width: 100%;
  flex-direction: column;
  border-radius: 30px;
  border: 1px solid #c8c8c8;
  padding: 30px;
  overflow: hidden;
}
.document-post-body-with-video.tag::after {
  content: "Video des Tages";
  font-size: 20px;
  font-family: "Montserrat-Bold";
  padding: 20px;
  border-bottom-left-radius: 30px;
  background-color: var(--black);
  top: 0;
  right: 0;
  position: absolute;
  color: #fff;
}
.document-post-body-with-video.tag {
  position: relative;
}

.profile-picture-name-and-date-post {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.profile-picture-name {
  font-size: 20px;
  font-family: "Montserrat-Bold";
}

.date-of-post {
  font-size: 20px;
  font-family: "Montserrat";
}

.description-of-the-post {
  font-size: 20px;
  font-family: "Montserrat";
}

.document-post-body-with-video .picture-and-text {
  padding-bottom: 30px;
}

.video-post-section-body {
  max-width: 1000px;
  width: 100%;
  padding: 20px 0;
}

.video-post-section-body video {
  width: 100%;
  border-radius: 30px;
}

.persons-who-liked {
  display: flex;
  gap: 20px;
  max-width: 150px;
  width: 100%;
  padding-bottom: 20px;
}

.person {
  max-width: 50px;
  width: 100%;
}

.like-logo-and-text {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
}

.like-text {
  font-size: 20px;
  font-family: "Montserrat";
}

.comment-section-body {
  max-width: 1060px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}
.person-comment-with-text {
  width: 100%;
  background-color: #eeeff2;
  display: flex;
  border-radius: 30px;
  gap: 30px;
}

.picture-and-comment {
  display: flex;
  gap: 30px;
  padding: 30px 30px;
}

.profile-picture-name-and-comment {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.date-of-post {
  text-align: justify;
}

.your-comment {
  width: 100%;
  display: flex;
  background-color: #eeeff2;
  border-radius: 30px;
  gap: 30px;
  justify-content: center;
  padding: 30px 30px;
}
.type-comment {
  max-width: 820px;
  width: 100%;
}

.type-comment input {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: none;
  max-width: 100%;
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 15px;
}

.second-list-body {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.newsfeed-section .section-title a {
  text-align: center;
  font-size: 20px;
  font-family: "Montserrat-Bold";
  padding-top: 30px;
}
.newsfeed-section .section-title {
  text-align: center;
}

.newsfeed-section {
  justify-content: center;
  gap: 20px;
  display: flex;
  padding: 0 30px;
}
.second-list-content .title-of-second-list {
  font-size: 20px;
  font-family: "Montserrat-Bold";
  text-align: center;
}

.second-list-content {
  margin-top: 50px;
  padding: 30px 0;
}

.second-list-content {
  max-width: 100%;
  border: 1px solid #c8c8c8;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.person-body {
  display: flex;
  width: 100%;
  padding: 0 30px;
  justify-content: center;
  align-items: center;
}

.profile-picture-name-positon-location {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.second-list-content .person-body .profile-picture img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.second-list-content .profile-picture-name-positon-location .position {
  font-size: 20px;
  font-family: "Montserrat";
}

.second-list-content .profile-picture-name-positon-location .location {
  font-size: 20px;
  font-family: "Montserrat";
}

.second-list-content .contact-button {
  max-width: 140px;
  width: 100%;
}

.second-list-content .contact-button button {
  width: 140px;
  height: 50px;
  width: 100%;
  background-color: #000;
  border: none;
  border-radius: 25px;
  color: #fff;
}

.profile-picture-name-and-postion-container {
  display: flex;
  gap: 20px;
}

.second-list-content .picture-and-text {
  gap: 100px;
}

/* nutzerprofildetailseit */
.marketplace-detail-page .car-profile {
  display: flex;
  align-items: center;
  height: 480px;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}

.marketplace-detail-page .car-profile img {
  position: absolute;
  width: 100%;
  height: 118%;
  object-fit: cover;
}
.marketplace-detail-page .car-profile .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.provider-details-page .container {
  max-width: 1020px;
}
.marketplace-detail-page .container {
  max-width: 1364px;
  width: 100%;
  margin: 0 auto;
}
.marketplace-detail-page .car-profile .container .car-content {
  z-index: 2;
  padding: 0 20px;
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
}
.marketplace-detail-page .car-profile .container .car-content .image {
  background-color: #fff;
  border-radius: 10px;
  width: 180px;
  height: 180px;
}
.marketplace-detail-page .car-profile .container .car-content .image img {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: contain;
}
.provider-details-page .car-profile .container .car-content .description {
  max-width: 620px;
  width: 100%;
}
.marketplace-detail-page .car-profile .container .car-content .description {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}
.marketplace-detail-page
  .car-profile
  .container
  .car-content
  .description
  .car-name {
  font-size: 30px;
  color: #fff;
}
.provider-details-page
  .car-profile
  .container
  .car-content
  .description
  .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.provider-details-page
  .car-profile
  .container
  .car-content
  .description
  .contact-btn {
  max-width: 300px;
  width: 100%;
}
.provider-details-page
  .car-profile
  .container
  .car-content
  .description
  .contact-btn
  a {
  position: relative;
}
.provider-details-page
  .car-profile
  .container
  .car-content
  .description
  .location {
  font-family: "Montserrat-Bold";
  color: #fff;
}
.provider-details-page
  .car-profile
  .container
  .car-content
  .description
  .contact-btn
  a
  img {
  max-width: 26px;
  max-height: 26px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.body-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
  margin-bottom: 50px;
}

.body-container .first-description-paragraph {
  max-width: 1364px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #8c8c8c;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.first-description-paragraph .title-of-paragraph {
  font-size: 16px;
  font-family: "Montserrat-Bold";
  padding: 0 30px;
  padding-top: 30px;
  padding-bottom: 18px;
}

.first-description-paragraph .first-paragraph {
  width: 100%;
  max-width: 1219px;
  text-align: justify;
  font-size: 16px;
  font-family: "Montserrat";
  padding: 30px 30px;
}

.body-container .last-posts-container {
  max-width: 1364px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #8c8c8c;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.last-posts-container .last-posts-container-title {
  font-size: 16px;
  font-family: "Montserrat-Bold";
  padding-left: 30px;
  padding-top: 25px;
}

.last-posts-small-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 76px;
  gap: 20px;
  padding: 20px;
}

/* nutzerprofildetailseite */

/* DARIUS CSS END */
/* OUR CSS */
button {
  border: none;
}
.impressum-container {
  font-size: 16px;
  padding: 0 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: "Montserrat-Light";
  font-weight: 300;
}

.impr-content {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5rem;
}

.impr-content h2 {
  font-size: 30px;
  text-align: center;
  padding-top: 20px;
  font-family: "Montserrat";
}

/* KONTAKT */
.content.contact-page {
  max-width: 510px;
  margin: 0 auto;
  text-align: center;
}

.title-kontakt {
  font-size: 30px;
  font-family: "Montserrat-Bold";
  color: #242424;
  margin-top: 83px;
  margin-bottom: 54px;
}

.email-button button {
  width: 259px;
  height: 51px;
  border-radius: 30px;
  background-color: #242424;
  background-size: cover;
  font-family: "Montserrat";
  font-size: 16px;
  color: #ffffff;
  text-decoration: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 37px;
}
/* KONTAKT */
.marketplace-detail-page .car-profile .container .car-content .description {
  max-width: 620px;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: block !important;
}
#views-exposed-form-listing-page-1 {
  display: none;
}
.search-navigation main {
  width: 100%;
}
.search-navigation .from-marketplace .marketplace-box > div > div > div > div {
  justify-content: start;
}
.from-marketplace .marketplace-box > div > div > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.search-navigation .from-marketplace .marketplace-box > div > div > div {
  padding: 0px;
}
.views-element-container {
  padding: 0px;
}
.text {
  font-size: 16px;
  color: #393939;
  font-family: "Montserrat";
}
.marketplace-search .filter-search .inputs .row {
  justify-content: end;
}
.big-car-list-content form {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.cars-content {
  margin-top: 65px;
}
.login .form-input-btn {
  margin-top: 50px;
}
.login .form-input-btn p {
  margin-top: 30px;
}
.reset-pas .text {
  text-align: center;
  line-height: 20px;
}
.reset-pas .register-form {
  gap: 30px;
}
.reset-pas .form-input-btn {
  margin-top: 0px;
}

.display {
  display: flex;
}

.hidden {
  display: none;
}

.more-input-files .imageThumb {
  max-width: 100%;
  margin-top: 15px;
  margin-bottom: 5px;
  max-height: 100px;
}
.more-input-files .imageThumb {
  border-radius: 10px;
}
.more-input-files img {
  max-width: 23px;
  max-height: 23px;
  margin: auto 0;
  margin-right: 0px;
  margin-left: 0px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.removevideo,
.removevideoprof,
.resetcarimage,
.resetprofileimage,
.resetprofileimage {
  z-index: 99;
  margin-bottom: 15px;
  position: absolute;
  top: 4px;
  right: 15px;
  font-weight: bold;
  cursor: pointer;
}
.profile-dropdown-list-item {
  padding: 5px 0;
}
.nav-btn.logged {
  max-width: 230px;
  width: 100%;
}
header .container .action .nav-btn.logged .container-header-small {
  gap: 5px;
}
header .container .action .nav-btn.logged .container-header-small p {
  max-width: 130px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
header .container .action .nav-btn.logged .profile-dropdown-list {
  width: 100%;
}

.type-of-car .type a img {
  width: 25px;
}

.create-ad .box .input-container.textarea.single textarea {
  padding: 5px 15px;
}

.my-ads-list .container .wrapper .box-item .content,
.my-ads-list .container .wrapper .box-item .content.public-profile {
  flex-direction: row;
}
.details-page-carousel .no-carousel-block {
  display: flex;
  gap: 10px;
}
.removevideo.hide,
.removevideoprof.hide,
.resetcarimage.hide,
.resetprofileimage.hide,
.resetprofileimage.hide {
  display: none;
}
.input-file-content img {
  object-fit: cover;
}
.search-results .item .content .description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* Numărul de rânduri dorit */
  overflow: hidden;
  text-overflow: ellipsis;
}
