/* You can copy and paste Tailwind CSS utility classes as inline styles in HTML or compile it with tools like PostCSS or PurgeCSS */

/* Example styles for the container */
.container {
  max-width: 100%;
}

/* Example styles for the left sidebar */
.w-2-4 {
  width: 50%;
}

.h-screen {
  height: 100vh;
}

.sticky {
  position: sticky;
  top: 10px;
}

/* Example styles for the right content */
.overflow-y-auto {
  overflow-y: auto;
}

.pl-1-4 {
  padding-left: 25%;
}

/* Example styles for other elements */
.border-b {
  border-bottom-width: 1px;
  border-color: rgba(255, 255, 255, 0.3);
}

.text-6xl {
  font-size: 4rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 1rem;
}

.line-h {
  line-height: 1;
}

.flex {
  display: flex;
}

.gap-10 {
  gap: 2.5rem;
}

.p-4 {
  padding: 1rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-medium {
  font-weight: 500;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.text-white {
  color: #fff;
}

.bg-gray-500 {
  background-color: #718096;
}

.border-yellow-50 {
  border-color: rgba(252, 211, 77, 0.75);
}

.border-yellow-50-30 {
  border-color: rgba(252, 211, 77, 0.3);
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.p-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.border-b {
  border-bottom-width: 1px;
  border-color: rgba(255, 255, 255, 0.3);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.contact-us-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media only screen and (max-width: 768px) {
  .flex {
    display: flex;
    flex-direction: column;
  }
  .sticky {
    position: relative;
  }
  .py-5 {
    padding: 1px;
  }
  .p-5 {
    padding: 1px;
  }
  .w-2-4 {
    width: 100%;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .contact-us-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-new-nav {
    display: flex;
    flex-direction: column;
  }
}
