/* ##################################################
/* ##################################################
TPX - The very Base CSS Defintions
------------------------------------------------
SIMPLE RESET
################################################## */

html,
body {
  height: initial;
}
html {
  font-size: 62.5%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth; /* for a smooth scroll behavier with firefox */
}

textarea {
  overflow: auto;
}
img {
  border: 0;
}
button,
input,
optgroup,
select,
textarea,
form,
fieldset {
  color: inherit;
  background-color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
main,
nav,
section,
article,
header,
pre,
blockquote,
dl,
figure,
figcapture {
  display: block;
  padding: 0;
  margin: 0;
}

/* inheriting border-box from html*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* ##################################################
Basic Styling
html is set to 62.5% so that all the REM measurements throughout exo
are based on 10px sizing. So basically 1.5rem = 15px.
If you simply set the font-size in media query to ex. 60% it will reduce all the rem declarations.
################################################## */

body {
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  height: 100%;
  /* this trick prevents the body to have margin collapse, if a child element has a margin*/
  margin: -1px 0 0 0;
  padding: 1px 0 0 0;
  /* */
  -webkit-overflow-scrolling: touch; /* smooth scrolling for ios devices*/
  /* for "better" font smoothing display on all devices, ony if neede for fonts
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}

section,
.base-box,
.site-main,
.full-width.item-box,
.item-box .item-box {
  width: 100%;
  max-width: 100%;
  position: relative;
  /*z-index: 2; */
}
.full-size.item-box {
  width: 100%;
  height: 100vh;
  max-width: 100%;
}

.base-box {
  min-height: 100vh;
}
.item-box,
.hero-item-box,
.hero-slider .hero-item-box {
  width: calc(100% - 6rem);
  max-width: 1280px;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 340px) {
  .item-box,
  .hero-item-box,
  .hero-slider .hero-item-box {
    width: calc(100% - 4rem);
  }
}

.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.txt-uppercase {
  text-transform: uppercase;
}
.txt-reset {
  text-transform: none;
  text-align: left;
}

.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.none {
  display: none;
}

.no-margin {
  margin: 0;
}
.overflow-hidden {
  overflow: hidden;
}

/* Colors */
.bg-inherited {
  background-color: inherit;
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  background-color: #fff;
}
.bg-black {
  background-color: #000;
}
.bg-error {
  background-color: #d50303;
} /* FEHLER rot */
.bg-1 {
  background-color: #585858;
} /* Dunkelgrau rgba(88,88,88,1); */
.bg-2 {
  background-color: rgb(0,94,116);
} /* grau rgba(117,117,117,1); */
.bg-3 {
  background-color: #d6d6d6;
} /* Hellgrau rgba(177,177,177,1); */

.cl-inherited,
.text-box.cl-inherited a {
  color: inherit;
}
.cl-transparent,
.text-box.cl-transparent a {
  color: transparent;
}
.cl-white,
.text-box.cl-white a {
  color: #fff;
}
.text-box.cl-black,
.cl-black a {
  color: #000;
}
.text-box.cl-error,
.cl-error a {
  color: #d50303;
} /* FEHLER rot */
.cl-1,
.text-box.cl-1 a {
  color: #585858;
} /* Dunkelgrau rgba(88,88,88,1); */
.cl-2,
.text-box.cl-2 a {
  color: #757575;
} /* grau rgba(117,117,117,1); */
.cl-3,
.text-box.cl-3 a {
  color: #d6d6d6;
} /* Hellgrau rgba(177,177,177,1); */

.p-0 {
  padding: 0;
}
.p-1 {
  padding: 1rem;
}
.p-2 {
  padding: 2rem;
}
.p-3 {
  padding: 3rem;
}
.p-4 {
  padding: 4rem;
}
.p-5 {
  padding: 5rem;
}
.p-6 {
  padding: 6rem;
}
.p-7 {
  padding: 7rem;
}
.p-8 {
  padding: 8rem;
}
.p-9 {
  padding: 9rem;
}
.p-10 {
  padding: 10rem;
}
.p-12 {
  padding: 12rem;
}
.p-15 {
  padding: 15rem;
}

.pd-1 {
  padding: 1rem 0;
}
.pd-2 {
  padding: 2rem 0;
}
.pd-3 {
  padding: 3rem 0;
}
.pd-4 {
  padding: 4rem 0;
}
.pd-5 {
  padding: 5rem 0;
}
.pd-6 {
  padding: 6rem 0;
}
.pd-7 {
  padding: 7rem 0;
}
.pd-8 {
  padding: 8rem 0;
}
.pd-9 {
  padding: 9rem 0;
}
.pd-10 {
  padding: 10rem 0;
}
.pd-12 {
  padding: 12rem 0;
}
.pd-15 {
  padding: 15rem 0;
}

.pd-t0 {
  padding-top: 0;
}
.pd-t1 {
  padding-top: 1rem;
}
.pd-t2 {
  padding-top: 2rem;
}
.pd-t3 {
  padding-top: 3rem;
}
.pd-t4 {
  padding-top: 4rem;
}
.pd-t5 {
  padding-top: 5rem;
}
.pd-t6 {
  padding-top: 6rem;
}
.pd-t7 {
  padding-top: 7rem;
}
.pd-t8 {
  padding-top: 8rem;
}
.pd-t9 {
  padding-top: 9rem;
}
.pd-t10 {
  padding-top: 10rem;
}
.pd-t12 {
  padding-top: 12rem;
}
.pd-t15 {
  padding-top: 15rem;
}
.pd-t45 {
  padding-top: 45rem;
}


.pd-b0 {
  padding-bottom: 0;
}
.pd-b1 {
  padding-bottom: 1rem;
}
.pd-b2 {
  padding-bottom: 2rem;
}
.pd-b3 {
  padding-bottom: 3rem;
}
.pd-b4 {
  padding-bottom: 4rem;
}
.pd-b5 {
  padding-bottom: 5rem;
}
.pd-b6 {
  padding-bottom: 6rem;
}
.pd-b7 {
  padding-bottom: 7rem;
}
.pd-b8 {
  padding-bottom: 8rem;
}
.pd-b9 {
  padding-bottom: 9rem;
}
.pd-b10 {
  padding-bottom: 10rem;
}
.pd-b12 {
  padding-bottom: 12rem;
}
.pd-b15 {
  padding-bottom: 15rem;
}

/* Link Definition */
a {
  color: #757575;
}
a:hover {
  color: #000;
}
a:focus,
a:active {
  outline: 0;
}

/* ##################################################
Typography
################################################## */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
  /* word Wraps */
  word-wrap: normal;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-weight: 700;
  max-width: 100%; /* IE Weirdness*/
}
h5,
h6 {
  margin: 0 0 1.5rem 0;
}

@media (min-width: 790px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.5rem;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.5rem;
  }
  h6 {
	margin-top: 5rem;  
    font-size: 2rem;
  }
}

p {
  margin: 0 0 3rem 0;
  word-wrap: normal;
  max-width: 100%; /* IE Weirdness*/
}
.small {
  font-size: 1.2rem;
}

table {
  margin: 3rem 0;
  margin: 0 0 3rem 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
td,
th {
  padding: 0.5rem;
  border-style: solid;
  border-width: 1px;
  text-align: left;
  white-space: nowrap;
}
th {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

hr {
  height: 1px;
  border: 0;
  background-color: #000;
  margin: 2rem 0;
}

/*##################################################
 Lists
################################################## */

ul,
ol {
  padding-left: 2.5rem;
  margin: 0 0 3rem 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
}
li {
  margin-bottom: 0.5rem;
  position: relative;
	padding-left: 1.5rem
}


/*##################################################
Images and image box
################################################## */

.image-box,
.image-box img,
.image-box a {
  display: block;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.image-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.image-item .image-box {
  display: inline-block;
  width: unset;
  max-width: 100%;
  vertical-align: top;
}
.modul_image .image-box img,
.image-item .image-box img {
  width: auto;
}
.modul_image .image-box.fit-box img,
.image-item .image-box.fit-box img,
.fit-image.image-box img {
  width: 100%;
}

/*##################################################
Flex Grid
################################################## */

.col-item,
.flex-item {
  display: block;
  position: relative;
  vertical-align: top;
  margin: 0;
}
.col-item {
  width: 100%;
  margin: 0 0 2rem 0;
}

/* Fallback for Browsers that does not support flex */
@media (min-width: 790px) {
  .col-box,
  .flex-box {
    clear: both;
  }
  .col-item,
  .flex-item {
    float: left;
  }
  .center-right,
  .top-right,
  .bottom-right {
    float: right;
  }
}

.base-box,
.col-box,
.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col-box,
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@supports (flex-wrap: wrap) {
  /* hide from incomplete Firefox versions */
  .col-box {
    -webkit-flex-wrap: wrap;
  }
}

.col-box,
.stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-column,
.base-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-column {
  height: 100%;
}

[class*="center-"] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.center-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.center-left {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.center-right {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

[class*="bottom-"] {
  -webkit-box-align: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.bottom-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bottom-left {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.bottom-right {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

[class*="top-"] {
  -webkit-box-align: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.top-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.top-left {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.top-right {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* setting the footer always to the bottom, if the browser is capable of displaying flexbox*/
.site-footer,
.logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
} /* do not shrink or enlarge */
.base-item,
.flex-column .content-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
} /* shrink and enlarge this */

@media (min-width: 790px) {
  /* predefined margins for the standard boxes */
  .col-box {
    margin: 0 0 0 -2rem;
  }
  .col-box > .col-item {
    margin: 0 0 2rem 2rem;
  }
  .modul_text_media .col-box > .col-item {
    margin-bottom: 0;
  }
  .col-2 > .col-item,
  .col-2 > .flex-item {
    width: calc(50% - 2rem);
  }
  .col-3 > .col-item,
  .col-3 > .flex-item {
    width: calc(33.333333% - 2rem);
  }
  .col-4 > .col-item,
  .col-4 > .flex-item {
    width: calc(25% - 2rem);
  }
  .col-5 > .col-item,
  .col-5 > .flex-item {
    width: calc(20% - 2rem);
  }

  .col-box > .col-item.box-20 {
    width: calc(20% - 2rem);
  }
  .flex-box > .box-20 {
    width: 20%;
  }
  .col-box > .col-item.box-25 {
    width: calc(25% - 2rem);
  }
  .flex-box > .box-23 {
    width: 25%;
  }
  .col-box > .col-item.box-30 {
    width: calc(30% - 2rem);
  }
  .flex-box > .box-30 {
    width: 30% - 2rem;
  }
  .col-box > .col-item.box-33 {
    width: calc(33.333333% - 2rem);
  }
  .flex-box > .box-33 {
    width: 33.333333%;
  }
  .col-box > .col-item.box-35 {
    width: calc(35% - 2rem);
  }
  .flex-box > .box-35 {
    width: 35%;
  }
  .col-box > .col-item.box-40 {
    width: calc(40% - 2rem);
  }
  .flex-box > .box-40 {
    width: 40%;
  }
  .col-box > .col-item.box-45 {
    width: 45%;
  }
  .flex-box > .box-45 {
    width: calc(45% - 2rem);
  }
  .col-box > .col-item.box-50 {
    width: 45%;
  }
  .flex-box > .box-50 {
    width: calc(50% - 2rem);
  }
  .col-box > .col-item.box-55 {
    width: calc(55% - 2rem);
  }
  .flex-box > .box-55 {
    width: 55%;
  }
  .col-box > .col-item.box-60 {
    width: calc(60% - 2rem);
  }
  ,
  .flex-box > .box-60 {
    width: 60%;
  }
  .col-box > .col-item.box-65 {
    width: 65% - 2rem;
  }
  .flex-box > .box-65 {
    width: 65%;
  }
  .col-box > .col-item.box-66 {
    width: calc(66.666666% - 2rem);
  }
  .flex-box > .box-66 {
    width: 66.666666%;
  }
  .col-box > .col-item.box-70 {
    width: calc(70% - 2rem);
  }
  .flex-box > .box-70 {
    width: 70%;
  }
  .col-box > .col-item.box-75 {
    width: calc(75% - 2rem);
  }
  .flex-box > .box-75 {
    width: 75%;
  }
  .col-box > .col-item.box-80 {
    width: calc(80% - 2rem);
  }
  .flex-box > .box-80 {
    width: 80%;
  }
  .col-box > .col-item.box-85 {
    width: calc(85% - 2rem);
  }
  .flex-box > .box-85 {
    width: 85%;
  }
  .col-box > .col-item.box-100 {
    width: calc(100% - 2rem);
  }
  .flex-box > .box-100 {
    width: 100%;
  }
}

/* Header */
.site-header {
  position: relative;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #f4f4f4;
}
.fixed .site-header {
  position: fixed;
}

/* Logo */
.branding {
  position: relative;
  z-index: 1;
  width: 100%;
}
.logo {
  display: inline-block;
  padding: 2rem 0 1rem 0;
}
.logo span {
  display: inline-block;
  background-image: url("images/BlackbearLogo.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  width: 180px;
}

.logo img {
  height: inherit;
  width: 180px;
}

.logo .print {
  display: none;
}


@media (min-width: 960px) {
  .logo img {
    height: inherit;
    width: 260px;
  }
}
@media (max-width: 790px) {
  .branding .item-box {
    display: block;
  }
}

/* buttons */
.button,
button,
input[type="submit"] {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 1rem 2rem;
  margin: 0;
  border-radius: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  -webkit-appearance: none; /* removing the apearance for safari input types*/
  background-color: #000;
  color: #fff;
  vertical-align: baseline;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  outline: 0;
  background-color: #757575;
  color: #fff;
}

.bg-black .button {
  background-color: #fff;
  color: #000;
}
.button-item {
  display: inline-block;
}

#page-top .btn-reset,
#page-top .btn-reset:hover,
#page-top .btn-reset:focus {
  background-color: transparent;
  color: inherit;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* oswald-regular - latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("css/fonts/oswald-v31-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("css/fonts/oswald-v31-latin-regular.woff2") format("woff2"), /* Super Modern Browsers */ url("css/fonts/oswald-v31-latin-regular.woff") format("woff"); /* Modern Browsers */
}
/* oswald-300 - latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  src: url("css/fonts/oswald-v31-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""), url("css/fonts/oswald-v31-latin-300.woff2") format("woff2"), /* Super Modern Browsers */ url("css/fonts/oswald-v31-latin-300.woff") format("woff"); /* Modern Browsers */
}

/* oswald-500 - latin */

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  src: url("css/fonts/oswald-v31-latin-500.eot"); /* IE9 Compat Modes */
  src: local(""), url("css/fonts/oswald-v31-latin-500.woff2") format("woff2"), /* Super Modern Browsers */ url("css/fonts/oswald-v31-latin-500.woff") format("woff"); /* Modern Browsers */
}

strong {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;	
}

/* CSS _ Dharmesh*/

.base-item::before {
  content: "";
  position: relative;
  width: 100%;
  height: 82px;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-weight: 300;
}
.pd-t1 a {
  color: #000;
  text-decoration:none;
}

.tile-subline.pd-t1 a {
text-transform: uppercase;
}
.bg-black a,
bg-black a :hover {
  color: #fff;
  text-decoration:none;
}

/*  Map CSS Start  */

#map.googleMap {
  height: 700px;
}

#map .gm-style .gm-style-iw-c {
  padding: 0;
}

#map .info_content h4 {
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
  padding: 0px 10px;
  margin: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  font-weight: 500;
}

#map .info_content p {
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
  padding: 0px 10px;
  margin: 0;
  margin-bottom: 10px;
}

#map .info_content a {
  text-decoration: none;
}

#map .gm-style .gm-style-iw-d {
  overflow: auto !important;
}

.mapBottomBoxs {
  width: calc(100% - 6rem);
  max-width: 1280px;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  /*padding-bottom: 70px;*/
}

.modul_our_projects h2 {
  width: calc(100% - 6rem);
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .mapBottomBoxs {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
/* P R O J E K T D E T A I L S E I T E N  ***************************/

.aufzug,
.auto,
.tram,
.fussgaenger,
.fenster,
.kuehlung,
.raumhoehe,
.sonnenschutz,
.empty,
.elektronische-zugangssysteme,
.tiefgarage,
.sprechanlage,
.zentralheizung,
.glasfaser,
.fernwaerme,
.besetzter-empfang
  {
	background-repeat: no-repeat;
	background-size: contain;
	padding-left: 40px;
}
.tram,
.auto,
.fussgaenger {
	background-size: auto 20px;
	background-position: left center;
}
.auto {
	background-size: auto 16px;
}


.aufzug { background-image: url(/wp-content/uploads/2020/07/aufzug.png); }
.auto { background-image: url(/wp-content/uploads/2020/07/auto.png); background-position: 3px center; }
.tram { background-image: url(/wp-content/uploads/2022/12/tram.png); background-position: 5px center; }
.fussgaenger { background-image: url(/wp-content/uploads/2020/07/fussgaenger.png); background-position: 8px center; }
.fenster { background-image: url(/wp-content/uploads/2020/07/fenster.png); }
.kuehlung { background-image: url(/wp-content/uploads/2020/07/kuehlung.png); }
.raumhoehe { background-image: url(/wp-content/uploads/2020/07/raumhoehe.png); }
.sonnenschutz { background-image: url(/wp-content/uploads/2020/07/sonnenschutz.png); }
.elektronische-zugangssysteme { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Elektronische_Zugangssyteme.svg);}
.besetzter-empfang { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Besetzter_Empfang.svg);}
.tiefgarage { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Tiefgarage.svg);}
.sprechanlage { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Sprechanlage.svg);}
.zentralheizung { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Zentralheizung.svg);}
.glasfaser { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Glasfaser.svg);}
.fernwaerme { background-image: url(/wp-content/themes/blackbear/images/icons/bbreal_Icon_Fernwaerme.svg);}
}

#main .text-box {
	width: 100%;
}
table {
	width: 100%;
}
#main table td {
	border-top: none;
	border-left: none;
	border-right: none;
}

/*
#moove_gdpr_cookie_info_bar.moove-gdpr-info-bar-hidden {
    bottom: 0px !important;
}
*/
.jump-target {
    top: -95px !important;
}


/* ========================================================================
  Filter Leerstände
 ========================================================================== */
 
.city-search-wrapper .selectdiv::after {
	content: '⏶ \A ⏷';
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 1);
	right: 15px;
	top: 10px;
	padding: 0 0 2px 8px;
	position: absolute;
	pointer-events: none;
	white-space: pre;
	line-height: 0.6;
}

.city-search-wrapper .selectdiv {
	position: relative;
	margin-bottom: 50px;
	display: flex;
  	justify-content: right;
}



select[name="filter-city"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  height: 40px;
  margin: 0;
  padding: 0px 40px 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 1);
  border: none;
  background-color: rgba(0, 0, 0, 1);
  background-image: none;
  -ms-word-break: normal;
  word-break: normal;
  width: 100%;
  max-width: 200px;

}




.responsive-table {
   overflow-x: auto;
}

table.vacancy th {
	border-color: transparent;	
}

table.vacancy td,
table.vacancy th {
	text-align: center;
}

.city-wrapper:not(:last-child) {
	margin-bottom: 50px;
}

@media (min-width: 790px) {
.city-wrapper:not(:last-child) {
	margin-bottom: 100px;
}
}

/* ========================================================================
  Social Media
 ========================================================================== */
 
  .footer-section.social-media{
	display: flex;
}
 
 
 .social-media .btn-small:not(last-child){
	margin-right: 13px;
}
 



.footer-section .btn-small {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
}

.social-media a::before {
  content:"";
  background-size:100%;
  position:absolute;
  width:100%;
  height:100%;
  background-repeat:no-repeat
}


.social-media a.facebook::before {
  background-image:url(images/icons/Facebook.svg)
}
.social-media a.instagram::before {
  background-image:url(images/icons/Instagram.svg)
}
.social-media a.linkedin::before {
  background-image:url(images/icons/LinkedIn.svg)
}

h5 a {
	color: inherit;
	text-decoration: none;
}
	
h5 a:hover {
	color: #757575;
}