:root {
  --idk-blue: #5b90b3;
  --idk-blue-dark: #5c8aa8;
  --idk-text: #ffffff;
  --idk-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  --bs-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans"; /* white card padding */
}

p {
  padding: 0 !important;
  margin: 0 !important;
}

a {
  text-decoration: none;
  color: #5f5f61;
}

/*********************** utilities *************************************/

.idk_padding_top150 {
  padding-top: 150px;
}

.idk_padding_bottom150 {
  padding-bottom: 150px;
}

.idk_padding_top50 {
  padding-top: 50px;
}

.idk_margin_top100{
  margin-top: 100px;
}
.idk_margin_top200{
  margin-top: 200px;
}

/*********************** navbar *****************************************/

.idk_sticky {
  position: sticky;
  top: 0;
  z-index: 6;
}

.idk_header_wrapper {
  height: 150px;
  background: var(--idk-blue);
  border-bottom-right-radius: 150px;
  border-top-left-radius: 150px;
  padding: 30px;
  z-index: 3;
}
.idk_logo_box {
  position: absolute;
  top: 25%;
  left: 9%;
  align-items: center;
  background: #fff;
  padding: 42px 25px;
  border-radius: 18px;
  box-shadow: var(--idk-shadow);
}
.idk_navbar {
  position: absolute;
  bottom: 15%;
  left: 30%;
}
.idk_nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
}
.idk_nav_link {
  color: var(--idk-text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  display: inline-block;
  border-radius: 10px;
  transition: 0.2s ease;
}

.idk_header_icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 40px;
  padding-bottom: 25px;
}
.idk_divider {
  padding: 0 15px;
}

/*********************** hero section *******************************/

.idk_hero_section_main {
  position: relative;
  overflow: hidden;
  margin-top: -150px;
}

.idk_hero_section_main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}

.idk_hero_banner {
  width: 100%;
  height: 800px;
  z-index: 0;
  object-fit: cover;
}

.idk_hero_section {
  position: relative;
  overflow: visible;
  margin-top: -150px;
}

.idk_hero_section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.idk_hero_section .idk_hero_banner {
  height: 530px;
}

.idk_hero_content {
  position: absolute;
  bottom: 125px;
  color: white;
  z-index: 1;
}

@media (max-width: 768px) {
  .idk_hero_content {
    bottom: 150px;
    color: white;
    z-index: 1;
  }
}

.idk_wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  width: 150px;
  height: 120px;
  background: #fff;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.06);
  z-index: 5;
}

.hero-divider img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}

@media (max-width: 575.98px) {
  .idk_padding_bottom150 {
    padding-bottom: 80px;
  }

  .idk_padding_top150 {
    padding-top: 80px;
  }
  .intro-title {
    font-size: 24px;
  }
}

/* Left image block */
.intro-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  height: 100%;
}
/* Left image block */
.intro-photo1 {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  height: 350px;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.intro-photo1 img {
  width: 80%;
  height: 100%;
  display: block;
  justify-self: center;
  object-fit: contain;
}

.intro-copy {
  color: #3e4a55;
}

.eyebrow-bar {
  display: inline-block;
  width: 470px;
  height: 10px;
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  background: #d9e3ea;
  max-width: 80vw;
  margin-bottom: 10px;
}

/* Title */
.intro-title {
  color: #2f6f9a;
  color: var(--idk-blue);
  font-weight: bold;
  line-height: 1.15;
  font-size: 34px;

  overflow-wrap: anywhere; /* moderne preg. – dozvoli lom bilo gdje */
  word-break: break-word; /* fallback */
  hyphens: auto;
}

/* Paragraphs */
.intro-p {
  line-height: 1.65;
  color: #5f5f61;
  font-size: 16px;
}

/* Buttons */
.btn-pill {
  border-radius: 30px;
  font-weight: 600;
  padding: 24px 72px;
  transition: all 0.3s ease;
}

.btn-pill:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  background-color: var(--idk-blue) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-brand {
  background: var(--idk-blue);
  border: 1px solid var(--idk-blue);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border: 0;
  color: #4e5f6f;
  font-size: 18px;
  font-weight: 700;
}

.btn-ghost:hover {
  color: var(--idk-blue);
}

/* ===== Services section ===== */
.section-services {
  background: #f6f8fb;
}

.section-title {
  color: var(--idk-blue);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  margin-bottom: 50px;
}
.title-bar {
  width: 470px;
  height: 10px;
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  background: #dbe5ec;
  margin-top: 40px;
  max-width: 80vw;
}

.svc-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
  min-height: 215px;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.1);
  text-decoration: none;
}

/* Card content */
.svc-title {
  color: var(--idk-blue);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 10px;
}
.svc-text {
  color: #566371;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

/* Arrow chip bottom-right */
.svc-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(46, 63, 80, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto; /* push to right */
}
.svc-arrow i {
  font-size: 1rem;
  color: #6c7b88;
}
.svc-card:hover .svc-arrow {
  border-color: rgba(46, 63, 80, 0.32);
}

/* CTA card */
.svc-card.cta {
  background: var(--idk-blue);
  color: #fff;
  border-radius: 22px;
  min-height: 100px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.14);
}
.svc-card.cta .cta-text {
  font-weight: 700;
  font-size: 1.05rem;
}
.svc-card.cta:hover {
  filter: brightness(0.96);
}

/*************************** accordion on leistungen page ************************/

.accordion-button {
  padding: 35px 50px;
  color: #141b34 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}
.accordion-body {
  padding: 35px 50px;
  font-size: 18px !important;
  color: #141b34 !important;
}

.accordion-button:active {
  background-color: #5b90b333 !important;
}

/* ===== News section ===== */
.section-news .section-title {
  color: var(--idk-blue);
  font-weight: 800;
  font-size: clamp(1.5rem, 1rem + 1.8vw, 2rem);
  margin-bottom: 50px;
}
.section-news .title-bar {
  width: 470px;
  height: 10px;
  background: #dbe5ec;
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  margin-top: 40px;
}

/* Card */
.news-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

/* Top image area */
.news-media {
  position: relative;
  aspect-ratio: 16 / 10; /* keeps the box ratio like your mock */
  border-bottom: 1px solid rgba(20, 40, 60, 0.06);
}
.news-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.news-body {
  padding: 30px;
}
.news-title {
  color: var(--idk-blue);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 8px;
  line-height: 1.3;
}
.news-text {
  color: #566371;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 10px;
}

/* Arrow chip */
.news-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(46, 63, 80, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.news-arrow i {
  font-size: 1rem;
  color: #6c7b88;
}
.news-card:hover .news-arrow {
  border-color: rgba(46, 63, 80, 0.32);
}

.news-card:focus-within .news-media {
  outline: 3px solid #2f80ed;
  outline-offset: -3px;
  border-bottom: 0;
}

.hero-bg--about {
  min-height: 530px;
  background-position: center 0;
  background-size: cover;
}

.hero-bg--about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.idk_hero_section .row > [class*="col-"] {
  position: relative;
}

.page-title-pill {
  position: absolute;
  bottom: -40px;
  left: 13px;
  right: 0;

  background: var(--idk-blue);
  color: #fff;
  padding: 20px 0px;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;

  white-space: nowrap;
  z-index: 2;

  display: flex;
}

.page-title-pill h1 {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  .idk_hero_content h1 {
    font-size: 38px !important;
  }
  .page-title-pill {
    left: 25px;
    right: 16px;
    bottom: -36px;
  }

  .page-title-pill h1 {
    font-size: 24px;
  }

  .intro-title {
    font-size: 26px;
  }
}

/* Wrapper */
.site-footer {
  background: var(--idk-blue);
  color: #eaf3f7;
  margin-top: 80px;
  border-top-left-radius: var(--footer-radius);
  border-top-right-radius: var(--footer-radius);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 50px 0;
  font-weight: 400 !important;
}

.idk_section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.karriere.idk_section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.idk_subtitle {
  font-weight: 700;
  font-size: 22px;
  color: #5f5f61;
}

.idk_input {
  padding: 20px;
}

.idk_icon {
  color: #5b90b3;
}

.form-control {
  color: #5f5f61;
}

/* Inner grid */
.footer-inner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 56px 0 32px 48px;
  gap: 150px;
}

/* Logo */
.footer-logo {
  width: 146px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Titles & subtle text */
.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-muted {
  color: #d7e6ee;
  margin-bottom: 16px;
}

/* Newsletter */
.newsletter-form {
  position: relative;
  max-width: 420px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  background: #fff;
  border: 0;
  border-radius: 14px;
  outline: none;
  font-size: 0.95rem;
}

.newsletter-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.newsletter-btn i {
  font-size: 1.1rem;
  color: #5f8aa3;
}

/* Links */
.site-footer a {
  color: #ffffff;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Copyright & legal */
.copyright {
  color: #d7e6ee;
  font-size: 0.9rem;
  margin-top: 24px;
  margin-bottom: 0;
}

.legal-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 24px 22px;
}

.legal-links {
  color: #eaf3f7;
  font-size: 0.95rem;
}

.legal-links .sep {
  opacity: 0.7;
  margin: 0 10px;
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
  .footer-inner {
    gap: 36px;
  }
  .idk_logo_box {
    position: absolute;
    top: 58%;
    left: 8%;
    align-items: center;
    background: #fff;
    width: 120px;
    height: 120px;
    padding: 15px;
    border-radius: 18px;
    box-shadow: var(--idk-shadow);
  }

  .idk_logo_box img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 18px 20px;
  }
  .footer-col:first-child {
    padding-left: 24px;
    padding-top: 8px;
  }
  .legal-row {
    justify-content: space-between;
    padding: 0 18px 18px;
  }
}

@media (max-width: 575.98px) {
  .newsletter-input {
    padding: 12px 44px 12px 14px;
  }
  .newsletter-btn {
    width: 38px;
    height: 38px;
  }
}

/* Card look */
.team-card {
  border: 0;
  border-radius: 30px;
  overflow: hidden;
}
.team-card .card-body {
  padding: 16px 18px 18px;
  background: #fff;
}
.team-name {
  color: #2b6b93;
  font-weight: 700;
  font-size: 22px;
}

.team-title {
  color: #5f5f61;
  font-weight: 700;
  font-size: 16px;
}

.idk_card_contact {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}
.team-heading {
  font-weight: 700;
  color: #2b6b93;

  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.undertext {
  padding-bottom: 20px;
}
.ratio-3x4 {
  --bs-aspect-ratio: 133.333%;
}

:root {
  --acc-border: #e6edf1;
  --acc-active: #eaf3f7;
  --acc-title: #285f82;
  --acc-radius: 14px;
}

:root {
  --bullet: #b7c3cc;
  --title: #1f5576;
  --text: #5e6e79;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.6;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--bullet);
  border-radius: 50%;
}

.benefit-list strong {
  color: var(--title);
  font-weight: 700;
}
.karriere {
  color: #3e4a55;
}
.karriere .intro-p {
  margin-bottom: 100px;
}

.karriere .btn-pill {
  margin-top: -50px;
}

:root {
  --brand: #5f8aa3;
  --underline: #d9e7ef;
}

/********************************** kontakt.php **************************/
.idk_contact_section {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
  color: #5f5f61;
}

.idk_rounded {
  border-radius: 30px;
}

.idk_card_contact p a {
  color: #5f5f61 !important;
}

/* title with soft underline bar */
.contact-title {
  font-weight: 800;
  color: var(--brand);
  position: relative;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}
.contact-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 60%;
  height: 8px;
  border-radius: 8px;
  background: var(--underline);
}

/* brand color for inline icons */
.text-brand {
  color: var(--brand) !important;
}

/* circular clickable social icons */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: var(--brand);
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* small screens: give the map some top space */
@media (max-width: 991.98px) {
  .contact-title::before {
    width: 220px;
  }

  .team-heading {
    font-size: 24px;
  }
}

h1,
.h1 {
  font-size: 45px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 34px;
  font-weight: 700;
}

p {
  font-size: 16px;
  font-weight: 400;
}

html {
  font-size: 16px !important;
  -webkit-text-size-adjust: 100%;
}

:root {
  --nav-link-font: "Roboto", Arial, sans-serif;
  --nav-link-size: 1.125rem;
  --nav-link-weight: 600;
}

/* IDK Menu Start */
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#cssmenu #menu-button {
  display: none;
}

#cssmenu > ul > li {
  float: left;
}

#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}

#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}

#cssmenu.align-center ul ul {
  text-align: left;
}

#cssmenu.align-right > ul > li {
  float: right;
}

#cssmenu > ul > li > a {
  padding: 25px;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
}

#cssmenu > ul > li:hover > a {
  color: #dddddd;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}

#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: "";
}

#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: "";
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}

#cssmenu.align-right ul ul {
  text-align: right;
}

#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu li:hover > ul {
  left: auto;
}

#cssmenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}

#cssmenu li:hover > ul > li {
  height: 35px;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}

#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 11px 15px;
  width: 170px;
  font-size: 12px;
  text-decoration: none;
  color: #dddddd;
  font-weight: 400;
  background: #333333;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #ffffff;
}

#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: "";
}

#cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}

#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: "";
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}

#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}

@media (min-width: 767px) and (max-width: 1199.98px) {
  #cssmenu > ul > li > a {
    padding: 20px;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
  }
}

@media all and (max-width: 768px),
  only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
  only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (min-resolution: 192dpi) and (max-width: 1024px),
  only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  .idk_header_wrapper {
    background: transparent;
    padding: 4px 5px;
  }

  #cssmenu > ul > li > a {
    padding: 15px;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
  }
  #cssmenu {
    width: 100%;
    padding: 15px;
    background: var(--idk-blue);
  }

  #cssmenu ul {
    width: 100%;
    display: none;
  }

  #cssmenu.align-center > ul {
    text-align: left;
  }

  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);
  }

  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }

  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }

  #cssmenu > ul > li {
    float: none;
  }

  #cssmenu ul ul li a {
    padding-left: 25px;
  }

  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }

  #cssmenu ul ul li a {
    color: #dddddd;
    background: none;
  }

  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #ffffff;
  }

  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }

  #cssmenu #menu-button {
    display: block;
    padding: 17px;
    color: #dddddd;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
  }

  #cssmenu #menu-button:after {
    position: absolute;
    top: 22px;
    right: 17px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    content: "";
  }

  #cssmenu #menu-button:before {
    position: absolute;
    top: 16px;
    right: 17px;
    display: block;
    height: 2px;
    width: 20px;
    background: #dddddd;
    content: "";
  }

  #cssmenu #menu-button.menu-opened:after {
    top: 23px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #cssmenu #menu-button.menu-opened:before {
    top: 23px;
    background: #ffffff;
    width: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 46px;
    width: 46px;
    cursor: pointer;
  }

  #cssmenu .submenu-button.submenu-opened {
    background: #262626;
  }

  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }

  #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: "";
  }

  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }

  #cssmenu .submenu-button.submenu-opened:after {
    background: #ffffff;
  }

  #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: "";
  }

  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }

  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
}

/* IDK Menu End */
@media (max-width: 991px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100% !important;
  }
}
