:root {
  font-size: 20px;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #ccc;
  scroll-behavior: smooth;
}

.link {
  color: #ccc;
}

strong {
  font-weight: bold;
}

li {
  cursor: pointer;
  list-style: none;
  margin: 0.5rem;
  padding-bottom: 0.3rem;
}

li:hover {
  border-bottom: 1px solid #ccc;
}

a {
  color: #ccc;
  text-decoration: none;
}

i {
  font-size: 2rem;
}

.secondary-color {
  color: #d30000;
}

@media (max-width: 600px) {
  :root {
    font-size: 17px;
  }
}
header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
}
header img {
  object-fit: cover;
  width: 150px;
}

.menu {
  align-items: center;
  display: flex;
}
.menu .btn {
  margin-left: 2rem;
}
.menu ul {
  display: flex;
}
.menu li a {
  font-weight: bold;
}

.fa-bars,
.fa-x {
  color: #ccc;
  display: none;
}

@media (max-width: 600px) {
  .menu {
    z-index: 999;
    align-items: start;
    background: #000;
    display: grid;
    grid-template-areas: "x-icon" "menu" "button";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 4fr 1fr;
    height: 100vh;
    justify-content: center;
    justify-content: center;
    left: 0;
    margin-left: -100vw;
    padding: 2rem;
    position: fixed;
    top: 0;
    width: 100vw;
  }
  .menu .btn {
    margin: 0;
  }
  .fa-x {
    grid-area: "x-icon";
    justify-self: right;
  }
  .fa-bars,
  .fa-x {
    display: block;
  }
  .menu ul {
    flex-direction: column;
    font-size: 1.5rem;
    grid-area: "menu";
  }
  .menu li {
    border-color: transparent;
  }
  .menu .btn {
    grid-area: "button";
  }
}
footer {
  align-items: center;
  background: #d30000;
  color: #000;
  display: flex;
  justify-content: space-between;
  padding: 1rem 5rem;
}
footer img {
  object-fit: cover;
  width: 150px;
}
footer .vertical-bar {
  background: #000;
  height: 100px;
  width: 5px;
}
footer .contact__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
footer .contact__info i {
  color: #000;
}
footer .contact__title {
  font-weight: bold;
}
footer .contact__social-network-icons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }
  footer .vertical-bar {
    display: none;
  }
}
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
section h2 {
  margin: auto;
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-align: center;
}
section .bar {
  background: #ccc;
  height: 10px;
  width: 100%;
}

.section__title {
  white-space: normal;
  word-wrap: break-word;
  align-items: center;
  display: flex;
  font-size: 3rem;
  font-weight: bold;
  gap: 1.5rem;
  justify-content: center;
  margin: auto;
  width: 100%;
}

.section__body {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.works {
  background: #ccc;
  color: #000;
}
.works .bar {
  background: #000;
}
.works .section__body {
  gap: 0.2rem;
}

@media (max-width: 600px) {
  section .bar {
    display: none;
  }
  .section__title {
    font-size: 1.5rem !important;
  }
  .section__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  section h2 {
    font-size: 1rem !important;
  }
}
body {
  background-image: url("/static/images/background.jpg");
  background-position: -10px -10px;
}

.success-message {
  background: #3cb043;
  border-radius: 0.2rem;
  color: #ccc;
  padding: 1rem;
}

.error {
  display: flex;
  flex-direction: column;
}
.error strong {
  color: #d30000;
}
.error input {
  border-color: #d30000;
}

h2 strong {
  font-size: 2rem;
  font-weight: bold;
}

.whatsapp-fixed-container {
  position: fixed;
  background: #25D366;
  border-radius: 50%;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  right: 20px;
}
.whatsapp-fixed-container .whatsapp-fixed {
  font-size: 3rem;
}

.works__image-cover {
  background: #d30000;
  color: #ccc;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 1rem;
  position: relative;
  top: 0;
  transition: opacity 0.3s;
}
.works__image-cover img {
  object-fit: contain;
  object-position: left;
  width: 100%;
}
.works__image-cover h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  text-align: left;
}
.works__image-cover .bar {
  background: #ccc;
  height: 0.3rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  width: 7rem;
}
.works__image-cover :hover {
  opacity: 80%;
}

.whatsapp-button {
  display: flex;
  align-items: center;
}
.whatsapp-button i {
  margin-right: 1rem;
}

.links-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  grid-column: 1/3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 5rem;
}

.presentation {
  display: grid;
  gap: 1rem;
  grid-template-columns: 3fr 2fr;
}
.presentation .btn {
  margin-top: 2rem;
}
.presentation img {
  width: 100%;
  height: 100%;
}

.presentation__text h1,
.presentation__text span {
  font-size: 4rem;
  font-weight: bold;
}

.presentation__text-bar {
  background: #d30000;
  height: 10px;
  margin-bottom: 2rem;
  margin-top: 1rem;
  width: 7rem;
}

.specialties {
  background: #d30000;
}
.specialties .section__title {
  color: #000;
}
.specialties .bar {
  background: #000;
}
.specialties .btn-dark {
  background: #000;
}

.specialties__card {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: 100px 1fr 1fr;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
}
.specialties__card img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.specialties__card h3 {
  color: #000;
  font-weight: bold;
}

.clients {
  background: #000;
}
.clients img {
  align-self: center;
  justify-self: center;
  object-fit: contain;
  width: 100%;
}
.clients .section__body {
  gap: 2.5rem;
}

.works__image {
  background-position: center top;
  background-size: cover;
  height: 300px;
  width: 100%;
}
.works__image :nth-child(7) {
  background-position: right;
}

.ratings-section .section__body {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}
.ratings-section .section__body .rating {
  text-align: justify;
}

.contact {
  background: #000;
}

@media (max-width: 600px) {
  h2 strong {
    font-size: 1rem;
  }
  .presentation {
    display: block;
  }
  .presentation h1, .presentation span {
    font-size: 2rem;
  }
  .presentation img {
    display: none;
  }
  .works__image-cover h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .works__image {
    height: 200px;
  }
  .contact-form {
    padding: 0 2rem;
  }
  .ratings-section .section__body {
    grid-template-columns: 1fr;
  }
  .links-container {
    grid-template-columns: 1fr;
    grid-column: 1/2;
    gap: 1rem;
  }
}
.login-form {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--on-primary);
  text-align: center;
}
.login-form input {
  margin: 1rem 0;
}

.login-form__title {
  font-size: 2rem;
  font-weight: bold;
}

.portfolio {
  padding: 0;
}
.portfolio .section__title {
  padding: 0 5rem;
  color: #ccc;
}

.portfolio__body {
  display: flex;
  flex-direction: column;
}

.portfolio__works {
  background: transparent;
  margin-top: 2rem;
}
.portfolio__works .section__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1rem;
}
.portfolio__works .section__title {
  font-weight: bold;
  margin: 0.5rem 0;
  padding: 1rem;
  text-align: center;
}
.portfolio__works h2.section__title {
  background-color: #d30000;
  color: #000;
  font-size: 3rem;
}
.portfolio__works h3.section__title {
  background-color: transparent;
  color: #ccc;
  font-size: 2rem;
}

.works__carousel-item {
  height: 70vh;
}
.works__carousel-item img {
  width: 75%;
  object-position: center;
}

@media (max-width: 600px) {
  .portfolio {
    padding: 2rem 0;
  }
  .portfolio .works h2.section__title,
  .portfolio .section__title {
    font-size: 2rem;
  }
  .works__carousel-item {
    height: 40vh;
  }
  .works__carousel-item img {
    width: 100%;
  }
  .portfolio__works h3.section__title {
    font-size: 1.5rem;
  }
}
.fa-quote-left {
  font-size: 2.5rem;
}

.fa-star {
  color: #ffd700;
  font-size: 1.5rem;
}

.ratings {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
}
.ratings .section__title {
  grid-column: 1/3;
  margin-bottom: 1rem;
}

.rating {
  background: #ccc;
  border-radius: 0.5rem;
  color: #000;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-top: 0;
}
.rating p {
  display: inline;
  margin-left: 0.5rem;
}

.rating__name-container {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.rating__name {
  font-size: 1rem;
  font-weight: bold;
}

.rating__stars-container {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

@media (max-width: 600px) {
  .ratings {
    display: flex;
    flex-direction: column;
  }
}
.add-rating-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
}
.add-rating-form #stars {
  display: none;
}
.add-rating-form__title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.add-rating-form .rating__stars-container {
  display: flex;
  justify-content: center;
}
.add-rating-form .rating__stars-container i {
  font-size: 2rem;
}

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