/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #595959;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: #FE9538;
  text-decoration: none;
  transition: color 0.1s linear;
}
a:hover, a:active, a:focus {
  color: #0095ff;
  text-decoration: underline;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-weight: 700;
  color: #292A31;
  line-height: 1.2;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  display: block;
}

.wrapper {
  max-width: 1250px;
  margin: 0 auto;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}

/** Page */
.post__header {
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.page__title {
  position: relative;
  font-size: 3em;
  /* font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); */
  font-size: calc(30px + 10 * ((100vw - 320px) / 600));
  letter-spacing: 0.02em;
}

.page__title:after {
  display: block;
  content: "";
  width: 62px;
  height: 1px;
  background-color: #282828;
  margin: 24px 0 30px;
}

/**
 * Basic typography style for copy text
 */
/* float clearing for IE6 */
* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
* + html .clearfix {
  min-height: 1%;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

.clr {
  clear: both;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1250px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 25px;
  /* 3 */
  padding-right: 25px;
  /* 3 */
  width: 100%;
  /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.siteHeader {
  padding: 15px 40px;
  width: 100%;
  overflow: hidden;
  max-width: 1520px;
  border-bottom: 1px solid #ececec;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding: 0 12px;
  margin-right: auto;
  justify-self: flex-start;
}

.logo a {
  font-size: 1.2rem;
}

.logo img {
  max-height: 30px;
  width: auto;
}

/**
Footer
**/
.footer__top {
  border-top: 1px solid #ececec;
  padding: 30px 35px;
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: end;
}

.footer__blogDescription {
  margin-right: auto;
}

.footer__bottom {
  background-color: #16191C;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: end;
  align-items: center;
  padding: 30px 35px;
  color: #8FA2B5;
  font-size: 0.8rem;
}

.footer__copyright a {
  text-transform: none;
  color: #fff;
  color: #8FA2B5;
  text-decoration: underline;
}

.footer__top .menu {
  margin-right: auto;
  padding: 0;
}

.sidePanel {
  width: 250px;
  height: 100%;
  z-index: 999;
  padding-top: 50px;
  cursor: pointer;
  margin-left: -250px;
  background: #16191C;
  color: #fff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  overflow-y: visible;
  top: 0;
}

#dismiss {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
}

.sidePanel.active {
  margin-left: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

.sidePanel__inner {
  overflow-y: auto;
}

/** sideNav nav */
.sideNav {
  color: #fff;
  padding: 10px;
  list-style: none;
  margin: 0;
  font-size: 0.825em;
  font-weight: 700;
}

.sideNav__item {
  text-align: center;
}

.sideNav__link {
  padding: 10px;
  display: block;
  position: relative;
  color: #fff;
}
.sideNav__link:hover {
  color: #0095ff;
}

.sideNav__link:after,
.sideNav__link:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  border-style: solid;
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.05, 1.29);
}

.sideNav__link:before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
  transform: translate3d(10px, 10px, 0);
}

.sideNav__link:after {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
  transform: translate3d(-10px, -10px, 0);
}

.sideNav__link:hover:before,
.sideNav__link:hover:after {
  border-color: #0095ff;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sideNav__item.current-post-ancestor > a,
.sideNav__item.active > a {
  color: #0095ff;
}

.sidePanel__footer {
  font-size: 0.8rem;
  text-align: center;
  color: #999;
  padding-bottom: 2em;
}

.sidePanel__link {
  color: #999;
  text-decoration: underline;
}

.menu {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
}

.menu__item {
  cursor: pointer;
}

.menu__link:visited,
.menu__link {
  display: block;
  padding: 0 15px;
}

.menu__link:hover,
.menu__link:focus {
  color: #888;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 25px 15px 30px;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 1px solid #282828;
  color: #000;
  background: none;
  cursor: pointer;
  transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
}
.btn:hover {
  background-color: #282828;
  color: #fff;
  text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| Form
|--------------------------------------------------------------------------
*/
form {
  margin-top: 40px;
}
form input,
form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  margin-bottom: 40px;
  font-size: 16px;
  color: #444;
}
form label {
  display: block;
  margin-bottom: 10px;
}
form textarea {
  height: 200px;
}
form button {
  border: none;
  background: #E41C4E;
  padding: 10px 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

/** Get in touch */
.getInTouch {
  padding: 35px;
  background-color: #f0f8ff;
}

.getInTouch__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31%, 3fr));
  max-width: 870px;
  margin: auto;
  align-items: center;
}

.getInTouch__button {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.getInTouch__link {
  background: #fff;
  color: #2E3448;
  padding: 10px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  box-shadow: 0 0 10px #ddd;
  transition: all 0.2s linear;
}
.getInTouch__link:hover {
  box-shadow: 0 0 10px #999;
  border: 1px solid #999;
}

.getInTouch__phone {
  font-weight: 800;
  margin-top: 10px;
}

.hero {
  max-width: 1520px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hero h1 {
  font-size: 4rem;
}
.hero .heroContent {
  margin-top: 5%;
  margin-left: 5%;
  max-width: 500px;
}

.buttons {
  margin-top: 10%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.buttons .btn {
  max-width: 250px;
}
.buttons .info {
  position: relative;
}
.buttons .info::before {
  background-color: #feb06b;
  content: "";
  position: absolute;
  top: 2px;
  width: 75%;
  height: 20px;
  z-index: -1;
  transition: width 0.3s linear;
}
.buttons .info:hover::before {
  width: 100%;
}

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