/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import url("https://fonts.googleapis.com/css?family=Alegreya+Sans:400,500,700|Roboto:300,300i,400|Spectral:300,400");
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.ccm-page .main-nav .nav > li > a:focus,
.ccm-page .main-nav .nav > li > a:hover {
  background: none;
}
.ccm-page .page-content form .form-control,
.ccm-page .page-content form .form-control:focus {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid;
  box-sizing: border-box;
  transition: all 250ms ease-in-out;
}
.ccm-page .page-content form .form-actions {
  text-align: right;
}
.ccm-page .page-content form .btn.btn-primary {
  font-size: 15px;
  font-weight: 700;
  color: black;
  border: 3px solid black;
  width: 100%;
  min-width: 200px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  padding: 15px;
  background-color: white;
  border-radius: 0;
  display: inline-block;
  transition: all 250ms;
}
.ccm-page .page-content form .btn.btn-primary:hover {
  text-decoration: none;
  color: white;
  background-color: black;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 650px) {
  .ccm-page .page-content form .btn.btn-primary {
    font-size: 16px;
    width: auto;
    min-width: 100px;
    padding: 15px 30px;
  }
}
.ccm-page .page-content form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
  -webkit-text-fill-color: black !important;
}
.ccm-page form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.ccm-page form .grecaptcha-box .grecaptcha-badge {
  box-shadow: none !important;
  z-index: 2;
}
.ccm-page .alert {
  font-size: 15px;
  font-weight: 300;
  padding: 0;
  border-radius: 0;
  border: none;
}

.ccm-panel-ready .ccm-page header {
  top: 48px;
}

.googleMapCanvas .gm-style-iw {
  text-align: center !important;
  line-height: 1.2;
}
.googleMapCanvas .gm-style-iw + div {
  width: 17px !important;
  height: 17px !important;
  top: -0.4px !important;
  right: -0.4px !important;
  border-radius: 50%;
  opacity: 1 !important;
  background-color: white;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.7);
}
.googleMapCanvas .gm-style-iw + div img {
  left: 0 !important;
  top: -334px !important;
}
.googleMapCanvas .gm-style-iw h1 {
  margin: 0 0 0 4px !important !important;
  font-size: 16px !important;
  font-weight: 600;
  width: auto !important;
  color: black;
}
.googleMapCanvas .gm-style-iw p {
  margin-bottom: 4px;
  font-weight: 400;
  margin: 0;
}
.googleMapCanvas iframe + div {
  opacity: 0.15;
}
.googleMapCanvas .gm-style-cc,
.googleMapCanvas .gm-style button {
  display: none;
}

/*
Roboto
Light + Ital: 300, Regular: 400

Alegreya
Regular: 400, Medium: 500, Bold: 700

Spectral
Light: 300, Regular: 400
*/
body,
html {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.ccm-page {
  background-color: rgb(235, 235, 235);
  text-align: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.ccm-page p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: rgb(17, 17, 17);
  margin: 0;
}
.ccm-page h1 {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(215, 167, 156);
  margin: 0 0 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
.ccm-page h2 {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: rgb(125, 125, 125);
  text-transform: uppercase;
  margin: 15px 0 30px;
  position: relative;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
.ccm-page h2:before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #a3a3a3;
  position: absolute;
  top: 46%;
  left: -70px;
}
.ccm-page h2:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #a3a3a3;
  position: absolute;
  top: 46%;
  right: -70px;
}
.ccm-page h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: rgb(123, 0, 70);
  text-transform: uppercase;
  margin: 0 0 20px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
.ccm-page a {
  color: rgb(123, 0, 70);
}
@media (min-width: 650px) {
  .ccm-page p {
    font-size: 18px;
  }
  .ccm-page h1 {
    font-size: 42px;
    letter-spacing: 1px;
  }
  .ccm-page h2 {
    font-size: 30px;
  }
  .ccm-page h3 {
    font-size: 32px;
  }
}
.ccm-page header {
  width: 100%;
  height: 54px;
  background-color: rgb(232, 227, 212);
  border-bottom: 1px solid rgb(220, 210, 180);
  position: fixed;
  top: 0;
  z-index: 10;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.ccm-page header a,
.ccm-page header img {
  width: 210px;
  height: auto;
  margin: auto;
  display: block;
  cursor: pointer;
}
.ccm-page .banner {
  height: 75vh;
  width: 100%;
  background-color: black;
  position: relative;
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
}
.ccm-page .banner picture {
  width: inherit;
  height: inherit;
  display: block;
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.ccm-page .banner img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
.ccm-page .banner .banner-text {
  height: 70%;
  padding: 0 15px;
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ccm-page .banner .banner-text h1 {
  margin: 0 0 15px;
}
.ccm-page .banner .banner-text p {
  font-family: "Spectral", serif;
  font-size: 20px;
  font-font-weight: 300;
  line-height: 1.4;
  color: white;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
.ccm-page .banner + img {
  margin: -160px auto 20px;
  position: relative;
}
.ccm-page .tagline {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(123, 0, 70);
  margin: 0 auto 60px;
}
.ccm-page .tagline strong {
  font-weight: 700;
}
.ccm-page footer {
  margin: 250px 0 0;
  padding: 40px 0;
  background-color: rgb(162, 110, 77);
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
}
.ccm-page footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-color: rgb(162, 110, 77);
  transform: skewY(-3deg);
  position: absolute;
  z-index: 0;
  top: -50px;
}
.ccm-page footer .quote-marks {
  width: 80px;
  margin: -150px auto 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}
.ccm-page footer .quote-marks path {
  fill: #C08f83;
}
.ccm-page footer .footer-quote {
  margin: auto;
  max-width: 400px;
}
.ccm-page footer .footer-quote p {
  font-family: "Spectral", serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.4px;
  color: white;
  margin: auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
.ccm-page footer .footer-quote h4 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: white;
  margin: 30px 0 0;
}
@media (max-width: 649px) {
  .ccm-page .banner .ccm-custom-style-bannerimage {
    background-image: url("../img/bkgd-splash-sm.jpg");
  }
}
@media (min-width: 650px) {
  .ccm-page .banner .banner-text {
    padding: 0 10vw;
    top: 0;
    height: 85%;
  }
  .ccm-page .banner .banner-text p {
    font-size: 34px;
    line-height: 1.4;
  }
  .ccm-page .banner + img {
    margin: -110px auto 20px;
  }
  .ccm-page .tagline {
    font-size: 22px;
    letter-spacing: 3px;
    margin: 0 0 100px;
  }
  .ccm-page footer {
    margin: 240px 0 0;
    padding: 70px 0 100px;
  }
  .ccm-page footer .quote-marks {
    width: 90px;
    margin: -180px auto 0;
  }
  .ccm-page footer .footer-quote p {
    display: inline-block;
    max-width: 400px;
  }
}
@media (min-width: 900px) {
  .ccm-page footer .quote-marks {
    width: 100px;
  }
}
@media (min-width: 1200px) {
  .ccm-page .banner .banner-text {
    padding: 0 10vw;
  }
  .ccm-page .banner .banner-text p {
    font-size: 38px;
  }
  .ccm-page .tagline {
    letter-spacing: 3px;
  }
}
@media (min-width: 1800px) {
  .ccm-page .banner .banner-text {
    padding: 0 20vw;
  }
  .ccm-page footer {
    margin: 300px 0 0;
  }
  .ccm-page footer:before {
    height: 200px;
    top: -80px;
  }
  .ccm-page footer .quote-marks {
    width: 120px;
    margin: -220px auto 0;
  }
}

main {
  flex-grow: 1;
}
main section {
  padding: 0 15px;
}
main section.no-header {
  margin: 120px 0 60px;
}
main section + section {
  padding: 50px 15px 0;
}
main .wrapper-text {
  max-width: 1200px;
  margin: auto;
}
main .grid-cards {
  display: block;
}
main .grid-cards .grid-item {
  text-align: center;
  margin: 0 15px 30px;
  padding: 50px 30px 80px;
  background-color: white;
  box-sizing: border-box;
}
main .grid-cards .grid-item p {
  letter-spacing: 0.5px;
  line-height: 1.8;
}
main .ccm-form .alert-danger {
  color: rgb(123, 0, 70);
  margin: 0 15px;
  padding: 20px;
  background-color: rgb(220, 220, 220);
  box-sizing: border-box;
}
main .ccm-form .alert-danger ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
main .ccm-form .alert-danger ul li {
  font-size: 15px;
  font-weight: 300;
  display: block;
}
main .ccm-form .alert-danger ul li + li {
  margin-top: 10px;
}
main form {
  margin: 60px auto 0;
  max-width: 400px;
}
main form .form-actions {
  margin: 0 15px;
}
main form fieldset {
  position: relative;
  margin: 0 0 40px;
}
main form fieldset label {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  text-align: left;
  display: block;
  line-height: 1.3;
  color: rgb(172, 172, 172);
}
main form fieldset label.error {
  font-weight: 300;
  color: rgb(123, 0, 70);
  width: 100%;
}
main form fieldset .text-muted {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  color: rgb(172, 172, 172);
  display: inline-block;
  float: right;
  display: none;
}
main form fieldset .ccm-input-email + .error {
  font-size: 14px;
  color: rgb(123, 0, 70);
  padding: 4px 0 0;
  bottom: auto;
  box-sizing: border-box;
  position: absolute;
}
main form fieldset .ccm-input-email + .error:before {
  content: "* ";
}
main form fieldset .mb-3 + .mb-3 {
  margin-top: 40px;
}
main form .form-control {
  font-size: 16px;
  color: rgb(123, 0, 70);
  padding: 4px 0;
  width: 100%;
  height: auto;
  resize: none;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0 !important;
  border-bottom: 1px solid rgb(123, 0, 70);
}
main form .form-control:focus {
  box-shadow: none !important;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(123, 0, 70);
}
main form textarea.form-control {
  height: 120px;
  margin-top: 15px;
  padding: 8px;
  border: none;
  box-sizing: border-box;
  background-color: white;
}
main form textarea.form-control:focus {
  border: none;
}
main form .form-actions {
  max-width: 400px;
  margin: 30px auto 0;
}
main form .form-actions .btn {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(123, 0, 70);
  background-color: rgb(235, 235, 235);
  padding: 8px 26px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid rgb(123, 0, 70);
  line-height: 1.5;
  border-radius: 5px;
  float: right;
  transition: 200ms ease-in-out;
}
main form .form-actions .btn:hover {
  color: rgb(235, 235, 235);
  background-color: rgb(123, 0, 70);
}
main form .grecaptcha-logo {
  opacity: 0;
}
@media (min-width: 650px) {
  main .contact-form h2 {
    margin-top: 60px;
  }
  main .ccm-form .alert-danger {
    max-width: 80vw;
    margin: auto;
  }
  main form {
    max-width: 600px;
  }
  main form .form-actions {
    max-width: 80vw;
    margin: 40px auto 0;
  }
  main form fieldset:nth-child(2) {
    width: 46%;
    padding-right: 4%;
    float: left;
  }
  main form fieldset:nth-child(3) {
    width: 46%;
    padding-left: 4%;
    float: right;
  }
  main form fieldset:nth-child(4) {
    clear: both;
  }
}
@media (min-width: 900px) {
  main .grid-cards {
    display: flex;
    flex-direction: row;
    align-items: space-between;
  }
  main .grid-cards .grid-item {
    width: 33%;
    margin: 0 15px 60px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 600ms ease-in-out;
  }
  main .grid-cards .grid-item:nth-child(2) {
    transition-delay: 300ms;
  }
  main .grid-cards .grid-item:nth-child(3) {
    transition-delay: 600ms;
  }
  main .visible .grid-cards .grid-item {
    transform: translateY(0);
    opacity: 1;
  }
  main .ccm-form .alert-danger {
    max-width: 600px;
  }
  main form .form-wrapper {
    max-width: 600px;
    margin: 60px auto 0;
  }
  main form fieldset.captcha {
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  main section.no-header {
    margin: 150px 0 100px;
  }
  main .grid-cards {
    display: flex;
    flex-direction: row;
    align-items: space-between;
  }
  main .grid-cards .grid-item {
    width: 33%;
    margin: 0 30px 60px;
  }
}
