@charset "UTF-8";
.container {
  max-width: 1100px;
}

body {
  background-color: #efefef;
  font-family: "Source Code Pro", monospace;
}

p {
  font-family: "Source Sans Pro", sans-serif;
}

b {
  font-weight: 700;
}

.mt-7 {
  margin-top: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

header {
  padding-top: 2vh;
}
header .login, header .logout {
  float: right;
  color: var(--main-color);
  text-decoration: none;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 3px;
  padding: 0 9px;
}
header .logout {
  margin-right: 5px;
  background: var(--main-color);
  color: #fff;
}
header nav {
  font-weight: 800;
}
header nav ul {
  padding: 0;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  display: block;
  font-size: 48px;
  line-height: 48px;
  color: var(--main-color);
  text-decoration: none;
}
header nav ul li a:hover {
  color: var(--dark);
}
header .logo {
  max-height: 150px;
  width: auto;
  display: block;
  float: right;
}

.intro .plant {
  max-width: 100%;
}
.intro h2 {
  margin-top: 7rem;
}
.intro a {
  text-decoration: none;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
}

.highlight {
  background-color: var(--main-color);
  color: var(--main-color-text);
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  font-weight: 800;
}

.slider {
  margin-top: 5rem;
  position: relative;
}
.slider.change .card .card-body h3 span {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.slider.change .card .card-body .content {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.1s ease-in-out;
}
.slider.change .card .card-image img {
  left: 200%;
  transition: all 0.2s ease-in-out;
}
.slider .card {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 30px;
  background: transparent;
  border: 0;
}
.slider .card .card-image {
  width: 110%;
  border-radius: 10px;
  background: #f2f2f2;
  height: 120%;
  transform: translate(-5%, -10%);
  position: relative;
  overflow: hidden;
  box-shadow: -10px -10px 50px #ccc;
  z-index: 2;
}
.slider .card .card-image img {
  min-width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}
.slider .card .card-body {
  box-shadow: -10px -10px 50px #ccc;
  padding: 4rem 3rem 4rem 4rem;
  border-radius: 15px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
.slider .card .card-body h3 {
  margin-left: 15px;
  margin-bottom: 20px;
}
.slider .card .card-body h3 span {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.slider .card .card-body .content {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.slider .card .next, .slider .card .prev {
  font-size: 5rem;
  position: absolute;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.8;
  color: #333;
  top: calc(50% - 4rem);
}
.slider .card .next:hover, .slider .card .prev:hover {
  opacity: 1;
}
.slider .card .next {
  right: -3.5rem;
}
.slider .card .prev {
  left: -3.5rem;
}

#vision .heading {
  position: relative;
  padding: 8rem 0 10rem 0;
}
#vision .heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/VISION.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}
#vision img {
  max-width: 100%;
}

.vision-quote {
  position: relative;
  padding: 0 2.5rem;
}
.vision-quote p {
  font-size: 1.1rem;
}
.vision-quote::before, .vision-quote::after {
  position: absolute;
  font-size: 5rem;
  color: var(--main-color);
}
.vision-quote::before {
  top: -6rem;
  left: -1rem;
  content: "„";
}
.vision-quote::after {
  right: 1rem;
  bottom: -3rem;
  content: "“";
}
.vision-quote hr {
  max-width: 100px;
}

/*# sourceMappingURL=home.css.map */
