/*
Theme Name: Monk
Theme URI: http://www.pondr.com.au/
Description: Made custom, from scratch, with love from Pondr
Author: Matthew Bruce
Version: 1.0
*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  background-color: white;
  color: #333;
}

textarea, input, button {
  transition: all 0.2s ease;
}

.placeholder {
  color: #aaa;
}

h1 {
  font-size: 54px;
  font-family: 'Pacifico', cursive;
  font-weight: 100;
  line-height: 68px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 44px;
  line-height: 56px;
  font-weight: 400;
  font-family: 'Pacifico', cursive;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 32px;
  }
}

p {
  line-height: 2;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  p {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
}
a:hover {
  color: #d05130;
}

ul {
  list-style-type: none;
  font-size: 18px;
}

input {
  font-family: 'Lato', sans-serif;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.container:after {
  content: " ";
  display: block;
  clear: both;
}
@media (max-width: 1199px) {
  .container {
    padding: 0 15px;
  }
}

.button {
  border: none;
  padding: 25px 30px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 400;
  line-height: 0;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  background-color: #d05130;
  color: white;
  border-radius: 90px;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}
.button:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}
@media (max-width: 767px) {
  .button {
    padding: 25px 25px;
  }
}

.cta {
  color: black;
  border: solid 3px black;
}
.cta:hover {
  background-color: black;
  color: white;
}

.left {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: left;
}
@media (max-width: 767px) {
  .left {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}

.right {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: right;
}
@media (max-width: 767px) {
  .right {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}

section {
  padding: 100px 0;
  width: 100%;
  float: left;
}
section h2 {
  text-align: center;
  margin: 0 0 100px 0;
  color: #d05130;
}
@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}
section.border-bottom {
  border-bottom: solid 1px #DDD;
}

nav {
  width: 100%;
  background-color: white;
  padding: 10px 0;
  /*Style 'show menu' label button and hide it by default*/
  /*Hide checkbox*/
  /*Show menu when invisible checkbox is checked*/
}
nav .logo {
  height: 80px;
  width: 80px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  float: left;
}
nav .logo a {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 1023px) {
  nav #menu {
    position: relative;
  }
}
nav ul {
  float: right;
  font-size: 18px;
  margin-top: 10px;
}
@media (max-width: 1023px) {
  nav ul {
    position: absolute;
    top: 100px;
    display: none;
    width: 100%;
    margin-top: 0;
  }
}
nav ul li {
  display: inline-block;
  margin-left: 30px;
  line-height: 60px;
  height: 60px;
  float: left;
}
@media (max-width: 1023px) {
  nav ul li {
    border-top: solid 1px rgba(0, 0, 0, 0.24);
    margin: 0;
    padding: 0;
    background-color: white;
    width: 100%;
    text-align: center;
  }
  nav ul li:last-of-type {
    border-top: none;
  }
}
nav ul li.social {
  line-height: 0;
  height: 60px;
  width: 60px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  nav ul li.social {
    width: 20%;
  }
}
nav ul li.social a {
  background-image: url("../images/social.png");
  background-size: 300px 120px;
  height: 60px;
  width: 60px;
  display: block;
  margin: 0 auto;
  opacity: 0.87;
}
nav ul li.social a:hover {
  opacity: 1;
}
nav ul li.social a.facebook {
  background-position: 0px 0px;
}
nav ul li.social a.facebook:hover {
  background-position: 0px 60px;
}
nav ul li.social a.instagram {
  background-position: 240px 0px;
}
nav ul li.social a.instagram:hover {
  background-position: 240px 60px;
}
nav ul li.social a.twitter {
  background-position: 180px 0px;
}
nav ul li.social a.twitter:hover {
  background-position: 180px 60px;
}
nav ul li.social a.gplus {
  background-position: 120px 0px;
}
nav ul li.social a.gplus:hover {
  background-position: 120px 60px;
}
nav ul li.social a.pinterest {
  background-position: 60px 0px;
}
nav ul li.social a.pinterest:hover {
  background-position: 60px 60px;
}
nav ul li a {
  color: #333;
}
nav ul li a:hover {
  color: #d05130;
}
@media (max-width: 1023px) {
  nav ul li a {
    display: block;
    line-height: 50px;
    margin: 0;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  nav ul li a:hover {
    background: #F5F5F5;
    color: #333;
  }
  nav ul li a:active {
    -webkit-tap-highlight-color: transparent;
  }
}
nav ul li.book a {
  color: white;
  border-radius: 3px;
  -moz-border-radius: 3px;
  /* Firefox */
  -webkit-border-radius: 3px;
  /* Safari and Chrome */
  background-color: #d05130;
  line-height: 40px;
  padding: 0 20px;
  display: block;
  border-radius: 90px;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 1023px) {
  nav ul li.book a {
    border-radius: 0;
  }
}
nav ul li.book a:hover {
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .show-menu {
  text-decoration: none;
  color: white;
  padding: 0;
  margin: 0;
  display: none;
  width: 100px;
  height: 99px;
  float: right;
  cursor: pointer;
  background-image: url("../images/burger.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 18px;
}
@media (max-width: 1023px) {
  nav .show-menu {
    display: block;
  }
}
nav input[type=checkbox] {
  display: none;
}
nav input[type=checkbox]:checked + #menu {
  display: block;
}
nav input[type=checkbox]:checked + #menu ul {
  display: block;
}

.hero-text {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .hero-text {
    padding: 50px 0;
  }
}
.hero-text h1 {
  margin-bottom: 20px;
}
.hero-text p {
  width: 65%;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .hero-text p {
    width: 100%;
  }
}

.hero {
  background-image: url("../images/about2.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  text-align: center;
  min-height: 540px;
}
@media (max-width: 767px) {
  .hero {
    min-height: 240px;
  }
}

.special {
  background-color: #d05130;
  text-align: center;
  padding: 0;
}
.special a {
  color: white;
  line-height: 28px;
  width: 100%;
  display: block;
  font-size: 20px;
  padding: 20px 0;
}

.approach article {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .approach article {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
.approach article h3 {
  margin-bottom: 10px;
  color: #d05130;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
}
.approach article .image {
  min-height: 154px;
  position: relative;
  margin-bottom: 50px;
}
.approach article .image img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.testimonials {
  background-color: #EEE;
}
.testimonials article {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (max-width: 767px) {
  .testimonials article {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-bottom: 50px;
  }
}
.testimonials article .photo {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 90px;
  margin-right: 50px;
  margin: 0 auto;
}
.testimonials article .photo img {
  width: 100%;
}
.testimonials article .content {
  float: left;
  background-color: white;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.11), 0 3px 12px rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  min-height: 340px;
  position: relative;
}
.testimonials article .content p {
  font-size: 16px;
}
.testimonials article .content p .company {
  color: #d05130;
  font-style: italic;
}
.testimonials article .content p:last-of-type {
  margin-bottom: 0;
}

.features ul {
  line-height: 100px;
  text-align: center;
}
.features ul li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (max-width: 767px) {
  .features ul li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}

.optin {
  background-color: #d05130;
  padding: 50px 0;
  text-align: center;
}
.optin h2 {
  color: white;
  margin-bottom: 30px;
}
.optin p {
  color: #333;
}
.optin button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-color: #E53E22;
  background-color: #333;
  color: #fff;
  font-size: 18px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #bf4d00;
}
.optin input {
  margin: 0 auto;
  height: 48px;
  padding-left: 10px;
  width: 300px;
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  margin-right: -11px;
  outline: none;
  border: none;
}

footer {
  font-size: 16px;
  width: 100%;
  float: left;
  color: #999;
}
footer p {
  float: left;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 50px;
}
footer a {
  float: right;
  color: white;
  line-height: 50px;
  color: #999;
}
footer a:hover {
  color: #666;
}

.heading {
  padding: 0;
  margin-bottom: 50px;
}
.heading h2 {
  border-bottom: solid 2px #d05130;
  line-height: 0;
  padding-top: 50px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  color: #d05130;
  margin-bottom: 0;
  font-weight: 600;
}
.heading h2 span {
  background-color: white;
  padding: 0 30px;
}

.small-text {
  font-size: 12px;
  color: #999;
}

.pricing {
  text-align: center;
}
.pricing section {
  padding: 0;
}
.pricing .pricing-intro {
  padding: 100px 0 50px 0;
}
.pricing .pricing-intro h1 {
  color: #d05130;
  margin-bottom: 30px;
}
.pricing .pricing-table {
  padding: 50px 0;
}
.pricing .pricing-table article {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  text-align: center;
  padding: 20px 0 0 0;
}
@media (max-width: 767px) {
  .pricing .pricing-table article {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-bottom: 30px;
  }
}
.pricing .pricing-table article:nth-of-type(2) {
  padding: 0;
}
.pricing .pricing-table article:nth-of-type(2) h3 {
  background-color: #d05130;
  line-height: 140px;
  font-size: 64px;
}
.pricing .pricing-table article h2 {
  background-color: #333;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 50px;
  font-family: 'Lato', sans-serif;
  margin: 0;
}
.pricing .pricing-table article h3 {
  background-color: #d56245;
  color: white;
  font-size: 44px;
  line-height: 100px;
}
.pricing .pricing-table article ul {
  list-style-type: none;
  background-color: #F5F5F5;
  padding: 0 30px;
}
.pricing .pricing-table article ul li {
  border-bottom: solid 1px #d3d1d1;
  line-height: 100px;
  font-size: 22px;
}
.pricing .pricing-table article ul li:last-of-type {
  border-bottom: none;
}

.contact .map-container {
  padding-bottom: 0;
  padding-top: 50px;
}
.contact article h3 {
  margin-bottom: 20px;
}
.contact article.contact-details {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 66.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (max-width: 767px) {
  .contact article.contact-details {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
.contact article.contact-details ul {
  list-style-type: none;
}
.contact article.contact-details ul li {
  background-repeat: no-repeat;
  padding-left: 60px;
  min-height: 50px;
  padding-top: 10px;
  margin-bottom: 30px;
  line-height: 24px;
}
.contact article.contact-details ul li a {
  color: #333;
}
.contact article.contact-details ul li.contact-address {
  background-image: url(../images/location.png);
  background-position: 5px 50%;
}
.contact article.contact-details ul li.contact-phone {
  background-image: url(../images/mobile.png);
  background-position: 8px 50%;
}
.contact article.contact-details ul li.contact-email {
  background-image: url(../images/email.png);
  background-position: 0% 50%;
}
.contact article.contact-form {
  margin-left: 8.33333%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
@media (max-width: 767px) {
  .contact article.contact-form {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
    margin-left: 0%;
    margin-bottom: 30px;
  }
}
.contact article.contact-form form input {
  width: 100%;
  border: solid 2px #DDD;
  height: 50px;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 18px;
  padding-left: 15px;
}
.contact article.contact-form form textarea {
  width: 100%;
  border: solid 2px #DDD;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 18px;
  padding: 15px;
}
.contact article.contact-form form button {
  height: 50px;
  cursor: pointer;
  background-color: #d05130;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  border: none;
  font-weight: 600;
}
.contact article.contact-form form button:hover {
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact article.contact-form form #success {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.about {
  text-align: center;
}
.about section h1 {
  margin-bottom: 50px;
}
.about section .quote {
  background-color: #F5F5F5;
  padding: 30px 50px;
  max-width: 600px;
  margin: 30px auto;
  color: #666;
  font-style: italic;
}
.about section.benefits article {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  margin-top: 50px;
  padding: 0 100px;
}
@media (max-width: 767px) {
  .about section.benefits article {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    padding-left: 0.83333%;
    padding-right: 0.83333%;
  }
}
.about section.aim {
  padding-left: 200px;
  padding-right: 200px;
}
@media (max-width: 767px) {
  .about section.aim {
    padding-left: 0;
    padding-right: 0;
  }
}
.about section h2 {
  margin-bottom: 50px;
}
.about section h3 {
  color: #d05130;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 10px;
}
