@charset "UTF-8";
.cover {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 10;
}
.cover .cover-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: brightness(80%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}
.cover .content {
  padding-inline: 20px;
  padding-top: 125px;
  padding-bottom: 45px;
  height: 100%;
  position: relative;
}
.cover .content .text {
  text-align: left;
  z-index: 100;
  position: relative;
}
.cover .content .text a {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-weight: 500;
  margin-top: 35px;
}
.cover .content .text a i {
  margin-left: 8px;
}
.cover .content .text h1 {
  color: white;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 10px;
}
.cover .content .text p {
  font-size: 16px;
  color: white;
}
.cover .content .text .form {
  position: relative;
  margin-top: 140px;
  /* Container */
  /* Text input */
  /* Button wrapper */
  /* Optional: tweak the emoji/icon inside */
}
.cover .content .text .form p {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
}
.cover .content .text .form .search-bar {
  display: flex;
  align-items: center;
  /* Frosted-glass background */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(5px); /* Safari */
  border-radius: 40px;
  padding: 4px; /* small gutter around */
  max-width: 500px;
  margin: 0 auto; /* center if you like */
  border: 1px solid white;
}
.cover .content .text .form .search-bar__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 16px;
  color: #1F1F1F;
  border-radius: 40px; /* match container for seamless look */
  outline: none;
  text-transform: uppercase;
}
.cover .content .text .form .search-bar__input::-moz-placeholder {
  opacity: 0.89;
  color: #1F1F1F;
  text-transform: none !important;
}
.cover .content .text .form .search-bar__input::placeholder {
  opacity: 0.89;
  color: #1F1F1F;
  text-transform: none !important;
}
.cover .content .text .form .search-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  margin-top: 0;
  /* change this to your desired color */
  background: #1F1F1F;
  /* fill the bar’s height minus the bar’s padding (4px top & bottom) */
  height: 40px;
  width: 40px; /* trick to make height==width, or simply pick a fixed size */
  /* OR if you know exact height, e.g. 40px: */
  /* width: 40px;
     height: 40px; */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 4px; /* space from the right edge */
  flex-shrink: 0;
}
.cover .content .text .form .search-bar__btn svg,
.cover .content .text .form .search-bar__btn {
  font-size: 1.1rem;
  color: white;
}

.modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none !important;
  transition: opacity 0.3s ease;
  z-index: 10000;
  display: none;
}
.modals.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.modals .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100; /* backdrop below dialog */
  pointer-events: auto;
}
.modals .modal-dialog {
  position: relative;
  z-index: 102; /* on top of backdrop */
  max-width: 400px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  pointer-events: auto;
  /* Scale up when open */
}
.modals .modal-dialog #sucess {
  background: rgba(100, 219, 100, 0.329);
  padding: 17px;
  margin-top: 35px;
  display: none;
}
.modals .modal-dialog #sucess h2 {
  font-size: 18px;
  color: #1F1F1F;
  margin-bottom: 0;
}
.modals.open .modals .modal-dialog {
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.modals .modal-dialog .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
.modals .modal-dialog h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}
.modals .modal-dialog form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modals .modal-dialog form .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-block: 22px;
}
.modals .modal-dialog form .flex select {
  border-radius: 4px;
  min-width: 110px;
  height: auto;
  cursor: pointer;
  border: 1px solid lightgray;
  outline: none;
  padding: 7px;
}
.modals .modal-dialog form label {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  color: #1F1F1F;
}
.modals .modal-dialog form label input {
  margin-top: 5px;
  padding: 6px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  height: 48px;
}
.modals .modal-dialog form label input:focus {
  border-color: #3a3a3a;
  outline: none;
}
.modals .modal-dialog form label input[readonly] {
  background: #f5f5f5;
  color: #555;
}
.modals .modal-dialog form button {
  padding: 12px;
  background: linear-gradient(120deg, #1F1F1F 25%, #1F1F1F 50%, #1F1F1F 75%) no-repeat;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  width: 100%;
}
.modals .modal-dialog form button:focus {
  border: none;
  outline: none;
}
.modals .modal-dialog form button.loading {
  pointer-events: none;
  background: linear-gradient(120deg, #1F1F1F 25%, #333 50%, #888888 75%) no-repeat;
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.modals .modal-dialog form button.secondary {
  background: none;
  color: #1F1F1F;
  margin-bottom: 25px;
  margin-top: 35px;
}

.reviews {
  position: relative;
  width: 100%;
  height: auto;
}
.reviews .content {
  position: relative;
  padding-inline: 20px;
  padding-top: 75px;
  padding-bottom: 30px;
}
.reviews .content .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.reviews .content .image .case {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.93);
  color: #1F1F1F;
  border-radius: 6px;
  padding: 20px;
  font-weight: 500;
}
.reviews .content .image img {
  border-radius: 6px;
  margin-top: 49px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 335px;
}
.reviews .content .text h2 {
  color: #1F1F1F;
  font-size: 26px;
}
.reviews .content .reviews-section {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-top: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
}
.reviews .content .reviews-section::-webkit-scrollbar {
  display: none;
}
.reviews .content .reviews-section .review {
  flex: 0 0 auto;
  position: relative;
  width: 90%;
  height: 300px;
  padding: 16px;
  background: rgba(211, 211, 211, 0.678);
  border-radius: 6px;
}
.reviews .content .reviews-section .review .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.reviews .content .reviews-section .review .top .name {
  color: #1F1F1F;
  font-size: 20px;
}
.reviews .content .reviews-section .review .top .stars {
  font-size: 14px;
  color: rgb(230, 174, 33);
}
.reviews .content .reviews-section .review .bottom {
  margin-top: 15px;
}
.reviews .content .reviews-section .review .bottom p {
  color: #1F1F1F;
  font-size: 16px;
}
.reviews .content .reviews-section .review .bottom .gotfrom {
  color: #1F1F1F;
  font-size: 16px;
  margin-top: 25px;
  opacity: 0.7;
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.sell {
  position: relative;
  width: 100%;
  height: auto;
  margin-block: 60px;
  margin-bottom: 30px;
}
.sell .content {
  background: rgba(211, 211, 211, 0.3);
  position: relative;
  padding-inline: 20px;
  padding-block: 60px;
}
.sell .content .text {
  position: relative;
}
.sell .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
}
.sell .content .cards {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.sell .content .cards .card {
  position: relative;
  width: 100%;
  height: auto;
  background: white;
  padding: 24px 18px;
  border-radius: 6px;
  border: none;
}
.sell .content .cards .card.sponsor {
  text-align: center;
}
.sell .content .cards .card.sponsor p {
  font-size: 18px;
  font-weight: 500;
}
.sell .content .cards .card.sponsor .images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 15px;
}
.sell .content .cards .card.sponsor .images img {
  width: calc(33% - 15px);
  height: auto;
  display: inline-block;
}
.sell .content .cards .card.sponsor .images img.if {
  width: 40px;
}
.sell .content .cards .card h2 {
  color: #1F1F1F;
  font-size: 26px;
  margin-bottom: 15px;
}
.sell .content .cards .card p {
  color: #1F1F1F;
  font-size: 16px;
  margin-bottom: 0;
}
.sell .content .cards .card a {
  display: inline-block;
  background: rgba(211, 211, 211, 0.678);
  border: none;
  outline: none;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  padding-inline: 8px;
  margin-top: 45px;
  text-decoration: none;
}
.sell .content .cards .card a span {
  color: #1F1F1F;
  font-size: 16px;
  padding-left: 6px;
}
.sell .content .cards .card a .icon {
  background: #1F1F1F;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sell .content .cards .card a .icon i {
  color: white;
  font-size: 15px;
}

.verdivurdering {
  position: relative;
  width: 100%;
  height: auto;
  padding-block: 60px;
  padding-top: 19px;
  padding-inline: 20px;
}
.verdivurdering .content {
  position: relative;
  padding: 28px 18px;
  border: 1px solid rgba(211, 211, 211, 0.534);
  border-radius: 12px;
}
.verdivurdering .content .text {
  position: relative;
}
.verdivurdering .content .text h2 {
  color: #1F1F1F;
  font-size: 22px;
}
.verdivurdering .content .text h2 .icon {
  display: none;
}
.verdivurdering .content .text form {
  margin-top: 25px;
}
.verdivurdering .content .text form #stepOne {
  display: flex;
  border: 1px solid #1F1F1F;
  border-radius: 6px;
}
.verdivurdering .content .text form #stepOne input {
  border: none;
  width: 50%;
  height: 55px;
  background: none;
  outline: none;
  padding-inline: 12px;
  font-size: 16px;
  color: #1F1F1F;
}
.verdivurdering .content .text form #stepOne input::-moz-placeholder {
  font-size: 15px;
  color: #1F1F1F;
  opacity: 0.7;
  text-transform: none;
}
.verdivurdering .content .text form #stepOne input::placeholder {
  font-size: 15px;
  color: #1F1F1F;
  opacity: 0.7;
  text-transform: none;
}
.verdivurdering .content .text form #stepTwo {
  border: 1px solid #1F1F1F;
  border-radius: 6px;
  margin-top: 15px;
}
.verdivurdering .content .text form #stepTwo input {
  border: none;
  border-bottom: 1px solid #1F1F1F;
  width: 100%;
  height: 55px;
  background: none;
  outline: none;
  padding-inline: 12px;
  font-size: 16px;
  color: #1F1F1F;
}
.verdivurdering .content .text form #stepTwo input::-moz-placeholder {
  font-size: 15px;
  color: #1F1F1F;
  opacity: 0.7;
  text-transform: none;
}
.verdivurdering .content .text form #stepTwo input::placeholder {
  font-size: 15px;
  color: #1F1F1F;
  opacity: 0.7;
  text-transform: none;
}
.verdivurdering .content .text form button {
  width: 100%;
  height: 53px;
  border: none;
  outline: none;
  background: #1F1F1F;
  color: white;
  border-radius: 25px;
  margin-top: 22px;
}

@media only screen and (min-device-width: 1140px) {
  .cover {
    width: 100%;
    height: 100dvh;
    min-height: 885px;
    position: relative;
  }
  .cover .cover-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: brightness(60%);
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 10;
  }
  .cover .content {
    padding-inline: 50px;
    padding-top: 165px;
    padding-bottom: 45px;
    height: 100%;
    position: relative;
    max-width: 1500px;
    margin-inline: auto;
  }
  .cover .content .text {
    text-align: left;
    z-index: 100;
    position: relative;
  }
  .cover .content .text h1 {
    color: white;
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 10px;
    max-width: 800px;
  }
  .cover .content .text p {
    max-width: 600px;
    font-size: 20px;
    color: white;
  }
  .cover .content .text a {
    margin-top: 65px;
    font-size: 20px;
  }
  .cover .content .text .form {
    position: relative;
    margin-top: 140px;
    text-align: left;
    /* Container */
    /* Text input */
    /* Button wrapper */
    /* Optional: tweak the emoji/icon inside */
  }
  .cover .content .text .form p {
    margin-bottom: 15px;
    font-size: 29px;
    font-weight: 500;
  }
  .cover .content .text .form .search-bar {
    display: flex;
    align-items: center;
    /* Frosted-glass background */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(5px); /* Safari */
    border-radius: 40px;
    padding: 4px; /* small gutter around */
    max-width: 500px;
    margin: 0 0; /* center if you like */
    border: 1px solid white;
  }
  .cover .content .text .form .search-bar__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 16px;
    color: #1F1F1F;
    border-radius: 40px; /* match container for seamless look */
    outline: none;
    text-transform: uppercase;
  }
  .cover .content .text .form .search-bar__input::-moz-placeholder {
    opacity: 0.89;
    color: #1F1F1F;
    text-transform: none !important;
  }
  .cover .content .text .form .search-bar__input::placeholder {
    opacity: 0.89;
    color: #1F1F1F;
    text-transform: none !important;
  }
  .cover .content .text .form .search-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    /* change this to your desired color */
    background: #1F1F1F;
    /* fill the bar’s height minus the bar’s padding (4px top & bottom) */
    height: 60px;
    width: 60px; /* trick to make height==width, or simply pick a fixed size */
    /* OR if you know exact height, e.g. 40px: */
    /* width: 40px;
       height: 40px; */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 4px; /* space from the right edge */
    flex-shrink: 0;
  }
  .cover .content .text .form .search-bar__btn svg,
  .cover .content .text .form .search-bar__btn {
    font-size: 60px;
  }
  .modals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none !important;
    transition: opacity 0.3s ease;
    z-index: 100000;
    display: none;
  }
  .modals.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .modals .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100; /* backdrop below dialog */
    pointer-events: auto;
  }
  .modals .modal-dialog {
    position: relative;
    z-index: 102; /* on top of backdrop */
    max-width: 590px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background: #fff;
    padding: 39px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    pointer-events: auto;
    /* Scale up when open */
  }
  .modals .modal-dialog #sucess {
    background: rgba(100, 219, 100, 0.329);
    padding: 17px;
    margin-top: 35px;
    display: none;
  }
  .modals .modal-dialog #sucess h2 {
    font-size: 20px;
    color: #1F1F1F;
    margin-bottom: 0;
  }
  .modals.open .modals .modal-dialog {
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
  }
  .modals .modal-dialog .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  .modals .modal-dialog h2 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 32px;
  }
  .modals .modal-dialog form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .modals .modal-dialog form label {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    color: #1F1F1F;
  }
  .modals .modal-dialog form label input {
    margin-top: 5px;
    padding: 6px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    height: 52px;
  }
  .modals .modal-dialog form label input:focus {
    border-color: #3a3a3a;
    outline: none;
  }
  .modals .modal-dialog form label input[readonly] {
    background: #f5f5f5;
    color: #555;
  }
  .modals .modal-dialog form .btn.primary {
    padding: 12px;
    height: 57px;
    background: linear-gradient(120deg, #1F1F1F 25%, #1F1F1F 50%, #1F1F1F 75%) no-repeat;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    margin-top: 19px;
  }
  .modals .modal-dialog form .btn.primary:focus {
    border: none;
    outline: none;
  }
  .modals .modal-dialog form .btn.primary.loading {
    pointer-events: none;
    background: linear-gradient(120deg, #1F1F1F 25%, #333 50%, #888888 75%) no-repeat;
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
  }
  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  .reviews {
    position: relative;
    width: 100%;
    height: auto;
  }
  .reviews .content {
    position: relative;
    padding-inline: 50px;
    padding-top: 155px;
    padding-bottom: 60px;
    max-width: 1700px;
    margin-inline: auto;
  }
  .reviews .content .overlay-wrapper {
    position: relative;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
    max-width: 1500px;
    margin-inline: auto;
  }
  .reviews .content .overlay {
    position: absolute;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, transparent, white);
    z-index: 100;
    pointer-events: none;
  }
  .reviews .content .image {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .reviews .content .image .case {
    position: absolute;
    bottom: 70px;
    left: 60px;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.93);
    color: #1F1F1F;
    border-radius: 6px;
    padding: 34px;
    font-weight: 500;
  }
  .reviews .content .image img {
    border-radius: 6px;
    margin-top: 90px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
  .reviews .content .text {
    max-width: 1500px;
    margin-inline: auto;
  }
  .reviews .content .text h2 {
    color: #1F1F1F;
    font-size: 38px;
  }
  .reviews .content .reviews-section {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding-right: 150px;
  }
  .reviews .content .reviews-section::-webkit-scrollbar {
    display: none;
  }
  .reviews .content .reviews-section .review {
    flex: 0 0 auto;
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 370px;
    padding: 20px;
    background: rgba(211, 211, 211, 0.678);
    border-radius: 6px;
    cursor: grab;
  }
  .reviews .content .reviews-section .review.active {
    cursor: grabbing;
  }
  .reviews .content .reviews-section .review .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  .reviews .content .reviews-section .review .top .name {
    color: #1F1F1F;
    font-size: 24px;
  }
  .reviews .content .reviews-section .review .top .stars {
    font-size: 17px;
    color: rgb(230, 174, 33);
  }
  .reviews .content .reviews-section .review .bottom {
    margin-top: 15px;
  }
  .reviews .content .reviews-section .review .bottom p {
    color: #1F1F1F;
    font-size: 17px;
  }
  .reviews .content .reviews-section .review .bottom .gotfrom {
    color: #1F1F1F;
    font-size: 16px;
    margin-top: 25px;
    opacity: 0.7;
    position: absolute;
    bottom: 16px;
    left: 16px;
  }
  .sell {
    position: relative;
    width: 100%;
    height: auto;
    margin-block: 80px;
    margin-bottom: 50px;
    background: rgba(211, 211, 211, 0.3);
  }
  .sell .content {
    background: transparent;
    position: relative;
    padding-inline: 50px;
    padding-block: 100px;
    max-width: 1500px;
    margin-inline: auto;
  }
  .sell .content .text {
    position: relative;
  }
  .sell .content .text h2 {
    color: #1F1F1F;
    font-size: 54px;
  }
  .sell .content .cards {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 45px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 21px;
    row-gap: 60px;
  }
  .sell .content .cards .card {
    position: relative;
    width: calc(33% - 11px);
    height: 365px;
    background: white;
    padding: 32px 24px;
    border-radius: 6px;
    border: none;
  }
  .sell .content .cards .card.sponsor {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    height: -moz-max-content;
    height: max-content;
    padding: 40px 32px;
  }
  .sell .content .cards .card.sponsor p {
    font-size: 30px;
    font-weight: 500;
  }
  .sell .content .cards .card.sponsor .images {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    padding-top: 15px;
  }
  .sell .content .cards .card.sponsor .images img {
    width: calc(33% - 86px);
    height: auto;
    display: inline-block;
  }
  .sell .content .cards .card.sponsor .images img.if {
    width: 90px;
  }
  .sell .content .cards .card h2 {
    color: #1F1F1F;
    font-size: 30px;
    margin-bottom: 15px;
  }
  .sell .content .cards .card p {
    color: #1F1F1F;
    font-size: 18px;
    margin-bottom: 0;
  }
  .sell .content .cards .card a {
    background: rgba(211, 211, 211, 0.678);
    border: none;
    outline: none;
    width: calc(100% - 48px);
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    padding-inline: 8px;
    margin-top: 45px;
    position: absolute;
    left: 24px;
    bottom: 30px;
  }
  .sell .content .cards .card a span {
    color: #1F1F1F;
    font-size: 16px;
    padding-left: 6px;
  }
  .sell .content .cards .card a .icon {
    background: #1F1F1F;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sell .content .cards .card a .icon i {
    color: white;
    font-size: 15px;
  }
  .verdivurdering {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 120px;
    padding-top: 115px;
    padding-inline: 0;
  }
  .verdivurdering .content {
    position: relative;
    padding: 0;
    padding-inline: 50px;
    border: none;
    border-radius: 12px;
    max-width: 1500px;
    margin-inline: auto;
  }
  .verdivurdering .content .text {
    position: relative;
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .verdivurdering .content .text h2 {
    color: #1F1F1F;
    font-size: 54px;
    width: -moz-max-content;
    width: max-content;
  }
  .verdivurdering .content .text h2 .icon {
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
  }
  .verdivurdering .content .text h2 .icon i {
    margin-right: 12px;
    color: green;
  }
  .verdivurdering .content .text form {
    margin-top: 0;
    max-width: 540px;
    margin-left: auto;
  }
  .verdivurdering .content .text form #stepOne {
    display: flex;
    border: 1px solid #1F1F1F;
    border-radius: 6px;
  }
  .verdivurdering .content .text form #stepOne input {
    border: none;
    width: 50%;
    height: 55px;
    background: none;
    outline: none;
    padding-inline: 12px;
    font-size: 16px;
    color: #1F1F1F;
  }
  .verdivurdering .content .text form #stepOne input::-moz-placeholder {
    font-size: 15px;
    color: #1F1F1F;
    opacity: 0.7;
    text-transform: none;
  }
  .verdivurdering .content .text form #stepOne input::placeholder {
    font-size: 15px;
    color: #1F1F1F;
    opacity: 0.7;
    text-transform: none;
  }
  .verdivurdering .content .text form #stepTwo {
    border: 1px solid #1F1F1F;
    border-radius: 6px;
    margin-top: 15px;
  }
  .verdivurdering .content .text form #stepTwo input {
    border: none;
    border-bottom: 1px solid #1F1F1F;
    width: 100%;
    height: 55px;
    background: none;
    outline: none;
    padding-inline: 12px;
    font-size: 16px;
    color: #1F1F1F;
  }
  .verdivurdering .content .text form #stepTwo input::-moz-placeholder {
    font-size: 15px;
    color: #1F1F1F;
    opacity: 0.7;
    text-transform: none;
  }
  .verdivurdering .content .text form #stepTwo input::placeholder {
    font-size: 15px;
    color: #1F1F1F;
    opacity: 0.7;
    text-transform: none;
  }
  .verdivurdering .content .text form button {
    width: 100%;
    height: 53px;
    border: none;
    outline: none;
    background: #1F1F1F;
    color: white;
    border-radius: 25px;
    margin-top: 22px;
  }
}/*# sourceMappingURL=base.css.map */