.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 599px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 12px;
  }
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #0a0a0a;
  color: #a3a3a3;
}

.primary-button {
  font-weight: 600;
  background: #facc15;
  border-radius: 3rem;
  padding: 12px 24px;
  color: #0a0a0a;
  text-decoration: none;
  transition: linear 0.2s all;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.primary-button:hover {
  background: #fde047;
  transition: linear 0.2s all;
}

.secondary-button {
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border-radius: 3rem;
  padding: 12px 24px;
  color: white;
  border: 1px solid #404040;
  transition: linear 0.2s all;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.secondary-button:hover {
  border-color: white;
  transition: linear 0.2s all;
}

.tertiary-button {
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border-radius: 3rem;
  padding: 8px 20px;
  font-size: 0.875rem;
  color: #facc15;
  border: 1px solid #facc15;
  transition: linear 0.2s all;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.tertiary-button:hover {
  background: #facc15;
  color: #0a0a0a;
  transition: linear 0.2s all;
}

.button-sm {
  font-size: 0.875rem;
  padding: 8px 16px;
}
@media (max-width: 599px) {
  .button-sm {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
}

.footer {
  padding: 4rem 0;
  border-top: 1px solid #262626;
}
@media (max-width: 599px) {
  .footer {
    padding: 2.5rem 0;
  }
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 599px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.footer .logo {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: white;
}
.footer .logo span {
  color: #facc15;
}
.footer-description {
  font-size: 14px;
  margin-top: 1rem;
  max-width: 16rem;
}
.footer-item h5 {
  color: #facc15;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-item .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #a3a3a3;
}
.footer-item .footer-contact li a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0;
}
.footer-item .footer-contact li i {
  width: 1rem;
  margin-top: 0.2rem;
  color: #facc15;
  text-align: center;
}
.footer-item h6 {
  color: #a3a3a3;
  margin: 1.5rem 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.footer-item .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-item .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #404040;
  color: #a3a3a3;
  transition: linear 0.2s all;
  text-decoration: none;
}
.footer-item .footer-socials a:hover {
  border-color: white;
  color: white;
  transition: linear 0.2s all;
}
.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-item ul li {
  padding: 0.375rem 0;
  font-size: 0.875rem;
}
.footer-item ul li a {
  text-decoration: none;
  color: #a3a3a3;
  transition: linear 0.2s all;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer-item ul li a:hover {
  color: white;
  transition: linear 0.2s all;
}
.footer .copyright {
  text-align: center;
  margin: 0;
  font-size: 14px;
  padding-top: 50px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .footer .copyright {
    padding-top: 2rem;
  }
}

.header {
  padding: 15px 0;
  background-color: rgba(10, 10, 10, 0.9019607843);
  width: 100%;
  z-index: 100;
  top: 0;
  transition: linear 0.2s all;
  position: fixed;
  border-bottom: 1px solid #262626;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header-main__logo {
    order: 1;
  }
  .header-main .buttons {
    order: 2;
  }
  .header-main__menu {
    order: 3;
  }
}
.header-main__logo a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: white;
}
.header-main__logo a span {
  color: #facc15;
}
@media (max-width: 599px) {
  .header-main__logo a {
    font-size: 1rem;
  }
}
@media (max-width: 399px) {
  .header-main__logo a {
    font-size: 0.875rem;
  }
}
.header-main__menu #primary-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .header-main__menu #primary-menu {
    display: none;
  }
}
.header-main__menu #primary-menu li a {
  display: inline-block;
  text-decoration: none;
  color: #a3a3a3;
  font-weight: 400;
  padding-bottom: 4px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.header-main__menu #primary-menu li.current-menu-item > a, .header-main__menu #primary-menu li.current_page_item > a, .header-main__menu #primary-menu li.current-menu-ancestor > a, .header-main__menu #primary-menu li.current_page_ancestor > a {
  color: #fff;
  border-bottom-color: #facc15;
}
.header-main__menu .menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .header-main__menu .menu-toggle {
    display: block;
  }
}
.header-main__menu .menu-toggle .bar1, .header-main__menu .menu-toggle .bar2, .header-main__menu .menu-toggle .bar3 {
  display: block;
  width: 32px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.toggled-view {
  overflow: hidden;
}
.toggled-view .bar1 {
  transform: rotate(-45deg) translate(-4px, 4px);
}
.toggled-view .bar2 {
  opacity: 0;
}
.toggled-view .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}
.toggled-view .header-main__menu #primary-menu {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 1.5rem;
  position: fixed;
  width: 100%;
  left: 0;
  background: #0a0a0a;
  height: 100vh;
  top: 0;
  transform: translateX(0px);
  opacity: 1;
  z-index: 0;
}
.toggled-view .header-main__menu #primary-menu li a {
  font-size: 1.25rem;
}

/* PAGES */
.hero {
  position: relative;
  z-index: 1;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
@media (max-width: 599px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}
.hero:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(360deg, #0a0a0a, transparent);
  z-index: -1;
}
@media (max-width: 599px) {
  .hero:after {
    background: linear-gradient(360deg, #0a0a0a, rgba(0, 0, 0, 0.4117647059));
  }
}
.hero .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero .title {
  color: white;
  font-size: 3.75rem;
  margin: 0;
  max-width: 85%;
  line-height: 1.25;
}
@media (max-width: 599px) {
  .hero .title {
    font-size: 2.5rem;
    max-width: 100%;
  }
}
.hero .description {
  margin: 1.25rem 0;
  color: #d4d4d4;
  max-width: 50rem;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .hero .description {
    margin: 1rem 0;
  }
}
.hero .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.contact {
  padding: 4rem 0;
}
@media (max-width: 599px) {
  .contact {
    padding: 2.5rem 0;
  }
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact-input {
  display: grid;
}
.contact-input p {
  margin: 0.75rem 0;
}
.contact .content .title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: white;
  margin: 0;
}
.contact .content .contact-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
@media (max-width: 480px) {
  .contact .content .contact-list {
    grid-template-columns: 1fr;
  }
}
.contact .content .contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid #262626;
  font-size: 0.875rem;
  color: #a3a3a3;
}
.contact .content .contact-item:last-child {
  border-bottom: none;
}
.contact .content .contact-item:nth-last-child(2) {
  border-bottom: none;
}
@media (max-width: 480px) {
  .contact .content .contact-item:nth-last-child(2) {
    border-bottom: 1px solid #262626;
  }
}
.contact .content .contact-item strong {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.contact .content .contact-item a {
  color: #a3a3a3;
  text-decoration: none;
}
.contact .content .contact-item a:hover {
  color: white;
}
.contact .content .contact-item__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact .content .contact-item__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #404040;
  font-size: 1rem;
  transition: linear 0.2s all;
}
.contact .content .contact-item__socials a:hover {
  border-color: white;
  color: white;
  transition: linear 0.2s all;
}
.contact .form h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: white;
  margin: 0;
  margin-bottom: 20px;
}
.contact .form .contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .contact .form .contact-row {
    grid-template-columns: 1fr;
  }
}
.contact .form label {
  color: #a3a3a3;
  top: -7px;
  position: relative;
  font-size: 0.875rem;
}
.contact .form input {
  background: #171717;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid #404040;
  border-radius: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  color: white;
}
.contact .form textarea {
  background: #171717;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid #404040;
  border-radius: 0.5rem;
  width: 100%;
  color: white;
  min-height: 10rem;
  height: 10rem;
  min-width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
.contact .form input.wpcf7-form-control.wpcf7-submit.has-spinner {
  font-weight: 600;
  background: #facc15;
  border-radius: 3rem;
  padding: 12px 24px;
  color: #0a0a0a;
  text-decoration: none;
  transition: linear 0.2s all;
  cursor: pointer;
  border: none;
  width: auto;
}
.contact .form .contact-check {
  font-size: 0.875rem;
}
.contact .form .contact-check .wpcf7-list-item {
  margin: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}
.contact .form .contact-check a {
  color: white;
}
.contact .form .contact-check p {
  margin: 0;
}
.contact .form .contact-check input {
  cursor: pointer;
}
.contact .form .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 6px;
}
.contact .form .wpcf7 .wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact .map {
  border-radius: 1rem;
  margin-top: 1rem;
}
.contact .map iframe {
  border-radius: 1rem;
  filter: grayscale(1);
  width: 100%;
  height: 25rem;
}
@media (max-width: 599px) {
  .contact .map iframe {
    height: 16rem;
  }
}

.section-heading {
  padding-top: 10rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #262626;
}
@media (max-width: 599px) {
  .section-heading {
    padding-top: 8rem;
    padding-bottom: 2.5rem;
  }
}
.section-heading .breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
  list-style: none;
  padding: 0;
}
.section-heading .breadcrumb li {
  font-size: 0.875rem;
}
.section-heading .breadcrumb li a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.875rem;
}
.section-heading .title {
  font-weight: 700;
  color: white;
  font-size: 3rem;
  margin: 0;
}
@media (max-width: 599px) {
  .section-heading .title {
    font-size: 2rem;
  }
}
.section-heading .description {
  color: #a3a3a3;
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  max-width: 42rem;
}
@media (max-width: 599px) {
  .section-heading .description {
    font-size: 1rem;
  }
}

.gallery {
  padding: 4rem 0;
}
@media (max-width: 499px) {
  .gallery {
    padding: 2.5rem 0;
  }
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery .gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4/3;
  background: #171717;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery .gallery-slider {
  display: block;
  position: relative;
  padding: 0 2.5rem;
}
.gallery .gallery-slider .gallery-item {
  margin: 0 0.5rem;
}
.gallery .gallery-slider .slick-track {
  display: flex;
}
.gallery .gallery-slider .slick-slide {
  height: auto;
}
.gallery .gallery-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
}
.gallery .gallery-slider .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #facc15;
  border-bottom: 2px solid #facc15;
  opacity: 1;
}
.gallery .gallery-slider .slick-prev {
  left: 0;
}
.gallery .gallery-slider .slick-prev::before {
  transform: translate(-20%, -50%) rotate(135deg);
}
.gallery .gallery-slider .slick-next {
  right: 0;
}
.gallery .gallery-slider .slick-next::before {
  transform: translate(-80%, -50%) rotate(-45deg);
}

.tms {
  padding: 4rem 0;
}
@media (max-width: 599px) {
  .tms {
    padding: 2.5rem 0;
  }
}
.tms-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 999px) {
  .tms-row {
    gap: 2rem;
  }
}
@media (max-width: 799px) {
  .tms-row {
    grid-template-columns: 1fr;
  }
}
.tms-row .image {
  border-radius: 1rem;
}
.tms-row .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  min-height: 30rem;
}
@media (max-width: 799px) {
  .tms-row .image img {
    min-height: 20rem;
  }
}
@media (max-width: 499px) {
  .tms-row .image img {
    min-height: 15rem;
  }
}
.tms-row .content .title {
  color: white;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (max-width: 999px) {
  .tms-row .content .title {
    font-size: 2rem;
  }
}
@media (max-width: 599px) {
  .tms-row .content .title {
    font-size: 1.75rem;
  }
}
.tms-row .content .description {
  line-height: 1.35;
  color: #a3a3a3;
}
.tms-row .content .description ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tms-row .content .description ul li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(163, 163, 163, 0.2784313725);
  font-size: 14px;
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 599px) {
  .tms-row .content .description ul li {
    padding-left: 1.5rem;
  }
}
.tms-row .content .description ul li strong {
  color: white;
}
.tms-row .content .description ul li:last-child {
  border-bottom: none;
}
.tms-row .content .description ul li:before {
  background-color: #facc15;
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  bottom: 0;
  margin: auto;
  border-radius: 3px;
  top: 0;
}

.about-banner {
  padding-bottom: 80px;
}
@media (max-width: 799px) {
  .about-banner {
    padding-bottom: 3rem;
  }
}
.about-banner-inner {
  padding: 2rem;
  background: #171717;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  border: 1px solid #262626;
}
@media (max-width: 1199px) {
  .about-banner-inner {
    padding: 1rem;
    gap: 1rem;
  }
}
@media (max-width: 799px) {
  .about-banner-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
.about-banner .image {
  border-radius: 10rem;
  min-width: 10rem;
  min-height: 10rem;
  width: 10rem;
  height: 10rem;
}
.about-banner .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
}
.about-banner .content .position {
  margin: 0;
  color: #facc15;
  font-weight: 600;
}
.about-banner .content .name {
  color: white;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0.5rem 0;
  font-weight: bold;
}
.about-banner .content .desc {
  margin: 0;
  line-height: 1.35;
  max-width: 90%;
}
@media (max-width: 1199px) {
  .about-banner .content .desc {
    max-width: 100%;
  }
}
.about-banner .buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 16rem;
  flex-flow: wrap;
}
@media (max-width: 799px) {
  .about-banner .buttons {
    text-align: center;
    justify-content: center;
    flex-flow: wrap;
  }
}
@media (max-width: 399px) {
  .about-banner .buttons {
    flex-direction: column;
  }
}

.info-banner {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 599px) {
  .info-banner {
    padding: 4rem 0;
  }
}
.info-banner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0a0a0a;
  opacity: 0.7;
  z-index: -1;
}
.info-banner .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.info-banner .title {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 599px) {
  .info-banner .title {
    font-size: 1.75rem;
  }
}
.info-banner .description {
  color: #a3a3a3;
  margin: 0;
  max-width: 35rem;
  margin: auto;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

.faq {
  padding: 4rem 0;
}
@media (max-width: 799px) {
  .faq {
    padding: 2.5rem 0;
  }
}
.faq .faq-items {
  max-width: 800px;
  margin: 0 auto;
}
.faq .faq-item {
  border-bottom: 1px solid #262626;
}
.faq .faq-item:last-child {
  border-bottom: none;
}
.faq .faq-item__question {
  position: relative;
  margin: 0;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .faq .faq-item__question {
    padding: 1rem 2rem 1rem 0;
    font-size: 1rem;
  }
}
.faq .faq-item__question::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #facc15;
  border-bottom: 2px solid #facc15;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq .faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq .faq-item__answer p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #a3a3a3;
  max-width: 45rem;
}
.faq .faq-item.is-open .faq-item__question::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq .faq-item.is-open .faq-item__answer {
  max-height: 600px;
  padding-bottom: 0.5rem;
}

.price {
  padding: 4rem 0;
}
.price-box {
  background: #171717;
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 28px;
}
@media (max-width: 559px) {
  .price-box {
    padding: 1.25rem 1rem;
  }
}
.price-box__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .price-box__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 559px) {
  .price-box__wrapper {
    gap: 1rem;
  }
}
.price-box .title {
  color: white;
  margin: 0;
  margin-bottom: 0.75rem;
}
.price-box .list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.price-box .list .item {
  display: flex;
  padding: 0.75rem 0;
  justify-content: space-between;
  border-bottom: 1px solid #262626;
  gap: 1rem;
}
.price-box .list .item:last-child {
  border-bottom: none;
}
.price-box .list .item .name {
  color: #a3a3a3;
  margin: 0;
}
.price-box .list .item .value {
  color: #facc15;
  margin: 0;
  font-weight: bold;
}
.price-box .note {
  font-size: 0.875rem;
  line-height: 1rem;
  font-style: italic;
  margin: 0;
  margin-top: 0.5rem;
}

.hours {
  padding: 4rem 0;
}
@media (max-width: 599px) {
  .hours {
    padding: 2.5rem 0;
  }
}
.hours .hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
@media (max-width: 999px) {
  .hours .hours-row {
    gap: 2rem;
  }
}
@media (max-width: 799px) {
  .hours .hours-row {
    grid-template-columns: 1fr;
  }
}
.hours .hours-row .content .title {
  color: white;
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0;
}
.hours .hours-row .content .description {
  color: #a3a3a3;
  margin-top: 1rem;
  max-width: 24rem;
  line-height: 1.5;
}
.hours .hours-row .content .secondary-button {
  margin-top: 1.5rem;
}
.hours .hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours .hours-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #262626;
  font-size: 0.875rem;
}
.hours .hours-item:last-child {
  border-bottom: none;
}
.hours .hours-item__day {
  color: white;
}
.hours .hours-item__time {
  color: #a3a3a3;
  text-align: right;
}

.services {
  padding: 4rem 0;
}
@media (max-width: 599px) {
  .services {
    padding: 2.5rem 0;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.services .box {
  background: #171717;
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 1.25rem;
  transition: linear 0.2s all;
}
.services .box:hover {
  border-color: #facc15;
  transition: linear 0.2s all;
}
.services .box .image {
  display: block;
  width: 100%;
  height: 9rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  filter: grayscale(15%);
}
.services .box .title {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}
.services .box .description {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #a3a3a3;
  min-height: 2.7rem;
}
.services .box .tertiary-button {
  margin-top: 1rem;
}

.error {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  text-align: center;
}
@media (max-width: 599px) {
  .error {
    padding: 4rem 0;
    min-height: 55vh;
  }
}
.error .container {
  max-width: 36rem;
  margin: 0 auto;
}
.error h1 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 2rem;
}
@media (max-width: 599px) {
  .error h1 {
    font-size: 1.5rem;
  }
}
.error .button-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  border: 1px solid #404040;
  border-radius: 3rem;
  padding: 12px 24px;
  transition: linear 0.2s all;
}
.error .button-arrow svg path {
  transition: linear 0.2s all;
}
.error .button-arrow:hover {
  border-color: #facc15;
  color: #facc15;
  transition: linear 0.2s all;
}
.error .button-arrow:hover svg path {
  stroke: #facc15;
}

.service-detail {
  padding: 4rem 0;
}
@media (max-width: 599px) {
  .service-detail {
    padding-bottom: 2.5rem;
  }
}
.service-detail__image {
  display: block;
  width: 100%;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .service-detail__image {
    height: 16rem;
  }
}
.service-detail__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .service-detail__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.service-detail__content {
  max-width: 42rem;
}
.service-detail__content p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #a3a3a3;
}
.service-detail__content p:last-child {
  margin-bottom: 0;
}
.service-detail__content ul li {
  line-height: 1.5;
}
.service-detail__price {
  background: #171717;
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 1.75rem;
}
@media (max-width: 599px) {
  .service-detail__price {
    padding: 1.25rem 1rem;
  }
}
.service-detail__price h3 {
  margin: 0 0 1rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
}
.service-detail__price .primary-button {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 1.25rem;
}
.service-detail__price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid #262626;
  font-size: 0.875rem;
}
.service-detail__price-row .label {
  color: #a3a3a3;
}
.service-detail__price-row .value {
  color: #facc15;
  font-weight: 700;
}
.service-detail__price-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: #737373;
}

.text-page {
  padding: 4rem 0;
}
@media (max-width: 599px) {
  .text-page {
    padding: 2.5rem 0;
  }
}
.text-page__content {
  max-width: 48rem;
  margin: 0 auto;
  color: #a3a3a3;
  line-height: 1.7;
}
.text-page__content h1, .text-page__content h2, .text-page__content h3, .text-page__content h4, .text-page__content h5, .text-page__content h6 {
  color: white;
  font-weight: 700;
  margin: 2rem 0 1rem;
}
.text-page__content h1:first-child, .text-page__content h2:first-child, .text-page__content h3:first-child, .text-page__content h4:first-child, .text-page__content h5:first-child, .text-page__content h6:first-child {
  margin-top: 0;
}
.text-page__content h2 {
  font-size: 1.75rem;
}
.text-page__content h3 {
  font-size: 1.375rem;
}
.text-page__content p {
  margin: 0 0 1.25rem;
}
.text-page__content a {
  color: #facc15;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.text-page__content a:hover {
  color: #fde047;
}
.text-page__content strong, .text-page__content b {
  color: white;
}
.text-page__content ul, .text-page__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}
.text-page__content ul li, .text-page__content ol li {
  margin-bottom: 0.5rem;
}
.text-page__content blockquote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid #facc15;
  background: #171717;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
}
.text-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem 0;
}
.text-page__content hr {
  border: none;
  border-top: 1px solid #262626;
  margin: 2rem 0;
}
.text-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
}
.text-page__content table th, .text-page__content table td {
  padding: 0.75rem;
  border-bottom: 1px solid #262626;
  text-align: left;
}
.text-page__content table th {
  color: white;
}/*# sourceMappingURL=style.css.map */