@import "base/normalize.css";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Space+Grotesk:wght@300..700&display=swap");
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul {
  margin-block-start: 0;
  margin-block-end: 0;
}

body {
  margin: 0;
}

:root {
  --gutter-width: 1.5rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --screen-xs-min: $bp-small;
  --screen-sm-min: $bp-tablet;
  --screen-md-min: $bp-desktop;
  --screen-lg-min: $bp-large;
  --color-black: #212020;
  --color-light: #FFF;
  --color-gray: #EBEBEB;
  --color-yellow: #FFD323;
  --color-text-gray: #808080;
  --color-yellow-light: #FFDF68 ;
}

h1, h2, h3, h4 {
  text-align: center;
  font-weight: 700;
}

p {
  font-weight: 300;
  font-size: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 889px) {
  h1 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 889px) {
  h2 {
    margin-bottom: 2rem;
  }
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 889px) {
  h3 {
    margin-bottom: 1rem;
  }
}

.container {
  max-width: 72rem;
  padding: 0 1rem;
  margin: 0 auto;
}
.container--narrow {
  max-width: 60rem;
}
.container--aside {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 889px) {
  .container--aside {
    flex-direction: column;
  }
}

.section,
footer {
  position: relative;
  padding: 7rem 0;
}
@media screen and (max-width: 889px) {
  .section,
  footer {
    padding: 3rem 0;
  }
}
.section--light,
footer--light {
  background: var(--color-light);
  color: var(--color-black);
}
.section--yellow,
footer--yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.section--yellow-light,
footer--yellow-light {
  background-color: var(--color-yellow-light);
  color: var(--color-black);
}

.logo {
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.logo__img {
  width: 42px;
  height: 42px;
}
.logo__img img {
  width: 100%;
  height: 100%;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 100%;
  color: var(--color-black);
}
.logo__text--big {
  font-weight: 700;
  font-size: 1.375rem;
}

.navbar {
  z-index: 1;
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (max-width: 889px) {
  .navbar {
    padding: 1rem 0;
  }
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 889px) {
  .navbar__container {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media screen and (max-width: 889px) {
  .navbar__nav {
    overflow: hidden;
    position: fixed;
    top: 75px;
    left: 0;
    height: 0;
    background-color: white;
    transition: all 0.2s ease-in-out;
    width: 100%;
    z-index: 100;
  }
  .navbar__nav--open {
    height: calc(100vh - 5rem);
  }
}

.navbar__toggle {
  display: none;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
}
@media screen and (max-width: 889px) {
  .navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 889px) {
  .nav {
    flex-direction: column;
  }
}
.nav li {
  list-style: none;
}
.nav a {
  text-decoration: none;
  color: var(--color-black);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 889px) {
  .nav a {
    font-size: 1.5rem;
  }
}
.nav a:hover {
  color: var(--color-text-gray);
}

.button {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--color-black);
  color: var(--color-light);
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.button:hover {
  background-color: var(--color-text-gray);
}

.homepage-header {
  display: flex;
  max-width: 650px;
}
.homepage-header h1 {
  text-align: left;
}
.homepage-header p {
  color: var(--color-text-gray);
  font-size: 1.2rem;
}
@media screen and (max-width: 889px) {
  .homepage-header {
    flex-direction: column;
    align-items: center;
  }
  .homepage-header h1 {
    text-align: center;
  }
  .homepage-header p {
    text-align: center;
  }
}

.homepage-header__img img {
  max-width: 250px;
  height: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 2rem;
}
@media screen and (max-width: 889px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .services {
    grid-template-columns: repeat(1, 1fr);
  }
}

.services-box {
  background-color: var(--color-gray);
  padding: 32px;
  border-radius: 10px;
}
@media screen and (max-width: 889px) {
  .services-box {
    padding: 24px;
  }
}
.services-box__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-box__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services-box__list ul {
  list-style: none;
  padding-inline-start: 0;
  margin: 1rem 0;
}
.services-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.services-box__list .material-symbols-outlined {
  color: green;
}
.services-box h2 {
  margin-bottom: 0;
}

.service-detail {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  text-align: left;
}
@media screen and (max-width: 889px) {
  .service-detail {
    flex-direction: column;
  }
}
.service-detail__box {
  flex: 1;
}

.service-detail__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-detail__box h1 {
  text-align: left;
}

.service-detail__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.service-detail__header h2 {
  color: var(--color-text-gray);
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 0;
}
.service-detail__header img {
  height: 70px;
  width: auto;
}

@media screen and (max-width: 889px) {
  .services-box__list {
    margin-bottom: 4rem;
  }
}

.blog-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 889px) {
  .blog-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .blog-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog-item {
  width: 100%;
  background-color: var(--color-gray);
  border-radius: 10px;
  position: relative;
  height: 100%;
  -webkit-box-shadow: 0px 11px 19px -12px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 11px 19px -12px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 11px 19px -12px rgba(0, 0, 0, 0.75);
}
.blog-item h3 {
  margin-bottom: 0;
}
.blog-item__labels {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  z-index: 10;
  display: flex;
  gap: 1rem;
}
.blog-item__label {
  padding: 5px 10px;
  border-radius: 10px;
  background-color: var(--color-yellow);
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
}
.blog-item__img {
  width: 100%;
  height: 200px;
  position: relative;
}
.blog-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.blog-item__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  height: calc(100% - 240px);
}
.blog-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.blog-detail__labels {
  display: flex;
  justify-content: center;
}

.blog-detail__img {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 889px) {
  .blog-detail__img {
    height: 300px;
  }
}
.blog-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
  margin: 2rem auto;
}
.article p,
.article a,
.article ul,
.article span,
.article ol {
  font-size: 1.2rem;
  line-height: 150%;
}
.article h1,
.article h2,
.article h3,
.article h4 {
  margin-top: 1rem;
}
.article h1,
.article h2 {
  margin-bottom: 1rem;
}
.article h3,
.article h4 {
  margin-bottom: 0.5rem;
}
.article a {
  color: var(--color-yellow);
}
.article blockquote {
  color: var(--color-text-gray);
  font-style: italic;
  text-align: center;
}
.article img {
  width: 100%;
  max-height: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.how-works {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 889px) {
  .how-works {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 540px) {
  .how-works {
    flex-direction: column;
  }
}

.how-works__box {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}
@media screen and (max-width: 889px) {
  .how-works__box {
    min-width: 220px;
  }
}
@media screen and (max-width: 540px) {
  .how-works__box {
    margin: auto;
  }
}

.how-works__number {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
  width: 42px;
  height: 42px;
  background: black;
  border-radius: 50%;
  color: white;
  line-height: 100%;
  font-size: 1.2rem;
}
@media screen and (max-width: 889px) {
  .how-works__number {
    margin: 0 auto 1rem auto;
  }
}

.why-section {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 889px) {
  .why-section {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 540px) {
  .why-section {
    flex-direction: column;
  }
}

.why-section__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.why-section__box img {
  max-height: 170px;
  width: auto;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .why-section__box p {
    text-align: center;
  }
}

.reviews {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 889px) {
  .reviews {
    flex-direction: column;
  }
}

.review {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 10px;
  padding: 24px;
  background-color: var(--color-black);
  position: relative;
  color: var(--color-yellow);
  text-align: center;
  font-weight: 500;
}
.review__author {
  font-weight: 300;
}
.review__divider {
  height: 2px;
  width: 40%;
  background-color: var(--color-gray);
  margin: auto;
}
.review:nth-child(2) {
  padding: 48px;
}
@media screen and (max-width: 889px) {
  .review:nth-child(2) {
    padding: 24px;
  }
}
.review__img {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  border-radius: 50%;
  object-fit: cover;
}
@media screen and (max-width: 889px) {
  .review__img {
    top: -50px;
  }
}

.phone-call {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-call p {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 889px) {
  .phone-call p {
    gap: 1rem;
  }
}
.phone-call span {
  font-size: 3rem;
}
.phone-call a {
  font-size: 2rem;
  color: var(--color-yellow);
  font-weight: 700;
  text-decoration: none;
}

.contact-form p {
  margin-bottom: 1rem;
}
.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  border: 2px solid var(--color-black);
  display: flex;
  align-items: center;
  padding: 1rem;
  width: calc(100% - 2rem);
}
.contact-form .wpcf7-submit {
  width: 100%;
  text-transform: uppercase;
  background-color: var(--color-black);
  color: var(--color-light);
  border-radius: 10px;
}
.contact-form__w-100 {
  grid-column: 1/-1;
}
.contact-form textarea {
  height: 5rem;
}
.contact-form__gdpr label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-form__gdpr input {
  width: fit-content;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer a {
  font-weight: 700;
  color: var(--color-black);
}

.cta-button {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-yellow);
  border: 2px solid var(--color-black);
  color: var(--color-black);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cta-button:hover {
  background-color: var(--color-yellow-light);
  transform: scale(1.1);
}

body {
  font-family: "Space Grotesk", sans-serif;
}

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