@charset "UTF-8";
* {
  box-sizing: border-box;
}

:focus {
  outline: 2px solid #c40029;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}
img.logo {
  max-width: 250px;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

.button, .button-inverse {
  text-transform: uppercase;
  background-color: #334042;
  border-radius: 3px;
  color: #fff;
  padding: 12px 35px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

body {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-width: 100%;
  font-family: PT Sans;
  color: #334042;
  grid-template-areas: "header" "main" "footer";
}
body.home {
  grid-template-areas: "header" "mission" "services" "offer" "call" "friends" "footer";
}

.container {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

section.main {
  grid-area: main;
  margin: 2rem 0;
}

/*************************************************
START Header
**************************************************/
header {
  grid-area: header;
  display: grid;
  grid-template-areas: "contact" "banner" "thin-banner";
}

.home header {
  grid-template-areas: "contact" "banner" "slides" "thin-banner";
}

ul.crumbs {
  display: flex;
  flex-flow: row nowrap;
  font-size: 0.9rem;
}
ul.crumbs li:after {
  content: ">>";
  padding: 0 10px;
}
ul.crumbs li:last-child:after {
  content: "";
}
ul.crumbs a {
  color: #fff;
}
ul.crumbs a:hover {
  color: #c40029;
}

#top-contact {
  grid-area: contact;
  background-color: #f9f9f9;
  color: #c1c1c1;
  min-height: 40px;
}

#top-contact-inner {
  display: flex;
  justify-content: flex-end;
}

#top-contact span {
  padding: 10px 25px;
  border-left: 1px solid rgba(51, 64, 66, 0.2);
}

#top-contact-inner i.fas.fa-phone {
  font-size: 0.8rem;
  padding-right: 12px;
}

#banner {
  position: relative;
  grid-area: banner;
  background-color: #fff;
  border-bottom: 1px solid rgba(51, 64, 66, 0.2);
}

.two-column, .three-column {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.two-column p a, .three-column p a {
  color: #c40029;
  text-decoration: none;
}
.two-column p a:hover, .three-column p a:hover {
  text-decoration: underline;
}

#site-logo {
  margin: 0.25rem 0;
}
#site-logo h1 {
  margin: 0;
}
#site-logo h1 a {
  background: url("../images/teton-logo.png") no-repeat top left;
  display: block;
  text-indent: -9999px;
  width: 250px;
  height: 116px;
  overflow: hidden;
}

#cta-sticker {
  position: absolute;
  z-index: 9;
  width: 150px;
  left: 26%;
  top: 10%;
}

nav {
  width: 100vw;
  max-width: 650px;
}
nav ul {
  display: flex;
  position: relative;
}
nav ul li {
  position: relative;
  display: flex;
  flex: 1;
  background-color: #fff;
}

ul li.active a, ul li a:hover {
  color: #c40029;
}

section.main .services h2 a:hover,
.mobile-button span.active,
#copyright a,
.error404 a {
  color: #c40029;
}

nav ul li:hover > ul.sub-menu {
  display: flex;
}
nav ul li a {
  flex: 1;
  justify-content: center;
  display: inline-flex;
  color: #000;
  text-decoration: none;
  padding: 20px;
  position: relative;
  text-transform: uppercase;
  border-right: 1px solid rgba(51, 64, 66, 0.2);
}

.navbar .menu a > .fa {
  font-weight: bold;
  margin-left: 8px;
}

nav li > ul.sub-menu {
  position: absolute;
  display: none;
  flex-direction: column;
  left: 0;
  top: 100%;
  width: auto;
  min-width: 200px;
  z-index: 99;
}
nav li > ul.sub-menu li a {
  width: 100%;
  justify-content: flex-start;
  border: 1px solid rgba(51, 64, 66, 0.2);
}
nav li > ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 200px;
}

.mobile-button {
  display: none;
  position: absolute;
  right: -99999em;
  width: 83px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.mobile-button span {
  font-size: 0.75rem;
  font-family: PT Sans;
}
.mobile-button span:before {
  content: "";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 2rem;
  transition: transform 0.5s ease;
}
.mobile-button span.active:before {
  transform: rotate(90deg);
}

#banner.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-backface-visibility: hidden;
}
#banner.sticky #site-logo h1 a {
  width: 150px;
  height: 70px;
  background-size: 150px 70px;
}
#banner.sticky #cta-sticker {
  left: 17%;
  width: 110px;
  top: 0px;
}

.sticky + #slides, .sticky + .thin-banner {
  margin-top: 98px;
}

/*************************************************
END Header
**************************************************/
/************************
START Slides
************************/
#slides {
  grid-area: slides;
  position: relative;
  overflow: hidden;
}

.flexslider {
  margin: 0;
  border: none;
  background: #242424;
}

li.flex-active-slide, .flexslider .slides > li {
  position: relative;
}

.overlay-text {
  position: absolute;
  padding: 0.75rem;
  top: 15%;
  right: 20%;
  font-family: Montserrat;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  max-width: 460px;
}
.overlay-text span {
  color: #5d6454;
  text-transform: uppercase;
  font-size: 20px;
}
.overlay-text h2 {
  font-size: 41px;
  margin: 10px 0;
}
.overlay-text h3 {
  font-size: 17px;
  margin: 15px 0px 0px;
}

.button-inverse, input.wpcf7-form-control.wpcf7-submit {
  background-color: #5d6454;
  border-radius: 3px;
}

.button-inverse:hover,
.button:hover,
#form-right #submit-button input:hover {
  background-color: #c40029;
  color: #fff;
}

#services h2 {
  font-size: 18px;
  line-height: 36px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: #fff;
  font-family: Montserrat;
  margin: 20px 0;
}

#services-slider {
  margin-bottom: 3rem;
  background: transparent;
  border: none;
}
#services-slider .slides li {
  width: 387px;
  height: 255px;
  overflow: hidden;
}
#services-slider .slides li a:hover > img {
  max-width: none;
  width: 110%;
  transition: width 0.5s ease;
}
#services-slider a {
  position: relative;
  display: block;
}
#services-slider a:hover span {
  opacity: 1;
  transition: opacity 0.5s ease;
}
#services-slider a span {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 6rem;
  font-size: 1.5rem;
  opacity: 0;
}
#services-slider ul.flex-direction-nav {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: -2.5rem;
}
#services-slider .flex-direction-nav a:before {
  color: #c4c4c4;
  font-size: 20px;
}

.flex-direction-nav a {
  text-shadow: none;
  color: transparent;
}

#services-slider .flex-direction-nav a {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  color: transparent;
  text-shadow: none;
}
#services-slider .flex-next {
  opacity: 1;
}
#services-slider .flex-prev {
  opacity: 1;
  left: 10px;
}
#services-slider .flex-next {
  right: 10px;
}

.flex-direction-nav a:hover {
  color: transparent;
}

.service-showcase h2 {
  margin: 0;
}

.service-showcase a {
  color: #c40029;
  text-decoration: none;
}

.service-showcase a:hover {
  text-decoration: underline;
}

.service-showcase hr {
  background-color: #c40029;
  height: 3px;
  margin: 1.5rem 0;
}

/************************
END Slides
************************/
/************************
START Call
************************/
#fixed-call {
  grid-area: call;
  text-align: center;
  background: url("../images/home-call.jpg");
  background-size: cover;
  background-attachment: fixed;
  font-family: Montserrat;
  font-weight: 500;
}
#fixed-call .container {
  padding: 100px;
}
#fixed-call h3 {
  color: #fff;
  text-transform: uppercase;
  line-height: 1.35em;
  font-size: 31px;
}

/************************
END Call
************************/
/************************
START Mission
************************/
#mission {
  grid-area: mission;
}
#mission h1 {
  margin-top: 0;
}
#mission .container {
  margin: 2rem auto;
}
#mission .two-column {
  margin: 1rem 0;
  align-items: flex-start;
}
#mission .two-column img {
  min-width: 347px;
}
#mission .two-column > div:nth-child(odd) p {
  margin-right: 1rem;
}
#mission .two-column > div:nth-child(even) p {
  margin-left: 1rem;
}
#mission .two-column > div p {
  margin-top: 0;
}

/************************
END Mission
************************/
#services {
  grid-area: services;
  background-color: #415d79;
}

#offer {
  grid-area: offer;
}

#friends {
  grid-area: friends;
}

#offer, #friends {
  text-align: center;
  padding: 50px 0;
}

#services, footer {
  background-color: #242424;
}

.thin-banner {
  grid-area: thin-banner;
  padding: 0;
  background-image: linear-gradient(rgba(51, 64, 66, 0.7), rgba(51, 64, 66, 0.7)), url(../images/thin-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  max-height: 78px;
}
.thin-banner > div {
  font-size: 18px;
  font-weight: 600;
  font-family: Montserrat;
  text-transform: uppercase;
}

.home .thin-banner {
  padding: 20px 0;
}

#banner.sticky.logged-in {
  margin-top: 32px;
}

/*************************************************
START Gallery
**************************************************/
#ie-warning {
  display: none;
}

section.accordion h2 {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
section.accordion h2 button.accordion-trigger {
  display: flex;
  padding: 8px 8px 0;
  width: 175px;
  font-size: 16px;
  background-color: #242424;
  color: #fff;
  transition: color 0.5s ease;
  border-radius: 3px 3px 0 0;
}
section.accordion h2 button.accordion-trigger:hover {
  color: #c40029;
}
section.accordion h2 button.accordion-trigger:focus {
  outline: none;
}
section.accordion h2 button.accordion-trigger.active i {
  transform: rotate(180deg);
  color: #c40029;
}
section.accordion h2 button.accordion-trigger span.accordion-title {
  flex: 2;
}
section.accordion h2 button.accordion-trigger i {
  transition: transform 0.5s ease;
  padding: 0 2px;
}
section.accordion .accordion-body {
  overflow: hidden;
  max-height: 2500px;
  border-top: 10px solid #242424;
  border-radius: 3px 3px 0 0;
  transition: max-height 0.5s ease;
}
section.accordion .accordion-body.collapsed {
  max-height: 0;
}
section.accordion .accordion-body .grade .gallery-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, 187px);
  grid-gap: 15px;
}
section.accordion .accordion-body .grade .gallery-wrap img {
  cursor: pointer;
}
section.accordion .accordion-body .grade .gallery-wrap img:hover {
  outline: 1px solid #c40029;
}

#full-img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#full-img-overlay.visible {
  opacity: 1;
}
#full-img-overlay #full-img-wrapper {
  position: relative;
  margin: 50px auto;
  width: 90%;
  max-width: 1500px;
}
#full-img-overlay #full-img-wrapper .flexslider {
  background-color: transparent;
  border: none;
}
#full-img-overlay #full-img-wrapper .flexslider .flex-viewport {
  max-height: 90vh;
}
#full-img-overlay #full-img-wrapper .flexslider .flex-viewport img {
  width: auto;
  margin: 0 auto;
}
#full-img-overlay #full-img-gallery-exit {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  font-size: 15px;
  padding: 0;
  line-height: 1;
  background-color: #000;
  color: #fff;
  transition: all 0.5s ease;
}
#full-img-overlay #full-img-gallery-exit:hover {
  background-color: #fff;
  color: #000;
}

/*************************************************
END Gallery
**************************************************/
/*************************************************
START Footer
**************************************************/
footer {
  grid-area: footer;
}

#footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  column-gap: 40px;
  padding: 20px;
}

footer {
  color: #c4c4c4;
}
footer a {
  color: #c4c4c4;
}
footer h3 {
  text-transform: uppercase;
  font-family: Montserrat;
  margin-bottom: 10px;
}
footer ul li {
  padding: 5px 0;
}

#footer-inner a {
  text-decoration: none;
}

#copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: #0f0f0f;
}
#copyright a {
  color: #fff;
}
#copyright a:hover {
  color: #c40029;
}

/*************************************************
END Footer
**************************************************/
/**************************************************
START Services
**************************************************/
.services-single {
  display: flex;
  border-bottom: 2px solid rgba(51, 64, 66, 0.8);
  padding: 2rem 0;
  justify-content: space-between;
}
.services-single:first-child {
  padding-top: 0;
}

.odd .services-image, .even .services-description {
  order: 0;
}

.odd .services-description, .even .services-image {
  order: 1;
}

.odd .services-description, .even .services-description {
  flex: 2 1 0;
}

.odd .services-image {
  margin-right: 2rem;
}

.even .services-image {
  margin-left: 1rem;
}

.services-description h2 {
  margin-top: 0;
}
.services-description h2 a {
  color: #334042;
}

/* Windswept */
.two-column#windswept-top {
  justify-content: flex-start;
  align-content: flex-start;
  margin-top: 10px;
}
.two-column#windswept-top > div {
  align-self: flex-start;
  flex: 1 1 0;
}
.two-column#windswept-top #windswept-info {
  display: flex;
  flex-direction: column;
  margin-left: 2rem;
}
.two-column#windswept-top #windswept-info > span {
  display: flex;
  justify-content: center;
}
.two-column#windswept-top #windswept-info > span img {
  width: 400px;
  align-self: center;
}

#winswept-slider {
  width: 800px;
  background-color: #fff;
  text-align: center;
}
#winswept-slider .slides {
  margin: 0;
  padding: 0;
}
#winswept-slider .slides li img {
  transition: 0.5s width ease;
}
#winswept-slider .slides li span {
  margin-top: 10px;
  display: block;
}
#winswept-slider .slides:hover .grow-image-button {
  opacity: 1;
}
#winswept-slider .slides .grow-image-button {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 99;
  display: block;
  color: #fff;
  background: transparent;
  text-shadow: #000 2px 2px 4px;
  transition: 0.5s opacity ease;
  opacity: 0;
  cursor: pointer;
}
#winswept-slider .slides .grow-image-button i {
  font-size: 2rem;
  transition: 0.25s all ease;
  transform: rotate(45deg);
}
#winswept-slider .slides .grow-image-button i:hover {
  font-size: 2.25rem;
  transform: rotate(0deg);
}
#winswept-slider ul.flex-direction-nav {
  margin: 0;
  list-style-type: none;
}

/**************************************************
END Services
**************************************************/
.page-template-template-our-services-single .main {
  margin: 0;
  padding: 2rem 0 0;
  background: url("../images/grass_long.jpg") no-repeat left bottom;
}

.page-template-template-our-services-single .main .container {
  background: url("../images/trees_single.jpg") no-repeat left bottom;
  padding-bottom: 100px;
}

.clear {
  clear: both;
}

.service-showcase ul {
  list-style-type: disc;
  padding-left: 40px;
  margin: 1rem 0;
}

.image-collage {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.image-collage .column {
  padding: 0 4px;
  text-align: center;
}

.column-4 {
  flex: 25%;
  max-width: 25%;
}

.column-3 {
  flex: 33%;
  max-width: 33%;
}

.column-2 {
  flex: 50%;
  max-width: 50%;
}

.image-collage .column img {
  margin-top: 8px;
  vertical-align: middle;
}

#northern-priming-images {
  margin: 3rem 0;
  flex-wrap: wrap;
}

#northern-priming-images > div {
  text-align: center;
}

div#northern-priming-images img {
  float: none;
}

#blanca-map {
  align-items: flex-start;
}

/**************************************************
START Contact Us
**************************************************/
#contact-inner {
  flex-direction: column;
  align-items: flex-start;
}

#contact-info {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
#contact-info .column {
  flex: 1 1 0;
}
#contact-info ul {
  margin: 1rem 0;
}
#contact-info ul a {
  color: #334042;
  text-decoration: none;
}
#contact-info ul a:hover {
  color: #c40029;
}
#contact-info i {
  padding-right: 10px;
  color: rgba(51, 64, 66, 0.8);
}

#contact-form {
  width: 100%;
  border-top: 2px solid #c40029;
}
#contact-form p {
  margin: 0;
}

div#form-inner {
  display: flex;
  flex-wrap: wrap;
}

.form-half {
  flex: auto;
}

#form-right {
  margin-left: 1rem;
}
#form-right #submit-button {
  width: 100%;
  display: inline-block;
  text-align: right;
}
#form-right #submit-button button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#contact-form input[type=text], #contact-form input[type=tel], #contact-form input[type=email] {
  background: #e4e4e4 none repeat scroll 0 0;
  border: 1px solid transparent;
  display: block;
  height: 50px;
  margin-bottom: 16px;
  padding: 20px;
  width: 100%;
  font-size: 1rem;
}
#contact-form textarea {
  background: #e4e4e4 none repeat scroll 0 0;
  border: 1px solid transparent;
  display: block;
  height: 50px;
  margin-bottom: 16px;
  padding: 20px;
  width: 100%;
  font-size: 1rem;
  height: auto;
  resize: none;
}
#contact-form input:focus, #contact-form textarea:focus {
  border: 1px solid #c40029;
  outline: none;
}
#contact-form input[type=submit] {
  float: right;
  background-color: #c40029;
  text-transform: uppercase;
  border-radius: 3px;
  color: #fff;
  padding: 12px 35px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
#contact-form label {
  visibility: hidden;
}
#contact-form #contact-recaptcha {
  float: right;
  margin-bottom: 1em;
}

/**************************************************
END Contact Us
**************************************************/
/**************************************************
START About Us
**************************************************/
#about-outer #about-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
}
#about-outer #about-inner .column {
  width: 30%;
  margin-bottom: 2rem;
}
#about-outer #about-inner .column span {
  color: #c40029;
}
#about-outer #about-inner .column:nth-child(2), #about-outer #about-inner .column:nth-child(5) {
  margin: 0 2rem;
}

.column-1 h4 {
  text-align: right;
}

/**************************************************
END About Us
**************************************************/
#sandbox-warning {
  position: fixed;
  background-color: rgba(255, 255, 0, 0.5);
  color: #555;
  padding: 10px 50px;
  text-align: center;
  bottom: 0;
  right: 0;
}

/**************************************************
Mobile Styles
**************************************************/
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 10px;
  }

  #cta-sticker {
    left: 27%;
  }

  .overlay-text {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  #services h2 {
    margin: 40px 0;
  }

  #services-slider ul.flex-direction-nav {
    top: -4.5rem;
  }
  #services-slider .flex-direction-nav a:before {
    font-size: 40px;
  }
  #services-slider .flex-prev {
    left: -20px;
  }
  #services-slider a span {
    opacity: 0.8;
  }
}
/* END 1200px */
@media screen and (max-width: 1024px) {
  nav {
    width: auto;
  }

  #services-slider .slides li {
    height: auto;
  }

  #services-slider a span {
    padding: 6rem;
  }

  .two-column#windswept-top {
    flex-flow: column wrap;
  }
  .two-column#windswept-top > span,
.two-column#windswept-top > div {
    flex: initial;
  }
  .two-column#windswept-top #winswept-slider {
    width: 100%;
  }
  .two-column#windswept-top #windswept-info {
    margin-left: 0;
    margin-top: 2rem;
  }
}
/* END 1024px */
@media screen and (max-width: 880px) {
  #cta-sticker {
    display: none;
  }
}
/* END 880px */
@media screen and (max-width: 720px) {
  #banner.logged-in {
    margin-top: 32px;
  }

  #banner.sticky {
    border-bottom: 1px solid #c40029;
  }

  #top-contact {
    display: none;
  }

  .two-column {
    flex-wrap: wrap;
    padding: 0;
  }
  .two-column #site-logo h1 a {
    width: 150px;
    height: 70px;
    background-size: 150px 70px;
  }

  nav {
    display: none;
  }
  nav.open {
    position: absolute;
    top: 75px;
    left: 0;
    z-index: 999;
    width: 100%;
    display: block;
  }
  nav.open ul {
    flex-direction: column;
  }
  nav.open ul li {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #c40029;
  }
  nav.open ul li:first-child {
    border-top-width: 1px;
  }
  nav.open ul li:hover > ul.sub-menu {
    display: none;
  }

  .mobile-button {
    display: block;
    top: 1.25rem;
    right: 1rem;
    color: #c40029;
  }

  #footer-inner {
    grid-template-columns: 1fr;
  }

  .services-single.even {
    flex-direction: column-reverse;
  }
  .services-single.even .services-image {
    margin-left: 0;
  }

  .services-single {
    flex-direction: column;
  }
  .services-single .services-image {
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }

  #contact-form #form-right {
    margin-left: 0;
  }

  #contact-info .column {
    flex: auto;
  }

  .column-4,
.column-3 {
    flex: 50%;
    max-width: 50%;
  }

  .column-2 {
    flex: 100%;
    max-width: 100%;
  }

  #about-outer #about-inner .column {
    width: 50%;
  }
  #about-outer #about-inner .column:nth-child(2), #about-outer #about-inner .column:nth-child(5) {
    margin: 0;
  }
  #about-outer #about-inner .column:nth-child(even) {
    padding-left: 1rem;
  }
  #about-outer #about-inner .column:nth-child(odd) {
    padding-right: 1rem;
  }
}
/* END 720px */
@media screen and (max-width: 584px) {
  #about-outer #about-inner .column {
    width: 100%;
    padding: 0 !important;
    text-align: center;
    border-bottom: 1px solid rgba(51, 64, 66, 0.2);
  }
}
/* END 584px */
@media screen and (max-width: 375px) {
  .logged-in {
    margin-top: 50px;
  }

  .column-4,
.column-3 {
    flex: 100%;
    max-width: 100%;
  }
}
/* END 375px */
/* Because it's 2018 and we still need to compensate for the beloved IE11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  nav ul li:hover > ul.sub-menu {
    display: block;
  }

  #mission .two-column img {
    width: 347px;
  }

  #services {
    height: 379px;
  }

  #ie-warning {
    display: block;
    padding: 10px;
    background: red;
    color: #fff;
    text-align: center;
  }

  #contact-info {
    display: block;
  }
  #contact-info .column {
    float: left;
    width: 33%;
  }

  #windswept-top > div {
    float: left;
    width: 50%;
  }

  footer {
    float: left;
  }
  footer #footer-inner {
    display: block;
    float: left;
    padding: 20px;
  }
  footer #footer-inner > div {
    float: left;
    width: 31%;
  }
  footer #footer-inner #about-us {
    margin-right: 1rem;
  }
  footer #footer-inner #navigation {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  footer #footer-inner #our-services {
    margin-left: 1rem;
  }
  footer #copyright {
    float: left;
    display: block;
    width: 100%;
    text-align: center;
  }
}

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