@import url(../font/font.css);
* {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.4;
}

strong {
  font-weight: 600;
}

body {
  padding: env(safe-area-inset-top, 20px) env(safe-area-inset-right, 20px) env(safe-area-inset-bottom, 20px) env(safe-area-inset-left, 20px);
}

main {
  flex: 1 0 auto;
}

footer {
  background-color: #333333;
  width: 100%;
  flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

p {
  color: #505050;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 400;
}

.px-layout {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 578px) {
  .px-layout {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bg_white {
  background-color: #ffffff;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

header {
  z-index: 100;
}

nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f4f4f4;
}
nav .logo {
  max-height: 50px;
}
nav .logo img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 578px) {
  nav .logo img {
    height: 40px;
  }
}
nav .menu_container ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
nav .menu_container ul li {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 15px;
  margin-left: 15px;
  position: relative;
}
nav .menu_container ul li:nth-last-child(1) {
  margin-right: 0;
}
nav .menu_container ul li a {
  text-decoration: none;
  color: #333333;
  padding: 15px 0;
}
nav .menu_container ul li a:hover {
  color: #a71822;
}
nav .menu_container ul li a.active {
  color: #a71822;
}
nav .menu_container .drop_menu {
  position: absolute;
  background-color: #ffffff;
  width: 250px;
  border-top: 3px solid #a71822;
  top: 40px;
  box-shadow: 0 0px 3px #a7a7a7;
  display: none;
  z-index: 2;
}
nav .menu_container .drop_menu ul {
  flex-direction: column;
}
nav .menu_container .drop_menu li {
  margin: 0;
  padding: 25px;
  border-bottom: 1px solid #000;
  width: 100%;
}
nav .menu_container .drop_menu li:nth-last-child(1) {
  border-bottom: none;
}
nav .menu_container .drop_menu li a {
  width: 100%;
  padding: 25px 0;
}
nav .burger {
  display: none;
}
nav .overlay {
  display: none;
}
nav .close_menu {
  display: none;
}
@media screen and (max-width: 1100px) {
  nav .overlay {
    background-color: #333333;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0.7;
    z-index: 20;
  }
  nav .menu_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    padding: 70px 30px;
    overflow-y: auto;
    background-color: #ffffff;
    z-index: 21;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
  }
  nav .menu_container .close_menu {
    display: block;
    position: absolute;
    top: 5px;
    right: 20px;
    padding: 5px;
    transform: rotate(45deg);
    font-size: 2.5rem;
    color: #333333;
    cursor: pointer;
  }
  nav .menu_container ul {
    flex-direction: column;
  }
  nav .menu_container ul li {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  nav .menu_container .drop_menu {
    top: 60px;
  }
  nav .open {
    transform: translateX(0) !important;
  }
  nav .burger {
    display: block;
  }
  nav .burger .line {
    height: 4px;
    width: 30px;
    margin-bottom: 5px;
    background-color: #333333;
  }
}

a {
  text-decoration: none;
  color: #006eff;
}
a:focus {
  color: inherit;
}

.btn {
  background-color: #444;
  padding: 8px 14px;
  font-size: 1rem;
  border-radius: 3px;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.intro {
  background-image: url("https://www.notar-eisenschmidt.de/public/images/slide_2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
}
.intro .overlay {
  background-color: rgba(0, 0, 0, 0.19);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.intro .tint {
  background: url("https://www.notar-eisenschmidt.de/public/images/pattern.png") repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.intro .container-fluid {
  z-index: 2;
  margin-top: 70px;
}
.intro .col {
  text-align: center;
}
.intro .btn {
  background-color: #ffffff;
  color: #333;
  font-size: 1.1rem;
  padding: 12px 25px;
}
.intro h1 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 769px) {
  .intro h1 {
    font-size: 2.5rem;
  }
}
.intro .down {
  margin-top: 70px;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.intro .down img {
  height: 20px;
  cursor: pointer;
  align-self: flex-end;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
.intro .down .bounce-2 {
  animation-name: bounce-2;
  animation-timing-function: ease;
}
@keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

.mb_25 {
  margin-bottom: 25px;
}

.team_card {
  background-color: #ffffff;
  border-radius: 5px;
  border: solid 1px #e2e2e2;
}
.team_card img {
  width: 100%;
}
.team_card .team_card_body {
  padding: 20px 15px 45px;
  text-align: center;
}
.team_card .team_card_body h1 {
  font-size: 1.3rem;
  margin-bottom: 0px;
  color: #a71822;
  text-transform: capitalize;
  text-align: center;
}
.team_card .team_card_body p {
  color: #333333;
  margin-bottom: 30px;
}
.team_card .team_card_body a {
  background-color: #e2e2e2;
  padding: 7px 15px;
  border-radius: 3px;
  color: #a71822;
  transition: 0.5s all;
}
.team_card .team_card_body a:hover {
  color: #ffffff;
  background-color: #a71822;
}

._card {
  background-color: #ffffff;
  border-radius: 5px;
  border: solid 1px #e2e2e2;
  padding: 15px;
}
._card .__header {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 12px;
}
._card .__body {
  padding: 15px 0 0;
}
._card a {
  color: #006eff;
}

.blurb {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #f4f4f4;
}
.blurb .row {
  margin-right: -20px;
  margin-left: -20px;
}
.blurb .mb_25 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}
.blurb h1 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  color: #333333;
  text-transform: uppercase;
}
@media screen and (max-width: 578px) {
  .blurb h1 {
    font-size: 1.7rem;
    text-align: left;
  }
}
.blurb .divider {
  border-bottom: solid 3px #a71822;
  width: 50px;
  margin: auto;
  margin-top: -45px;
  margin-bottom: 45px;
}
@media screen and (max-width: 578px) {
  .blurb .divider {
    margin-left: 0;
  }
}
.blurb .team_header {
  text-align: center;
}
.blurb .team_header h1 {
  margin-bottom: 0;
  text-align: center;
}
.blurb .team_header .divider {
  margin-top: 5px;
}
@media screen and (max-width: 578px) {
  .blurb .team_header .divider {
    margin-left: auto;
    margin-right: auto;
  }
}
.blurb ._card {
  text-align: left;
  padding: 20px;
  transition: 0.5s all;
  height: 100%;
}
.blurb ._card .image {
  height: 70px;
  width: 70px;
  background-color: #f0f0f0;
  padding: 15px;
  margin-bottom: 13px;
  transition: 0.7s all;
  border-radius: 7%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blurb ._card img {
  width: 100%;
}
.blurb ._card h1 {
  font-size: 1.3rem;
  color: #a71822;
  margin-bottom: 8px;
  text-align: left;
  font-weight: 700;
  text-transform: capitalize;
}
.blurb ._card:hover {
  background-color: #f0f0f0;
}
.blurb ._card:hover .image {
  background-color: #ffffff;
  border-radius: 50%;
}
@media screen and (max-width: 769px) {
  .blurb ._card {
    padding: 20px 15px;
  }
  .blurb ._card p {
    font-size: 0.875rem;
  }
}

.blurb_bg_dark {
  background-color: #333333;
}
.blurb_bg_dark h1 {
  color: #ffffff;
}

.news_card {
  border: solid 5px #e2e2e2;
}
.news_card .__header p {
  font-size: 0.8rem;
  margin-bottom: 0;
}
.news_card p {
  margin-bottom: 10px;
}

.bg_white {
  background-color: #ffffff !important;
}

.mr_auto {
  margin-right: auto;
}

.tx_flend {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.main_profile {
  padding-top: 50px;
  margin-top: 50px;
}
.main_profile .py_50 {
  padding-bottom: 50px;
  padding-top: 50px;
}
.main_profile .img_bottom {
  position: relative;
}
.main_profile .img_bottom img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main_profile h1 {
  font-size: 3rem;
  font-weight: 400;
}
.main_profile .divider {
  border-bottom: 3px solid #a71822;
  width: 50px;
  margin-top: -5px;
  margin-bottom: 15px;
}
.main_profile h1,
.main_profile h3,
.main_profile p {
  text-align: justify;
}
.main_profile h3 {
  font-size: 2.1rem;
  margin-bottom: 8px;
}
.main_profile p {
  margin-bottom: 15px;
}
@media screen and (max-width: 769px) {
  .main_profile .py_50 {
    padding-bottom: 0;
  }
  .main_profile .tx_flend {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .main_profile h3 {
    font-size: 1.7rem;
  }
  .main_profile .img_bottom img {
    position: relative;
  }
}
@media screen and (max-width: 1100px) {
  .main_profile .py_50 {
    padding-top: 0px;
  }
}

@media screen and (max-width: 1100px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }
}
.blurb_bg_color {
  background-color: #a71822;
}
.blurb_bg_color h1 {
  color: #ffffff;
}
.blurb_bg_color .divider {
  border-color: #ffffff;
}

.faq {
  border: solid 1px #ffffff;
  border-radius: 5px;
}
.faq .faq_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 15px;
  position: relative;
  cursor: pointer;
}
.faq .faq_header h3 {
  color: #ffffff;
  margin-bottom: 0;
}
.faq .faq_header img {
  height: 10px;
  margin-left: 15px;
  transition: all 0.5s;
}
.faq .faq_header img.up {
  transform: rotate(182deg);
  margin-top: -8px;
}
.faq .faq_body {
  padding: 15px;
  display: none;
}
.faq .faq_body p {
  color: #ffffff;
}

.theme_form .theme_form_input {
  width: 100%;
  font-size: 1rem;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #333333;
  margin-bottom: 15px;
}
.theme_form a {
  color: #006eff;
}
.theme_form .form_btn {
  background-color: #a71822;
  border: solid 2px #a71822;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 25px;
}
.theme_form .alert_success {
  color: #068b5a;
  background-color: #afffd1;
  padding: 15px;
  margin-top: 20px;
  line-height: 1.5;
}

.white {
  color: #ffffff;
}

.contact {
  padding-bottom: 60px;
}
.contact .container {
  border: solid 1px #cecece;
  position: relative;
  margin-top: -100px;
  background-color: #ffffff;
}
.contact .__div {
  padding-top: 50px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 578px) {
  .contact .container {
    border: none;
    margin-top: 10px;
  }
  .contact .__div {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 578px) {
  .contact h1 {
    font-size: 1.2rem;
  }
}
.contact .icon_text {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.contact .icon_text p,
.contact .icon_text a {
  color: #ffffff;
  font-size: 1.1rem;
}
@media screen and (max-width: 578px) {
  .contact .icon_text p,
  .contact .icon_text a {
    font-size: 1rem;
  }
}
.contact .icon_text img {
  height: 20px;
  margin-right: 15px;
}
@media screen and (max-width: 578px) {
  .contact .icon_text img {
    height: 15px;
  }
}

.bg_color {
  background-color: #a71822;
}

footer {
  padding-top: 50px;
  padding-bottom: 10px;
}
footer h3 {
  color: #ffffff;
  margin-bottom: 20px;
}
footer h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
}
footer h4 a {
  color: #ffffff;
}
footer .team_footer {
  margin-bottom: 15px;
}
footer .team_footer h4 {
  margin-bottom: 2px;
}
footer .team_footer p {
  font-size: 0.875rem;
  opacity: 0.6;
  color: #ffffff;
}
footer .social {
  margin-top: 35px;
}
footer .social a {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 15px;
}
footer .social img {
  height: 25px;
}
footer .footer_bottom {
  padding: 20px 0 25px;
}
footer .footer_bottom p {
  color: #ffffff;
  opacity: 0.7;
  font-size: 0.85rem;
}

.kanzlei {
  background-color: #ffffff;
}
.kanzlei h2 {
  font-size: 3rem;
  color: #a71822;
}
.kanzlei h4 {
  font-size: 2rem;
  font-weight: 500;
}
.kanzlei h6 {
  color: #a71822;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.kanzlei img {
  max-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.kanzlei p {
  margin-bottom: 15px;
}
@media screen and (max-width: 578px) {
  .kanzlei h2 {
    font-size: 2rem;
  }
  .kanzlei h4 {
    font-size: 1.2rem;
  }
}

.al_center {
  align-items: center;
}

.page_header {
  background-color: #a71822;
  padding-bottom: 15px;
  padding-top: 40px;
}
.page_header h1 {
  font-size: 2.2rem;
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 578px) {
  .page_header {
    padding-bottom: 0px;
    padding-top: 25px;
  }
  .page_header h1 {
    font-size: 1.2rem;
  }
}

.person {
  padding-top: 10px;
  padding-bottom: 40px;
}
.person ._person {
  display: flex;
  background-color: #f4f4f4;
  margin-top: 40px;
  margin-bottom: 40px;
  align-items: center;
}
.person ._person_div_one,
.person ._person_div_two {
  width: 50%;
}
@media screen and (max-width: 578px) {
  .person ._person {
    flex-direction: column;
  }
  .person ._person_div_one,
  .person ._person_div_two {
    width: 100%;
  }
}
.person img {
  width: 100%;
}
.person ._person_div_two {
  padding: 20px;
}
.person h2 {
  color: #a71822;
  font-size: 2rem;
  margin-bottom: 0;
}
.person h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.person h4 {
  margin-bottom: 10px;
}
.person h4 span {
  font-size: 0.875rem;
  font-weight: 400;
}
.person p {
  margin-bottom: 10px;
}
@media screen and (max-width: 769px) {
  .person h2 {
    font-size: 1.3rem;
  }
  .person h3 {
    font-size: 1rem;
  }
  .person h4 {
    font-size: 0.95rem;
  }
  .person p {
    font-size: 0.875rem;
    margin-bottom: 7px;
  }
}

.accor_theme .accor {
  border: solid 1px #e2e2e2;
  margin-bottom: 20px;
}
.accor_theme .accor_header {
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
}
.accor_theme .accor_header.closed {
  background-color: #f4f4f4;
  cursor: pointer;
}
.accor_theme .accor_body {
  padding: 5px 15px 15px;
  display: none;
}
.accor_theme .accor_body p {
  margin-bottom: 12px;
}
.accor_theme .accor_body p:nth-last-child(1) {
  margin-bottom: 0;
}

.max_85 {
  width: 100%;
  max-width: 85%;
}
@media screen and (max-width: 1200px) {
  .max_85 {
    max-width: 100%;
  }
}

.notariat {
  background: url("https://www.notar-eisenschmidt.de/public/images/notariat_cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 370px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.notariat h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.overlay_white {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4525560566) 0%, rgba(255, 255, 255, 0.5506232835) 100%);
  z-index: -1;
}

.btn.btn_primary {
  background-color: #a71822;
  border: 1px solid #a71822;
  color: #ffffff;
}
.btn.btn_primary a {
  color: #ffffff;
  padding: 15px 0;
}

.page_ {
  padding-top: 60px;
  padding-bottom: 35px;
}
.page_ p {
  margin-bottom: 16px;
}
.page_ p:nth-last-child(1) {
  margin-bottom: 0;
}
.page_ ul {
  list-style-position: inside;
  margin-bottom: 20px;
}
.page_ ul li {
  margin-bottom: 15px;
}

.blurb_nav .blurb_nav_container {
  display: flex;
}
.blurb_nav .blurb_nav_container .tab_toggle {
  width: 16.6666%;
  cursor: pointer;
}
.blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  transition: all 0.8s;
}
.blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item .image {
  background-color: #f4f4f4;
  margin-bottom: 25px;
  border-radius: 8px;
  transition: all 1s;
  padding: 20px;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
}
.blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item .image img {
  width: 100%;
}
.blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item:hover {
  background-color: #a71822;
}
.blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item:hover .image {
  background-color: #ffffff;
  border-radius: 50px;
}
.blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item:hover h3 {
  color: #ffffff;
}
.blurb_nav .blurb_nav_container .active_tab {
  background-color: #f0f0f0;
}
.blurb_nav .blurb_nav_container .active_tab .image {
  background-color: #ffffff;
  border-radius: 50px;
}
@media screen and (max-width: 769px) {
  .blurb_nav .blurb_nav_container {
    flex-wrap: wrap;
  }
  .blurb_nav .blurb_nav_container .tab_toggle {
    width: 33.33%;
  }
}
@media screen and (max-width: 578px) {
  .blurb_nav .blurb_nav_container .tab_toggle {
    width: 50%;
  }
  .blurb_nav .blurb_nav_container .tab_toggle .blurb_nav_item {
    padding: 20px;
  }
}
.blurb_nav h3 {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .blurb_nav h3 {
    font-size: 0.875rem;
  }
}

.blurb_tab {
  background-color: #f0f0f0;
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
}
.blurb_tab .close_tab {
  display: none;
}
@media screen and (max-width: 769px) {
  .blurb_tab {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - env(safe-area-inset-bottom));
    overflow-y: auto;
    border: solid 1px #cecece;
    z-index: 101;
  }
  .blurb_tab .close_tab {
    display: block;
    font-size: 3rem;
    position: fixed;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 0;
    padding-left: 2px;
    height: 23px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 12px;
    right: 10px;
    transform: rotate(45deg);
    color: #999999;
    font-size: 2rem;
    border: solid 1px #cecece;
  }
}
.blurb_tab h1 {
  margin-bottom: 15px;
}
.blurb_tab p {
  margin-bottom: 8px;
}
.blurb_tab ul {
  margin-left: 15px;
  margin-bottom: 15px;
}
.blurb_tab ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.blurb_tab.active_tab {
  display: block;
  background-color: #f0f0f0;
}

.form_dowload {
  padding-top: 60px;
  padding-bottom: 35px;
}
.form_dowload .dwn_head {
  background-color: #f4f4f4;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 20px;
}
.form_dowload .dwn_head img {
  height: 20px;
}
.form_dowload .dwn_head h3 {
  margin-bottom: 0;
  margin-left: 15px;
}
.form_dowload .dwn_body {
  padding: 0 15px;
}
.form_dowload .dwn_body p {
  margin-bottom: 20px;
  font-weight: 500;
}
.form_dowload .dwn_body a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  color: #a71822;
  width: -moz-fit-content;
  width: fit-content;
}
.form_dowload .dwn_body a img {
  height: 18px;
  margin-right: 8px;
}

.info_download {
  background-color: #f4f4f4;
  padding-top: 60px;
  padding-bottom: 60px;
}
.info_download .title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}

.text_underline {
  text-decoration: underline;
}

.mt_20 {
  margin-top: 20px;
}

.mb_35 {
  margin-bottom: 35px;
}

.mb_10 {
  margin-bottom: 10px;
}

.table {
  overflow-x: auto;
}

.table_ {
  width: 100%;
  border-collapse: collapse;
}
.table_ thead th {
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border-top: solid 1px #cecece;
  border-bottom: 1px solid #cecece;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.table_ thead th:first-child {
  border-left: solid 1px #cecece;
}
.table_ thead th:nth-last-child(1) {
  border-right: solid 1px #cecece;
}
.table_ thead th.ta_right {
  text-align: right;
}
.table_ tbody td {
  padding: 14px 12px;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid #cecece;
  font-size: 0.875rem;
  white-space: nowrap;
  vertical-align: top;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.table_ tbody td:first-child {
  border-left: solid 1px #cecece;
}
.table_ tbody td:nth-last-child(1) {
  border-right: solid 1px #cecece;
}
.table_ tbody td small {
  line-height: 2;
  position: relative;
  top: 3px;
}
.table_ tbody td.bbs {
  border-bottom: 2px solid #333;
}
.table_ tbody td.txh {
  font-size: 1rem;
  font-weight: 600;
}
.table_ tbody td.ta_right {
  text-align: right;
}

.nothead tbody tr:first-child td {
  border-top: solid 1px #cecece;
}

.blog_header {
  padding-top: 50px;
}
.blog_header p small {
  color: #b3b3b3;
}

.blog_content p {
  margin-bottom: 15px;
}
@media screen and (max-width: 578px) {
  .blog_content p {
    font-size: 0.875rem;
  }
}
.blog_content .color_heading {
  color: #a71822;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
}
.blog_content ol {
  margin-left: 25px;
  padding: 0;
}
.blog_content ol p {
  margin-left: -28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 578px) {
  .blog_content ol p {
    margin-left: -25px;
  }
}
.blog_content ol li {
  margin-bottom: 25px;
  color: #686868;
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 578px) {
  .blog_content ol li {
    font-size: 0.875rem;
  }
}
.blog_content ol li::marker {
  color: #333333;
  font-weight: 500;
}
.blog_content .sec_no {
  font-size: 1.2rem;
  font-weight: 600;
}

.error_404 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.error_404 h1 {
  font-size: 25vw;
  font-weight: 900;
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
}
.error_404 p {
  color: #333333;
  text-align: center;
  margin-bottom: 0;
}

.cookie_container {
  padding: 1rem 1rem 1.3rem;
  background-color: #f8f8f8;
  position: fixed;
  bottom: -100%;
  right: 20px;
  border-radius: 9px;
  z-index: 99999;
  box-shadow: 0 0 15px #b3b3b3;
  width: 100%;
  max-width: 500px;
  transition: 2s;
}
@media screen and (max-width: 578px) {
  .cookie_container {
    max-width: calc(100% - 20px);
    left: 10px;
  }
}

.cookie_container.active {
  bottom: 20px;
}

.cookie_btn {
  background-color: #a71822;
  color: #ffffff;
  border: 1px solid #a71822;
  border-radius: 3px;
  cursor: pointer;
  padding: 7px 14px;
  font-size: 1rem;
  margin-left: auto;
  margin-top: 15px;
}
.cookie_btn:hover {
  background-color: #d41e2b;
}

#parkingBild {
  position: absolute;
  bottom: 125px;
  right: 12px;
  z-index: 999999;
  cursor: pointer;
}

.map {
  position: relative;
}

.parking {
  padding-top: 30px;
  padding-bottom: 60px;
}
.parking img {
  max-width: 100%;
}
.parking .title {
  font-size: 1.5rem;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
}