@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
:root {
  --tan: #c6bdb0;
  --gold: #9f9073;
  --grey: #525151;
  --offWhite: #f5f3ef;
}
body {
  background-color: #ffffff;
}
h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.25rem;
  }
}
h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
  }
}
#header {
  position: initial;
}
@media (min-width: 768px) {
  #header {
    position: fixed;
    top: 0px;
    z-index: 750;
  }
}
#header .col-md-3 {
  padding-top: 10px;
}
#header .col-md-9 {
  padding-top: 8px;
}
/* start styling for header scrolling color changer */
.header {
  background: transparent;
  -webkit-transition: all ease-out 0.75s;
  -moz-transition: all ease-out 0.75s;
  -o-transition: all ease-out 0.75s;
  transition: all ease-out 0.75s;
}
.scrolling {
  background-color: #ffffff;
}
#header.linkage a:link,
#header.linkage a:visited {
  color: #000000;
  text-decoration: none;
}

#header a:link,
#header a:visited {
  color: #000000;
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}

@media (min-width: 768px) {
  #header a:link,
  #header a:visited {
    color: #ffffff;
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
  }
}
#header a:hover,
#header.linkage a:hover {
  opacity: 0.25;
}
.inverse {
  filter: invert(1);
  -webkit-filter: invert(1);
}
#logo {
  display: none;
}
@media (min-width: 768px) {
  #logo {
    display: initial;
  }
}
#logoOnSmall {
  display: initial;
}
@media (min-width: 768px) {
  #logoOnSmall {
    display: none;
  }
}
/* end styling for header scrolling color changer */

#mainNav {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.9125rem;
  font-weight: 500;
}
#mainNav .nav-item {
  padding-left: 0px;
}
@media (min-width: 768px) {
  #mainNav .nav-item {
    padding-left: 30px;
  }
}
/* start carousel styling */

#myCarousel {
  padding: 0px;
}

.carousel-inner img {
  width: 100%;
}
.carousel-caption {
  top: 0;
  left: 0;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.35);
  height: 100%;
  width: 100%;
  padding-top: 10%;
}
@media (min-width: 768px) {
  .carousel-caption {
    padding-top: 20%;
  }
}
.carousel-caption p:nth-child(1) {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 4px;
}
@media (min-width: 768px) {
  .carousel-caption p:nth-child(1) {
    font-size: 3rem;
    letter-spacing: 8px;
  }
}
.carousel-caption span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .carousel-caption span {
    font-size: 1.125rem;
  }
}
.carousel-caption p:nth-child(2) {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 3px;
}
@media (min-width: 768px) {
  .carousel-caption p:nth-child(2) {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }
}
.carousel-caption .btn {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
  border-radius: 0px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.carousel-caption .btn:hover {
  color: #000000;
  background-color: #ffffff;
  border-radius: 0px;
}
/* end carousel styling */
/* start hero styling */
#hero {
  padding: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  height: initial;
  filter: saturate(1.25) contrast(1);
}
@media (min-width: 768px) {
  #hero {
    height: 95vh;
  }
}
#hero.about {
  background-image: url(../images/heros/about.webp);
}
#hero.contact {
  background-image: url(../images/heros/contact2.webp);
}
#hero.sold {
  background-image: url(../images/heros/sold2.webp);
}
#hero.team {
  background-image: url(../images/heros/team.webp);
}
#hero.listings {
  background-image: url(../images/heros/listings.webp);
}
#hero.westlake {
  background-image: url(../images/heros/westlake.webp);
}
#hero.bayVillage {
  background-image: url(../images/heros/bayVillage.webp);
}
#hero.parma {
  background-image: url(../images/heros/parma.webp);
}
#hero.olmstedFalls {
  background-image: url(../images/heros/olmstedFalls.webp);
}
#hero.avonLake {
  background-image: url(../images/heros/avonLake.webp);
}
#hero.avon {
  background-image: url(../images/heros/avon.webp);
}
#hero.lakewood {
  background-image: url(../images/heros/lakewood.webp);
}
#hero.northRidgeville {
  background-image: url(../images/heros/northRidgeville.webp);
}
#hero.olmstedFalls {
  background-image: url(../images/heros/olmstedFalls.webp);
}
#hero.rockyRiver {
  background-image: url(../images/heros/rockyRiver.webp);
}
#hero.strongsville {
  background-image: url(../images/heros/strongsville.webp);
}
#hero.northOlmsted {
  background-image: url(../images/heros/northOlmsted.webp);
}
#hero.cleveland {
  background-image: url(../images/heros/cleveland.webp);
}
#hero.fairviewPark {
  background-image: url(../images/heros/fairviewPark.webp);
}
#hero.medina {
  background-image: url(../images/heros/medina.webp);
}
#hero.brecksville {
  background-image: url(../images/heros/brecksville.webp);
}
#hero.garfieldHeights {
  background-image: url(../images/heros/garfiledHeights.webp);
}
#hero.lorain {
  background-image: url(../images/heros/lorain.webp);
}
#hero.northRoyalton {
  background-image: url(../images/heros/northRoyalton.webp);
}
#hero.vermillion {
  background-image: url(../images/heros/vermillion.webp);
}
#hero.grafton {
  background-image: url(../images/heros/grafton.webp);
}
#hero.amherst {
  background-image: url(../images/heros/amherst.webp);
}
#hero.wadsworth {
  background-image: url(../images/heros/wadsworth.webp);
}
#hero.cuyahogaFalls {
  background-image: url(../images/heros/cuyahogaFalls.webp);
}
#hero.elyria {
  background-image: url(../images/heros/elyria.webp);
}
#hero.lagrange {
  background-image: url(../images/heros/lagrange.webp);
}
#hero.middleburgHeights {
  background-image: url(../images/heros/middleburgHeights.webp);
}
#hero.northfield {
  background-image: url(../images/heros/northfield.webp);
}
#hero.shakerHeights {
  background-image: url(../images/heros/shakerHeights.webp);
}
#hero.sheffieldLake {
  background-image: url(../images/heros/sheffieldLake.webp);
}
#hero.southEuclid {
  background-image: url(../images/heros/southEuclid.webp);
}
#hero.brunswick {
  background-image: url(../images/heros/brunswick.webp);
}
#hero.brooklynHeights {
  background-image: url(../images/heros/brooklynHeights.webp);
}
#hero.oberlin {
  background-image: url(../images/heros/oberlin.webp);
}
#hero.solon {
  background-image: url(../images/heros/solon.webp);
}
#hero.willouhgbyHills {
  background-image: url(../images/heros/willouhgbyHills.webp);
}
#hero.stow {
  background-image: url(../images/heros/stow.webp);
}
#hero.pepperPike {
  background-image: url(../images/heros/pepperPike.webp);
}
#hero.canton {
  background-image: url(../images/heros/pepperPike.webp);
}
#hero.eastlake {
  background-image: url(../images/heros/eastlake.webp);
}
#hero.hinkley {
  background-image: url(../images/heros/hinkley.webp);
}
#hero.richmondHeights {
  background-image: url(../images/heros/richmondHeights.webp);
}
#hero.brooklyn {
  background-image: url(../images/heros/brooklyn.webp);
}
#hero.willoughby {
  background-image: url(../images/heros/willoughby.webp);
}
#hero.streetsboro {
  background-image: url(../images/heros/streetsboro.webp);
}
#hero.broadviewHeights {
  background-image: url(../images/heros/broadviewHeights.webp);
}
#hero.berea {
  background-image: url(../images/heros/berea.webp);
}

#hero .overlay {
  background-color: rgba(25, 25, 25, 0.35);
  height: 100%;
  text-align: center;
  color: #ffffff;
  padding-top: 20%;
  padding-bottom: 20%;
}
@media (min-width: 768px) {
  #hero .overlay {
    padding-top: 25%;
    padding-bottom: 0%;
  }
}
#hero p:nth-child(1) {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 4px;
}
@media (min-width: 768px) {
  #hero p:nth-child(1) {
    font-size: 5rem;
    letter-spacing: 8px;
  }
}
#hero p:nth-child(2) {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: -20px;
}
@media (min-width: 768px) {
  #hero p:nth-child(2) {
    font-size: 1.35rem;
    letter-spacing: 3px;
  }
}
/* end hero styling */
/* for About Hero at bottom of page - 5 rem was overwhelming */
@media (min-width: 768px) {
  #hero.about p:nth-child(1) {
    font-size: 3rem;
    letter-spacing: 3px;
  }
}
/* end About Hero styling */
#content {
  padding-top: 90px;
}
@media (min-width: 768px) {
  #content {
    padding-top: 150px;
    padding-bottom: 90px;
  }
}

#content p {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  font-weight: 100;
  color: #000000;
  line-height: 175%;
}
@media (min-width: 768px) {
  #content p {
    font-size: 1rem;
  }
}
#content p.team {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #000000;
  line-height: 110%;
}
#content p.position {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
.offCanvas {
  display: block;
  height: 100vh;
  width: 100vh;
}

/* start index intro styling */
#content.indexIntro .col-md-6:nth-child(1) {
  background-image: url(../images/AnthonyHeadshot.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#content.indexIntro p.quote {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  line-height: 175%;
  font-style: italic;
}
@media (min-width: 768px) {
  #content.indexIntro p.quote {
    font-size: 1rem;
  }
}
#content.indexIntro p.name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.825rem;
  font-weight: 400;
  color: #000000;
  line-height: 175%;
}
@media (min-width: 768px) {
  #content.indexIntro p.name {
    font-size: 0.95rem;
  }
}
#content.indexIntro .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: var(--gold);
  border-color: var(--gold);
  background-color: transparent;
  border-radius: 0px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#content.indexIntro .btn:hover {
  color: #ffffff;
  border-color: var(--gold);
  background-color: var(--gold);
}
/* end index intro styling */

/* start interior intro styling */
#content.interiorIntro .col-md-6:nth-child(1) img {
  -webkit-box-shadow: 0 0 35px 3px rgba(25, 25, 25, 0.25);
  box-shadow: 0 0 35px 3px rgba(25, 25, 25, 0.25);
}
#content.interiorIntro .col-md-6:nth-child(2) {
  padding-top: 35px;
  padding-left: 25px;
  padding-right: 25px;
}
@media (min-width: 768px) {
  #content.interiorIntro .col-md-6:nth-child(2) {
    padding-top: 0px;
    padding-left: 75px;
    padding-right: 75px;
  }
}
#content.interiorIntro p.quote {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
  line-height: 125%;
}
@media (min-width: 768px) {
  #content.interiorIntro p.quote {
    font-size: 2rem;
  }
}
#content.interiorIntro p.name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.825rem;
  font-weight: 400;
  color: #000000;
  line-height: 175%;
}
@media (min-width: 768px) {
  #content.interiorIntro p.name {
    font-size: 0.95rem;
  }
}

.interiorIntro.team .col-md-5 {
  position: initial;
  height: initial;
}
@media (min-width: 768px) {
  .interiorIntro.team .col-md-5 {
    position: relative;
    height: 640px;
  }
}
.interiorIntro.team .col-md-5 .textHolder {
  position: initial;
  bottom: initial;
  padding-left: 40px;
}
@media (min-width: 768px) {
  .interiorIntro.team .col-md-5 .textHolder {
    position: absolute;
    bottom: 0;
    padding-left: 0px;
  }
}
/* end interior intro styling */
/* About Million Dollar styling */
#million {
  padding-top: 90px;
}
@media (min-width: 768px) {
  #million {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

#million p {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  font-weight: 100;
  color: #000000;
  line-height: 175%;
}
@media (min-width: 768px) {
  #million p {
    font-size: 1rem;
  }
}
#million p.tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
  line-height: 125%;
  padding-top:25px;
}
@media (min-width: 768px) {
  #million p.tagline {
    font-size: 2rem;
	padding-top:0;
  }
}
/* end Million Dollar styling */
#seperator {
  text-align: center;
  margin-top: 75px;
  margin-bottom: 75px;
}
#seperator p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #seperator p {
    font-size: 2.75rem;
  }
}
#testimonial {
  background-image: url(../images/clevelandSky.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px;
  text-align: center;
}
#testimonial .overlay {
  background-color: rgba(0, 0, 0, 0.35);
  padding-top: 40px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  #testimonial .overlay {
    padding-top: 175px;
    padding-bottom: 175px;
  }
}
#testimonial p:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #ffffff;
  margin-left: 50px;
  margin-right: 50px;
}
@media (min-width: 768px) {
  #testimonial p:nth-child(1) {
    font-size: 1.125rem;
    margin-left: 0px;
    margin-right: 0px;
  }
}
#testimonial .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
  border-radius: 0px;
  margin-top: 50px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#testimonial .btn:hover {
  color: #ffffff;
  border-color: #000000;
  background-color: #000000;
  -webkit-box-shadow: 0 7px 7px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 7px 7px 3px rgba(0, 0, 0, 0.25);
}
#cta {
  padding-top: 90px;
  padding-bottom: 90px;
}
#cta .col-md-5 {
  padding-top: 90px;
}
#cta .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: var(--gold);
  border-color: var(--gold);
  background-color: transparent;
  border-radius: 0px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#cta .btn:hover {
  color: #ffffff;
  border-color: var(--gold);
  background-color: var(--gold);
}
#cta .img-wrap {
  position: relative;
  width: 100%;          /* container takes full width */
  max-width: 800px;     /* optional: set a max width */
  margin: 0 auto;       /* optional: center the whole component */
}

#cta .img-wrap img {
  width: 100%;          /* responsive scaling */
  height: auto;         /* keep aspect ratio */
  display: block;
}

#cta .overlay-text {
  position: absolute;
  background-color:rgba(25,25,25,.25);
  bottom: 0;
  right: 0;
  padding-left:1.5%;
  padding-right:1.5%;
  /* transform: translate(-50%, -50%); - was used to center the box */
  color: white;
  font-size: clamp(1.1rem, 3vw, 1.7rem); /* responsive font size */
  text-align: right;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5); 
}
#aboutAnthony .col-md-6:nth-child(1) {
  background-color: var(--tan);
  padding-left: 20px;
  padding-top: 50px;
  padding-right: 20px;
  padding-bottom: 50px;
  color: #ffffff;
}
@media (min-width: 768px) {
  #aboutAnthony .col-md-6:nth-child(1) {
    background-color: var(--tan);
    padding-left: 90px;
    padding-top: 90px;
    padding-right: 90px;
    padding-bottom: 90px;
  }
}
#aboutAnthony .col-md-6:nth-child(2) {
  background-image: url(../images/AnthonyHeadshot.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 420px;
}
@media (min-width: 768px) {
  #aboutAnthony .col-md-6:nth-child(2) {
    height: initial;
  }
}
#aboutAnthony p.headline {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #aboutAnthony p.headline {
    font-size: 1rem;
  }
}
#aboutAnthony p {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  font-weight: 100;
  line-height: 175%;
}
@media (min-width: 768px) {
  #aboutAnthony p {
    font-size: 1.125rem;
  }
}
#aboutAnthony .fa-linkedin-in {
  font-size: 2.25rem;
  margin-right: 25px;
}
#aboutAnthony .fa-instagram {
  font-size: 2.25rem;
}
#aboutAnthony a:link,
#aboutAnthony a:visited {
  color: #ffffff;
  text-decoration: none;
}
#aboutAnthony a:hover {
  opacity: 0.5;
}
#footer {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 110px;
  background-color: #000000;
}
#footer ul {
  list-style: none;
  margin: 0px;
}
#footer li {
  padding-top: 10px;
  padding-bottom: 10px;
}
#footer a:link,
#footer a:visited {
  color: #ffffff;
  text-decoration: none;
}

#footer ul li a {
  display: inline-block;
  position: relative;
  color: #ffffff;
}

#footer ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

#footer ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#footer a:link img,
#footer a:visited img {
  opacity: 1;
  -webkit-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -ms-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
}
#footer a:hover img {
  opacity: 0.5;
}
#subFooter {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--grey);
  overflow: hidden;
}
#subFooter p {
  font-size: 0.75rem;
}
#subFooter a:link,
#subFooter a:visited {
  opacity: 1;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -ms-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
}
#subFooter a:hover {
  opacity: 0.5;
}
#social {
  text-align: center;
  padding-top: 35px;
}
#social i {
  font-size: 1.25rem;
}
/* special header styling for page with no hero */
#noChangeHeader #header {
  background-color: #ffffff;
}
#noChangeHeader #header a:link,
#noChangeHeader #header a:visited {
  color: #000000;
}
#noChangeHeader #logo {
  display: none;
}
#noChangeHeader #logoOnSmall {
  display: initial;
}
#zillowEmbed {
  margin-top: 50px;
}
#equinox {
  padding: 0px;
  background-color: var(--offWhite);
  overflow: hidden;
}
#equinox .col-md-7 {
  padding-top: 70px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  #equinox .col-md-7 {
    padding-top: 70px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 0px;
  }
}
#equinox p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--grey);
}
@media (min-width: 768px) {
  #equinox p {
    font-size: 1.125rem;
    margin-left: 0px;
    margin-right: 0px;
  }
}

#equinox .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: var(--gold);
  border-color: var(--gold);
  background-color: transparent;
  border-radius: 0px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#equinox .btn:hover {
  color: #ffffff;
  border-color: var(--gold);
  background-color: var(--gold);
}
#elliot {
  padding: 0px;
  background-color: var(--offWhite);
  overflow: hidden;
}
#elliot .elliotText {
  padding-top: 70px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  #elliot .elliotText {
    padding-top: 70px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 0px;
  }
}
@media (min-width: 992px) {
  #elliot .elliotText {
    padding-top: 50px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  #elliot .elliotText {
    padding-top: 70px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 0px;
  }
}
#elliot p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--grey);
}
@media (min-width: 768px) {
  #elliot p {
    font-size: 1.125rem;
    margin-left: 0px;
    margin-right: 0px;
  }
}

#elliot .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: var(--gold);
  border-color: var(--gold);
  background-color: transparent;
  border-radius: 0px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#elliot .btn:hover {
  color: #ffffff;
  border-color: var(--gold);
  background-color: var(--gold);
}
#serviceArea {
  padding-top: 90px;
  text-align: center;
}
#serviceArea p {
  padding-left: 50px;
  padding-right: 50px;
}
#serviceArea ul {
  list-style-type: none;
}
#serviceArea a:link,
#serviceArea a:visited {
  text-decoration: none;
  color: var(--gold);
}
#serviceArea a:hover {
  color: var(--tan);
}
