/* ============================================
   Online Uttaranchal University - Homepage CSS
   Domain: onlineuttaranchaluniversity.com
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-blue: #064290;
  --primary-red: #c9001a;
  --text-green: #488b27;
  --light-blue: #499DCE;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #666666;
  --light-gray: #f8f9fa;
  --marquee-bg: #2970bc;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 60px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.btn-primary:hover {
  background: #a80015;
  border-color: #a80015;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: #ccc;
}

.btn-outline:hover {
  background: var(--light-gray);
  border-color: #999;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 12px 28px;
  font-size: 16px;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-blue);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  z-index: 1100;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar__announcement {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar__announcement b {
  color: var(--white);
}

.top-bar__announcement a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__links a {
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar__links a:hover {
  text-decoration: underline;
}

/* ---------- Header / Navbar ---------- */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__logo img {
  width: 240px;
  height: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  background: var(--white);
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.dropdown__toggle:hover {
  border-color: var(--primary-blue);
}

.dropdown__toggle::after {
  content: '';
  border: solid #666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1050;
}

.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown__menu a:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile nav hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--dark, #1d2b43);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__helpline {
  background: var(--primary-red);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 5px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.header__helpline:hover {
  background: #0081cd;
}

.header__helpline small {
  display: block;
  font-size: 11px;
  text-transform: capitalize;
  font-weight: 400;
}

.header__helpline span {
  font-weight: 700;
  font-size: 15px;
}

/* ---------- Marquee Ticker ---------- */
.marquee-bar {
  background: var(--marquee-bg);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 700;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Hero Banner / Carousel ---------- */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel__slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-carousel__slide {
  min-width: 100%;
  position: relative;
}

.hero-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-carousel__btn--prev { left: 20px; }
.hero-carousel__btn--next { right: 20px; }

/* ---------- Page Headings ---------- */
.page-heading {
  margin-bottom: 20px;
}

.page-heading h1,
.page-heading h2 {
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.3;
}

.page-heading h1 {
  font-size: 32px;
}

.page-heading h2 {
  font-size: 28px;
}

.text-blue { color: var(--light-blue); }
.text-red { color: var(--primary-red); }
.text-green { color: var(--text-green); }
.text-center { text-align: center; }

/* ---------- Programs Section ---------- */
.programs-section {
  padding: 60px 0;
}

.programs-intro {
  text-align: center;
  margin-bottom: 40px;
}

.programs-intro p {
  max-width: 800px;
  margin: 15px auto 0;
  color: var(--gray);
}

.programs-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.programs-features__item {
  text-align: center;
  max-width: 250px;
}

.programs-features__item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}

.programs-features__item p {
  font-size: 14px;
  color: var(--gray);
}

.programs-sub-heading {
  margin: 40px 0 20px;
}

.programs-sub-heading h3 {
  font-size: 22px;
  font-weight: 700;
}

.programs-sub-heading small {
  color: var(--gray);
  font-size: 14px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s;
}

.program-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.program-card img {
  width: 100%;
  border-radius: 10px;
}

.program-card__body {
  padding: 16px 0;
}

.program-card__body h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.program-card__body .btn {
  margin-right: 8px;
}

/* ---------- Middle Banner ---------- */
.middle-banner {
  overflow: hidden;
}

.middle-banner img {
  width: 100%;
  display: block;
}

/* ---------- Rankings / Accreditations Section ---------- */
.rankings-section {
  padding: 60px 0;
}

.rankings-section .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.rankings-text {
  flex: 1;
}

.rankings-text p {
  color: var(--gray);
  margin-top: 12px;
}

.rankings-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.rankings-logos img {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---------- Alumni Section ---------- */
.alumni-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.alumni-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.alumni-intro p {
  color: var(--gray);
  margin-top: 12px;
}

.alumni-slider {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.alumni-card {
  background: linear-gradient(135deg, #0a6e3a 0%, #1a9e5c 100%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 320px;
  min-height: 250px;
  padding: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}

.alumni-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.alumni-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alumni-card__footer img {
  max-height: 40px;
  width: auto;
}

.alumni-card__footer small {
  font-size: 12px;
  opacity: 0.8;
}

.alumni-card__image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 50%;
  object-fit: contain;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-heading {
  padding: 50px 0 20px;
}

.testimonials-heading h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px 0 60px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.testimonial-content {
  max-width: 600px;
  position: relative;
}

.testimonial-content .quote-icon {
  width: 40px;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.testimonial-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-content small {
  font-size: 13px;
  opacity: 0.7;
}

.testimonial-rating {
  color: gold;
  margin-top: 10px;
  font-size: 16px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 40px;
}

.testimonials-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonials-nav button.active {
  background: var(--white);
}

/* ---------- Learning Approach Section ---------- */
.approach-section {
  padding: 60px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.approach-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.approach-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.approach-card p {
  font-size: 14px;
  color: var(--gray);
  flex: 1;
}

.approach-card__icon {
  text-align: right;
  margin-top: 15px;
}

.approach-card__icon img {
  width: 60px;
  opacity: 0.3;
  display: inline-block;
}

.approach-videos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-videos img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ---------- Workforce Section ---------- */
.workforce-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
}

.workforce-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 66, 144, 0.85);
}

.workforce-section .container {
  position: relative;
  z-index: 1;
}

.workforce-cards {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.workforce-card {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.workforce-card__body {
  padding: 24px;
}

.workforce-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.workforce-card p {
  font-size: 14px;
  opacity: 0.9;
}

.workforce-card__footer {
  padding: 12px 24px;
  background: rgba(1, 103, 153, 0.5);
  font-size: 13px;
}

.workforce-card__footer b {
  font-weight: 700;
}

/* ---------- Academic Partners ---------- */
.partners-section {
  padding: 60px 0;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.partners-grid img {
  max-height: 60px;
  width: auto;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.partners-grid img:hover {
  filter: grayscale(0);
}

/* ---------- Degree Sample Section ---------- */
.degree-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
}

.degree-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 66, 144, 0.85);
}

.degree-section .container {
  position: relative;
  z-index: 1;
}

.degree-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.degree-content__text {
  flex: 1;
}

.degree-content__text h2 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.degree-content__text p {
  font-size: 15px;
  opacity: 0.9;
}

.degree-content__image {
  flex: 1;
}

.degree-content__image img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ---------- Recruiters Section ---------- */
.recruiters-section {
  padding: 60px 0;
}

.recruiters-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.recruiters-grid img {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.recruiters-grid img:hover {
  transform: scale(1.05);
}

/* ---------- Footer ---------- */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col .text-muted {
  color: #888;
  font-size: 12px;
}

.footer-doon-link {
  background: var(--primary-blue);
  padding: 12px 15px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--white);
}

.footer-doon-link a {
  color: var(--white);
  text-decoration: underline;
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 8px;
  transition: background 0.3s;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom img {
  height: 30px;
  margin: 0 auto 10px;
  opacity: 0.5;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* ---------- Fixed Right Buttons ---------- */
.fixed-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fixed-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-size: 20px;
  transition: width 0.3s;
  overflow: hidden;
}

.fixed-buttons a.whatsapp { background: #25d366; }
.fixed-buttons a.phone { background: var(--primary-red); }

/* ---------- Go to Top ---------- */
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.go-top:hover {
  background: var(--primary-red);
}

.go-top.show {
  display: flex;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .header .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .rankings-section .container {
    flex-direction: column;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-videos {
    flex-direction: row;
  }

  .recruiters-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .top-bar__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .header__left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    padding: 10px 20px 20px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav .dropdown {
    width: 100%;
  }

  .header__nav .dropdown__toggle {
    width: 100%;
    justify-content: space-between;
  }

  .header__nav .dropdown__menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 0 10px;
  }

  .header__nav .dropdown.is-open .dropdown__menu {
    display: block;
  }

  .header__nav .nav-blog-link {
    padding: 14px 4px;
    border-top: 1px solid #eee;
  }

  .header__nav .btn-primary {
    display: block;
    text-align: center;
    margin: 14px 0 4px;
  }

  .header__right {
    display: none;
  }

  .header__helpline {
    display: none;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .programs-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .rankings-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .alumni-slider {
    flex-direction: column;
    align-items: center;
  }

  .approach-cards {
    grid-template-columns: 1fr;
  }

  .approach-videos {
    flex-direction: column;
  }

  .workforce-cards {
    flex-direction: column;
  }

  .degree-content {
    flex-direction: column;
    text-align: center;
  }

  .recruiters-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-heading h1 { font-size: 24px; }
  .page-heading h2 { font-size: 22px; }

  .fixed-buttons { display: none; }
}

@media (max-width: 480px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .rankings-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruiters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
