body {
  font-family: Verdana, sans-serif;
  margin: 0;
}

h2, h3, h4, h5 {
  text-align: center;
}

.page-width {
  padding-left: 10%;
  padding-right: 10%;
}

.page-title h1 {
  font-size: 6.5rem;
  color: #79b6e4;
  margin-top: 150px !important;
  margin-bottom: 50px !important;
}

.section-title {
  margin-bottom: 40px;
}

h3 {
  margin-bottom: 1.5rem;
}

a {
  color: #79b6e4;
}

a:hover {
  color: #3892d6;
}

.page-content {
  background-color: white;
  padding: 5% 10%;
  border-radius: 20px;
}

section {
  padding-bottom: 150px;
}

.page-first-text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 100px;
}

.box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.box-work {
  height: 300px;
  padding: 0 40px;
}

.text-white {
  color: white;
}

.text-black {
  color: #212529 !important;
}

.blue-background {
  background: linear-gradient(to bottom right, #171B1D, #003A58);
}

.button-link {
  border-radius: 10px;
  padding: 10px 40px;
  color: white;
}

.button-link:hover {
  background: linear-gradient(to bottom right, #003A58, #79b6e4);
  color: white;
  text-decoration: none;
}

/*-------------- Home --------------------*/
.home {
  padding-top: 100px;
  padding-bottom: 20px;
}

.home-title-margin {
  display: table;
  margin: 50px auto;
}

.home-title {
  color: #79b6e4;
  font-size: 4.5rem;
}

.img-center{
  display: flex;
  align-items: center;
}

section {
  position: relative;
}

#section04 a {
  padding-top: 60px;
}
#section04 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-left: -12px;
  border-left: 4px solid #79b6e4;
  border-bottom: 4px solid #79b6e4;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb04 2s infinite;
  animation: sdb04 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb04 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb04 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

.home-section {
  padding-top: 85px;
  padding-bottom: 50px;
}

.circles {
  display: flex;
  justify-content: space-around;
}

.circle {
  width: 300px;
  height: 300px;
  border-radius: 150px;
  margin-bottom: 25px;
  background: linear-gradient(to bottom right, #171B1D, #003A58);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle h3 {
  color: white;
  text-transform: uppercase;
}

.box-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}

.ptb-100 {
  padding: 100px 0;
}

.box-home {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-home h3 {
  color: white;
  margin-bottom: 20px;
}

.box-home button {
  color: white;
  padding: 10px 40px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

#services img {
  width: 60%;
  margin-bottom: 50px;
}

/*-------------- Shopify --------------------*/
#shopify img {
  width: 60%;
  margin-bottom: 50px;
}

/*-------------- Projekte --------------------*/
#projects {
  //background-color: #79b6e4;
}

.project-description {
  align-self: center;
  z-index: 1;
}

@media (max-width: 767px) {
  .project-description {
    display: flex;
    justify-content: center;
    transform: translateY(-15%);
  }
}

.project-image {
  width: 115%;
  border-radius: 10px;
  border: 0.25px solid lightgrey;
}

@media (max-width: 767px) {
  .project-image {
    width: 100%;
  }
}

.project-image-right {
  transform: translate(-15%);
}

@media (max-width: 767px) {
  .project-image-right {
    transform: translate(0%);
  }
}

.project-margin {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .project-margin {
    margin-bottom: 50px;
  }
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

@media (max-width: 767px) {
  .flip-card {
    width: 85%;
  }
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 5px 5px 25px rgba(0,0,0,0.2);
  border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

.flip-card-front {
  color: white;
}

.flip-card-back {
  background-color: white;
  color: black;
  transform: rotateY(180deg);
}

/*-------------- Referenzen --------------------*/
#references {
  //background-color: #333333;
}

.line-row {
  border-bottom: 1px solid #333333;
}

@media (min-width: 576px) {
  .line-row {
    border-right: 1px solid #333333;
  }
}

@media (min-width: 768px) {
  .line-row {
    border-right: 1px solid #333333;
  }
}

.reference {
  display: flex;
  padding: 12% !important;
  justify-content: center;
}

@media (min-width: 576px) {
  .reference {
    padding: 6% !important;
  }
}

@media (min-width: 768px) {
  .reference {
    padding: 3% !important;
  }
}

.reference img {
  width: 90%;
  align-self: center;
  transition: 0.3s ease-in-out;
}

.reference img:hover {
  transform: scale(1.2);
}

/*-------------- Kontakt --------------------*/
#contact {
  //background-color: #888888;
}

/*.hamburg-background {
  background: linear-gradient(to bottom right, #171B1D, #003A58), url("Images/Hamburg.png") !important;
  width: 100%;
}*/

#contact input {
  width: 100%;
  background-color: #f0f0f0;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.15);
  padding: 10px 30px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

#contact input::placeholder {
  color: darkgrey;
}

#contact textarea {
  width: 100%;
  background-color: #f0f0f0;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.15);
  padding: 10px 30px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

#contact textarea::placeholder {
  color: darkgrey;
}

#contact button {
  color: white;
  padding: 10px 40px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

/*.send {
  width: 20%;
  padding: 10px 30px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
  //float: right;
  background-color: #555555;
  color: white;
}*/


.row {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.p-0 {
  padding: 0;
}

.pt-1 {
  padding-top: 1px;
}

.prl-10 {
  padding: 0 10px;
}

.m-0 {
  margin: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-100 {
  margin-bottom: 100px;
}

.d-flex {
  display: flex;
}

/* -------------------Header-----------------*/

.header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.logo {
  width: 20%;
  max-width: 250px;
  min-width: 200px;
}

.logo img {
  width: 100%;
}

.navbar {
  transition: all .6s;
  backface-visibility: hidden;
  padding: .5em 0;
}

.header-background {
  background: #003A58;
}



.navbar-dark .navbar-nav { font-size: 30px; color: #fff; text-align: center; }
.navbar-dark .navbar-nav .nav-link { color: #fff; color: rgba(255, 255, 255, 0.8); border: 0; padding: 2rem 1rem; }
.navbar-dark .navbar-nav .nav-link:hover { color: #fff; }
.navbar-dark .navbar-nav .nav-link:focus { color: #fff; outline: 0; }

.navbar-dark .navbar-toggler { border: 0 solid #444; }
.navbar-dark .navbar-toggler:focus { background: none; outline: 0; }

.navbar-dark .navbar-toggler span {
	display: block; width: 30px; height: 2px; margin: 6px auto; background: #fff;
	transition: all .5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.navbar-dark .navbar-toggler:hover span,
.navbar-dark .navbar-toggler:focus span { background: #ccc; }

/* rotate first span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:first-of-type { transform: rotate(135deg) translateY(-12px); }
/* hide second span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) { transform: translateX(-30px); opacity: 0; }
/* rotate third span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:last-of-type { transform: rotate(-135deg) translateY(12px); }

.navbar-dark .navbar-toggler[aria-expanded="false"] span { transform: none; opacity: 1; }

.navbar-brand {
	width: 162px;
	height: 44px;
	background: url(../Images/Logo.png) left center no-repeat;
	border: 0;
	text-indent: -99999px;
}


/*--------- Tippen-Animation -----------*/
.animated-text {
 font-family: "Courier Prime", "Roboto Mono", "DM Mono", monospace;
 overflow: hidden;
 //height:1.1em;
 word-wrap: break-word;
 white-space: nowrap;
 animation: typing 3s steps(9), blink .3s step-end infinite alternate;
 border-right: 5px solid;
 width: 9ch;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent
  }
}

.projectMapItem {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width:25% ;
  padding-top: 5%;
}

.projectMapH2 {
  text-align: center;
  font-size: 3rem;
  margin-top: 5%;
}
.projectMapText {
  text-align: center;
  font-size: 2rem;
  padding-top: 2%;
  padding-bottom: 5%;
  margin-left: 5%;
  margin-right: 5%;
}
.ProjectMapBackground0 {
  background-color: #FFFFFF;
}
.ProjectMapBackground1 {
  background-color: #CCFFFF;
}
.ProjectMapBackground2 {
  background-color: #99FFFF;
}
.ProjectMapBackground3 {
  background-color: #66FFFF;
}
.ProjectMapBackground4 {
  background-color: #FFFFFF;
}
.contactButton {
  color: white;
  border: none;
  padding: 10px 40px;
  border-radius: 10px;
}
.contactButton:hover {
  background: linear-gradient(to bottom right, #003A58, #79b6e4);
  color: white;
  text-decoration: none;
}

.center {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 4%;
  padding-bottom: 8%;
}
.shopify2 {
  background-color: #CCFF99;
}