body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background-color: #f7f5ed;
  color: #333;
}

h1,
h2,
h3,
h4 {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, "Trebuchet MS", sans-serif;
  color: #023f26;
}

h2 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

p {
  line-height: 24px;
  margin-bottom: 20px;
}

#main-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 24px;
  margin-bottom: 16px;
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #599eae;
}

.header-bar {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #599eae;
  padding: 10px 18px;
  border-radius: 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 40px;
  height: auto;
  display: block;
}

.brand-name {
  font-family: "Grantha Sangam MN", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #023f26;
  position: relative;
  top: 6px;
}

#main-nav {
  display: flex;
  align-items: center;
}

#main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
}

#main-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
}

#main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

#main-nav a.active {
  background-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .brand-name {
    display: none;
  }
  #main-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-bar {
    position: relative;
  }
  #main-header.is-nav-open #main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 18px 16px;
    background-color: rgba(89, 158, 174, 0.7);
  }
  #main-header.is-nav-open #main-nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }
  #main-header.is-nav-open #main-nav a {
    font-size: 16px;
  }
  #main-header.is-nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #main-header.is-nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }
  #main-header.is-nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media screen and (min-width: 768px) {
  #main-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-bar {
    padding: 12px 22px;
  }
}
@media screen and (min-width: 1200px) {
  #main-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-bar {
    padding: 14px 26px;
  }
}
@media screen and (max-width: 640px) {
  .header-bar {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  #main-nav ul {
    gap: 10px;
  }
}
.card {
  padding: 40px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.5s ease-in-out;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.project-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.project-meta-row .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-meta-row .view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-left: auto;
}

.project-details {
  display: none;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

.project-card.is-open .project-details {
  display: block;
}

.project-details-section + .project-details-section {
  margin-top: 16px;
}

.project-details-heading {
  font-size: 1.2rem;
  margin: 0 0 8px;
}

h4.project-details-heading {
  font-size: 1rem;
  margin-top: 12px;
}

.project-details-text {
  margin: 0;
  line-height: 1.5;
}

.project-details-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.project-details-list li + li {
  margin-top: 4px;
}

@media screen and (min-width: 768px) {
  .card {
    margin: 0;
    padding: 20px;
  }
  .project-details-heading {
    font-size: 1.5rem;
    margin: 0 0 8px;
  }
  h4.project-details-heading {
    font-size: 1.15rem;
  }
}
footer.site-footer {
  background-color: #3b6f7b;
  color: #fff;
  border-radius: 16px 16px 0 0;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 24px 18px;
}
footer.site-footer .footer-surface {
  max-width: 1200px;
  margin: 0 auto;
}
footer.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
footer.site-footer .footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.site-footer .footer-left a.footer-email {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.3s ease-in-out;
}
footer.site-footer .footer-left a.footer-email:hover {
  color: #ba3b0a;
}
footer.site-footer .footer-nav {
  display: flex;
  justify-content: center;
}
footer.site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
}
footer.site-footer .footer-nav ul a {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
}
footer.site-footer .footer-nav ul a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
footer.site-footer .footer-nav ul a.active {
  background-color: rgba(255, 255, 255, 0.25);
}
footer.site-footer .footer-right {
  min-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
footer.site-footer .footer-right .badge-placeholder,
footer.site-footer .footer-right .icon-placeholder {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
}
footer.site-footer .footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 16px 0 8px 0;
}
footer.site-footer .footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
footer.site-footer .footer-bottom p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2px;
}

@media screen and (min-width: 768px) {
  footer.site-footer {
    padding: 28px 24px;
  }
  footer.site-footer .footer-top {
    grid-template-columns: 1fr auto 1fr;
  }
  footer.site-footer .footer-left {
    justify-content: flex-start;
  }
  footer.site-footer .footer-right {
    justify-content: flex-end;
  }
  footer.site-footer .footer-nav ul {
    gap: 22px;
  }
}
@media screen and (min-width: 1200px) {
  footer.site-footer {
    padding: 32px 28px;
  }
  footer.site-footer .footer-nav ul a {
    padding: 8px 12px;
  }
}
#player-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.video-controls.hidded {
  display: none;
}

.video-controls {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  transition: all 0.2s ease-in-out;
}

.video-controls.hide {
  opacity: 0;
  pointer-events: none;
}

#player-container button {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.fa,
.fa-solid {
  color: #fff;
  font-size: 28px;
  margin-left: 20px;
}

.fa-volume-up {
  margin-left: auto;
}

#player-container input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
  width: 25rem;
}

#player-container input[type=range]:focus {
  outline: none;
}

#player-container input[type=range]::-webkit-slider-runnable-track {
  background-color: #5ed22d;
  border-radius: 0.5rem;
  height: 0.5rem;
}

#player-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -4px;
  background-color: #457713;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

#player-container input[type=range]:focus::-webkit-slider-thumb {
  outline: 3px solid #457713;
  outline-offset: 0.125rem;
}

#player-container input[type=range]::-moz-range-track {
  background-color: #5ed22d;
  border-radius: 0.5rem;
  height: 0.5rem;
}

#player-container input[type=range]::-moz-range-thumb {
  background-color: #457713;
  border: none;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

#player-container input[type=range]:focus::-moz-range-thumb {
  outline: 3px solid #457713;
  outline-offset: 0.125rem;
}

.project-video {
  margin-top: 16px;
}

.project-video video {
  display: block;
  width: 100%;
  border-radius: 12px;
  background-color: #000;
}

.project-carousel {
  margin-top: 16px;
}

.project-carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.project-carousel-item {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-carousel .project-carousel-item img,
.project-carousel .project-carousel-item video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 768px) {
  .project-carousel-viewport {
    height: 430px;
  }
}
@media screen and (min-width: 1024px) {
  .project-carousel-viewport {
    height: 510px;
  }
}
.project-carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.project-carousel-arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.project-carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.12);
}

.project4-track {
  width: 300%;
}

.model-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}

.model-viewer-container {
  width: 100%;
  height: 360px;
  max-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
  position: relative;
}

model-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
}

.model-hotspot {
  width: 32px;
  height: 32px;
  background: url("../images/hotspot.svg") center/contain no-repeat;
  border: 0;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.model-hotspot:focus {
  outline: 2px solid rgba(195, 242, 51, 0.6);
  outline-offset: 2px;
}

.model-annotation {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0.75rem;
  width: -moz-max-content;
  width: max-content;
  max-width: 240px;
  font-size: 14px;
  line-height: 1.35;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.model-annotation strong {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 14px;
  font-weight: 800;
  color: #000000;
}

.model-annotation span {
  display: block;
  margin: 0;
  color: #333333;
}

.model-hotspot:hover .model-annotation {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .model-viewer-container {
    height: 420px;
  }
}
@media screen and (min-width: 1024px) {
  .model-viewer-container {
    height: 520px;
  }
}
#hero {
  margin-top: 16px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

#hero::after {
  display: none;
}

@media screen and (min-width: 768px) {
  #hero::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    background-image: url("../images/Logo-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
    display: block;
  }
}
.hero-surface {
  background-color: #f7f5ed;
  color: #333;
  border-radius: 16px;
}

.hero-inner {
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
  min-height: 320px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  text-align: left;
}

.hero-title {
  color: #023f26;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.hero-roles {
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  max-width: 65ch;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #599eae;
  color: #fff;
  padding: 14px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}

.btn-primary:hover {
  filter: brightness(115%);
  transform: translateY(-2px);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-portrait {
  width: 220px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border: 6px solid rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 48px 40px;
    min-height: 420px;
  }
  .hero-media {
    justify-content: center;
  }
  .hero-portrait {
    width: 280px;
    height: 280px;
    border-width: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-inner {
    padding: 64px 56px;
    min-height: 520px;
  }
  .hero-portrait {
    width: 320px;
    height: 320px;
  }
}
#about-us {
  background-color: #599eae;
  color: #f7f5ed;
  border-radius: 16px;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 48px 40px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

#about-us::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background-image: url("../images/Logo-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

.about-title {
  color: #023f26;
  text-align: left;
  font-size: clamp(35px, 5vw, 42px);
  margin: 0 0 24px 120px;
  position: relative;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
  color: #f7f5ed;
  position: relative;
}

.about-tools {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.about-tool-logo {
  width: 600px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
}

@media screen and (max-width: 480px) {
  .about-tool-logo {
    width: 50px;
    height: auto;
    opacity: 0.9;
  }
}
@media screen and (min-width: 1200px) {
  #about-us {
    min-height: 520px;
  }
}
#projects-filter {
  margin-top: 10px;
  margin-bottom: 10px;
}

#projects-filter .projects-header {
  margin-bottom: 8px;
}

#projects-filter .projects-title {
  font-size: 40px;
  letter-spacing: -1px;
  margin: 0;
  color: #023f26;
  text-align: center;
}

#projects-filter .projects-sub {
  margin: 6px 0 12px 0;
  color: #333;
  text-align: center;
}

#projects-filter .projects-filters {
  background-color: rgba(89, 158, 174, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 12px;
}

#projects-filter .filters-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

#projects-filter .chip {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#projects-filter .chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#projects-filter .chip-ui {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: rgba(89, 158, 174, 0.12);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

#projects-filter .chip-input:checked + .chip-ui {
  background-color: #599eae;
  color: #fff;
  border-color: transparent;
}

#projects-filter .chip-all .chip-input:checked + .chip-ui {
  background-color: #00bcd4;
  color: #fff;
}

#projects-filter .btn-filter,
#projects-filter .btn-clear {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 28px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

#projects-filter .btn-filter {
  background-color: #3b6f7b;
  color: #fff;
}

#projects-filter .btn-filter:hover {
  filter: saturate(115%);
}

#projects-filter .btn-clear {
  background-color: rgba(0, 0, 0, 0.06);
  color: #222;
}

#projects-filter .btn-clear:hover {
  filter: brightness(95%);
}

.project-card {
  position: relative;
}

.project-card h2 {
  font-size: 30px;
}

#projects .project-card {
  grid-column: 1/-1;
}

.project-card img {
  width: 100%;
  max-height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 16px;
  margin-bottom: 16px;
  display: block;
}

.project-card .tag {
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(89, 158, 174, 0.16);
  color: #223;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 700;
}

#testimonials {
  margin-top: 24px;
  margin-bottom: 40px;
  background-color: #599eae;
  color: #f7f5ed;
  border-radius: 16px;
  padding: 32px 20px;
}

#testimonials h2 {
  color: #023f26;
  background-color: transparent;
  padding: 0 0 12px 0;
  border-radius: 0;
  text-align: center;
  margin-bottom: 16px;
}

.testimonial-card {
  background-color: #f7f5ed;
  color: #333;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 20px;
  margin-top: 16px;
  transition: all 0.5s ease-in-out;
}

.testimonial-card .t-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.testimonial-card .t-avatar-wrap {
  display: flex;
  justify-content: center;
}

.testimonial-card .t-avatar {
  width: 120px;
  height: auto;
  opacity: 0.7;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonial-card .t-copy {
  text-align: center;
}

.testimonial-card .t-text {
  display: none;
}

.testimonial-card .t-name {
  font-weight: 700;
  margin: 0;
}

.testimonial-card .t-role {
  display: none;
}

@media screen and (min-width: 768px) {
  .testimonial-card .t-inner {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }
  .testimonial-card .t-copy {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-card .t-avatar {
    width: 130px;
  }
}
.resume-link {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
}
.resume-link a {
  text-decoration: none;
  color: #0f4f3f;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.resume-link a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .resume-link {
    justify-content: center;
    margin-top: 20px;
  }
  .resume-link a {
    font-size: 1rem;
  }
}
#contact-us {
  position: relative;
  overflow: hidden;
}

#contact-us::after {
  display: none;
}

#contact-form input,
#contact-form textarea {
  display: block;
  border: solid 1px #d5d5d5;
  padding: 20px;
  width: 90%;
  margin-top: 10px;
  margin-bottom: 30px;
  border-radius: 15px;
}

#contact-form textarea {
  height: 200px;
}

#contact-form #submit {
  background-color: #599eae;
  color: #fff;
  transition: all 0.5s ease-in-out;
  border-radius: 50px;
  font-weight: 600;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
}
#contact-form #submit:hover {
  filter: brightness(115%);
  transform: translateY(-2px);
}

#contact-form p {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  #contact-form #submit {
    max-width: 200px;
  }
  #contact-us::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    background-image: url("../images/Logo-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
    display: block;
  }
}
.hidden-field {
  position: absolute;
  left: -9999px;
}/*# sourceMappingURL=main.css.map */