* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
}

body {
  background-image: linear-gradient(270deg, #00131D 0%, #002537 100%);
  overflow-x: hidden;
}

#nav {
  background-image: linear-gradient(270deg, #00131D 0%, #002537 100%);
  height: 100px;
  width: 100vw;
  padding: 0 50px;
  position: fixed;
  z-index: 9999;
  overflow: hidden;
}

@media (max-width: 768px) {
  #nav {
    background-image: linear-gradient(270deg, #00131D 0%, #002537 100%);
    height: 70px;
    width: 100vw;
    padding: 0 50px;
    position: fixed;
    z-index: 9999;
  }
}

#nav.mobileopen {
  background-image: linear-gradient(270deg, #00131D 0%, #002537 100%);
  height: 100vh;
  width: 100vw;
  padding: 0 50px;
  position: fixed;
  z-index: 9999;
}

#navlogo {
  position: fixed;
  top: -100px;
  height: 50px;
  width: 20vw;
  margin-top: 25px;
  float: left;
  background-image: url(../../assets/img/logo_mit_schriftzug.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.5s ease !important;
}

@media (max-width: 768px) {
  #navlogo {
    position: fixed;
    top: -100px;
    height: 40px;
    width: 40vw;
    margin-top: 10px;
    float: left;
    background-image: url(../../assets/img/logo_mit_schriftzug.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    transition: all 0.5s ease !important;
  }
}

.normal #navlogo {
  position: initial;
  height: 50px;
  width: 20vw;
  margin: 0px;
  top: 0 !important;
  float: left;
  background-image: url(../../assets/img/logo_mit_schriftzug.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

#navlogo.here {
  position: fixed;
  top: 0;
  height: 50px;
  width: 20vw;
  margin-top: 25px;
  float: left;
  background-image: url(../../assets/img/logo_mit_schriftzug.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

@media (max-width: 768px) {
  .normal #navlogo {
    height: 40px;
    width: 40vw;
    float: left;
    margin: 0 !important;
    background-image: url(../../assets/img/logo_mit_schriftzug.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
  }
}

@media (max-width: 768px) {
  #navlogo.here {
    position: fixed;
    top: 0;
    height: 40px;
    width: 40vw;
    margin-top: 15px;
    float: left;
    background-image: url(../../assets/img/logo_mit_schriftzug.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
  }
}

#nav ul {
  float: right;
  height: 50px;
}

@media (max-width: 991px) {
  #nav ul {
    display: none !important;
    height: 40px;
  }
}

#nav li {
  float: left;
  list-style: none;
  padding: 0 25px;
}

@media (max-width: 1200px) {
  #nav li {
    float: left;
    list-style: none;
    padding: 0 1vw;
  }
}

#nav a {
  font-family: 'Montserrat';
  font-size: 15px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}

#nav a:hover {
  opacity: 0.25;
  text-decoration: none;
}

#nav .linie {
  background-color: white;
  width: 1px !important;
  padding: 0;
  height: 35%;
}

/* allgemein */

.wrapper {
  max-width: 1440px;
  width: 90vw;
  margin: 0 auto;
}

button:focus {
  outline: none !important;
  box-shadow: none;
}

.buttonOne {
  height: 50px;
}

.buttonOne:hover {
  opacity: 1;
}

.buttonOne p {
  font-size: 16px;
  position: absolute;
  width: auto !important;
  z-index: 100;
  position: absolute;
  padding: 14px 0 12px 25px;
  text-transform: uppercase;
}

.buttonOne p:before {
  content: "";
  position: absolute;
  z-index: 0;
  height: 50px;
  width: 1px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  top: 0;
  left: 0;
}

button.buttonOne:hover p:before {
  content: "";
  position: absolute;
  z-index: -100;
  height: 50px;
  border-radius: 2px;
  width: 100%;
  background-color: #002537;
  transition: all 0.5s ease-in-out;
  top: 0;
  left: 0;
}

.buttonOne:hover p:before {
  content: "";
  position: absolute;
  z-index: -100;
  height: 50px;
  border-radius: 2px;
  width: 100%;
  background-color: #388080;
  transition: all 0.5s ease-in-out;
  top: 0;
  opacity: 1 !important;
  left: 0;
}

.buttonOne p:after {
  content: "";
  padding: 0 30px 0 12px;
  background-image: url(../../assets/img/arrow.svg);
  background-position: center -12px;
  background-repeat: no-repeat;
  height: 16px;
}

.clear {
  clear: both;
}

/* fonts */

h1 {
  color: transparent !important;
}

h2 {
  font-weight: 400 !important;
  font-size: 25px;
  color: #FFFFFF;
  letter-spacing: 0.83px;
  text-align: center;
  /*text-transform: uppercase;*/
}

@media (max-width: 576px) {
  h2 {
    font-weight: 400 !important;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0.83px;
    text-align: center;
    /*text-transform: uppercase;*/
  }
}

h3 {
  font-weight: 500;
  font-size: 3vh;
  color: #FFFFFF;
  letter-spacing: 1.2px;
  text-align: left;
  padding-bottom: 35px;
}

@media (max-width: 575px) {
  h3 {
    font-weight: 500;
    font-size: 2.2vh;
    color: #FFFFFF;
    letter-spacing: 1.2px;
    text-align: left;
    padding-bottom: 35px;
  }
}

.kont h3 {
  font-weight: 500;
  font-size: 3vh;
  color: #FFFFFF;
  letter-spacing: 1.2px;
  text-align: left;
  padding-bottom: 0;
}

h4 {
  font-size: 48px;
  color: #388080;
  letter-spacing: 2.2px;
}

h5 {
  font-weight: 700;
  margin-top: 10px;
  font-size: 26px;
  margin-bottom: 34px;
  color: #388080;
  letter-spacing: 1.19px;
}

h6 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 2px;
  line-height: 30px;
}

p {
  font-weight: 500 !important;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0.73px;
  line-height: 24px;
  width: auto;
}

@media (max-width: 576px) {
  p {
    font-weight: 500 !important;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0.73px;
    line-height: 20px;
    width: auto;
  }
}

.small {
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0.55px;
  line-height: 18px;
}

@media (max-width: 576px) {
  .small {
    font-weight: 500;
    font-size: 9px;
    color: #FFFFFF;
    letter-spacing: 0.55px;
    line-height: 16px;
  }
}

/* header */

header {
  height: 100vh;
  background-image: radial-gradient(50% 40%, #388080 -110%, rgba(56,128,128,0.00) 105%, rgba(56,128,128,0.00) 50%);
}

#scroll {
  position: absolute;
  bottom: 5vh;
  height: 60px;
  width: 5px;
  background-size: cover;
  transition: all .5s;
}

#scroll.gone {
  position: absolute;
  bottom: 10vh;
  height: 60px;
  width: 5px;
  background-size: cover;
  opacity: 0;
}

@media (max-width: 768px) {
  #scroll {
    transform: rotate(180deg);
    position: absolute;
    bottom: 5vh;
    height: 60px;
    width: 5px;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 75% !important;
  }
}

.logo {
  margin-top: -5vh !important;
  height: 25vh;
  width: 30%;
  margin: 0 auto;
  transition: all 0.5s ease;
  color: transparent !important;
  font-size: 0.1px;
}

.logolein {
  margin-top: -5vh !important;
  height: 25vh;
  width: 35vh;
  margin: 0 auto;
  color: transparent !important;
  font-size: 0.1px;
  background-image: url(../../assets/img/logo_mit_schriftzug.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}

#unternehmen .logolein {
  margin-top: 0vh !important;
  height: 25vh;
  width: 35vh;
  margin: 0 auto;
  color: transparent !important;
  font-size: 0.1px;
  background-image: url(../../assets/img/logo_mit_schriftzug.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}

.logo.gone {
  margin-top: -20vh;
  opacity: 0;
  height: 25vh;
  width: 25%;
  color: transparent;
  font-size: 0.1px;
}

.upper {
  margin-top: 10vh;
}

/* Unternehmen */

.unternehmen {
  margin: 0 0 20vh;
}

@media (max-width: 576px) {
  .unternehmen {
    margin: 0 0 0vh;
  }
}

.sidepicture.right {
  width: 50vw;
  height: 70vh;
  background-image: url(../../assets/img/placeholder_picture.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: right !important;
}

.sidepicture {
  width: 50vw;
  height: 70vh;
  background-image: url(../../assets/img/it_procurement.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
}

.links .sidepicture {
  width: 50vw;
  height: 70vh;
  background-image: url(../../assets/img/placeholder_picture.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: right !important;
}

@media (max-width: 992px) {
  .sidepicture {
    width: 30vw;
    height: 70vh;
    background-image: url(../../assets/img/placeholder_picture.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 5vh;
  }
}

@media (max-width: 992px) {
  .links .sidepicture {
    width: 30vw;
    height: 70vh;
    background-image: url(../../assets/img/placeholder_picture.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: right;
    margin-bottom: 5vh;
  }
}

@media (max-width: 768px) {
  .sidepicture {
    width: 100% !important;
    height: 30vh;
    background-image: url(../../assets/img/placeholder_picture.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 5vh;
  }
}

@media (max-width: 768px) {
  .links .sidepicture {
    width: 100% !important;
    height: 30vh;
    background-image: url(../../assets/img/placeholder_picture.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: right;
    margin-bottom: 5vh;
  }
}

.textcontainer.right p {
  width: 100%;
  margin: 0 auto;
}

.textcontainer.right {
  float: right;
  width: 70%;
  margin: 0 auto;
  padding-left: 0;
}

.textcontainer {
  float: left;
  width: 45vw;
  padding-left: 5vw;
}

.links .textcontainer {
  float: right !important;
  width: 45vw;
  padding-left: 5vw;
}

@media (max-width: 1100px) {
  .textcontainer {
    float: left;
    width: 65vw;
    padding-left: 5vw;
  }
}

@media (max-width: 1100px) {
  .links .textcontainer {
    float: right;
    width: 65vw;
    padding-left: 5vw;
  }
}

@media (max-width: 768px) {
  .textcontainer {
    float: left;
    width: 100% !important;
    padding: 0 0 0 5vw;
  }
}

.textcontainer p {
  margin-bottom: 60px;
  width: 80%;
}

@media (max-width: 1100px) {
  .textcontainer p {
    margin-bottom: 60px;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .textcontainer p {
    margin-bottom: 60px;
  }
}

/* wiso */

.wiso {
  padding: 5vh 0 10vh;
}

@media (max-width: 576px) {
  .wiso {
    padding: 15vh 0 5vh;
  }
}

.wiso .gradient {
  height: 50vh;
  width: 150vw;
  position: absolute;
  margin-top: -15vh;
  margin-left: -100vh;
  background-image: radial-gradient(50% 50%, #388080 -179%, rgba(56,128,128,0.00) 95%, rgba(56,128,128,0.00) 100%);
}

#wisos {
  margin-bottom: 5vh;
}

.outer {
  text-align: right;
}

/* Service */

#service {
  padding: 10vh 0;
}

.serviceslider {
  margin: 10vh 0 0;
  overflow-x: scroll;
  width: auto;
  overflow-y: hidden;
  padding-bottom: 2vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.serviceslider::-webkit-scrollbar {
  display: none;
}

.innerscroll {
  width: auto;
  display: inline-flex;
}

.card {
  height: 25vh;
  width: 30vw;
  padding: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.5s;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  float: left;
}

@media (max-width: 768px) {
  .card {
    height: 40vh;
    width: 80vw;
    padding: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.5s;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    float: left;
  }
}

.dark {
  height: 100%;
  width: 100%;
  padding: 20px;
  background-color: rgba(0,0,0,0.7);
  transition: 0.5s all ease;
}

.card:hover .dark {
  background-color: rgba(0,0,0,0.2);
}

.textinhalt {
  position: absolute;
  bottom: 00px;
  padding-right: 20px;
}

.card h6 {
  font-size: 1.5vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.card:hover h6 {
}

.card p {
  margin-top: 0;
  max-height: 0;
  height: auto;
  width: 100%;
  opacity: 0;
  transition: 0.5s all linear;
}

.card:hover p {
  margin-top: 30px;
  max-height: 10vh;
  opacity: 1;
  transition: 0.2s all linear;
}

.card:first-child {
  margin-left: calc((100vw - 1440px)/2);
}

@media (max-width: 1440px) {
  .card:first-child {
    margin-left: 5vw;
  }
}

.card:last-child {
  margin-right: calc((100vw - 1440px)/2);
}

@media (max-width: 1440px) {
  .card:last-child {
    margin-right: 5vw;
  }
}

.sliderbutton {
  background-color: transparent !important;
  border: none !important;
  margin-left: 50px;
  width: 50px;
  color: white;
  float: left;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.sliderbutton:hover {
  opacity: 0.3;
  background-color: transparent !important;
  border: none !important;
  margin-left: 50px;
  width: 50px;
  color: white;
  float: left;
}

#slideRight {
  transform: scale(1.5);
}

.column {
  column-count: 2;
  column-gap: 50px;
  height: 168px;
}

@media (max-width: 576px) {
  .column {
    column-count: 1;
    column-gap: 0;
    height: 360px;
  }
}

.row.wrapper > * {
  margin-top: 50px;
}

#referenz {
  padding: 10vh 0;
}

#kontaktieren {
  padding: 10vh 0;
}

.form-control {
  margin-bottom: 2vh;
  background-color: transparent;
  color: white;
  border: 1px white solid;
  position: relative;
  z-index: 9000;
}

.form-control::placeholder {
  color: white;
}

.form-check-label {
  color: white;
}

.floater {
  float: left;
  margin-right: 50px;
  margin-bottom: 2vh;
}

button {
  padding: 0 !important;
  margin-top: 0 !important;
  color: transparent;
  border: 0;
  box-shadow: none !important;
  background-color: transparent !important;
  margin-bottom: 5vh;
  border-color: transparent !important;
}

.colorcard {
  background-color: #388080;
  padding: 5vh;
  border-radius: 5px;
}

.row {
  padding: 0;
}

.row > * {
}

a {
  color: white;
  transition: opacity 0.3s ease-in-out;
}

a:hover {
  color: white;
  text-decoration: none;
  opacity: 0.5;
}

footer {
  margin: 10vh 0 0;
  background-image: linear-gradient(170deg, #00131D 0%, #002537 100%);
  padding: 5vh 0;
}

.footerlogo {
  background-image: url(../../assets/img/logo_mit_schriftzug.svg);
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.form-control:focus {
  color: white !important;
  background-color: rgba(255,255,255,0.3);
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

#int_net {
  background-image: url(../../assets/img/erde.jpg);
}

#verhandlung {
  background-image: url(../../assets/img/verhandlungsführung.jpg);
}

#ausschreibung {
  background-image: url(../../assets/img/ausschreibungsabwicklung.jpg);
}

#prozess {
  background-image: url(../../assets/img/prozessdigitalisierung.jpg);
  background-position: center;
}

#einkauf {
  background-image: url(../../assets/img/einkaufsintegration_bei_m&a.jpg);
}

#analyse {
  background-image: url(../../assets/img/analysen_reports.jpg);
}

#vertrag {
  background-image: url(../../assets/img/vertragsmanagement.jpg);
}

#lieferant {
  background-image: url(../../assets/img/vendormanagement.jpg);
}

#interim {
  background-image: url(../../assets/img/interimsmanagement.jpg);
}

#strategie {
  background-image: url(../../assets/img/strategischer_einkauf.jpg);
}

html {
  scroll-behavior: smooth;
}

row > * > h3 {
  min-width: 100%;
}

.kontaktdownload {
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  position: relative;
  margin: 30px 0;
  width: initial;
}

@media (max-width: 575px) {
  .kontaktdownload {
    padding: 10px;
    background-color: white;
    border-radius: 20px;
    position: relative;
    margin: 30px 0 5vh;
  }
}

.marc_profil {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-image: url(../../assets/img/Marc.jpg);
  background-size: cover;
  background-position: center;
  margin-right: 20px;
}

.kontaktdownload h6 {
  color: #388080 !important;
  margin: 0;
}

.kontaktdownload a {
  color: #388080 !important;
  width: 50px;
  height: 50px;
  font-size: 25px;
}

#download {
  height: 50px;
  width: 50px;
  float: right;
  position: absolute;
  right: 20px;
}

@media (max-width: 575px) {
  #download {
    height: 50px;
    width: 50px;
    float: right;
    position: absolute;
    right: 10px;
  }
}

@media (max-width: 575px) {
  .col-12 {
    margin: 2vh 0;
  }
}

@media (max-width: 1199px) {
  .kont {
    width: 100%;
    margin-right: 0;
  }
}

.kont {
  width: 100%;
  margin-right: 17%;
}

.carina_bild {
  background-image: url(../../assets/img/carina.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center top;
}

.johannes_bild {
  background-image: url(../../assets/img/Johannes_Prebeck.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center top;
}

.roland_bild {
  background-image: url(../../assets/img/roland.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center top;
}

.marc_bild {
  background-image: url(../../assets/img/Marc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
}

h3 span {
  font-size: 60%;
}

.kont p {
  margin-bottom: 5vh;
}

button, input {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: 'Montserrat';
  font-size: inherit;
  line-height: inherit;
}

textarea.form-control {
  height: auto;
  min-height: 10vh;
}

@media (max-width: 576px) {
  .profile {
    width: 50vw;
    height: 50vw;
    margin-bottom: 5vh;
  }
}

@media (max-width: 375px) {
  .profile {
    width: 80vw;
    height: 70vw;
    margin-bottom: 5vh;
  }
}

.margin {
  margin: 10vh auto;
}

.headheading {
  height: 100vh;
  padding-top: 30vh;
  padding-bottom: 30vh;
  background-image: radial-gradient(49% 30%, #388080 -250%, rgba(56,128,128,0.00) 105%, rgba(56,128,128,0.00) 50%);
}

@media (max-width: 576px) {
  .headheading {
    height: 100vh;
    background-image: radial-gradient(49% 30%, #388080 -250%, rgba(56,128,128,0.00) 105%, rgba(56,128,128,0.00) 50%);
  }
}

.line_bg {
}

@media (max-width: 767px) {
  .headheading p {
    width: 90vw !important;
    margin: 5vh auto;
  }
}

.headheading p {
  width: 55vw;
  margin: 5vh auto;
}

.toppicture {
  width: 100vw;
  height: 30vh;
  background-image: url(../../assets/img/internationales_netzwerk.jpg);
  background-position: center;
  background-size: cover;
}

.textcontainerfull.wrapper {
  margin-top: 10vh;
}

.textcontainerfull p {
  column-count: 2;
  column-gap: 50px;
}

@media (max-width: 768px) {
  .textcontainerfull p {
    column-count: 1;
    column-gap: 50px;
  }
}

#international {
  background-image: url(../../assets/img/internationales_netzwerk.jpg);
}

.no-padding {
  padding: 0;
}

.marginmax {
  margin: 15vh auto;
}

.margin-0 {
  margin: 0 !important;
}

#nav .wrapper {
  max-height: 50px;
}

.mobile_menu {
  height: 30px;
  width: 30px;
  float: right;
  margin-top: 10px;
  z-index: 9999;
}

.mobile_menu span {
  background-color: white;
  width: 30px;
  height: 2px;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
}

span.middle {
  margin: 10px 0;
}

.aktiv span.middle {
  transform: scaleX(0);
  transform-origin: right;
}

.aktiv #top {
  transform: rotate(-45deg);
  transform-origin: top right;
  width: 36px;
}

.aktiv #bottom {
  transform: rotate(45deg);
  transform-origin: bottom right;
  width: 35px;
}

@media (min-width: 992px) {
  .mobile_menu {
    display: none;
  }
}

.mobile_nav {
  top: 0;
  height: 100vh;
  width: 0 !important;
  position: fixed;
  padding-left: 0vw;
  z-index: 0;
  opacity: 0 !important;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

@media (min-width: 992px) {
  .mobile_nav, .mobile_nav.here {
    display: none !important;
  }
}

.mobile_nav.here {
  padding-top: 7vh;
  left: 0;
  height: 100vh;
  width: 100vw !important;
  position: fixed;
  padding-left: 10vw;
  opacity: 1 !important;
  z-index: 9900;
  overflow: scroll;
  pointer-events: initial;
}

main.blur {
  filter: blur(2vh);
  opacity: 0.3;
  overflow: hidden;
}

main {
  transition: all 0.3s ease-in-out;
  overflow-x: hidden;
}

.mobile_nav li {
  margin-top: 3vh;
  font-size: 3vh;
  list-style: none;
}

.mobile_nav .linie {
  background-color: white;
  height: 2px;
}

@media (max-width: 768px) {
  .martop-30 {
    margin-top: 30px;
  }
}

.w-50-100 {
  background-position: bottom;
}

#carveout {
  background-image: url(../../assets/img/carve_out_abwicklung.jpg);
}

#imprint {
  padding-top: 30vh;
}

.martop-50 {
  margin-top: 50px;
}

li {
  white-space: nowrap;
}

body.fix {
  overflow: hidden;
}

.form-control.diplay_none {
  display: none;
}

.logo.logopicture {
  background-image: url(../../assets/img/logo_mit_schriftzug_untereinander.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50vw;
  background-position: center;
}

#job {
  margin-bottom: 20vh;
}

.christian_bild {
  background-image: url("../../assets/img/Christian.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  /*height: 100%;*/
  background-position: center top;
}

.max_bild {
  background-image: url("../../assets/img/max.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
}

.profile {
  width: 30vw;
  height: 30vw;
  margin-bottom: 5vh;
}

.pedro_bild {
  background-image: url(../../assets/img/Pedro.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*height: 100%;*/
}

.sub-menu_link {
  bottom: 100%;
}

.onur_bild {
  background-size: cover;
  background-repeat: no-repeat;
  /*height: 100%;*/
  background-position: center top;
  background-image: url("../../assets/img/Onur.jpg");
}

