body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11pt;
  line-height: 2;
  text-align: center;
  color: #000;
  margin: 0;
  animation: fadein 5.5s;
}

h1 {
  font-size: 28px;
  color: #7C252E;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: #333;
}

a {
  text-decoration: none;
  color: #ccc;
}

strong {
  color: #000;
}

.section {
  padding-left: 8rem;
  padding-right: 8rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#logo {
  max-width: 264px;
  margin-top: 8rem;
}

#welcome {
  background-image: url(assets/hero.svg);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  min-height: 24rem;
  padding-bottom: 0;
}

#teamcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

#mainteam {
  width: 100%;
}

.team {
  width: 45%;
  margin-top: 4rem;
  text-align: left;
  padding: 2%;
}

.team h3 {
  text-align: center;
}

.teamicon {
  max-height: 128px;
  border-radius: 100%;
  border: 1px solid #ccc;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#projectscontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.project {
  width: 100%;
  margin-top: 3rem;
  padding-left: 2%;
  text-align: left;
}

.project1 {
  width: 100%;
  margin-top: 6rem;
  padding-left: 2%;
  text-align: center;
}

.projectimage {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  margin-top: 2rem;
}

.galleryimg {
  width: 23%;
  height: 100%;
  margin: 1%;
  cursor: pointer;
  transition: transform 300ms linear;
}

.galleryimg:hover {
  transform: scale(1.1);
}


/* The Modal (background) */
.modal {
  display: flex;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms;
  overflow: auto;
  background-color: #000;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

/* Modal Content */
.modal-content {
  display: inline-block;
  overflow: auto;
  margin-left: 5%;
  margin-right: 5%;
}

#slidecontent {
  transition: opacity 350ms;
}

.modal-content img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 80vh;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover {
  color: #3AC7D8;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  color: #3AC7D8;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


input {
  font-size: 14px;
  text-align: center;
  background-color: #eee;
  border-radius: 4px;
  padding: 12px;
  margin: 0.5rem;
  border: 0;
}

textarea {
  font-size: 14px;
  background-color: #eee;
  border-radius: 4px;
  padding: 12px;
  margin: 0.5rem;
  border: 0;
  width: 80%;
  max-width: 400px;
}

.hide-robot{
			display:none;
		}

form {
  margin-top: 6rem;
}

input {
  font-size: 14px;
  text-align: center;
  background-color: #f1f1f1;
  color: #fff;
  border-radius: 4px;
  padding: 12px;
  margin: 0.5rem;
  border: 0;
}

textarea {
  font-size: 14px;
  background-color: #f1f1f1;
  color: #fff;
  border-radius: 4px;
  padding: 12px;
  margin: 0.5rem;
  border: 0;
  width: 80%;
  max-width: 400px;
}

button {
  font-size: 16px;
  text-align: center;
  background-color: #7c252E;
  color: #fff;
  border-radius: 4px;
  padding: 12px;
  margin-top: 1rem;
  border: 0;
  transition: background-color 150ms linear;
  cursor: pointer;
}

button:hover {
  background-color: #fff;
  color: #000;
}

#formmessage {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  text-align: center;
  padding-top: 40vh;
  transition: opacity 350ms linear;
}

#footer {
  text-align: center;
}

@media screen and (max-width: 768px) {

  .section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 28px;
    font-weight: 600;
  }

  h3 {
    font-size: 18px;
    font-weight: 600;
  }

  #welcome h1 {
    font-size: 24px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  #logo {
    width: 80%;
  }

  .team {
    width: 100%;
    padding: 0;
  }

  #price h2 {
    font-size: 28px;
  }

  #price h3 {
    font-size: 18px;
  }

}

@media screen and (min-width: 1600px) {

.section {
  padding-left: 15rem;
  padding-right: 15rem;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

}

@keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}
