/* --- LOGO --- */

.logo_container {
  display: block;
  position: relative;
}

.logo {
  display: inline-block;
  position: relative;
  margin: 20px;
}

.logo img {
  width: 140px;
  object-fit: contain;
  margin: 10px;
}

/* --- LOGO LOGIN --- */

.logo_container_login {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_login {
  display: inline-block;
  position: relative;
  margin: 10px;
}

.logo_login img {
  width: 140px;
  object-fit: contain;
  margin: 10px;
}

/* --- MENU --- */

.topbar .icon {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  height: 70px;
  background-color: rgb(12, 12, 12);
  border-bottom: 1px solid rgb(30, 30, 30);
}

.menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  padding-top: 0px;
  height: 100%;
  font-size: 13px;
}

.menu-items-right {
  display: flex;
  margin-left: auto;
  gap: 10px;
}

.menu-items-right button {
  background-color: rgba(255, 255, 255, 0);
}

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 5px;
  color: rgb(255, 255, 255);
  font-weight: normal;
  text-decoration: none;
  height: 100%;
  width: auto;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  cursor: pointer;
}

.menu-item:hover {
  border-bottom: 3px solid var(--background0);
}

.menu_item_active {
  border-bottom: 3px solid var(--background0);
}

.menu-items button {
  background-color: rgba(255, 255, 255, 0);
}

.menu-item a {
  font-size: 13px;
  color: var(--darkblue);
  font-weight: bold;
  text-decoration: none;
}

.menu-item a:hover {
  color: var(--darkblue_hover);
}

.menu-item a:active {
  color: var(--darkblue_active);
}

.product_item_menu_icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dropdown {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: var(--text1);
  text-decoration: none;
  height: 100%;
  width: auto;
}

/* Styles for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  width: max-content;
  min-width: 220px;
  padding: 8px;
  background-color: rgb(30, 30, 30);
  border-radius: 22px;
  z-index: 20;
  margin-top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Individual link styles */
.dropdown-content a {
  color: rgb(255, 255, 255);
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  border-bottom: 0;
  z-index: 2;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.dropdown-content a:last-child {
  border-bottom: 0;
}

/* Hover effects */
.dropdown-content a:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(39, 88, 208);
  transform: translateY(-1px);
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 2;
}

.menu-item_rechts {
  color: rgb(170, 170, 170);
  font-weight: bold;
  text-decoration: none;
}

.menu-item_rechts:last-child {
  margin-right: 15px;
}

.menu-item_rechts a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  padding: 15px;
  width: auto;
  color: var(--textwhite);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--button3);
  border-radius: 50px;
}

.menu-item_rechts a:hover {
  background-color: var(--button3_hover);
}

.menu-item_rechts a:active {
  background-color: var(--button3_active);
}

.menu-responsive {
  display: none;
}

.menu-openen img {
  display: block;
  position: absolute;
  right: 25px;
  width: 30px;
  height: 30px;
  top: 22px;
}

.selected {
  font-weight: 700;
}

.invoice-action-link {
  align-items: center;
  background: rgb(39, 88, 208);
  border: 0;
  border-radius: 999px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  justify-content: center;
  min-height: 32px;
  min-width: 82px;
  padding: 0 14px;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 10px;
}

.invoice-label-default {
  display: inline;
}

.invoice-label-hover {
  display: none;
}

.invoice-action-link:hover,
.invoice-action-link:focus-visible {
  background: rgb(48, 104, 232);
  color: rgb(255, 255, 255);
}

.invoice-action-link:active {
  background: rgb(31, 73, 178);
}

.invoice-action-link-disabled {
  background: rgba(39, 88, 208, 0.38);
  color: rgba(255, 255, 255, 0.56);
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

/* --- CONTAINERS --- */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_vertical {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.container_horizontal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- SECTIONS --- */

.section-fullwidth {
  display: block;
  position: relative;
  width: 100vw;
}

.sections {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.sections::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.topbar {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  z-index: 100;
  background-color: rgb(12, 12, 12);
  border-bottom: 1px solid rgb(30, 30, 30);
}

#global-footer {
  border-top: 1px solid rgb(30, 30, 30);
}

#global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.max-width_container {
  max-width: 1400px;
  margin: auto;
}

.assets {
  display: block;
  width: 100%;
  height: 100%;
}

.contact {
  display: inline-block;
  position: relative;
  width: 24%;
  height: 100%;
  padding-top: 60px;
}

.contact-container {
  display: flex;
  justify-content: center;
}

.contact-info-title {
  font-weight: 700;
  font-size: 16px;
  color: rgb(127 127 127);
  padding-bottom: 5px;
}

.contact-info-text {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgb(255 255 255);
}

.contact-info {
  display: block;
  font-weight: 300;
  color: var(--text3);
  font-weight: 500;
}

.contact-info a {
  text-decoration: none;
  padding-bottom: 15px;
  color: var(--text3);
  font-weight: 500;
  color: rgb(255 255 255);
}

.contact-info a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer {
  display: block;
  width: 100%;
  height: 280px;
}

.footer-contact {
  display: block;
  position: relative;
  width: 100%;
  height: 70px;
}

.footer-contact-container {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 100%;
  color: rgb(255, 255, 255);
}

.footer-contact-logo img {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-left: 20px;
}

.footer-contact-info {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-contact-legal {
  display: block;
  position: relative;
  font-size: 14px;
  float: right;
  margin-right: 20px;
  margin-left: 20px;
  color: rgb(255, 255, 255);
}

.footer-contact-legal a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.footer-contact-legal a:hover {
  text-decoration: underline;
}

/* --- TEXT COLORS --- */

.blue1_text_color {
  display: inline;
  font-weight: 600;
  color: rgb(157, 183, 197);
}

/* --- LINKS ---*/

.text_link {
  font-size: 18px;
  font-weight: 600;
  color: rgb(74, 96, 202);
  text-decoration: none;
}

.text_link:hover {
  text-decoration: underline;
}

/* --- SECTIONS --- */

.cards_solutions_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

.cards_solutions_container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cards_services_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cards_feature_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

.cards_partners_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.card_solutions {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 15px;
  margin: 10px;
  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(245, 245, 245);
  max-width: 350px;
}

.card_solutions_populair {
  border: 3px solid var(--background0);
}

.card_solution_populair_tag {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -1px;
  right: -1px;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  height: 30px;
  background-color: var(--background0);
  border-top-right-radius: 13px;
  border-bottom-left-radius: 5px;
  color: var(--text1);
  font-size: 0.7rem;
}

.card_services {
  display: inline-flex;
  position: relative;
  width: 280px;
  height: auto;
  flex-direction: column;
  border-radius: 15px;
  margin: 10px;
  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(245, 245, 245);
  max-width: 350px;
}

.card_services_populair {
  border: 3px solid var(--background0);
}

.card_feature {
  display: inline-block;
  position: relative;
  width: 22%;
  height: 430px;
  border-radius: 15px;
  margin: 10px;
  background-color: rgb(245, 245, 245);
}

.card_partners {
  display: inline-block;
  position: relative;
  width: 22%;
  height: 400px;
  border-radius: 15px;
  margin: 10px;
  border: 0px solid rgb(18, 31, 99);
}

.card_title_container {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100px;
  width: 100%;
  padding-left: 30px;
  padding-top: 10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card_title_container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card_tag {
  text-align: left;
  font-size: 0.8rem;
  padding-bottom: 5px;
  color: rgb(0, 0, 0);
}

.card_tag2 {
  text-align: center;
  font-size: 0.8rem;
  padding-bottom: 5px;
}

.card_tag3 {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 5px;
  color: rgb(39 88 208);
}

.card_text_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 0px;
  padding-right: 30px;
  padding-left: 30px;
  width: 100%;
}

.card_text {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 20px;
}

.card_title {
  display: block;
  font-size: 1.6rem;
  padding-bottom: 0px;
  font-weight: 400;
}

.card_subtitle1 {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
}

.card_subtitle2 {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: left;
}

.card_subtitle3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  font-size: 1.1rem;
  padding: 20px 40px;
  font-weight: 500;
  text-align: center;
  color: rgb(170 170 170);
}

.card_text li {
  font-size: 1rem;
}

.card_text_tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}

.card_text_tag2 {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: rgb(0, 0, 0);
  padding-bottom: 30px;
}

.card_video_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 90%;
  height: 75%;
}

.card_video_text {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 13px;
  color: rgb(0, 0, 0);
}

.card_video_text_tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 5px;
}

.card_text_price {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
  text-align: center;
  color: rgb(0, 0, 0);
}

.card_button_container {
  display: flex;
  position: absolute;
  bottom: 0;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
}

.card_button {
  display: block;
  position: relative;
  width: 90%;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  color: rgba(255, 255, 255, 1);
  background-color: var(--button3);
}

.card_button:hover {
  background-color: var(--button3_hover);
}

.card_button:active {
  background-color: var(--button3_active);
}

.card_icon {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
