:root {
  --teal: #3dbfa0;
  --teal-dark: #2a9e84;
  --coral: #e06b6b;
  --ink: #007367;
  --muted: #6b7f76;
  --offwhite: #f7faf8;
  --gold: #c9a84c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter Regular";
  background: var(--offwhite);
  color: var(--ink);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter Regular";
}

section {
  width: 100%;
  padding: 100px 0px;
  position: relative;
}

/* section {
  scroll-margin-top: 50px; 
} */

.navbar-nav .nav-link {
  font-weight: 500;
  color: #fff;
  padding: 10px 18px !important;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}
ul .nav-item {
  color: #fff !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    /* text-align: center; */
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    padding: 8px 0 !important;
  }
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-nav .nav-link:hover {
  color: #fff;
}
/* NAV */
.navbar {
  background: #007367 !important;
  z-index: 9999;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter Regular";
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
}

.nav-brand {
  font-family: "Inter Regular";
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.nav-brand span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-family: "Inter Regular";
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--teal-dark);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* HERO CAROUSEL */
/* .hero-carousel {
  margin-top: 60px;
} */

.carousel-item {
  /* height: calc(100vh - 60px);
    min-height: 560px; */
  /* display: flex; align-items: center;
    background: var(--ink);
    position: relative; overflow: hidden; */
}
/* .carousel {
  margin-top: 63px;
} */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 26, 20, 0.92) 45%,
    rgba(13, 26, 20, 0.4) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem;
  max-width: 640px;
}

.slide-tag {
  display: inline-block;
  background: rgba(61, 191, 160, 0.15);
  border: 1px solid rgba(61, 191, 160, 0.3);
  color: var(--teal);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.slide-title {
  font-family: "Inter Regular";
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.slide-title .c-teal {
  color: var(--teal);
}

.slide-title .c-coral {
  color: var(--coral);
}

.slide-title .c-gold {
  color: var(--gold);
}

.slide-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.slide-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: "Inter Regular";
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: "Inter Regular";
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Slide stat pills */
.slide-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.slide-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
}

.slide-stat-val {
  font-family: "Inter Regular";
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--teal);
}

.slide-stat-val.gold {
  color: var(--gold);
}

.slide-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Custom carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 1;
  transition: background 0.2s;
}

.carousel-control-prev {
  left: 1.5rem;
}

.carousel-control-next {
  right: 1.5rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--teal);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 15px;
  height: 15px;
}

/* Custom indicators */
.carousel-indicators {
  bottom: 1.5rem;
  gap: 0.4rem;
  margin: 0;
  justify-content: flex-start;
  padding-left: 4rem;
}

.carousel-indicators button {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.3s;
  opacity: 1;
}

.carousel-indicators button.active {
  width: 48px;
  background: var(--teal);
}

/* Slide visual accent (right side geometric) */
.slide-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(61, 191, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-circle::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(61, 191, 160, 0.1);
}

.slide-circle-icon {
  font-size: 6rem;
  opacity: 0.15;
}

@media (max-width: 768px) {
  .slide-content {
    padding: 2rem 1.5rem;
  }

  .slide-visual {
    display: none;
  }

  .carousel-indicators {
    padding-left: 1.5rem;
  }
}

/* SECTIONS */
/* section { padding: 5rem 0; } */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
}

.c-teal {
  color: var(--teal);
}

.c-coral {
  color: var(--coral);
}

/* ABOUT */
.about {
  background: #fff;
}

.info-card {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(61, 191, 160, 0.1);
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(61, 191, 160, 0.1);
  transform: translateY(-3px);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* STEPS */
.steps {
  background: var(--offwhite);
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.step-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.step-num {
  font-family: "Inter Regular";
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.num-coral {
  color: var(--coral);
}

.num-teal {
  color: var(--teal);
}

.step-body h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* TIMELINE */
.timeline-sec {
  background: var(--ink);
}

.tl-wrap {
  position: relative;
  padding-left: 1.75rem;
}

.tl-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--coral));
}

.tl-item {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.tl-dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--ink);
}

.tl-date {
  font-family: "Inter Regular";
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.tl-event {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
}

.tl-badge {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
  margin-top: 0.3rem;
}

.badge-online {
  background: rgba(61, 191, 160, 0.15);
  color: var(--teal);
}

.badge-live {
  background: rgba(224, 107, 107, 0.15);
  color: var(--coral);
}

.badge-gold {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

/* PRIZES */
.prizes {
  background: #fff;
}

.prize-card {
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
}

.prize-first {
  background: linear-gradient(145deg, #0d1a14, #1c3328);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.prize-second {
  background: var(--offwhite);
  border: 1px solid rgba(61, 191, 160, 0.2);
}

.prize-third {
  background: var(--offwhite);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.prize-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.prize-rank {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.first-rank {
  color: var(--gold);
}

.second-rank {
  color: var(--teal);
}

.third-rank {
  color: var(--muted);
}

.prize-amount {
  font-family: "Inter Regular";
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.gold-text {
  color: var(--gold);
}

.teal-text {
  color: var(--teal);
}

.prize-label {
  font-size: 0.82rem;
}

.prize-first .prize-label {
  color: rgba(255, 255, 255, 0.4);
}

.prize-second .prize-label,
.prize-third .prize-label {
  color: var(--muted);
}

.perk-list {
  list-style: none;
  margin-top: 1.25rem;
}

.perk-list li {
  font-size: 0.83rem;
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.prize-first .perk-list li {
  color: rgba(255, 255, 255, 0.6);
}

.prize-second .perk-list li,
.prize-third .perk-list li {
  color: var(--muted);
}

.perk-list .bi {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* PERKS BAR */
.perks-bar {
  background: var(--teal);
  padding: 3rem 0;
}

.perk-i {
  text-align: center;
  padding: 0.75rem;
}

.perk-i .bi {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.perk-i strong {
  display: block;
  font-family: "Inter Regular";
  font-size: 0.95rem;
  color: #fff;
}

.perk-i span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
}

.foot-brand {
  font-family: "Inter Regular";
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.foot-brand span {
  color: var(--teal);
}

.foot-sub {
  color: rgba(255, 255, 255, 1);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Inter Regular";
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
  margin-bottom: 2rem;
}

.foot-cta:hover {
  background: var(--teal-dark);
  color: #fff;
}

.foot-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 1);
  font-size: 0.87rem;
  margin-bottom: 0.5rem;
}

.foot-contact .bi {
  color: #fff;
}

.foot-contact a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.foot-contact a:hover {
  color: var(--teal);
}

.foot-heading {
  color: rgba(255, 255, 255, 1);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.foot-link {
  display: block;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.foot-link:hover {
  color: var(--teal);
}

.foot-date {
  color: rgba(255, 255, 255, 1);
  font-size: 0.84rem;
  margin-bottom: 0.45rem;
}

.foot-date span {
  color: var(--coral);
}

hr {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 2rem 0 1.5rem;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.foot-bottom p {
  color: rgba(255, 255, 255, 1);
  font-size: 0.78rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.section-title {
  font-weight: 700;
  font-size: 28px;
}

.section-title span {
  color: #0aa38f;
}

.sub-title {
  font-weight: 600;
  font-size: 20px;
  color: #0aa38f;
  margin-top: 25px;
}

.about-text {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divider {
  width: 60px;
  height: 3px;
  background: #0aa38f;
  margin: 15px 0;
}

.section-title span {
  color: #f26b6b;
}

.subtitle {
  color: #6c757d;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.card-step {
  border: none;
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  background: #fff;
}

.card-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 42px;
  font-weight: 800;
  opacity: 0.2;
}

.step-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.step-1 {
  color: #0aa38f;
}

.step-2 {
  color: #f26b6b;
}

ul {
  padding-left: 18px;
}

ul li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #555;
}

.guideline-box {
  background: #eef3f4;
  border-radius: 18px;
  padding: 25px;
  margin-top: 30px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #dfecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.guideline-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.guideline-text {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.info-section {
  background-color: #fff;
}

.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-4px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.travel-icon {
  background: #ffecec;
  color: #e74c3c;
}

.accom-icon {
  background: #e8f7f2;
  color: #1abc9c;
}

.prize-icon {
  background: #fff4e5;
  color: #f39c12;
}

.section-title {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 10px;
}

.travel {
  color: #e74c3c;
}

.accom {
  color: #1abc9c;
}

.prize {
  color: #f39c12;
}

.info-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.divider {
  border-top: 1px dashed #ddd;
  margin: 20px 0;
}

/*problem statement*/

.problem-statements {
  background: #fff;
}

.problem-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.problem-number {
  position: absolute;
  right: -15px;
  top: -25px;
  font-size: 110px;
  font-weight: 900;
  color: rgba(220, 53, 69, 0.08);
  line-height: 1;
}

.problem-content {
  position: relative;
  z-index: 2;
}

.problem-content h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.problem-content p {
  color: #555;
  line-height: 1.65;
  font-size: 15px;
}

.qr-code {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 10px;
}

.btn-success {
  border-radius: 50px;
  padding: 10px 25px;
}

@media (max-width: 768px) {
  .problem-card {
    padding: 25px;
  }

  .problem-number {
    font-size: 80px;
  }

  .problem-content h4 {
    font-size: 16px;
  }

  .qr-code {
    width: 70px;
    height: 70px;
  }
}

/*partnership*/

.partner-logo {
  max-height: 150px;
  object-fit: contain;
  /* filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease; */
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
#partnership {
  background: #f5f5f7;
}

@media (max-width: 580px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 20px;
    height: 20px;
  }
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 4px 7px;
    margin-right: 10px;
  }
  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 11px;
    height: 11px;
  }
  .info-box,
  .guideline-box.d-flex {
    display: block !important;
  }
  .icon-circle,
  .icon-box {
    margin-bottom: 18px;
  }
  /* section{
    padding:60px 0px;
  } */
}

@media (max-width: 768px) {
  nav {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    transform: none !important;
  }

  body {
    padding-top: 64px; /* navbar height */
  }
  section {
    padding: 50px 0px;
  }
  section {
    scroll-margin-top: 50px;
  }
}
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.card-title {
  line-height: 1.2;
}
.card-body {
  background: #fff;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  min-height: 148px; /* keeps short titles from looking cramped */
}

.card-title {
  font-size: 12px;
  /* font-weight: 00; */
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  flex: 1; /* pushes button to bottom regardless of title length */
}

.button_pdf {
  display: inline-block;
  background: #007367;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
}
.button_watch {
  display: inline-block;
  background: #fff;
  color: #007367;
  border: 1px solid #007367;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
