html {
  height: 100%;
}

body {
  overflow-x: hidden;
  height: 100%;
}

header, main, footer {
  padding-inline: 6rem;
}

header {
  padding-top: 6rem;
}

main {
  padding-bottom: 6rem;
}

.wrapper {
  background-color: white;
  height: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, input, textarea, button, label {
  font-family: sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: black;
}

h1 {
  font-family: serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 55px;
}

.text-tag {
  position: absolute;
  right: 6rem;
  top: 6rem;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 6rem;
  max-width: 1000px;
}
main p {
  max-width: 600px;
  line-height: 161%;
  margin: 0;
}

main.home {
  max-width: none;
}

button.a-btn {
  cursor: pointer;
}

.a-btn {
  background-color: black;
  display: block;
  padding: 1rem 2rem 1rem;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid black;
  color: white;
  font-weight: 700;
  transition-duration: 0.3s;
}
.a-btn:hover {
  background-color: white;
  color: black;
}

.a-btn.btn-inverse {
  background-color: white;
  color: black;
  border: 1.5px solid black;
  font-weight: 500;
}
.a-btn.btn-inverse:hover {
  background-color: black;
  color: white;
}

.buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.line {
  width: 2px;
  height: 60%;
  background-color: black;
}

.logo {
  width: -moz-fit-content;
  width: fit-content;
}
.logo a {
  font-weight: 700;
  font-size: 24px;
  color: black;
}

.img-btn {
  cursor: pointer;
  border-radius: 100%;
  position: fixed;
  right: 6rem;
  bottom: 6rem;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 245px;
  height: 245px;
}
.img-btn:hover {
  transform: scale(1.75);
}
.img-btn img {
  animation-name: rotate;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.active {
  transition-timing-function: linear;
  transition-duration: 0.35s;
  transform: scale(50);
}
.active:hover {
  transform: scale(50);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.projects-grid .project-card {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  border: 2px solid white;
  padding: 4rem;
  transition-duration: 0.5s;
}
.projects-grid .project-card h3 {
  font-size: 20px;
  font-weight: 700;
}
.projects-grid .project-card:hover {
  background-color: white;
}
.projects-grid .project-card:hover h3 {
  color: black;
}
.projects-grid .project-card:hover img {
  filter: brightness(0);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 600px;
}
form input, form textarea {
  background-color: transparent;
  border: none;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0.75rem;
}
form input:active, form input:focus, form textarea:active, form textarea:focus {
  outline: none;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form input::placeholder, form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form textarea {
  resize: none;
  height: 150px;
}

.back-arrow {
  filter: brightness(0);
  transform: rotate(180deg);
}

.project-detail .back-arrow {
  filter: brightness(100);
}

.go-back {
  margin-bottom: 1rem;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark p, .dark a {
  color: white;
}

.dark {
  background-color: #000;
}

.dark .wrapper {
  background-color: #000;
}

.dark .a-btn {
  border: 2px solid white;
}
.dark .a-btn:hover {
  background-color: white;
  color: black;
}

.dark .logo a {
  color: white;
}

.mobile {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin-top: 1rem;
}
.services-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services-grid h2 {
  font-size: 24px;
  font-weight: 700;
}

.project-detail .a-btn {
  margin-top: 1rem;
}

@media (max-width: 1050px) {
  .container {
    justify-content: space-between;
  }
  .img-btn {
    height: auto;
    width: auto;
  }
  main {
    margin-bottom: 6rem;
    padding-bottom: 0;
  }
  footer {
    padding-bottom: 6rem;
  }
  .mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .desktop {
    display: none;
  }
  .projects-grid {
    width: -moz-fit-content;
    width: fit-content;
    grid-template-columns: 1fr;
  }
  .projects-grid .project-card {
    padding: 3rem;
  }
  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .line {
    width: 50px;
    height: 2px;
    margin: 0.5rem 0;
  }
}
@media (max-width: 750px) {
  .project-detail h1 {
    font-size: 48px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  .projects-grid {
    width: 100%;
  }
  .projects-grid .project-card {
    padding: 2.5rem;
    gap: 1rem;
  }
  .projects-grid .project-card h3 {
    font-size: 18px;
  }
  main.home h1 {
    text-align: start;
  }
  main.home p {
    text-align: start;
    margin: 0;
  }
  .buttons {
    align-items: flex-start;
  }
  .line {
    margin: 0.5rem 0;
  }
  body {
    overflow: auto;
    overflow-x: hidden;
  }
  header, main, footer {
    padding-inline: 3rem;
  }
  header {
    padding-top: 3rem;
  }
  footer {
    padding-bottom: 3rem;
  }
  .dark .wrapper {
    min-height: 100%;
  }
  .img-btn {
    right: 3rem;
    bottom: 3rem;
  }
  .projects .projects-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .project-detail h1 {
    font-size: 32px;
    line-height: 36px;
  }
  header, main, footer {
    padding-inline: 1.5rem;
  }
  header {
    padding-top: 1.5rem;
  }
  footer {
    padding-bottom: 1.5rem;
  }
  .img-btn {
    right: 1.5rem;
    bottom: 1.5rem;
  }
  .projects-grid .project-card {
    padding: 2rem;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fadein {
  from {
    opacity: 0.01;
  }
  to {
    opacity: 1;
  }
}
.intake .info {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}
.intake .info input:first-child {
  width: 30%;
}
.intake .info input:last-child {
  width: 70%;
}
.intake .questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.intake .questions ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.intake .questions li {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.intake .questions textarea {
  width: 100%;
  height: 37px;
}
.intake .questions textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.intake .questions textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.intake h2 {
  font-size: 24px;
  font-weight: 700;
}
.intake h3 {
  font-size: 18px;
  font-weight: 700;
}
.intake textarea {
  height: 70px;
  width: 100%;
}

@media (max-width: 600px) {
  .intake .info {
    flex-direction: column;
    gap: 1rem;
  }
  .intake .info input {
    width: 100% !important;
  }
  .questions textarea {
    height: 70px !important;
  }
}
@media (max-width: 450px) {
  .thankyou h1 {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 300px) {
  .thankyou h1 {
    font-size: 32px;
    line-height: 32px;
  }
}/*# sourceMappingURL=style.css.map */