@charset "UTF-8";
/*
Theme Name: Zimmerei Bittl
Description: Theme Zimmerei Bernhard Bittl, Pollenfeld
Author: OAO Kreation GmbH
Template:
Version: 2.0.1
*/
/* ---- FONT ---- */
@import url("https://use.typekit.net/iyt7lld.css");
/* ---- DEF ---- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: #ab6d36;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}

a, p, label, span, article, button, li, th, td {
  font-family: interstate, sans-serif;
  font-weight: 300;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 140%;
}

strong {
  font-weight: 700;
}

a {
  color: #ab6d36;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
a:link, a:visited {
  text-decoration: none;
}

.clear {
  clear: both;
}

::selection,
::-moz-selection {
  background: #ab6d36;
  color: #fff;
}

/* ---- MAIN ---- */
img {
  display: block;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
img.circle {
  border-radius: 50%;
}

.no-margin {
  margin-bottom: 0px !important;
}

.darkened {
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
}

.darkened--50 {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}

.darkened--70 {
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: darken;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  padding: 0px;
  margin: 0px;
  z-index: 300;
  transition: all 1s ease;
  background: #fff;
}
header .header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 15px;
  transition: all 1s ease;
}
header.fixed-header .header-inner {
  padding: 10px 15px;
  max-height: 110px;
}
header.fixed-header .brand {
  max-width: 400px;
}
header .brand {
  display: block;
  width: calc(33.3333333333% - 40px);
  max-width: 400px;
  margin-bottom: 0px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 30px 20px;
  transition: all 1s ease;
  background-color: #ab6d36;
}
header nav {
  display: flex;
  width: 20%;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}
header nav .icon-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
header nav .icon-holder .floating-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
header nav .icon-holder .floating-icons a i {
  font-size: 20px;
}
header nav .menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
  padding: 10px 20px;
  background: #fff;
}
header nav .menu-toggle span {
  height: 3px;
  width: 25px;
  background: #ab6d36;
  margin: 4px 0;
  transition: all 1s ease;
}
header nav #menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 50vw;
  height: 100vh;
  background: #ab6d36;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 1s ease-in-out;
  transform: translateX(-100%);
  display: flex;
  align-items: center;
}
header nav #menu:after {
  left: 0px;
  transform: translateX(0vw);
}
header nav #menu.collapsed {
  transform: translateX(0);
}
header nav #menu.collapsed .menu-toggle span {
  background: #fff;
}
header nav #menu.collapsed:after {
  position: fixed;
  display: block;
  width: 50vw;
  height: 100vh;
  content: " ";
  top: 0px;
  transform: translateX(50vw);
  background: rgba(255, 255, 255, 0.85);
}
header nav #menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header nav #menu ul li {
  list-style: none;
  padding: 20px 50px;
  width: 100%;
}
header nav #menu ul li a {
  font-size: 1.75rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 770px) {
  header {
    height: 96px;
  }
  header nav {
    width: 150px !important;
    margin-left: 20px;
  }
  header .brand {
    width: calc(100% - 150px);
    max-width: 350px;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  header {
    height: 96px;
  }
  header .brand {
    padding: 20px 15px;
  }
  header nav #menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: calc(100vw - 30px);
  }
  header nav #menu.collapsed {
    transform: translateX(0);
  }
  header nav #menu.collapsed .menu-toggle span {
    background: #fff;
  }
  header nav #menu.collapsed:after {
    display: none;
  }
  header nav #menu.collapsed ul li {
    padding-left: 25px;
    padding-right: 25px;
  }
  header nav #menu.collapsed ul li a {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  header {
    height: 81px;
  }
  header nav {
    width: 50px !important;
    margin-left: 0px;
  }
  header nav .icon-holder .floating-icons {
    display: none;
  }
  header .brand {
    width: calc(100% - 70px);
    max-width: 350px;
    padding: 20px;
    margin-right: 0px;
  }
}
/* ---- SECTION ---- */
section {
  width: 100vw;
  background-size: auto;
  background-position: center center;
  padding-bottom: 100px;
}
section:first-of-type {
  padding-top: 100px !important;
}
section#start {
  padding-top: 100px;
}
section#start .content {
  min-height: 70vh;
}
section#start .content:before {
  display: block;
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section#start .content .flex-row {
  position: relative;
  z-index: 2;
}
section#start .content h1, section#start .content h2 {
  color: #fff !important;
  font-weight: 700;
}
section.flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
section.flex.flex-start {
  align-items: flex-start;
}
section.flex.flex-end {
  align-items: flex-end;
}
section.full-height {
  min-height: 100vh;
}
section.height--50 {
  min-height: 50vh;
}
section.height--55 {
  min-height: 55vh;
}
section.height--60 {
  min-height: 60vh;
}
section.height--65 {
  min-height: 65vh;
}
section.height--70 {
  min-height: 70vh;
}
section.height--75 {
  min-height: 75vh;
}
section.padding {
  padding: 100px;
}
section.sticky {
  position: sticky;
  top: 0px;
}

/* ---- HEADER IMG ---- */
.header-img {
  width: 100%;
  height: 50vh;
  margin-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
}
.header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 600px) {
  .header-img {
    width: 100%;
    height: 35vh;
    margin-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* ---- CONTENT ---- */
.content {
  padding-top: 150px !important;
  padding-bottom: 100px !important;
  color: #000000;
}
.content.container {
  max-width: calc(100% - 200px);
  margin: 0 auto;
  position: relative;
}
.content.container:last-of-type {
  padding-bottom: 200px;
}
.content.container.bg-grey {
  background: #e8e8e8;
}
.content.container.bg-brown {
  background: #ab6d36;
  position: relative;
  color: #fff !important;
}
.content.container.bg-brown .flex-row {
  z-index: 2;
}
.content.container.bg-brown h1, .content.container.bg-brown h2, .content.container.bg-brown h3, .content.container.bg-brown h4, .content.container.bg-brown h5, .content.container.bg-brown h6,
.content.container.bg-brown p, .content.container.bg-brown ul, .content.container.bg-brown ol, .content.container.bg-brown label, .content.container.bg-brown span {
  color: #fff !important;
}
.content.container .flex-row {
  max-width: 1400px !important;
  margin: 0 auto;
}
.content.container.flex-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.content.container.min-height--70 {
  min-height: 70vh;
}
.content.container .bg-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.content.container .bg-img img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.content.full-width {
  max-width: none;
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.content.padding {
  padding: 100px !important;
}
.content.sticky {
  position: sticky;
  top: 0px;
}
.content .flex-row .col.box {
  padding: 30px;
  background: #e8e8e8;
  border-radius: 0px;
}
.content .flex-row .col.box h1, .content .flex-row .col.box h2, .content .flex-row .col.box h3, .content .flex-row .col.box h4, .content .flex-row .col.box h5, .content .flex-row .col.box h6 {
  color: #ab6d36 !important;
}
.content .flex-row .col.box p, .content .flex-row .col.box ul, .content .flex-row .col.box ol, .content .flex-row .col.box label, .content .flex-row .col.box span {
  color: #222 !important;
}
.content .flex-row .col.box p strong, .content .flex-row .col.box ul strong, .content .flex-row .col.box ol strong, .content .flex-row .col.box label strong, .content .flex-row .col.box span strong {
  color: #ab6d36 !important;
}
.content .flex-row .col.box.bg-brown {
  background: #ab6d36;
  color: #fff !important;
}
.content .flex-row .col.box.bg-brown h1, .content .flex-row .col.box.bg-brown h2, .content .flex-row .col.box.bg-brown h3, .content .flex-row .col.box.bg-brown h4, .content .flex-row .col.box.bg-brown h5, .content .flex-row .col.box.bg-brown h6,
.content .flex-row .col.box.bg-brown p, .content .flex-row .col.box.bg-brown ul, .content .flex-row .col.box.bg-brown ol, .content .flex-row .col.box.bg-brown label, .content .flex-row .col.box.bg-brown span {
  color: #fff !important;
}
.content .flex-row .col.box.bg-brown h1 strong, .content .flex-row .col.box.bg-brown h2 strong, .content .flex-row .col.box.bg-brown h3 strong, .content .flex-row .col.box.bg-brown h4 strong, .content .flex-row .col.box.bg-brown h5 strong, .content .flex-row .col.box.bg-brown h6 strong,
.content .flex-row .col.box.bg-brown p strong, .content .flex-row .col.box.bg-brown ul strong, .content .flex-row .col.box.bg-brown ol strong, .content .flex-row .col.box.bg-brown label strong, .content .flex-row .col.box.bg-brown span strong {
  color: #fff !important;
}
.content .flex-row .col.box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  object-position: center center;
  margin-bottom: 25px;
}
.content h1, .content h2 {
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 20px;
}
.content h1.big, .content h2.big {
  font-size: 4.5rem;
  line-height: 4.5rem;
}
.content h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 20px;
}
.content h4 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
.content p {
  line-height: 1.55rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.content ul, .content p ul {
  padding-left: 10px;
}
.content ul li, .content p ul li {
  line-height: 1.55rem;
  font-weight: 400;
  margin-bottom: 5px;
  padding-left: 10px;
}
.content ul li::marker, .content p ul li::marker {
  content: "»";
  font-size: 1.55em;
  color: #ab6d36;
}
.content label, .content span {
  line-height: 1.55rem;
  font-weight: 400;
}
.content .text-pull-center {
  text-align: center;
}
.content .text-pull-right {
  text-align: right;
}
.content a.button {
  display: inline-block;
  min-height: 38px;
  padding: 8px 25px 5px;
  color: #fff;
  background: #ab6d36;
  margin: 0px 3px;
  font-weight: 500;
  text-transform: uppercase;
}
.content a.button.outline {
  background: none;
  border: 1px solid #ab6d36;
  color: white;
}
.content .social-links {
  display: block;
  padding: 8px 0px 0px;
}
.content .social-links a.social-link-single {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}
.content .social-links a.social-link-single:last-of-type {
  margin-right: 0px;
}
.content button {
  display: inline-block;
  min-height: 38px;
  padding: 8px 15px;
  color: black;
  background: white;
  border: none;
  outline: none;
  margin: 0px 3px;
}
.content button.outline {
  background: none;
  border: 1px solid white;
  color: white;
}
.content .highlight-button {
  display: flex;
  aspect-ratio: 1;
  flex-direction: row;
  align-items: center;
  width: 180px;
  background: #ab6d36;
  border: 10px solid #fff;
  position: absolute;
  top: -90px;
  right: 50px;
  z-index: 5;
  border-radius: 50%;
}
.content .highlight-button.left-bottom {
  top: auto;
  right: auto;
  bottom: -90px;
  left: 50px;
}
.content .highlight-button span {
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 120%;
}

@media (max-width: 600px) {
  #intro {
    padding-top: 80px;
  }
  .content {
    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }
  .content.container {
    max-width: calc(100% - 30px);
    padding-top: 50px !important;
    padding-bottom: 40px !important;
    margin: 0 auto;
  }
  .content.full-width {
    max-width: none;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .content.full-height {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 0px !important;
  }
  .content.full-height .flex-row {
    width: 100%;
    flex-direction: column;
  }
  .content.full-height .flex-row .col {
    display: flex;
    align-items: center;
  }
  .content.full-height .flex-row .col.padding-left--150 {
    padding-left: 0px;
  }
  .content.full-height .flex-row .col.padding-right--150 {
    padding-right: 0px;
  }
  .content.full-height .flex-row .col.lg-6 {
    width: 100%;
  }
  .content.full-height .flex-row .col:last-of-type {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .content.full-height .flex-row .col img.img--brand-start {
    max-width: 200px !important;
    margin: 0 auto;
  }
  .content.padding {
    padding: 15px !important;
  }
  .content h1, .content h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
    margin-bottom: 20px;
  }
  .content h1.big, .content h2.big {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .content h3 {
    font-size: 1.35rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
  }
  .content h4 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 10px;
  }
  .content .text-pull-center {
    text-align: center;
  }
  .content .text-pull-right {
    text-align: left !important;
  }
  .content .info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content .info .info--col {
    flex: 1 0 50%;
    padding: 15px 20px;
    border-right: none;
  }
  .content .info .info--col:first-of-type {
    border-right: 1px dotted #ab6d36;
    border-bottom: 1px dotted #ab6d36;
  }
  .content .info .info--col:nth-of-type(2) {
    border-bottom: 1px dotted #ab6d36;
  }
  .content .info .info--col:nth-of-type(3) {
    border-right: 1px dotted #ab6d36;
  }
  .content .info .info--col.width--50 {
    width: 50%;
  }
  .content .info .info--col:last-of-type {
    border-right: none;
  }
  .content .info .info--col span {
    text-align: center;
  }
  .content .info .info--col span.big {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 5px;
  }
  .content .highlight-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .content .highlight-container .highlight {
    flex: 1 0 100%;
    margin-bottom: 15px;
    padding-right: 15px;
  }
  .content .highlight-container .highlight i {
    width: 28px;
    font-size: 18px;
    margin-right: 8px;
  }
  #team .content.container {
    padding: 0px !important;
  }
  #team .content.container.min-height--70 {
    min-height: 0px !important;
  }
  #team .content.container .bg-img {
    display: block;
    width: 100%;
    position: relative;
  }
  #team .content.container .bg-img img {
    display: inline-block;
  }
}
/* ---- CONTENT SLIDER ---- */
.content-slider button {
  margin: auto 0px !important;
  z-index: 50;
}
.content-slider .carousel-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  bottom: 64px;
  margin-block: auto;
  height: fit-content;
  width: 48px;
  background: #ffffff !important;
  color: #ab6d36;
  border: none;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 100ms;
}
.content-slider .carousel-arrow:hover, .content-slider .carousel-arrow:focus {
  opacity: 1;
}
.content-slider .carousel-arrow.carousel-arrow--prev {
  left: 0px;
}
.content-slider .carousel-arrow.carousel-arrow--next {
  right: 0px;
}
.content-slider .carousel-container {
  width: 100%;
  padding-block: 16px 32px;
  overflow-x: auto;
  display: flex;
  width: 100%;
  gap: 25px;
  scroll-snap-type: x mandatory;
  flex-flow: row nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.content-slider .carousel-container.img--slider .carousel-slide {
  flex: 1 0 100%;
  aspect-ratio: 1.5;
}
.content-slider .carousel-container.img--slider .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content-slider .carousel-container.flex--1 .carousel-slide {
  flex: 1 0 100%;
  aspect-ratio: 1;
}
.content-slider .carousel-container.flex--1 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container.flex--4 .carousel-slide {
  flex: 1 0 25%;
  aspect-ratio: 1;
}
.content-slider .carousel-container.flex--4 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container.karriere .carousel-slide {
  flex: 1 0 100%;
  padding: 50px;
  border: 1px solid #ffffff;
}
.content-slider.title {
  width: 100%;
  height: 100%;
}
.content-slider.title .carousel-container {
  width: 100%;
  height: 100%;
  padding-block: 0px;
  gap: 0px;
}
.content-slider.title .carousel-container.img--slider .carousel-slide {
  flex: 1 0 100%;
  width: 100%;
  height: 100%;
}
.content-slider.title .carousel-container.img--slider .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container::-webkit-scrollbar {
  display: none !important;
  height: 14px;
  width: calc(100% - 48px);
}
.content-slider .carousel-container::-webkit-scrollbar-track {
  background: none !important;
}
.content-slider .carousel-container::-webkit-scrollbar-thumb {
  background: none !important;
}
.content-slider .carousel-container::-webkit-scrollbar-track-piece:start {
  background: none !important;
}
.content-slider .carousel-slide {
  flex: 1 0 90%;
  flex-flow: column nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
}
.content-slider .carousel-slide.hover--link {
  position: relative;
}
.content-slider .carousel-slide.hover--link:hover:after, .content-slider .carousel-slide.hover--link:focus:after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: " ";
  background: rgba(87, 63, 41, 0.5);
  width: 100%;
  height: 100%;
  transition: all 1s ease-in-out;
}
.content-slider .carousel-slide .flex-row.flex-bottom {
  height: 100%;
  min-height: 0px;
}
.content-slider .carousel-slide .flex-row.flex-bottom .col:first-of-type {
  height: 100% !important;
  align-self: flex-end !important;
}
.content-slider .carousel-slide .flex-row.flex-bottom .col:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.content-slider .carousel-slide .flex-row.flex-bottom .col:last-of-type {
  align-self: flex-end !important;
}
.content-slider .carousel-controls {
  display: block;
  width: 100%;
  text-align: center;
}
.content-slider .carousel-controls .carousel-controls--container {
  display: inline-block;
  margin: 0 auto;
}
.content-slider .carousel-controls a {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background: #fff !important;
  margin-right: 10px;
  opacity: 0.5;
}
.content-slider .carousel-controls a.active {
  opacity: 1;
}

@media (max-width: 800px) {
  .content-slider .carousel-slide {
    flex: 1 0 100%;
  }
  .content-slider .carousel-slide .flex-row {
    width: 80%;
    max-width: 500px;
  }
  .content-slider .carousel-slide .flex-row img {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .content-slider .carousel-container {
    width: 100%;
    padding-block: 16px 32px;
    overflow-x: auto;
    display: flex;
    width: 100%;
    gap: 25px;
    scroll-snap-type: x mandatory;
    flex-flow: row nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .content-slider .carousel-container * .carousel-slide, .content-slider .carousel-container.img--slider .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1.5;
  }
  .content-slider .carousel-container * .carousel-slide img, .content-slider .carousel-container.img--slider .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .content-slider .carousel-container *.flex--4 .carousel-slide, .content-slider .carousel-container.img--slider.flex--4 .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1;
  }
  .content-slider .carousel-container .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1.5;
  }
  .content-slider .carousel-container .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .content-slider .carousel-container.flex--4 .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1;
  }
  .content-slider .carousel-arrow {
    top: 0;
    bottom: 35px;
    margin-block: auto;
    height: fit-content;
    width: 30px;
    padding-top: 0px;
    padding-bottom: 5px;
    color: #ab6d36;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 1;
    transition: opacity 100ms;
  }
  .content-slider .carousel-arrow:hover, .content-slider .carousel-arrow:focus {
    opacity: 1;
  }
  .content-slider .carousel-arrow.carousel-arrow--prev {
    left: -20px;
  }
  .content-slider .carousel-arrow.carousel-arrow--next {
    right: -20px;
  }
}
/* ---- MODAL ---- */
.content .modal {
  display: none;
  position: fixed;
  align-items: center;
  z-index: 5000 !important;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.85);
}
.content .modal .modal-content {
  background-color: #fff;
  margin: auto auto;
  padding: 30px 30px 20px 30px;
  width: 100%;
  max-width: 800px;
  border-radius: 0px;
  position: relative;
}
.content .modal .modal-content h2, .content .modal .modal-content h3 {
  color: #ab6d36 !important;
}
.content .modal .modal-content p, .content .modal .modal-content ul, .content .modal .modal-content label, .content .modal .modal-content span {
  color: #222222 !important;
  margin-bottom: 15px;
}
.content .modal .close {
  color: #fff !important;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  cursor: pointer;
  background: #573f29;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .modal .close i {
  color: #ffffff;
}
.content .modal .close:hover {
  color: #fff;
  background: #ab6d36;
}

/* ---- TABS ---- */
.tab-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  background: #e8e8e8;
  position: sticky;
  z-index: 10;
  top: 100px;
}
.tab-buttons a {
  flex: 1 1 0;
  max-width: 100%;
}
.tab-buttons a button {
  background: #888;
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: none;
  cursor: pointer;
}
.tab-buttons a button span {
  display: inline;
  text-align: left;
  margin: 0;
  padding: 0;
  line-height: 120%;
}
.tab-buttons a button.active {
  background: #ab6d36;
  color: #fff;
}

.tab-content {
  display: none;
  margin: 0px -20px;
}
.tab-content.active {
  display: block;
}

/* ---- FORM ---- */
.cmxform {
  text-align: left;
}
.cmxform .col {
  margin-bottom: 10px;
}
.cmxform .col h3 {
  margin-bottom: 0px;
}
.cmxform label {
  width: 100%;
  margin-bottom: 5px;
  position: relative;
}
.cmxform label.required::after {
  content: " *";
  position: absolute;
  top: 0;
  right: -7px;
  color: #573f29;
  font-size: 16px;
}
.cmxform input[type=checkbox] {
  display: inline-block;
  width: auto;
  float: left;
  margin-top: 5px;
  margin-right: 5px;
}
.cmxform input,
.cmxform textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #573f29;
  outline: none;
  display: block;
  font-family: interstate, sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.cmxform input:hover, .cmxform input:focus,
.cmxform textarea:hover,
.cmxform textarea:focus {
  border-bottom: 1px solid #ab6d36;
  outline: none;
}
.cmxform textarea {
  display: block;
  width: 100%;
  height: 100px;
}
.cmxform .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.cmxform .radio-group .radio-option {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cmxform .radio-group .radio-option input[type=radio] {
  display: none;
}
.cmxform .radio-group .radio-option span {
  user-select: none;
  padding: 20px;
  color: #ab6d36 !important;
}
.cmxform .radio-group .radio-option input[type=radio]:checked + span {
  width: 100%;
  font-weight: bold;
}
.cmxform .radio-group .radio-option input[type=radio]:checked + span::after {
  display: block;
  position: absolute;
  top: -10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #573f29;
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='white'%3E%3Cpath d='M530.8 134.1C545.1 144.5 548.3 164.5 537.9 178.8L281.9 530.8C276.4 538.4 267.9 543.1 258.5 543.9C249.1 544.7 240 541.2 233.4 534.6L105.4 406.6C92.9 394.1 92.9 373.8 105.4 361.3C117.9 348.8 138.2 348.8 150.7 361.3L252.2 462.8L486.2 141.1C496.6 126.8 516.6 123.6 530.9 134z'/%3E%3C/svg%3E");
}
.cmxform .contactform_button {
  display: block;
  width: 100%;
  background-color: #ab6d36;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  font-family: interstate, sans-serif;
  font-weight: 300;
  border: 1px solid #fff !important;
  font-size: 16px;
  transition: all 1s ease;
  text-transform: uppercase !important;
}
.cmxform .contactform_button:hover, .cmxform .contactform_button:focus, .cmxform .contactform_button:active {
  background-color: #ab6d36;
  outline: none;
}
.cmxform label.error {
  display: none;
  color: #ab6d36;
  padding-top: 3px;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* ---- FOOTER ---- */
footer {
  width: 100%;
  padding: 0px;
  margin: 0px;
  z-index: 300;
  transition: all 1s ease;
}
footer .content {
  padding-top: 20px;
  padding-bottom: 10px;
}
footer .footer-inner {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 30px 0px;
  transition: all 1s ease;
}
footer .footer-inner .footer-col {
  width: 50%;
}
footer .footer-inner .footer-col p {
  color: #222222;
  text-align: center;
  display: block;
  width: 100%;
}
footer .footer-inner .footer-col p a {
  color: #222222;
}
footer .footer-inner .footer-col p a:hover, footer .footer-inner .footer-col p a:focus {
  text-decoration: underline;
}
footer .footer-inner .footer-col p a:last-of-type {
  padding-right: 0px;
  border-right: none;
  margin-right: 0px;
}
footer .footer-inner .footer-col p a i {
  font-size: 25px;
}
footer .footer-inner .footer-col:first-of-type {
  padding: 20px 0px;
}
footer .footer-inner .footer-col:first-of-type p {
  text-align: left;
}
footer .footer-inner .footer-col:last-of-type {
  background: #ab6d36;
  color: #fff !important;
  padding: 20px 30px;
}
footer .footer-inner .footer-col:last-of-type p, footer .footer-inner .footer-col:last-of-type p a {
  color: #fff !important;
  text-align: right;
}

@media (max-width: 600px) {
  footer {
    width: 100%;
    padding: 0px;
    margin: 0px;
    z-index: 300;
    transition: all 1s ease;
  }
  footer .content {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  footer .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    padding: 15px;
  }
  footer .footer-inner .footer-col {
    width: 100%;
  }
  footer .footer-inner .footer-col p {
    text-align: center !important;
  }
}

/*# sourceMappingURL=oao-bittl-default.css.map */
