/*
Theme Name: Adekta8
Theme URI: https://adekta.se/
Description: Fristående WordPress-tema för Adekta med samma grundlayout som tidigare, men med versal huvudmeny och inbyggd sökfunktion i sidhuvudet.
Author: OpenAI
Version: 1.0.0
Text Domain: adekta8
*/

:root {
  --adk-accent: #39ace7;
  --adk-accent-dark: #2498d4;
  --adk-text: #2f2f2f;
  --adk-muted: #666666;
  --adk-border: #e6e6e6;
  --adk-footer-bg: #efefef;
  --adk-footer-border: #d8d8d8;
  --adk-heading: "Merriweather", Georgia, serif;
  --adk-body: "Open Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--adk-text);
  background: #ffffff;
  font-family: var(--adk-body);
  font-size: 16px;
  line-height: 1.75;
}

body * {
  box-sizing: border-box;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100000;
  display: inline-block;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.site {
  min-height: 100vh;
}

.site-main {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  width: min(calc(100% - 64px), 1280px);
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-branding {
  flex: 0 0 auto;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-branding__image--header {
  display: block;
  width: auto;
  height: 42px;
  max-width: none;
  margin-top:7px;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.main-navigation .menu,
.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation > div,
.main-navigation .menu-main-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.main-navigation .menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.main-navigation .menu > li {
  position: relative;
  margin: 0;
}

.main-navigation .menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  padding: 0 18px;
  color: var(--adk-text);
  text-decoration: none;
  font-family: var(--adk-body);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color:#606264 ;
  font-size:14px;
}

.main-navigation .menu > li.current-menu-item > a,
.main-navigation .menu > li.current_page_item > a,
.main-navigation .menu > li > a:hover {
  color: var(--adk-accent);
}

.main-navigation .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 30;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu li a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--adk-text);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.main-navigation .sub-menu li a:hover {
  color: var(--adk-accent);
}

.site-search-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--adk-text);
  cursor: pointer;
}

.site-search-toggle:hover,
.site-search-toggle[aria-expanded="true"] {
  color: var(--adk-accent);
}

.site-search-toggle__icon {
  display: block;
}

.site-header-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9985;
  background: #ffffff;
  border-top: 1px solid var(--adk-border);
  box-shadow: 0 18px 34px rgba(0,0,0,.09);
}

.site-header-search[hidden] {
  display: none !important;
}

.site-header-search__form {
  width: min(calc(100% - 64px), 1280px);
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
}

.site-header-search__field {
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid var(--adk-border);
  background: #fff;
  color: var(--adk-text);
  font-family: var(--adk-body);
  font-size: 15px;
  line-height: 1.2;
  outline: none;
}

.site-header-search__field:focus {
  border-color: var(--adk-accent);
}

.site-header-search__submit {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--adk-accent);
  color: #fff;
  font-family: var(--adk-body);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.site-header-search__submit:hover {
  background: var(--adk-accent-dark);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.menu-toggle {
  appearance: none;
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--adk-text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__icon::before {
  top: -8px;
}

.menu-toggle__icon::after {
  top: 8px;
}

.content-shell,
.content-shell.content-shell--fullwidth {
  width: min(calc(100% - 64px), 1280px);
  margin-left: auto;
  margin-right: auto;
}

.entry-content {
  min-width: 0;
}

.page-hero.page-hero--default {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(rgba(57,172,231,.84), rgba(57,172,231,.84)),
    radial-gradient(circle at center, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 58%),
    linear-gradient(135deg, #48b4eb 0%, #2fa3df 100%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1280px);
  margin: 0 auto;
  padding: 74px 0 72px;
}

.page-hero__title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--adk-heading);
  font-size: 56px;
  line-height: 1.04;
  font-weight: 700;
}

.page-hero__breadcrumbs,
.page-hero__breadcrumbs a,
.page-hero__breadcrumbs span {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--adk-body);
  font-size: 15px;
  line-height: 1.5;
}

.page-hero__breadcrumbs-sep {
  display: inline-block;
  margin: 0 8px;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding-top: 72px;
  background: var(--adk-footer-bg);
  color: #5f5f5f;
}

.site-footer__shape {
  display: none;
}

.site-footer__inner {
  width: min(calc(100% - 64px), 1280px);
  margin: 0 auto;
}

.site-footer__inner--custom {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr .72fr;
  column-gap: 44px;
  row-gap: 28px;
  align-items: start;
}

.site-footer__title {
  margin: 0 0 20px;
  color: var(--adk-text);
  font-family: var(--adk-heading);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #606060;
  text-decoration: none;
  font-family: var(--adk-body);
  font-size: 15px;
  line-height: 1.9;
}

.site-footer p {
  margin: 0 0 16px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.footer-menu,
.site-footer__contact-list,
.site-footer__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li,
.site-footer__contact-list li,
.site-footer__info-list li {
  margin: 0 0 10px;
  padding: 0;
}

.footer-menu li:last-child,
.site-footer__contact-list li:last-child,
.site-footer__info-list li:last-child {
  margin-bottom: 0;
}

.footer-menu a:hover,
.site-footer__contact-list a:hover,
.site-footer__info-list a:hover {
  color: var(--adk-accent);
}

.site-footer__contact-list strong {
  color: var(--adk-text);
  font-weight: 700;
}

.site-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  margin-right: 8px;
  color: var(--adk-accent);
  font-style: normal;
}

.site-footer__col--empty {
  min-height: 1px;
}

.site-footer__bottom {
  width: min(calc(100% - 64px), 1280px);
  margin: 48px auto 0;
  padding: 22px 0 28px;
  border-top: 1px solid var(--adk-footer-border);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 1100px) {
  .site-header__inner,
  .content-shell,
  .content-shell.content-shell--fullwidth,
  .page-hero__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100% - 40px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
  }

  .site-header-search__form {
    width: calc(100% - 40px);
  }

  .main-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 0 20px 20px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }

  .main-navigation.toggled {
    display: block;
  }

  .main-navigation > div,
  .main-navigation .menu-main-container {
    display: block;
  }

  .main-navigation .menu {
    display: block;
    border-top: 1px solid var(--adk-border);
  }

  .main-navigation .menu > li > a {
    display: block;
    min-height: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--adk-border);
  }

  .main-navigation .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: block;
  }

  .page-hero__title {
    font-size: 42px;
  }

  .site-footer__inner--custom {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col--empty {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header__inner,
  .content-shell,
  .content-shell.content-shell--fullwidth,
  .page-hero__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100% - 32px);
  }

  .site-header__inner {
    min-height: 76px;
    gap: 14px;
  }

  .site-branding__image--header {
    height: 44px;
  }

  .page-hero {
    min-height: 210px;
  }

  .page-hero__inner {
    padding: 56px 0 54px;
  }

  .page-hero__title {
    font-size: 34px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .site-header-search__form {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .site-footer__inner--custom {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .site-footer__title {
    font-size: 22px;
  }
}

.akx-card-head span.akx-price {background:#40c4ff !important;}

.kursanmalan,
.kursanmalan * {
  box-sizing: border-box;
}

.kursanmalan {
  margin: 28px 0 0;
}

.kursanmalan .wpcf7 {
  margin: 0;
}

.kursanmalan .wpcf7 form {
  margin: 0;
  padding: 34px 36px 36px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.kursanmalan .hidden-fields-container {
  display: none;
}

.kursanmalan p {
  margin: 0 0 22px !important;
}

.kursanmalan p:last-of-type {
  margin-bottom: 0 !important;
}

.kursanmalan label {
  display: block;
  color: #2f2f2f;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.kursanmalan .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.kursanmalan input[type="text"],
.kursanmalan input[type="email"],
.kursanmalan input[type="tel"],
.kursanmalan input[type="number"],
.kursanmalan input[type="date"],
.kursanmalan input[type="url"],
.kursanmalan select,
.kursanmalan textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #d9dfe5;
  border-radius: 0;
  background: #fff;
  color: #444;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.kursanmalan select {
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #39ace7 50%),
    linear-gradient(135deg, #39ace7 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.kursanmalan textarea {
  min-height: 180px;
  resize: vertical;
}

.kursanmalan input[type="text"]:focus,
.kursanmalan input[type="email"]:focus,
.kursanmalan input[type="tel"]:focus,
.kursanmalan input[type="number"]:focus,
.kursanmalan input[type="date"]:focus,
.kursanmalan input[type="url"]:focus,
.kursanmalan select:focus,
.kursanmalan textarea:focus {
  outline: none;
  border-color: #39ace7;
  box-shadow: 0 0 0 3px rgba(57, 172, 231, 0.12);
}

.kursanmalan ::placeholder {
  color: #9aa3ab;
  opacity: 1;
}

.kursanmalan .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: #39ace7;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, transform .15s ease;
}

.kursanmalan .wpcf7-submit:hover {
  background: #2698d2;
}

.kursanmalan .wpcf7-submit:active {
  transform: translateY(1px);
}

.kursanmalan .has-spinner {
  margin: 0;
}

.kursanmalan .wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
}

.kursanmalan .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid #dceef7;
  background: #f7fbfd;
  color: #44515c;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.kursanmalan .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #c43b3b;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.kursanmalan .wpcf7 form.invalid .wpcf7-response-output,
.kursanmalan .wpcf7 form.unaccepted .wpcf7-response-output,
.kursanmalan .wpcf7 form.failed .wpcf7-response-output {
  border-color: #f1d2d2 !important;
  background: #fff8f8 !important;
  color: #8a3d3d !important;
}

.kursanmalan .wpcf7 form.sent .wpcf7-response-output {
  border-color: #cfe9d8 !important;
  background: #f4fbf7 !important;
  color: #2f6b45 !important;
}

.kursanmalan .wpcf7-list-item {
  margin: 0 18px 8px 0;
}

.kursanmalan .wpcf7-acceptance label,
.kursanmalan .wpcf7-checkbox label,
.kursanmalan .wpcf7-radio label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.kursanmalan input[type="checkbox"],
.kursanmalan input[type="radio"] {
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  margin: 0;
  accent-color: #39ace7;
}

@media (max-width: 767px) {
  .kursanmalan .wpcf7 form {
    padding: 24px;
  }

  .kursanmalan textarea {
    min-height: 150px;
  }

  .kursanmalan .wpcf7-submit {
    width: 100%;
  }
}


.entry-content:has(> .parttotal + #contactinfo.partright),
.entry-content:has(> #contactinfo.partright + .parttotal) {
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(calc(100vw - 64px), 1280px) !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 72px 0 88px !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 318px !important;
  column-gap: 44px !important;
  align-items: start !important;
  box-sizing: border-box !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal,
.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright {
  box-sizing: border-box !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 0 0 44px !important;
  position: static !important;
  border-left: 1px solid #e6e6e6 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > br,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > br {
  display: none !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal h1,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal h1 {
  margin: 0 0 24px !important;
  color: #2f2f2f !important;
  font-family: "Merriweather", Georgia, serif !important;
  font-size: 38px !important;
  line-height: 1.16 !important;
  font-weight: 700 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal h2,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal h2 {
  margin: 36px 0 14px !important;
  color: #2f2f2f !important;
  font-family: "Merriweather", Georgia, serif !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal p,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal p,
.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal li,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal li {
  margin: 0 0 18px !important;
  color: #666 !important;
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal a,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal a {
  color: #39ace7 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal a:hover,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal a:hover {
  text-decoration: underline !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal strong,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal strong,
.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal b,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal b {
  color: #2f2f2f !important;
  font-weight: 700 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal u,
.entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal u {
  text-decoration: none !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:first-of-type,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:first-of-type {
  margin: 0 0 18px !important;
  color: #2f2f2f !important;
  font-family: "Merriweather", Georgia, serif !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:first-of-type + p,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:first-of-type + p {
  margin: 0 0 32px !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:first-of-type + p a,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:first-of-type + p a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 12px 26px !important;
  border-radius: 999px !important;
  background: #39ace7 !important;
  color: #fff !important;
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
  text-decoration: none !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > h2,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > h2 {
  margin: 0 0 16px !important;
  color: #2f2f2f !important;
  font-family: "Merriweather", Georgia, serif !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright p,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright p,
.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright td,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright td,
.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright a,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright a {
  font-family: "Open Sans", Arial, sans-serif !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p {
  color: #444 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 0 14px !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p strong,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p strong {
  color: #2f2f2f !important;
  font-weight: 700 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright table,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright table {
  width: 100% !important;
  margin: 0 0 18px !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  position: static !important;
  left: auto !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright table td[colspan],
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright table td[colspan] {
  display: none !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright table td,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright table td {
  padding: 0 0 2px !important;
  color: #444 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  vertical-align: top !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright table tr:not(:last-child) td,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright table tr:not(:last-child) td {
  padding-bottom: 10px !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright table td:first-child,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright table td:first-child {
  width: 48% !important;
  padding-right: 10px !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright table td:last-child,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright table td:last-child {
  width: 52% !important;
  text-align: right !important;
  white-space: nowrap !important;
  color: #2f2f2f !important;
  font-weight: 600 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:last-of-type,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:last-of-type {
  margin: 0 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:last-of-type a,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:last-of-type a {
  color: #39ace7 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:last-of-type a:hover,
.entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:last-of-type a:hover {
  text-decoration: underline !important;
}

@media (max-width: 1100px) {
  .entry-content:has(> .parttotal + #contactinfo.partright),
  .entry-content:has(> #contactinfo.partright + .parttotal) {
    width: calc(100vw - 40px) !important;
    grid-template-columns: 1fr !important;
    row-gap: 40px !important;
  }

  .entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright,
  .entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright {
    padding: 40px 0 0 0 !important;
    border-left: 0 !important;
    border-top: 1px solid #e6e6e6 !important;
  }
}

@media (max-width: 767px) {
  .entry-content:has(> .parttotal + #contactinfo.partright),
  .entry-content:has(> #contactinfo.partright + .parttotal) {
    width: calc(100vw - 32px) !important;
    padding: 48px 0 60px !important;
  }

  .entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal h1,
  .entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal h1 {
    font-size: 30px !important;
  }

  .entry-content:has(> .parttotal + #contactinfo.partright) > .parttotal h2,
  .entry-content:has(> #contactinfo.partright + .parttotal) > .parttotal h2,
  .entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > p:first-of-type,
  .entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > p:first-of-type,
  .entry-content:has(> .parttotal + #contactinfo.partright) > #contactinfo.partright > h2,
  .entry-content:has(> #contactinfo.partright + .parttotal) > #contactinfo.partright > h2 {
    font-size: 22px !important;
  }
}
.parttotal h1 {display:none;}
