.page-header {
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(18, 60, 105, .4),
      rgba(10, 29, 55, .6),
      rgba(18, 60, 105, .4));
  animation: gradientMove 12s ease infinite;
  z-index: 0;
}

.hero-glass {
  position: relative;
  z-index: 2;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-glass {
  animation: floatGlass 6s ease-in-out infinite;
}

@keyframes floatGlass {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}


.eligibility-item {
  transition: transform .35s ease, box-shadow .35s ease;
}

.eligibility-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(18, 60, 105, .18);
}


.hero-glass {
  max-width: 700px;
  margin: auto;
  padding: 40px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .08);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background:
    linear-gradient(120deg, rgba(10, 29, 55, .85), rgba(18, 60, 105, .9)),
    url("../images/aviation-hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
}

.page-header p {
  opacity: .9;
  font-size: 1.1rem;
}

/* ===== LAYOUT ===== */
.admissions-container {
  background: #f5f7fb;
  padding: 80px 0;
}

.admissions-grid {
  max-width: 1400px;
  margin: 0 auto;
}


/* ===== INFO CARDS ===== */
.info-cards {
  max-width: 330px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr;
}


.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  position: relative;
}

.info-card h2 {
  text-align: center;
  font-size: 2rem;
  color: #0a1d37;
  margin-bottom: 40px;
}

.info-card ul {
  padding-left: 18px;
  font-size: 1.2rem;
}

.info-card.highlight {
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
}

.info-card.highlight h2 {
  color: #fff;
}

.info-card .fee {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.info-card {
  transition: transform .4s ease, box-shadow .4s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}


/* ===== FORM ===== */
.admissions-form {
  background: #fff;
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
  position: relative;
}

.admissions-form h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.admissions-form h3 {
  margin: 35px 0 15px;
  color: #123c69;
  border-left: 4px solid #123c69;
  padding-left: 12px;
}

/* ===== FORM GRID ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

input,
select,
textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dfe3ec;
  font-size: .95rem;
  transition: .2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #123c69;
  box-shadow: 0 0 0 3px rgba(18, 60, 105, .15);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* ===== CHECKBOX ===== */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.checkbox-grid label {
  background: #f5f7fb;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: .2s;
}

.checkbox-grid label:hover {
  background: #e8edf7;
}

/* ===== DECLARATION ===== */
.declaration {
  margin: 32px 0;
  font-size: 0.9rem;
  color: #1f2d3d;
}

.declaration label {
  display: flex;
  align-items: flex-start;
  /* keeps checkbox at top */
  gap: 10px;
  line-height: 1.5;
  cursor: pointer;
}

.declaration input[type="checkbox"] {
  margin-top: 3px;
  /* fine vertical alignment */
  flex-shrink: 0;
}

.declaration span {
  display: block;
}


/* ===== BUTTON ===== */
.btn-submit {
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
  padding: 16px 50px;
  border-radius: 40px;
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
  display: block;
  margin: 40px auto 0;
  transition: .3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(18, 60, 105, .4);
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.form-progress span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #dbe1ef;
  display: grid;
  place-items: center;
  font-weight: 600;
  transition: all .3s ease;
}

.form-progress span.active {
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
  border-color: #123c69;
  box-shadow: 0 6px 20px rgba(18, 60, 105, .4);
}


.form-progress span:not(.active) {
  opacity: .5;
}

input,
select,
textarea {
  background: #fbfcff;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: .4;
}

.form-trust {
  text-align: center;
  margin-top: 20px;
  font-size: .85rem;
  color: #6b7280;
}

/* ===== ELIGIBILITY SECTION ===== */
.eligibility-wrap {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.eligibility-card {
  background: linear-gradient(135deg, #ffffff, #f6f8fc);
  border-radius: 22px;
  padding: 40px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.eligibility-header {
  text-align: center;
  margin-bottom: 30px;
}

.eligibility-badge {
  display: inline-block;
  background: rgba(18, 60, 105, .1);
  color: #123c69;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  margin-bottom: 10px;
}

.eligibility-header h2 {
  font-size: 2rem;
  color: #0a1d37;
}

.eligibility-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.eligibility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.eligibility-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(18, 60, 105, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-item svg {
  width: 22px;
  height: 22px;
  fill: #123c69;
}


.eligibility-item p {
  margin: 0;
  font-size: 1rem;
}

.floating-field {
  position: relative;
}

.floating-field input {
  width: 100%;
}

.floating-field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #fbfcff;
  padding: 0 6px;
  color: #6b7280;
  font-size: .85rem;
  pointer-events: none;
  transition: .25s ease;
}

.floating-field input:focus+label,
.floating-field input:not(:placeholder-shown)+label {
  top: -6px;
  font-size: .75rem;
  color: #123c69;
}

.course-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f7fb;
  padding: 16px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: .3s;
  border: 2px solid transparent;
}

.course-card input {
  accent-color: #123c69;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(18, 60, 105, .15);
}

.course-card input:checked+span {
  font-weight: 600;
}

.course-card:has(input:checked) {
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
  border-color: #123c69;
}

/* ===== ADDRESS CARD ===== */
.address-card {
  background: linear-gradient(135deg, #ffffff, #f6f8fc);
  padding: 30px;
  border-radius: 18px;
  margin-top: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

/* Header */
.address-header {
  font-weight: 600;
  color: #123c69;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-header.secondary {
  margin-top: 25px;
}

/* Same address checkbox */
.same-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-size: .9rem;
  cursor: pointer;
  color: #374151;
}

.same-address input {
  accent-color: #123c69;
}

/* Textarea smaller & cleaner */
.address-card textarea {
  grid-column: span 2;
  min-height: 90px;
}

/* ===== PHOTO UPLOAD ===== */
.photo-box {
  width: 140px;
  height: 180px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border .3s ease;
}

.photo-box:hover {
  border-color: #123c69;
}

/* Hide actual input */
.photo-box input {
  display: none;
}

/* Image preview */
.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Hover overlay */
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 60, 105, .65);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s ease;
}

.photo-box:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay span {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 300;
}

.photo-overlay small {
  font-size: .85rem;
  margin-top: 4px;
}

/* ===== FORM HEADER ROW ===== */
.form-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.form-header-row h2 {
  font-size: 2rem;
  flex: 1;
}

/* Keep photo aligned */
.photo-upload-wrapper {
  flex-shrink: 0;
}

/* ===== Academic Qualifications – Enhanced Look ===== */

.academic-card {
  border: 1px solid #cfd6df;
  padding: 14px;
  margin-bottom: 36px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

/* Table */
.academic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

/* Header */
.academic-table th {
  background: linear-gradient(180deg, #f0f3f7, #e1e6ec);
  border: 1px solid #cfd6df;
  padding: 10px 8px;
  text-align: center;
  font-weight: 600;
  color: #1f2d3d;
  letter-spacing: 0.3px;
}

/* Body cells */
.academic-table td {
  border: 1px solid #cfd6df;
  padding: 8px;
}








@media (max-width: 768px) {
  .form-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* ================= NEW SECTIONS CSS ================= */

/* ===== ADMISSION TIMELINE ===== */
.admission-timeline {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 20px;
}

.timeline-header,
.checklist-header,
.fee-header,
.faq-header,
.stories-header,
.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(18, 60, 105, .1), rgba(196, 18, 48, .1));
  color: #123c69;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.timeline-header h2,
.checklist-header h2,
.fee-header h2,
.faq-header h2,
.stories-header h2,
.support-header h2 {
  font-size: 2.5rem;
  color: #0a1d37;
  margin-bottom: 12px;
  font-weight: 800;
}

.timeline-header p,
.checklist-header p,
.fee-header p,
.faq-header p,
.stories-header p,
.support-header p {
  font-size: 1.1rem;
  color: #666;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.timeline-step {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(18, 60, 105, .15);
  border-color: #123c69;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.timeline-step h4 {
  font-size: 1.3rem;
  color: #0a1d37;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== DOCUMENT CHECKLIST ===== */
.document-checklist {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fc, #ffffff);
  border-radius: 24px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.checklist-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(18, 60, 105, .12);
}

.check-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.checklist-item h4 {
  font-size: 1.2rem;
  color: #0a1d37;
  margin-bottom: 15px;
  font-weight: 700;
}

.checklist-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.checklist-item li:last-child {
  border-bottom: none;
}

/* ===== FEE STRUCTURE ===== */
.fee-structure {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 20px;
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.fee-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.fee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(18, 60, 105, .15);
  border-color: #123c69;
}

.fee-card.highlight {
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
}

.fee-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #C41230, #a00e25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fee-badge.special {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a1d37;
}

.fee-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0a1d37;
  font-weight: 700;
}

.fee-card.highlight h3 {
  color: #fff;
}

.fee-amount {
  margin: 25px 0;
  text-align: center;
}

.fee-amount .currency {
  font-size: 1.5rem;
  color: #123c69;
  font-weight: 600;
}

.fee-card.highlight .currency {
  color: #FFD700;
}

.fee-amount .amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1d37;
}

.fee-card.highlight .amount {
  color: #fff;
}

.fee-includes {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.fee-includes li {
  padding: 10px 0;
  color: #555;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.fee-card.highlight .fee-includes li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.fee-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.fee-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(18, 60, 105, .3);
}

.fee-card.highlight .fee-cta {
  background: linear-gradient(135deg, #C41230, #a00e25);
}

.payment-options {
  margin: 20px 0;
}

.payment-option {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-option:last-child {
  border-bottom: none;
}

.payment-option h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
}

.payment-option p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===== FAQs ===== */
.faqs-section {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 60px 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(18, 60, 105, .12);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fc;
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #0a1d37;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #123c69, #0a1d37);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #C41230, #a00e25);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== SUCCESS STORIES ===== */
.success-stories {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fc, #ffffff);
  border-radius: 24px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.story-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  transition: all 0.4s ease;
  border-left: 4px solid #123c69;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(18, 60, 105, .15);
  border-left-color: #C41230;
}

.story-avatar {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.story-quote {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #123c69;
}

.story-content h4 {
  font-size: 1.3rem;
  color: #0a1d37;
  margin-bottom: 5px;
  font-weight: 700;
}

.story-role {
  color: #123c69;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.story-course {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

/* ===== CONTACT SUPPORT ===== */
.contact-support {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.support-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(18, 60, 105, .12);
  border-color: #123c69;
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.support-card h4 {
  font-size: 1.2rem;
  color: #0a1d37;
  margin-bottom: 10px;
  font-weight: 700;
}

.support-card p {
  color: #123c69;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.support-card small {
  color: #888;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 768px) {

  .timeline-header h2,
  .checklist-header h2,
  .fee-header h2,
  .faq-header h2,
  .stories-header h2,
  .support-header h2 {
    font-size: 2rem;
  }

  .timeline-steps,
  .checklist-grid,
  .fee-cards,
  .stories-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .admission-timeline,
  .document-checklist,
  .fee-structure,
  .faqs-section,
  .success-stories,
  .contact-support {
    padding: 40px 15px;
    margin-bottom: 50px;
  }

  .timeline-step,
  .checklist-item,
  .fee-card,
  .story-card,
  .support-card {
    padding: 25px 20px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}