@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  font-family: Inter, Helvetica, Arial, sans-serif;
}
body {
  margin: 0;
  font-family: Inter, Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: rgb(25, 37, 61);
}
#header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.active-link {
  color: rgb(71, 149, 99) !important;
}
#mobile-menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  display: none !important;
}

#mobile-menu.show {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
header .container-page{
  padding: 0;
}
/* Layout containers */
.container-page,
.container-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container-page,
  .container-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* Sections */
.section-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-pad-top {
  padding-top: 4rem;
}

/* Headings */
.heading-section {
  color: rgb(20, 60, 95);
}
.heading-section.text-white {
  color: #fff;
}
h2.heading-section {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}
h1.heading-section {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.25;
}

.heading-navy,
.text-brand-navy {
  color: rgb(20, 60, 95);
}

.heading-green {
  color: rgb(71, 149, 99);
}

/* Buttons */
.btn-blue,
.btn-mid,
.btn-green,
.btn-white {
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 4px;
  padding: 0.875rem 1.75rem;
  font-size: 15px;
  font-weight: 600;
  transition: 0.15s ease;
  text-align: center;
}

.btn-blue {
  background-color: rgb(27, 79, 114);
  color: #fff;
}
.btn-blue:hover {
  background-color: rgb(20, 60, 95);
}

.btn-mid {
  background-color: rgb(57, 105, 160);
  color: rgb(221, 236, 240);
}
.btn-mid:hover {
  background-color: rgb(27, 79, 114);
}

.btn-green {
  background-color: rgb(71, 149, 99);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-green:hover {
  background-color: rgba(70, 150, 100, 0.7);
}

.btn-white {
  background-color: #fff;
  color: rgb(70, 150, 100);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  background-color: rgb(249, 250, 251);
}

/* Links */
.link-green {
  font-weight: 600;
  color: rgb(71, 149, 99);
}
.link-green:hover {
  color: rgba(70, 150, 101, 0.746);
  text-decoration: underline;
}

/* Cards */
.specialty-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 12px;
  border: 1px solid #017d4f1c;
  background: #fff;
  padding: 0.875rem 1.25rem;
  flex-grow: 1;
}

.specialty-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #017d4f1c;
  background: rgb(246, 251, 255);
}

/* FAQ */
.faq-item {
  border-radius: 0.5rem;
  background: #fff;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 1.25rem;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(26, 16, 57, 0.9);
}

.faq-toggle {
  margin-left: auto;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(71, 149, 99);
  transition: transform 0.15s;
}

details.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

/* Footer */
.footer-nav ul {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
}

.footer-nav a {
  transition: 0.15s;
}

.footer-nav a:hover {
  color: rgb(71, 149, 99);
}

/* Animation */
details[open] summary ~ * {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: rgb(71, 149, 99);
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
}
.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Custom sections */
.thinging-section {
  background: url(../images/thinkig.png);
  background-size: cover;
  background-position: -12% 50%;
  display: flex;
  flex-direction: column;
  width: 345px;
  height: 260px;
  padding: 119px 0 0 134px;
}

.Understanding-section-wrappwer {
  background: #e8e7ed;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.Understanding-section {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end; 
  padding-bottom: 70px;
   background: url(/assets/images/builtwith.png) no-repeat center center;
  background-size: contain;
}

.absolute-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.Understanding-section .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.Understanding-section .card-wrapper .card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 830px) {
  .Understanding-section .card-wrapper {
    flex-direction: column;
  }
  .Understanding-section {
    align-items: center;
  }
  .Understanding-section .card-wrapper .card {
    width: 100%;
  }
}
.safety-section {
  align-items: start;
  gap: 0;
}
.absolute-image {
  height: auto;
}

@media (min-width: 1024px) {
  .safety-section {
    align-items: end;
    height: 100%;
    gap: 36px;
  }

  .absolute-image {
    max-width: 80%;
    min-width: 50vw;
  }
}

.bg-brand-bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(230 243 255 / var(--tw-bg-opacity, 1));
}
.bg-brand-bg-light {
  --tw-bg-opacity: 1;
  background-color: rgb(246 251 255 / var(--tw-bg-opacity, 1));
}
.bg-brand-green {
  --tw-bg-opacity: 1;
  background-color: rgb(71 149 99 / var(--tw-bg-opacity, 1));
}
.bg-brand-green-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(70 150 100 / var(--tw-bg-opacity, 1));
}
.bg-brand-green-light {
  --tw-bg-opacity: 1;
  background-color: rgb(165 208 180 / var(--tw-bg-opacity, 1));
}
.bg-brand-navy-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(25 37 61 / var(--tw-bg-opacity, 1));
}
.text-brand-green {
  --tw-text-opacity: 1;
  color: rgb(71 149 99 / var(--tw-text-opacity, 1));
}


@media (max-width:1230px) and (min-width: 1024px) {
  .text-nav{
    font-size: 12px;  
  }
}