@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.mobile {
  display: none;
}

#header {
  position: relative;
  height: 720px;
  overflow: hidden;
  background-image: url(../img/header_img.jpg);
  background-size: cover;
  background-position: 50% 0px;
}
#header nav.dark > a:first-child img:nth-child(2) {
  opacity: 0;
}
#header nav.dark .desktop > a:first-child {
  color: black;
}
#header nav {
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 999999;
  height: 80px;
}
#header nav a {
  transition: 0.3s all;
}
#header nav .rounded-btn {
  background-color: #404040;
}
#header nav > a {
  float: left;
  padding-top: 1rem;
  padding-left: 1rem;
}
#header nav > a img {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 99;
  position: absolute;
  top: 0;
  left: 1rem;
  transition: 0.3s all;
}
#header nav .desktop {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 1rem;
  margin: auto;
  float: right;
}
#header nav .desktop a {
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  color: white;
  text-decoration: none;
  margin-right: 2rem;
  font-size: 0.8rem;
}
#header header {
  height: 100%;
}
#header header h1 {
  position: relative;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-100%);
  font-family: "Montserrat", sans-serif;
  color: white;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
}
#header:before, #header:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -228px;
  margin: auto;
  left: 0;
  right: 0;
  height: 250px;
}
#header:before {
  background-color: #404040;
  z-index: 2;
  transform: skewY(2deg);
}
#header:after {
  background-color: white;
  z-index: 1;
  transform: skewY(-2deg);
}

.blurb {
  background-color: #404040;
  padding: 4rem 0 3rem;
}
.blurb p {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  padding: 0rem 2rem 2rem;
}

.main {
  margin-top: 2rem !important;
  width: 850px;
  max-width: 90%;
  margin: auto;
}
.main .img-text-pair {
  clear: both;
  overflow: hidden;
  margin-bottom: 2rem;
  display: flex;
  min-height: 300px;
}
.main .img-text-pair .text {
  float: left;
  width: 50%;
}
.main .img-text-pair .image {
  float: left;
  width: 50%;
}
.main .img-text-pair .image {
  text-align: center;
}
.main .img-text-pair .image .img-wrapper {
  position: relative;
  margin: auto;
  overflow: hidden;
}
.main .img-text-pair .image img {
  position: relative;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
}
.main .img-text-pair .image:first-child {
  padding-right: 15px;
}
.main .img-text-pair .image:last-child {
  padding-left: 15px;
}
.main .img-text-pair .text {
  position: relative;
}
.main .img-text-pair .text p {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  transform: translateY(-50%);
  top: 50%;
  margin: auto;
  padding: 0 25px;
}

.image-strip {
  position: relative;
  background-image: url("../img/quote_img.jpg");
  background-position: 50% 30%;
  background-size: cover;
  height: 420px;
}
.image-strip .quotation {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 510px;
  line-height: 1.5;
  margin: auto;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: white;
}
.image-strip .quotation:before {
  content: "“";
  position: absolute;
  right: 100%;
  font-size: 175px;
  top: -0.5em;
}
.image-strip .quotation:after {
  content: "”";
  position: absolute;
  left: 100%;
  font-size: 175px;
  top: 30%;
}

.groups {
  padding: 3.5rem 0 5rem;
}
.groups .btns {
  display: none;
}
.groups h2 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.groups .display {
  position: relative;
}
.groups .display .wrapper {
  display: flex;
  max-width: 1400px;
  margin: auto;
  transition: 0.3s all;
}
.groups .display .wrapper a {
  width: 20%;
  text-align: center;
}
.groups .display .wrapper a img {
  max-width: 100%;
  max-height: 60px;
}

.link-away {
  background-color: #f6f6f6;
  height: 100px;
  padding-top: 33px;
}
.link-away a {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: 13px;
  text-decoration: none;
  padding-right: 2.25rem;
}
.link-away a:after {
  content: "";
  background-image: url(../img/arrow.png);
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 5px;
  top: 0;
  margin: auto;
}

footer {
  background-color: #404040;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: none;
  color: white;
}
footer > div {
  text-align: center;
}
footer > div > div {
  display: inline-block;
  text-align: center;
}
footer > div > div * {
  display: inline;
  font-size: 12px;
  color: white;
}
footer > div > div span {
  font-weight: 200;
}
footer > div > p {
  display: inline;
  font-size: 10px;
  font-weight: 200;
  color: white;
}
footer > div br {
  display: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
  }

  footer {
    padding-bottom: 1rem;
    padding-top: 2rem;
  }
  footer > div {
    margin-bottom: 2rem;
  }
  footer > div > div {
    display: block;
  }
  footer > div > div p {
    display: block;
  }
  footer > div > div:last-child {
    margin-top: 1.5rem;
  }
  footer > div br {
    display: block;
  }

  .groups {
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 0 10% 4rem;
  }
  .groups:before, .groups:after {
    content: "";
    position: absolute;
    width: 15%;
    top: 0;
    bottom: 0;
    z-index: 5;
    margin: auto;
  }
  .groups:before {
    right: 85%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
    background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
    /* IE6-9 */
  }
  .groups:after {
    left: 85%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 );
    /* IE6-9 */
  }
  .groups .display {
    width: 100%;
  }
  .groups .display .btns {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
  }
  .groups .display .btns > div {
    position: absolute;
    width: 40px;
    height: 50px;
    top: 0;
    bottom: 0;
    z-index: 9;
    margin: auto;
    transition: 0.4s all;
  }
  .groups .display .btns > div:hover {
    cursor: pointer;
    transform: scale(1.2);
  }
  .groups .display .btns > div img {
    height: 100%;
    width: 100%;
  }
  .groups .display .btns .prev {
    right: 100%;
  }
  .groups .display .btns .next {
    left: 100%;
  }
  .groups .display .btns .next img {
    transform-origin: 50%;
    transform: rotate(180deg);
  }
  .groups .display .wrapper {
    display: inline-flex;
  }
  .groups .display .wrapper a {
    text-align: center;
    min-width: 50%;
  }

  .groups[data-current="0"] .btns .prev {
    opacity: 0 !important;
    pointer-events: none;
  }

  .groups[data-current="5"] .btns .next {
    opacity: 0 !important;
    pointer-events: none;
  }

  .main .img-text-pair > div {
    width: 100% !important;
  }
  .main .img-text-pair .text p {
    position: static;
    transform: none;
    padding: 0;
    max-width: 520px;
    padding-top: 1rem;
    padding-bottom: 2rem;
    font-size: 1rem;
  }
  .main .img-text-pair .image {
    padding: 0 !important;
  }
  .main .img-text-pair .image .img-wrapper {
    max-width: 520px;
  }
  .main .img-text-pair .image .img-wrapper img {
    width: 100%;
  }
  .main .img-text-pair:nth-child(even) {
    flex-direction: column-reverse;
  }
  .main .img-text-pair:nth-child(odd) {
    flex-direction: column;
  }

  .image-strip {
    height: 350px;
  }

  .quotation {
    position: relative !important;
    top: 50% !important;
    left: 50% !important;
    bottom: unset;
    transform: translateX(-50%) translateY(-50%) !important;
    margin-left: 0 !important;
    font-size: 15px !important;
    max-width: 70%;
    width: 400px;
  }
  .quotation:before, .quotation:after {
    font-size: 75px !important;
  }
  .quotation:after {
    top: 80% !important;
  }
}
@media (max-width: 500px) {
  .groups .display .btns .next {
    left: 95%;
  }
  .groups .display .btns .prev {
    right: 95%;
  }

  .desktop {
    display: none;
  }

  .mobile {
    position: fixed;
    width: 100%;
    height: 100px;
    display: block;
    z-index: 2;
  }
  .mobile .toggle-wrapper {
    position: absolute;
    right: 1rem;
    top: 2rem;
    width: 50px;
    height: 50px;
    z-index: 99;
    cursor: pointer;
  }
  .mobile .toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 10px;
    border: solid 2px white;
    border-left-width: 0;
    border-right-width: 0;
    z-index: 99;
    cursor: pointer;
  }
  .mobile .toggle:after {
    content: "";
    height: 2px;
    width: 30px;
    background-color: white;
    position: absolute;
    bottom: -10px;
    right: 0;
  }
  .mobile .wrapper {
    height: 300px;
    background-color: #404040;
    pointer-events: none;
    opacity: 0;
    transition: 0.6s all;
    transform: translateY(-100%);
    padding-top: 120px;
    z-index: 99;
  }
  .mobile .wrapper a {
    display: block;
    background-color: #404040 !important;
    font-size: 1.25rem;
    padding: 0;
    color: white;
    text-decoration: none;
  }

  .mobile.active .wrapper {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0%);
  }
}
.bind {
  max-width: 90%;
  width: 780px;
  margin: auto;
}

.rounded-btn {
  padding: 0.5rem 2rem;
  border-radius: 30px;
  background-color: #064b75;
}

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