* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Kumbh Sans';
}

.navbar {
  background: #0B2545;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}

#navbar__logo {
  color: #EEF4ED;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.fa-gem {
  margin-right: 0.5rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #EEF4ED;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__links:hover {
  color: #9ED4EA;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
  }

  .navbar__menu.active {
    background: #131313;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 75vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
    font-size: 1.7rem;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Main Content CSS */
.main {
  background-color: #EEF4ED;
}

.main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  height: auto;
  background-color: #EEF4ED;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  
}

.main__content {
  color: rgb(0, 0, 0);
  margin-top: 100px;
  text-align: right;
  width: 100%;
  
}

.main__content h1 {
  font-size: 7rem;
  margin-right: 20px;
  font-weight: bold;
}

.main__content h2 {
  font-size: 5rem;
  margin-right: 20px;
  margin-top: 10px;
}

.main__content p {
  margin-top: 1rem;
  font-size: 2rem;
  margin-right: 20px;
  font-weight: 700;
}

.main__footer{
  margin-top: 5rem;
  text-align: right;
  margin-right: 20px;
}

.main__btn {
  font-size: 1rem;
  background-image: linear-gradient(120deg, #0077B6 0%, #c2e9fb 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.main__btn a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.main__btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #4837ff;
  transition: all 0.35s;
  border-radius: 4px;
}

.main__btn:hover {
  color: #fff;
}

.main__btn:hover:after {
  width: 100%;
}

#message {
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;
  margin-right: 20px;
}

#message.success {
  color: rgb(0,0,0);
}

#message.error {
  color: red;
}

.main__img--container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  margin-top: 100px;
}
#main__img{
  max-width: 250px;
}

@media only screen and (max-width: 1100px) {
  #main__img{
    max-width: 200px;
  }
  .main__img--container {
    margin-left: 20px;
  }

  .main__content h1 {
    font-size: 4rem;
  }
  
  .main__content h2 {
    font-size: 3rem;
  }
  
  .main__content p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 720px) {

  #main__img{
    max-width: 250px;
  }

  .main__container {
    grid-template-columns: 1fr;
  }
.main__img--container{
  grid-row: 1;
  margin-left: 0px;
}
.main__content{
  grid-row: 2;
  margin-right: 0px;
  
}

  .main__content h1 {
    font-size: 2.5rem;
  }
  
  .main__content h2 {
    font-size: 1.7rem;
  }
  
  .main__content p {
    font-size: 1rem;
  }
}
/* About section */
.über {
  background-color: #EEF4ED;
}

.über__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: 
    "header header"
    "content image";
  margin: 0 auto;
  height: auto;
  background-color: #EEF4ED;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
}

.über .über-header h1 {
  text-align: left;
  font-size: 4rem;
  margin-top: 150px;
	margin-bottom: 50px;
  grid-area: header;
  margin-left: 50px;
}

.über__img--container {
  align-self: center;
  margin-left: 20px;
  grid-area: image;
  text-align: right;
  margin-right: 20px;
}

#über__img {
  max-width: 500px;
}

.über__content {
  color: rgb(0, 0, 0);
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
  width: 100%;
  font-size: 1rem;
  grid-area: content;
}

.über__content p {
  margin-top: 1rem;
  font-weight: 400;
}

.über__content ul {
  margin: 1rem 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}

.über__content ul li {
  margin-left: 1.5rem;
}

@media only screen and (max-width: 1100px) {
  
  
  .über__img--container {
    text-align: center;
    margin-top: 50px;
    align-self: center;
  }
  
  #über__img {
    align-items: center;
    max-width: 80%;
  }
  .über__content {
    max-width: 90%;
    text-align: left;
    font-size: 1rem;
  }
  .über__content ul {
    font-size: 1rem;
  }
  .über .über-header h1 {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 670px) {

  .über__container {
    grid-template-columns: 1fr;
    
    grid-template-areas: 
      "header"
      "content"
      "image";
  }

  .über .über-header h1 {
    font-size: 4rem;
    margin-left: 20px;
  }
  .über__content{
    margin-left: 20px;
  }
}

/* Projects section */


#projects{
  background-color: #EEF4ED;
}

#projects .projects {
	flex-direction: column;
	max-width: 1300px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
  text-align: left;
  margin-left: 50px;
  font-size: 4rem;
  margin-top: 50px;
	margin-bottom: 50px;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
  max-height: 900px;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-color: #134074;
	color: white;
}
#projects .project-info h1 {
	font-size: 3rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}


#projects .project-img img {
  max-height: 500px;
	transition: 0.2s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1)
}



@media only screen and (max-width: 768px) {
  #projects .projects-header h1 {
    margin-left: 20px;
    font-size: 3rem;
  }
  
  #projects .project-info h1 {
    font-size: 2rem;
  }
  
  #projects .project-info h2 {
    font-size: 1.5rem;
  }
  
  #projects .all-projects {
    flex-direction: column;
  }
  
  #projects .project-item {
    width: 90%;
    max-height: none;
  }
}



/* Karriere section */
.karriere {
  background-color: #EEF4ED;
  
}

.karriere__container {
  display: grid;
  grid-template-columns: 1fr;
    
    grid-template-areas: 
      "header"
      "content"
      "image";
  margin: 0 auto;
  background-color: #EEF4ED;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  
}

.karriere .karriere-header h1 {
  text-align: left;
  font-size: 4rem;
  margin-top: 150px;
	margin-bottom: 50px;
  margin-left: 50px;
  grid-area: header;
}


.karriere__btn {
  font-size: 1rem;
  background-image: linear-gradient(120deg, #0077B6 0%, #c2e9fb 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.karriere__btn a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.karriere__btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #4837ff;
  transition: all 0.35s;
  border-radius: 4px;
}

.karriere__btn:hover {
  color: #fff;
}

.karriere__btn:hover:after {
  width: 100%;
}


.karriere__btn--container {
  align-self: center;
  justify-content: center;
  text-align: center;
  margin-left: 20px;
  grid-area: image;
  margin-bottom: 150px;
}

#karriere__btn {
  max-width: 500px;
}

#message2 {
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;

}

#message2.success {
  color: rgb(0,0,0);
}

#message2.error {
  color: red;
}

.karriere__content {
  color: rgb(0, 0, 0);
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
  max-width: fit-content;
  width: 100%;
  font-size: 1rem;
  grid-area: content;
  
}

.karriere__content p {
  margin-top: 1rem;
  font-weight: 400;
}

.karriere__content ul {
  margin: 1rem 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}

.karriere__content ul li {
  margin-left: 1.5rem;
}

@media only screen and (max-width: 1200px) {
  .karriere__container {
    grid-template-columns: 1fr;
    
    grid-template-areas: 
      "header"
      "content"
      "image";
  }
  
  .karriere__btn--container {
    text-align: center;
    margin-top: 50px;
    align-self: center;
  }
  
  #karriere__btn {
    align-items: center;
    max-width: 80%;
  }
  .karriere__content {
    max-width: 90%;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .karriere__content ul {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .karriere .karriere-header h1 {
    margin-left: 20px;
    font-size: 3rem;
  }
  .karriere__content{
    margin-left: 20px;
    margin-right: 0px;
  }
}



/* contact Section */


 .contact-container {
 background-color: #EEF4ED;
}
 .contact-items {
	display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-left: 50px;
}

.contact-header h1 {
  text-align: left;
  font-size: 4rem;
	margin-bottom: 50px;
  margin-left: 50px;
}

 .contact-item {
  background-color: #8DA9C4;
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	transition: 0.3s ease box-shadow;
}

.contact-info h1 {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 5px;
}
 .contact-info h2 {
	font-size: 1rem;
	line-height: 2rem;
	font-weight: 500;
}

@media only screen and (max-width: 1200px) {
  
  #Kontakt .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#Kontakt .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
}
@media only screen and (max-width: 768px) {
  #Kontakt .contact-items {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 3rem;
    margin-left: 20px;
  }
  .contact-items{
    margin-left: 0;
    align-items: center;
  }
}


/*Footer*/

.footer__container {
  background-color: #0B2545;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__links {
  width: 100%;
  max-width: 1300px;
  display: grid;
  justify-content: center;
}

.footer__link--wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

.footer__link--items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
}

.footer__link--items a {
  padding: 2rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: 0.3 ease-out;
}

.footer__link--items a:hover {
  color: #9ED4EA;
  transition: 0.3 ease-out;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #ffff;
}
.social__media--wrap a{
  color: #fff;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: 0.3 ease-out;
}
.social__media--wrap a:hover{
  color: #9ED4EA;
  transition: 0.3 ease-out;
}


@media screen and (max-width: 480px) {
  .footer__link--items {
    flex-direction: column;
  }
}

/* Datenschutz section */

  .datenschutz__wrapper ul {
    margin: 1rem 0;
    padding: 0;
    font-weight: 400;
  }
  
  .datenschutz__wrapper ul li {
    margin-left: 1.5rem;
  }
  .datenschutz__wrapper {
    margin-top: 50px;

  }
  .datenschutz__wrapper a{
    margin-top: 1rem;
  }

  .Header {
    
  }
  
  .datenschutz__row {
    margin-top: 50px;
    margin: 50px;
  }
  
  .datenschutz__column {
    margin-top: 50px;
  
  }
  
  .daten_colum {
    margin-top: 50px;
  
  }
  .verarbeitung_colum{
    margin-top: 50px;
  }
  .sichern_colum{
    
    margin-top: 50px;
  }
  .rechte_colum{
    
    margin-top: 50px;
  }
  .kinder_colum{
    
    margin-top: 50px;
  }
  .änderung_colum{
    
    margin-top: 50px;
  }


/* Impressum section */

.col-md-12_headline{
  margin: 50px;
  margin-top: 50px;
}

.col-md-12{
  margin: 50px;
  
}
.col-md-12 h2{
  margin-top: 50px;
}
.col-md-12 p{
  margin-top: 20px;
}