html {
  --primary: #333333;
  --secondary: white;
  --main-accent: #c70039;
  --secondary-accent: #122a9e;
}

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

html {
  box-sizing: border-box;
}

html,
body,
dl,
dt,
dd,
blockquote,
fieldset,
legend,
textarea,
iframe,
figure,
p,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  margin: 0;
}

body {
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  color: var(--main-accent);
}

p,
a {
  color: var(--primary);
}

.container {
  max-width: 49.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 850px) {
  .container {
    padding: 0 1rem;
  }
}
.btn {
  padding: 0.75rem 1.75rem;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.btn-color {
  background-color: var(--main-accent);
}

.icon {
  width: 6rem;
}

.site__header {
  text-align: center;
  margin-bottom: 3rem;
}

.header__logo {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.header__phone {
  font-weight: 500;
}

.main__hero {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin-bottom: 3rem;
  height: 100%;
}

.hero__info {
  contain: size;
  background-color: var(--primary);
  padding: 4rem 2rem;
  text-align: end;
  border-radius: 10px 0 0 10px;
}

.hero__info-text {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 3rem;
}

.hero__info-yelp {
  margin-top: 2rem;
}

.hero__img {
  width: 100%;
  border-radius: 0 10px 10px 0;
}

@media screen and (max-width: 850px) {
  .hero__info {
    contain: content;
  }
  .hero__img {
    display: none;
  }
  .hero__info {
    text-align: center;
    border-radius: 10px;
  }
}
.main__services {
  margin-bottom: 4.5rem;
}

.services__heading {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.services__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr 1fr;
  gap: 4rem 3.5rem;
}

.service {
  text-align: center;
}

.service__img {
  margin-bottom: 1.75rem;
}

.service__heading {
  color: var(--secondary-accent);
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service__desc {
  line-height: 2;
}

@media screen and (max-width: 850px) {
  .services__container {
    grid-auto-flow: row;
  }
}
.main__about {
  text-align: center;
  margin-bottom: 4.5rem;
}

.about__heading {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

.about__text {
  margin: 0 auto;
  line-height: 2;
}

.site__footer {
  background-color: var(--primary);
  padding: 3rem 0;
}

.footer__container {
  display: flex;
}

.footer__logo {
  flex: 2;
  display: flex;
}

.footer__text {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer__text:last-child {
  margin: 2rem 0 0 0;
}

@media screen and (max-width: 1100px) {
  .footer__container {
    display: block;
    text-align: center;
    padding: 3rem 1rem;
  }
  .footer__logo {
    display: block;
    margin-bottom: 2rem;
  }
}/*# sourceMappingURL=main.css.map */