#content {
  width: calc(100% - 200px);
  margin: 0 100px;
}

#bannerwrapper {
  background-color: var(--main-bg-colour);
}

#banner {
  height: 800px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/banner.png");
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  position: relative;
}

#banner h1, #banner a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 60px;
}

#banner a {
  color: black;
  background-color: white;
  border-radius: 5px;
  padding: 15px;
  text-decoration: none;
  font-weight: 600;
}

#banner h1 span {
  color: #C61C5E;
}

#layer1 {
  display: flex;
  padding: 40px;
  background-color: var(--main-bg-colour);
  padding-bottom: 100px;
}

#layer1 > * {
  flex: 1;
}

#text1 > * {
  color: white;
  width: 500px;
  font-size: 20px;
  text-align: justify;
}

#text1 i {
  margin-left: 20px;
}

#text1 a {
  color: white;
}

#memberimage {
  margin-left: 50px;
  text-align: center;
}

#memberimage img {
  border-radius: 100%;
  border: solid 6px #C61C5E;
}

#layer2 {
  color: white;
  text-align: center;
  background-color: var(--main-bg-colour);
  padding-bottom: 100px;
  padding-top: 100px;
}

#layer2 .button {
  display: inline-block;
  background-color: white;
  font-size: 35px;
  border-radius: 5px;
  margin: 10px;
}

#layer2 .button a {
  display: block;
  text-decoration: none;
  color: #C61C5E;
  padding: 15px;
}

#layer2 .button a i {
  padding-left: 60px;
  transition: left 0.3s ease;
  position: relative;
  left: 0;
}

#layer3 {
  background-color: var(--main-bg-colour);
  text-align: center;
}

#layer3 > * {
  margin: 0;
}

#layer3 > h1 {
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

#quotes {
  position: relative;
  overflow: hidden;
}

#quotes .quotesection {
  white-space: nowrap;
  position: relative;
  transition: right 0.2s ease;
  right: 0;
}

#quotes .quotesection .quote {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

#quotes .arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#quotes .arrows > * {
  color: white;
  font-size: 80px;
  cursor: pointer;
}

#quotes .arrows .arrowleft {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

#quotes .arrows .arrowright {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#quotes .quote .content {
  margin: auto;
  display: inline-block;
  text-align: left;
  white-space: initial;
}

#quotes .quote .content .text {
  min-height: 200px;
  max-width: 600px;
  padding-left: 240px;
}

#quotes .quote .photo {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  float: left;
}

#quotes .quote p {
  font-size: 24px;
  color: white;
}

#quotes .quote i {
  font-size: 18px;
  color: white;
  margin: 0;
}

#contactemail {
  font-size: 20px;
}

#bignumbers {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  color: white;
  grid-gap: 10px;
}

#bignumbers .number {
  display: inline-block;
  max-width: 500px;
  background-color: #EA3156;
  padding: 10px;
  border-radius: 5px;
}

#bignumbers .number p {
  font-weight: 600;
  margin: 0;
  text-align: center;
  font-size: 30px;
}