@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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:after, blockquote:before {
  content: "";
  content: none;
}

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

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

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */
}
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #fff;
  color: #36231f;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  position: relative;
}
@media only screen and (max-width: 37.5rem) {
  body {
    font-size: 1.125rem;
  }
}

/* General styles */
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
@media only screen and (max-width: 37.5rem) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

h4 {
  font-weight: 700;
}

a {
  color: #B35440;
  outline-color: #B35440;
}
a:hover {
  color: #8d4233;
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media only screen and (max-width: 37.5rem) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }
}

.button {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  background: #e7e3dd;
  color: #36231f;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all ease-out 200ms;
}
.button:hover {
  transform: scale(1.02);
  color: #36231f;
  background: #edeae6;
}

.button--primary {
  background: #B35440;
  color: #fff;
}
.button--primary.button--email::before {
  background-image: url(images/icon-email--light.svg);
}
.button--primary.button--phone::before {
  background-image: url(images/icon-phone--light.svg);
}
.button--primary:hover {
  color: #fff;
  background: #ab503d;
}

.button--yell {
  background: #fedb00;
}
.button--yell:hover {
  background: #f4d200;
}

.button--mybuilder {
  background: rgb(108, 43, 140);
  color: #fff;
}
.button--mybuilder:hover {
  background: #662984;
  color: #fff;
}

.button--email::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(images/icon-email--dark.svg) no-repeat;
  background-size: contain;
}

.button--phone::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(images/icon-phone--dark.svg) no-repeat;
  background-size: contain;
}

/* Specific styles */
.background-shape {
  position: absolute;
  width: 100%;
  height: 200rem;
  z-index: -1;
  overflow: hidden;
}
.background-shape::after {
  content: "";
  position: absolute;
  background-color: #B35440;
  left: 0;
  right: 0;
  width: 100vw;
  height: 200vw;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}
@media only screen and (max-width: 87.5rem) {
  .background-shape::after {
    top: 25vh;
  }
}
@media only screen and (max-width: 62.5rem) {
  .background-shape::after {
    top: 50vh;
  }
}
@media only screen and (max-width: 37.5rem) {
  .background-shape {
    display: none;
  }
}

.main-header {
  width: 100%;
  max-width: 80rem;
  padding: 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 62.5rem) {
  .main-header {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5rem) {
  .main-header {
    padding-bottom: 0;
  }
}

.logo {
  width: 16rem;
  height: 7rem;
  background: url(logo.png) no-repeat;
  background-size: contain;
  display: block;
  text-indent: -9999px;
}

.logo span {
  display: none;
}

.contact {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}
.contact p {
  position: relative;
}
.contact a {
  text-decoration: none;
}
@media only screen and (max-width: 62.5rem) {
  .contact {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 1rem;
    gap: 2rem;
  }
  .contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 37.5rem) {
  .contact {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.contact-email::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(images/icon-email--brand.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 62.5rem) {
  .contact-email::before {
    position: relative;
    left: auto;
    top: auto;
  }
}

.contact-phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(images/icon-phone--brand.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 62.5rem) {
  .contact-phone::before {
    position: relative;
    left: auto;
    top: auto;
  }
}

@media only screen and (max-width: 62.5rem) {
  .contact-label {
    display: none;
  }
}

.contact-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
}
@media only screen and (max-width: 37.5rem) {
  .contact-value {
    font-size: 1rem;
    font-weight: 600;
  }
}

#main-content {
  position: relative;
}

.wrapper {
  width: 100%;
  max-width: 80rem;
  padding: 2rem;
  margin: 0 auto;
}

.intro {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media only screen and (max-width: 75rem) {
  .intro {
    margin: 0;
  }
}

.tagline {
  font-weight: 600;
  margin-left: -3rem;
  margin-right: -3rem;
  width: calc(100% + 6rem);
}
@media only screen and (max-width: 87.5rem) {
  .tagline {
    margin: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 37.5rem) {
  .tagline {
    font-size: 1.5rem;
  }
}

.section-intro {
  max-width: 50rem;
}

.five-stars::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  width: 6.25rem;
  height: 1.25rem;
  background: url(images/five-star.svg) no-repeat;
  background-size: contain;
  transform: translate(0, 2px);
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 2rem;
  max-width: 120rem;
  justify-content: center;
}
@media only screen and (max-width: 37.5rem) {
  .gallery-images {
    padding: 2rem 1rem;
  }
}

.gallery-image {
  flex: 25% 1 1;
  padding: 0.5rem;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 62.5rem) {
  .gallery-image {
    flex: 50%;
    padding: 0.25rem;
  }
}

.services {
  color: #fff;
  padding: 5rem 0;
}
@media only screen and (min-width: 120rem) {
  .services {
    background: #B35440;
  }
}
@media only screen and (max-width: 50rem) {
  .services {
    padding: 2rem 0;
    margin: 2rem 0;
  }
}
@media only screen and (max-width: 37.5rem) {
  .services {
    background: #B35440;
  }
}

.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 50rem) {
  .services-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.service {
  flex: 30% 1 1;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  color: #36231f;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: rgba(231, 227, 221, 0.25);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.service * {
  z-index: 1;
}
.service h3 {
  font-size: 1.25rem;
}
.service p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.25;
}
@media only screen and (max-width: 75rem) {
  .service {
    flex-basis: 40%;
  }
}
@media only screen and (max-width: 37.5rem) {
  .service {
    padding: 1.5rem;
  }
}

.gallery-2 {
  background-color: #fff;
}

.why-choose-us {
  background: #fff;
  padding: 5rem 0 2rem;
}
@media only screen and (max-width: 50rem) {
  .why-choose-us {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 37.5rem) {
  .why-choose-us {
    padding: 0;
  }
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefits h3 {
  position: relative;
}
.benefits h3::before {
  content: "";
  position: absolute;
  left: -3rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 87.5rem) {
  .benefits {
    padding-left: 3rem;
  }
}

.benefit--local h3::before {
  background-image: url(images/icon-local--brand.svg);
}

.benefit--quality h3::before {
  background-image: url(images/icon-quality--brand.svg);
}

.benefit--services h3::before {
  background-image: url(images/icon-services--brand.svg);
}

.benefit--quote h3::before {
  background-image: url(images/icon-quote--brand.svg);
}

.testimonials {
  margin-top: -15rem;
  padding-top: 16rem;
  padding-bottom: 5rem;
  background: #e7e3dd;
}
@media only screen and (max-width: 50rem) {
  .testimonials {
    padding: 14rem 0 2rem;
  }
}

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.testimonials-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  padding-top: 5rem;
  background: url(images/icon-testimonial--dark.svg) no-repeat center top;
  background-size: 2.5rem;
}
@media only screen and (max-width: 62.5rem) {
  .testimonials-list {
    flex-direction: column;
  }
}

.testimonial {
  flex: 50% 1 1;
  padding-top: 2rem;
  background: url(images/five-star.svg) no-repeat top left;
  background-size: 6.25rem 1.25rem;
}
.testimonial p {
  font-size: 1.125rem;
}

.footer {
  background-color: #36231f;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: "";
  position: absolute;
  width: 200rem;
  height: 200rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.footer * {
  z-index: 1;
}
.footer .buttons {
  justify-content: center;
}
@media only screen and (max-width: 50rem) {
  .footer {
    padding: 2rem 0;
  }
}

.footer-wrapper {
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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