.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #111827;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}

@media (max-width: 600px) {
  .header {
    padding: 0.75rem 1rem;
  }
}

.header-menu-toggle {
  display: none;
}

.header-links {
  margin: 0 auto;
}

.header-links--ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-links--ul__li {
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header-links--ul__li:hover {
  color: #47c42d;
}

.header-links--ul__li > a {
  text-decoration: none;
  color: #d1d5db;
  font-weight: 600;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

.header-links--ul__li > a:hover {
  background-position: 100% 0;
}

@media (max-width: 1200px) {
  .header-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.2rem;
    color: #d1d5db;
    background: transparent;
    border: 2px solid #47c42d;
    border-radius: .3rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header-menu-toggle:hover {
    background-color: #2f8f1f;
    color: #1f2937;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .header-menu-toggle:active {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .header .primary-btn-container {
    display: none;
  }
  .header-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #1f2937;
    -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
    -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .header-links.open {
    max-height: 30rem;
    opacity: 1;
    padding: 1rem 0;
    z-index: 10000;
  }
  .header-links--ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0 1rem;
  }
}

footer {
  background-color: #111827;
  background-image: url("../src/public/images/footer-bg.png");
  color: #1f2937;
  padding-inline: 1.5rem;
  padding-block: 2rem 1rem;
  opacity: 0.8;
}

footer .footer-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: (33%)[3];
      grid-template-columns: repeat(3, 33%);
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1200px) {
  footer .footer-columns {
    gap: 1rem;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}

@media (max-width: 600px) {
  footer .footer-columns {
    display: block;
  }
}

footer .footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  text-align: justify;
  max-width: 33%;
}

@media (max-width: 1200px) {
  footer .footer-column {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  footer .footer-column > div.logo-container {
    margin: 0 auto;
  }
}

footer .footer-column > div.logo-container strong {
  font-size: 1rem;
  color: #ffffff;
}

footer .footer-column > div.logo-container > img {
  width: 5rem;
  height: 2.5rem;
}

@media (max-width: 1200px) {
  footer .footer-column > div.logo-container > img {
    width: 6rem;
    height: 3rem;
  }
}

footer .footer-column-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1200px) {
  footer .footer-column-contact {
    -webkit-padding-start: 1rem;
            padding-inline-start: 1rem;
  }
}

footer .footer-column-contact > a,
footer .footer-column-contact span {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-start: .75rem;
          margin-inline-start: .75rem;
}

footer .footer-column-social-media {
  text-align: right;
}

@media (max-width: 1200px) {
  footer .footer-column-social-media {
    text-align: center;
  }
}

footer .footer-column-social-media__link {
  color: #ffffff;
}

footer .footer-column > div > .footer-contact-icon {
  width: 2.2rem;
  height: 2.2rem;
  padding: .5rem;
  background: #47c42d;
  border-radius: .3rem;
}

footer .footer-column-description {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

@media (max-width: 1200px) {
  footer .footer-column-description {
    text-align: center;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}

footer .footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  footer .footer-columns {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
  footer .footer-column .logo-container {
    margin: 0 auto;
  }
  footer .footer-column-social-media {
    text-align: center;
    display: inline-block;
    margin: 0 0 1.3rem;
  }
}

@media (max-width: 600px) and (max-width: 600px) {
  footer .footer-column-social-media {
    margin: 0;
  }
}

@media (max-width: 600px) {
  footer .footer-column h4 {
    font-size: 1.3rem;
    text-align: center;
  }
  footer .footer-column a {
    font-size: .95rem;
    text-align: center;
  }
}

footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #d1d5db;
  padding-top: 1rem;
  color: #d1d5db;
}

footer .footer-bottom a {
  color: #47c42d;
}

footer .footer-bottom a:hover {
  color: #ffffff;
}

footer .footer-bottom-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 1200px) {
  footer .footer-bottom {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
    font-size: .7rem;
  }
}

.contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 3.5rem;
  margin: 0 auto;
}

.contact-container-form {
  max-width: 40%;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .contact-container-form {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}

.contact-container-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .contact-container-form-item {
    gap: 0.75rem;
    height: auto;
  }
}

.contact-container-form-item input,
.contact-container-form-item textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: .3rem;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.contact-container-form-item input:focus,
.contact-container-form-item textarea:focus {
  outline: none;
  border-color: #47c42d;
  -webkit-box-shadow: 0 0 8px rgba(241, 158, 57, 0.3);
          box-shadow: 0 0 8px rgba(241, 158, 57, 0.3);
}

.contact-container-form-item__phone {
  /* Firefox */
}

.contact-container-form-item__phone::-webkit-outer-spin-button, .contact-container-form-item__phone::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-container-form-item__phone[type=number] {
  -moz-appearance: textfield;
}

.contact-container-form-item textarea {
  min-height: 7.5rem;
}

.contact-container-form-item > button {
  width: 43%;
  margin: 1rem auto 0;
}

@media (max-width: 1200px) {
  .contact-container-form-item > button {
    width: 80%;
  }
}

.section-services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-services-header h2 {
  color: #47c42d;
}

.section-services-container-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem;
  -webkit-border-after: 2px solid #d1d5db;
          border-block-end: 2px solid #d1d5db;
}

@media (max-width: 1200px) {
  .section-services-container-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-services-container-item {
    padding: 1.5rem;
    margin: 0;
  }
}

.section-services-container-item-action {
  max-width: 20%;
  width: 100%;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

@media (max-width: 1200px) {
  .section-services-container-item-action {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .section-services-container-item-action a {
    display: block;
    margin: auto;
    max-width: 35%;
  }
}

@media (max-width: 600px) {
  .section-services-container-item-action a {
    max-width: 80%;
  }
}

.section-services-container-item-list {
  margin: 1rem 0;
  max-width: 20%;
  width: 100%;
  text-align: justify;
}

.section-services-container-item-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .section-services-container-item-list {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

.section-services-container-item--header {
  width: 10%;
  text-align: center;
}

.section-services-container-item--header > h4 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

@media (max-width: 1200px) {
  .section-services-container-item--header > h4 {
    font-size: 1.5rem;
  }
}

.section-services-container-item--header__icon span {
  font-size: 2rem;
  color: #d1d5db;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
  font-size: 4rem;
}

@media (max-width: 1200px) {
  .section-services-container-item--header__icon span {
    width: 2rem;
    font-size: 3rem;
  }
}

@media (max-width: 1200px) {
  .section-services-container-item--header__icon {
    margin: 0 auto;
  }
}

.section-services-container-item-info {
  width: 40%;
  text-align: left;
  font-weight: 600;
  color: #d1d5db;
}

@media (max-width: 1200px) {
  .section-services-container-item {
    display: block;
    text-align: center;
    padding: 1rem 1rem 2rem 1rem;
    -webkit-margin-after: 1.2rem;
            margin-block-end: 1.2rem;
  }
  .section-services-container-item-list {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
  }
  .section-services-container-item--header {
    width: 100%;
  }
  .section-services-container-item--header__title {
    font-size: 1rem;
    -webkit-margin-after: 0.5rem;
            margin-block-end: 0.5rem;
  }
  .section-services-container-item--header__icon {
    -webkit-margin-after: .5rem;
            margin-block-end: .5rem;
  }
  .section-services-container-item-info {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-services-container-item--header {
    width: 100%;
  }
  .section-services-container-item--header__title {
    font-size: 1rem;
  }
}

.section-benefits-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-benefits-grid-item {
  padding: 25px;
}

.section-benefits-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid #d1d5db;
}

.section-benefits-grid-item {
  border-bottom: 2px solid #d1d5db;
  padding: 1.5rem;
}

.section-benefits-grid-item:nth-child(odd) {
  border-right: 2px solid #d1d5db;
}

@media (max-width: 600px) {
  .section-benefits-grid-item {
    border-right: none;
  }
  .section-benefits-grid-item:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 1200px) {
  .section-benefits-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-benefits-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.section-about-us-content {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (max-width: 1200px) {
  .section-about-us-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.section-about-us-content img {
  width: 100%;
  border-radius: .3rem;
  display: block;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .section-about-us-content img {
    margin: 0 auto;
    width: 90%;
    max-height: 25rem;
    height: 100%;
  }
}

.section-about-us-content-highlights {
  display: -ms-grid;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-weight: 500;
  color: #d1d5db;
}

.section-about-us-content-highlights ul {
  list-style: none;
  padding: 1rem;
}

.section-about-us-content-highlights ul > li {
  font-size: 1.1rem;
  -webkit-margin-after: 0.3rem;
          margin-block-end: 0.3rem;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .section-about-us-content-highlights ul > li {
    font-size: .9rem;
  }
}

.section-info {
  margin: 0 auto;
  text-align: center;
}

.section-info h3 {
  color: #d1d5db;
  position: relative;
}

.section-info h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #d1d5db;
  margin: 0.5rem auto 0;
  border-radius: .3rem;
}

.section-info p {
  max-width: 45rem;
}

.section-values {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #d1d5db;
}

.section-values h3 {
  margin: 0 auto 3rem;
  text-align: center;
  color: #ffffff;
}

.cta {
  padding: 4rem 1.5rem;
}

.section-map {
  display: block;
}

@media (max-width: 1200px) {
  .section-map {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.section-map h2 {
  margin-bottom: 2rem;
  color: #d1d5db;
}

.section-map iframe {
  border-radius: .3rem;
  width: 100%;
  border: none;
}

.section-process-container-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-process-container-header h2 {
  color: #47c42d;
}

.section-process-container-header p {
  color: #d1d5db;
}

.section-process-container-steps {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
  .section-process-container-steps {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.section-process-container-steps .step {
  background: #1f2937;
  padding: 1rem;
  border-radius: .3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.section-process-container-steps .step::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 3px;
  background: #47c42d;
  z-index: 0;
}

.section-process-container-steps .step .step-number {
  position: -webkit-sticky;
  position: sticky;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background: #47c42d;
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: .3rem;
}

.services {
  background: #111827;
  color: #f9fafb;
  padding: 3rem 1.5rem;
}

.services-container::after {
  content: "";
  display: block;
  border-bottom: 1px solid #d1d5db;
  margin: 1rem auto 0;
}

.services-container-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .services-container-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container-cards {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    max-width: 90%;
  }
}

.services-container-cards__item {
  padding: 2rem;
  border-radius: .3rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.services-container-cards__item h4 {
  margin-top: 1rem;
  color: #d1d5db;
  font-weight: 200;
}

.services-container-cards__item .service-icon {
  width: 6rem;
  height: 6rem;
  -webkit-filter: invert(95%) sepia(0%) saturate(50%) hue-rotate(30deg);
          filter: invert(95%) sepia(0%) saturate(50%) hue-rotate(30deg);
  opacity: .9;
}

@media (max-width: 1200px) {
  .services-container-cards__item .service-icon {
    width: 7rem;
    height: 7rem;
  }
}

.stats {
  background: #47c42d;
  color: #f9fafb;
  padding: 3rem 0;
}

@media (max-width: 1200px) {
  .stats-container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.stats-container-header {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-container-header h2 {
  font-size: 2rem;
  color: #d1d5db;
  margin-bottom: .5rem;
}

.stats-container-header p {
  font-size: 1rem;
  font-weight: 500;
}

.stats-container-grid-card {
  -webkit-border-end: 1px solid #d1d5db;
          border-inline-end: 1px solid #d1d5db;
}

@media (max-width: 600px) {
  .stats-container-grid-card {
    -webkit-border-end: none;
            border-inline-end: none;
    -webkit-border-after: 1px solid #d1d5db;
            border-block-end: 1px solid #d1d5db;
  }
}

@media (max-width: 600px) {
  .stats-container-grid-card > h3 {
    font-size: 2rem;
  }
}

.cookie-banner {
  height: 15rem;
  z-index: 999;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
  padding: 1.5rem 2rem;
  border-radius: .3rem;
  background: #d1d5db;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .cookie-banner {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    height: auto;
  }
}

.cookie-banner h4 {
  color: #111827;
  font-size: 1.1rem;
  margin: 0;
}

.cookie-banner-desc {
  font-size: .9rem;
  line-height: 1.5;
  max-width: 35rem;
  margin: 0 auto;
  text-align: justify;
  color: #111827;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

@media (max-width: 1200px) {
  .cookie-banner-desc {
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}

.cookie-banner-desc a {
  color: #47c42d;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cookie-banner-desc a:hover {
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cookie-banner-buttons .primary-btn {
  margin: 0 1rem auto;
}

.cookie-banner-buttons .secondary-btn {
  margin: 0  auto;
}

.cookie-banner-buttons .primary-btn,
.cookie-banner-buttons .secondary-btn {
  width: 45%;
}

.container {
  position: relative;
  max-width: 60rem;
  margin: auto;
  line-height: 1.7;
}

.container::before {
  content: "";
  position: absolute;
  background: url("./../src/public/images/policy.png") no-repeat center;
  background-size: 220px;
  opacity: 0.12;
  inset: 0;
  pointer-events: none;
}

.container-page {
  text-align: center;
}

section > h2 {
  color: #d1d5db;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}

.table-container {
  overflow-x: auto;
  background-color: #1f2937;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.table-container-item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .75rem 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 1200px) {
  .table-container-item {
    width: 100%;
    padding: 0;
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
  }
}

.table-container-item thead {
  background-color: #47c42d;
  color: #d1d5db;
}

.table-container-item th,
.table-container-item td {
  padding: .75rem 1rem;
  font-weight: bold;
}

.table-container-item th {
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: #47c42d;
  border-radius: .3rem 0;
}

.table-container-item tbody tr {
  border-bottom: 1px solid #374151;
  text-align: left;
}

.table-container-item .price {
  font-weight: 600;
  color: #d1d5db;
  width: .5rem;
  padding: .2rem;
  text-align: center;
}

.table-container-item__priceLabel {
  text-align: end;
  width: .5rem;
}

.table-container-item__title {
  text-align: left;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #1f2937;
  color: #d1d5db;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.footer {
  -webkit-margin-before: auto;
          margin-block-start: auto;
}

a {
  text-decoration: none;
  color: #1f2937;
}

.layout,
section {
  width: 100%;
}

section, .contact-container {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

@media (max-width: 1200px) {
  section, .contact-container {
    padding: 3rem 1.5rem 1rem;
  }
}

@media (max-width: 600px) {
  section, .contact-container {
    padding: 2rem 1rem 1rem;
  }
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding: 1.5rem;
  margin-inline: auto;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  p {
    font-size: 1rem;
    line-height: 1.5;
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 0.9rem;
    line-height: 1.4;
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
    -webkit-margin-before: .5rem;
            margin-block-start: .5rem;
    padding: 1rem;
  }
}

button {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  border: none;
  text-align: center;
}

@media (max-width: 600px) {
  button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
  }
}

.primary-btn,
.secondary-btn {
  padding: 0.75rem 1.5rem;
  border-radius: .3rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #ffffff;
  font-weight: 700;
}

.primary-btn {
  background-color: #47c42d;
}

@media (max-width: 600px) {
  .primary-btn {
    display: block;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    width: 80%;
    margin: 0 auto;
  }
}

.primary-btn:hover {
  -webkit-box-shadow: 0 0 0 2px #2f8f1f;
          box-shadow: 0 0 0 2px #2f8f1f;
  background-color: #2f8f1f;
}

.secondary-btn {
  background-color: #111827;
}

.secondary-btn:hover {
  background-color: #2f8f1f;
  border: 1px solid #2f8f1f;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  width: 3rem;
}

h1,
h2,
h3 {
  color: #d1d5db;
  margin: 1rem;
  letter-spacing: .2rem;
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  h1,
  h2,
  h3 {
    letter-spacing: .1rem;
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
  h1,
  h2,
  h3 {
    letter-spacing: .05rem;
    font-size: 1.75rem;
  }
}

h2 {
  font-size: 2.25rem;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

@media (max-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.75rem;
    margin: 1rem;
  }
}

h4 {
  color: #d1d5db;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
  font-size: 1.25rem;
}

@media (max-width: 600px) {
  h4 {
    font-size: 1.1rem;
  }
}

ul {
  list-style: none;
  padding: 0;
}

.hero {
  position: relative;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  text-align: justify;
  padding: 1.5rem;
}

.hero h1,
.hero p {
  margin: 0 0 1rem 0;
}

@media (max-width: 1200px) {
  .hero h1,
  .hero p {
    margin: 1rem auto;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  -webkit-transform: translate(10%, 25%);
          transform: translate(10%, 25%);
}

@media (max-width: 1200px) {
  .hero-content {
    -webkit-transform: translate(0%, 10%);
            transform: translate(0%, 10%);
  }
}

.hero-content h1,
.hero-content p {
  text-align: justify;
}

.hero-content h1 {
  font-size: 3.2rem;
  max-width: 90%;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
}

.hero-content p {
  font-size: 1rem;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  max-width: 80%;
  padding: 0;
}

@media (max-width: 1200px) {
  .hero-content p {
    font-size: .9rem;
    text-align: center;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.hero-content-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}

@media (max-width: 1200px) {
  .hero-content-button {
    width: 80%;
    margin: 7rem auto 0;
  }
}

.error-message {
  color: #E74C3C;
  font-size: 0.8rem;
  text-align: left;
  -webkit-margin-after: .5rem;
          margin-block-end: .5rem;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.responsive-display {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .responsive-display {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .responsive-display {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.grid-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1200px) {
  .grid-item {
    border-left: none;
    -webkit-border-after: 1px solid rgba(255, 255, 255, 0.15);
            border-block-end: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.grid-item:first-child {
  border-left: none;
}

.grid-item h3 {
  color: #d1d5db;
}

.grid-item .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

@media (max-width: 1200px) {
  .grid-item .icon {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .grid-item {
    padding: 1.5rem;
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
  }
}

.logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-container-img {
  height: 3rem;
  -webkit-margin-end: 0.3rem;
          margin-inline-end: 0.3rem;
}

.logo-container-brand {
  text-align: justify;
}

.logo-container-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.logo-container-brand-text {
  font-weight: 700;
  font-size: 0.8rem;
  color: #d1d5db;
  display: block;
}

.logo-container-brand-text > span {
  font-weight: 700;
  color: #d1d5db;
}
/*# sourceMappingURL=style.css.map */