/* =========================================================
   custom.css — Plain vanilla CSS, no Tailwind directives.
   Loaded alongside the compiled style.css.
   ========================================================= */

/* ── Theme Variables ───────────────────────────────────── */
:root {
  --link-color: #0000D7;
  --blue-color: #0000D7;
  --button-color: #088299;
  --yellow-color: #FDD31C;
  --gray-color: #7f7f7f;
}

/* ── Default Font ──────────────────────────────────────── */
html {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #fcfcfc;
  scrollbar-gutter: stable;
  background-color: #fcfcfc;
}

body {
  background-color: #fcfcfc;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* ── Font Utility Classes ──────────────────────────────── */
.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.playfair-regular {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

.playfair-medium {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: normal;
}

.playfair-semibold {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: normal;
}

.playfair-bold {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-style: normal;
}

.playfair-italic {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
}

.playfair-bold-italic {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-style: italic;
}

/* ── Link Tag ──────────────────────────────────────────── */
.link-tag {
  display: inline-flex;
  align-items: center;
  color: var(--link-color);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.link-tag:hover {
  opacity: 0.8;
}

/* ── Lenis Smooth Scroll ───────────────────────────────── */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe,
.lenis.lenis-scrolling video,
.lenis.lenis-scrolling .video-trigger,
.lenis.lenis-scrolling .reel-slide,
.lenis.lenis-scrolling .swiper-slide {
  pointer-events: none !important;
}

/* ── Custom Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 20px;
  border: 3px solid transparent;
  background-clip: content-box;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-color);
}

/* ── Loader Animations ─────────────────────────────────── */
@keyframes slideUpText {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.6;
  }
}

@keyframes growLine {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes scaleBg {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 0.05;
  }
}

.animate-slide-up-text {
  animation: slideUpText 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out 0.8s forwards;
}

.animate-grow-line {
  animation: growLine 2.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.animate-scale-bg {
  animation: scaleBg 2s ease-out forwards;
}

.loader-slide-out {
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── 3D Book Components ────────────────────────────────── */
.book-wrapper {
  perspective: 1200px;
}

.book-3d {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) translateX(-5px);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.book-3d:hover {
  transform: rotateY(-2deg) translateX(0px);
}

.book-3d img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px 4px 4px 2px;
  box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

/* Spine */
.book-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 100%;
  background: #222;
  transform: rotateY(-90deg) translateX(-12.5px);
  transform-origin: left;
  z-index: 1;
  box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.5);
}

/* Page edges */
.book-3d::after {
  content: '';
  position: absolute;
  top: 1%;
  right: -2px;
  width: 25px;
  height: 98%;
  background: #fff;
  background-image: linear-gradient(to right, #e0e0e0 0%, #ffffff 50%, #e0e0e0 100%);
  transform: rotateY(90deg) translateX(12.5px);
  transform-origin: right;
  z-index: 1;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Swiper 3D */
.swiper-slide {
  perspective: 1200px;
}

.trilogy-container {
  max-width: 1000px;
  /* Cap it for very large screens */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trilogy-container {
    width: 90%;
  }
}

/* ── Fiction Novels Page Layout ────────────────────────── */
.book-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.book-image-col {
  flex: 0 0 auto;
  width: 280px;
  display: flex;
  justify-content: center;
}

.book-text-col {
  flex: 1;
  text-align: left;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .book-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 120px;
  }

  .book-row-reverse {
    flex-direction: row-reverse;
  }

  .book-row-reverse .book-text-col {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .book-image-col {
    width: 300px;
    /* Increased to 300px as requested */
  }
}

.buy-now-btn {
  display: inline-block;
  background-color: var(--button-color);
  color: #fff;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.buy-now-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── Object Position Utilities ────────────────────────── */
.object-top {
  object-position: top;
}

.object-bottom {
  object-position: bottom;
}

.object-left {
  object-position: left;
}

.object-right {
  object-position: right;
}

.object-center {
  object-position: center;
}

/* ── Missing Margin Utilities ─────────────────────────── */
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* ── Missing Padding Utilities ────────────────────────── */
.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-48 {
  padding-top: 12rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

/* ── Specific Font Size Utilities ─────────────────────── */
@media (max-width: 767px) {
  .text-xs-force {
    font-size: 10px !important;
  }

  .text-headline-mobile {
    font-size: 16px !important;
  }
}

/* ── Missing Responsive Utilities (Desktop) ─────────────── */
@media (min-width: 768px) {
  .md\:inline {
    display: inline !important;
  }

  .md\:block {
    display: block !important;
  }

  .md\:flex {
    display: flex !important;
  }

  /* Spacing */
  .md\:p-16 {
    padding: 4rem !important;
  }

  .md\:p-20 {
    padding: 5rem !important;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  /* Typography */
  .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1.1 !important;
  }

  .md\:text-lg {
    font-size: 1.125rem !important;
  }

  .md\:text-base {
    font-size: 1rem !important;
  }
}

/* ── Media Page Tags ───────────────────────────────────── */
.media-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #07706f;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 12px;
  height: 24px;
  line-height: 1;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.media-tag.featured {
  background-color: #fff;
  color: #000;
}

/* ── Hero Featured Button ──────────────────────────────── */
.btn-featured-hero:hover {
  background-color: var(--yellow-color) !important;
  color: #000 !important;
  border-color: var(--yellow-color) !important;
}

/* Mobile Hero Button */
@media (max-width: 767px) {
  .btn-mobile-hero {
    background-color: #fff !important;
    color: #000 !important;
    padding: 6px 16px !important;
    border-radius: 9999px !important;
    font-size: 10px !important;
    display: inline-flex !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    width: fit-content;
  }
}

/* ── Invite Vineet Header ──────────────────────────────── */
.invite-header {
  font-size: 70px;
  /* Adjust mobile size here */
  line-height: 0.9;
}

@media (min-width: 1024px) {
  .invite-header {
    font-size: 75px;
    /* Adjust desktop size here */
  }
}

@media (max-width: 1023px) {
  .invite-image-col {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 16px;
    padding-top: 16px;
    min-height: 420px;
  }

  .invite-bg-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    z-index: 1;
  }
}

/* ── Entrepreneur Story: Hero Banner ───────────────────── */
#hero-section {
  padding-top: 140px;
  padding-bottom: 40px;
}

#hero-card-container {
  padding-bottom: 0 !important;
}

.entrepreneur-hero-bottom-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.entrepreneur-hero-desc-col {
  width: 100%;
  text-align: left;
  padding-top: 8px;
  padding-bottom: 16px;
}

.entrepreneur-hero-image-col {
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
  line-height: 0;
}

.entrepreneur-hero-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.05));
  display: block;
  vertical-align: bottom;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  #hero-section {
    padding-top: 180px;
    padding-bottom: 60px;
  }

  .entrepreneur-hero-bottom-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .entrepreneur-hero-desc-col {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .entrepreneur-hero-image-col {
    flex: 0 0 360px;
    max-width: 400px;
    justify-content: flex-end;
    align-self: flex-end;
  }

  .entrepreneur-hero-img {
    max-height: 440px;
  }
}

/* ── Entrepreneur Story: Mobile Company Ordering ───────── */
@media (max-width: 767px) {
  #magnon-row,
  #talentrack-row {
    display: flex;
    flex-direction: column;
  }

  #magnon-logo-col,
  #talentrack-logo-col {
    order: 1;
  }

  #magnon-text-col,
  #talentrack-text-col {
    order: 2;
  }
}

/* ── Entrepreneur Story: Awards Showcase ───────────────── */
#awards-container {
  padding-bottom: 0 !important;
}

.awards-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.awards-list-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 24px;
}

.award-row-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  text-align: left;
}

.award-row-year {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(0, 16, 37, 0.2);
  min-width: 65px;
  text-align: right;
}

.award-row-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(0, 16, 37, 0.12);
  flex-shrink: 0;
}

.award-row-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #001025;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.awards-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  margin-bottom: 0;
  line-height: 0;
}

.awards-image-pedestal {
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -32px;
  width: auto;
  pointer-events: none;
  z-index: 1;
  line-height: 0;
}

.awards-image-pedestal svg {
  display: block;
  vertical-align: bottom;
  width: 100%;
}

.awards-image-cutout {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.08));
  display: block;
  vertical-align: bottom;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .awards-image-pedestal {
    left: -30px;
    right: -48px;
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .awards-list-wrapper {
    flex: 1;
    max-width: 540px;
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .awards-image-wrapper {
    flex: 0 0 420px;
    max-width: 440px;
    height: 100%;
    margin-bottom: 0;
    align-items: flex-end;
  }

  .awards-image-pedestal {
    left: -40px;
    right: -96px;
  }

  .awards-image-cutout {
    max-height: 460px;
  }

  .award-row-year {
    font-size: 30px;
    min-width: 80px;
  }

  .award-row-title {
    font-size: 20px;
  }
}

/* ── Contact / Get in Touch Modal ──────────────────────── */
#contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

#contact-modal.hidden {
  display: none !important;
}

#contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 16, 37, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1001;
}

.contact-modal-dialog {
  position: fixed;
  inset: 0;
  z-index: 1002;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

#contact-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #FDD31C;
  box-shadow: 0 25px 60px -15px rgba(0, 16, 37, 0.35);
  overflow: hidden;
  z-index: 1003;
  margin: auto;
  box-sizing: border-box;
}

.contact-modal-accent-bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #0000D7 0%, #FDD31C 50%, #0000D7 100%);
}

#close-contact-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
}

#close-contact-modal:hover {
  color: #001025;
  background: #e5e7eb;
}

#contact-form-wrapper {
  padding: 28px 32px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  #contact-form-wrapper {
    padding: 20px 20px;
  }
}

.contact-field-group {
  margin-bottom: 16px;
}

.contact-field-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #374151;
  margin-bottom: 6px;
  text-align: left;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.contact-input:focus,
.contact-textarea:focus {
  background: #ffffff;
  border-color: #0000D7;
  box-shadow: 0 0 0 3px rgba(0, 0, 215, 0.12);
}

.contact-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .contact-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-captcha-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.contact-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-captcha-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #001025;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#contact-submit-btn {
  width: 100%;
  padding: 13px 24px;
  background-color: #0000D7;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 215, 0.25);
  box-sizing: border-box;
}

#contact-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

#contact-submit-btn:active {
  transform: translateY(0);
}

.contact-error {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: block;
  text-align: left;
}

.contact-error.hidden {
  display: none !important;
}

#contact-success-wrapper {
  padding: 48px 32px;
  text-align: center;
  box-sizing: border-box;
}

#contact-success-wrapper.hidden {
  display: none !important;
}

.contact-success-icon {
  width: 64px;
  height: 64px;
  background-color: #d1fae5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

#contact-success-close-btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: #0000D7;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#contact-success-close-btn:hover {
  opacity: 0.9;
}