
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #172b3a;
  font-family: Manrope, Arial, sans-serif;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1220px, 92%);
  margin: auto;
}

.announcement {
  background: #091f31;
  color: #d9e3e9;
  text-align: center;
  padding: 9px;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.announcement span {
  color: #e8aa4b;
  margin: 0 9px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fffef9ee;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px #0c253512;
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #112d43;
  gap: 10px;
}

.brand > b {
  font-size: 28px;
  font-style: italic;
  background: #112d43;
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
}

.brand span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.brand strong {
  color: #d88924;
}

.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: #75828b;
  margin-top: 5px;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav nav a {
  font-size: 12px;
  text-decoration: none;
  color: #314a5b;
  font-weight: 700;
}

.nav .cta {
  background: #d9922e;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
}

#menu {
  display: none;
  border: 0;
  background: none;
  font-size: 27px;
}

.hero {
  min-height: 780px;
  background:
    radial-gradient(
      circle at 80% 20%,
      #d9a64626,
      transparent 28%
    ),
    linear-gradient(125deg, #081e30, #103a58);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "48";
  position: absolute;
  right: -30px;
  bottom: -130px;
  font: 700 520px "Cormorant Garamond";
  color: #ffffff06;
}

.hero-grid {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.overline,
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  color: #d99b43;
}

.hero h1 {
  font: 700 78px/0.92 "Cormorant Garamond";
  margin: 18px 0 25px;
}

.hero h1 span {
  display: block;
  font: 700 22px Manrope;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #f3c77d;
}

.hero h1 em {
  color: #e5a747;
  font-style: normal;
}

.hosted {
  color: #d5e0e7;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.hero-meta > div {
  padding: 14px 18px;
  border: 1px solid #ffffff22;
  background: #ffffff0b;
  border-radius: 10px;
}

.hero-meta small,
.hero-meta b,
.hero-meta span {
  display: block;
}

.hero-meta small {
  font-size: 9px;
  color: #e9b968;
  letter-spacing: 1.5px;
}

.hero-meta b {
  margin-top: 4px;
}

.hero-meta span {
  font-size: 11px;
  color: #b9c8d1;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.gold {
  background: linear-gradient(135deg, #e8ad50, #c57c1d);
  color: #fff;
}

.line {
  border: 1px solid #ffffff55;
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.countdown {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.countdown div {
  width: 70px;
  text-align: center;
  border-top: 1px solid #e2ad58;
  padding-top: 9px;
}

.countdown b,
.countdown span {
  display: block;
}

.countdown b {
  font-size: 21px;
}

.countdown span {
  font-size: 9px;
  color: #9fb2c0;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  width: 365px;
  justify-self: end;
  background: #fff;
  padding: 8px;
  box-shadow: 0 35px 90px #0009;
  transform: rotate(1.5deg);
}

.hero-card .seal {
  position: absolute;
  left: -35px;
  bottom: 45px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #d5902e;
  border: 5px solid #f1ca8a;
  color: #fff;
  font: 700 11px Manrope;
}

.ribbon {
  background: #d58a26;
  color: #fff;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ribbon-grid div {
  text-align: center;
  padding: 25px;
  border-right: 1px solid #ffffff38;
}

.ribbon b,
.ribbon span {
  display: block;
}

.ribbon b {
  font: 700 35px "Cormorant Garamond";
}

.ribbon span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  padding: 95px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.section h2,
.title h2 {
  font: 700 50px/1.05 "Cormorant Garamond";
  margin: 12px 0 22px;
  color: #112f46;
}

.section h2 em,
.title h2 em {
  color: #bd7723;
  font-style: normal;
}

.section p {
  color: #647581;
  line-height: 1.8;
}

.sign {
  border-left: 3px solid #d58a26;
  padding-left: 16px;
  margin-top: 25px;
  font-weight: 800;
}

.sign small {
  font-weight: 500;
  color: #76838c;
}

.visual-pair {
  height: 600px;
  position: relative;
}

.visual-pair img {
  position: absolute;
  width: 330px;
  box-shadow: 0 22px 55px #18364b28;
}

.visual-pair img:first-child {
  left: 0;
  top: 0;
  transform: rotate(-3deg);
}

.visual-pair img:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(3deg);
}

.destination {
  background: #f5f0e7;
}

.title {
  max-width: 780px;
  margin: 0 auto 45px;
}

.center {
  text-align: center;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  min-height: 500px;
  box-shadow: 0 25px 70px #17354b1c;
}

.big-photo {
  background-size: cover;
  background-position: center 28%;
}

.destination-copy {
  background: #0d2c43;
  color: #fff;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-copy span {
  font-size: 10px;
  color: #dca14b;
  letter-spacing: 2px;
}

.destination-copy h3 {
  font: 700 38px "Cormorant Garamond";
  margin: 10px 0;
}

.destination-copy p {
  color: #bdcbd5;
}

.destination-copy hr {
  width: 60px;
  margin: 25px 0;
  border: 0;
  border-top: 2px solid #d59638;
}

.band {
  display: table;
  margin: 45px auto 28px;
  background: #812019;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
}

.band.pink {
  background: #9e3559;
}

.people {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.person {
  text-align: center;
  background: #fff;
  border: 1px solid #e8e9e8;
  border-radius: 14px;
  padding: 18px 10px;
  box-shadow: 0 8px 25px #17354b08;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 13px;
  /* background: linear-gradient(145deg, #173b57, #d49031); */
  display: grid;
  place-items: center;
  border: 4px solid #f4eadc;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.person small {
  font-size: 9px;
  color: #b16c1e;
  font-weight: 800;
  text-transform: uppercase;
}

.person h4 {
  font-size: 12px;
  margin: 5px 0;
}

.reference {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  align-items: center;
  background: #0e2d44;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.reference > div {
  padding: 45px;
}

.reference h3 {
  font: 700 34px "Cormorant Garamond";
  margin: 0;
}

.reference p {
  color: #bdcad4;
}

.reference img {
  width: 100%;
}

.committee {
  background: #faf8f4;
}

.committee-grid {
  grid-template-columns: repeat(6, 1fr);
}

.official-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 45px auto;
  max-width: 900px;
}

.official-panels img {
  box-shadow: 0 15px 40px #19384d1d;
}

.central {
  margin-top: 50px;
  padding: 35px;
  background: #fff;
  border: 1px solid #e7e4de;
  border-radius: 18px;
}

.central h3 {
  text-align: center;
  font: 700 28px "Cormorant Garamond";
}

.central-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px 25px;
}

.central-list span {
  font-size: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #eee;
}

.branch-wdc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 45px;
}

.branch-wdc > div {
  background: #fff7fa;
  padding: 25px;
  border-radius: 18px;
}

.branch-wdc h3 {
  text-align: center;
  color: #8d2b4c;
}

.people.mini {
  grid-template-columns: repeat(3, 1fr);
}

.slim {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.faculty-section {
  background: #0b263b;
  color: #fff;
}

.title.light h2 {
  color: #fff;
}

.title.light p {
  color: #b9c8d2;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.faculty-card {
  text-align: center;
  background: #ffffff0c;
  border: 1px solid #ffffff12;
  border-radius: 14px;
  padding: 14px 8px;
}

.faculty-avatar {
  width: 82px;
  height: 82px;
  border-color: #294b62;
}

.faculty-card h4 {
  font-size: 11px;
  margin: 8px 0 3px;
}

.faculty-card small {
  font-size: 8px;
  color: #d9a24f;
}

.faculty-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px auto 0;
  max-width: 850px;
}

.faculty-pages img {
  box-shadow: 0 15px 45px #0005;
}

.workshop {
  background: #f5eee5;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.workshop-grid > img {
  box-shadow: 0 25px 60px #18364b2c;
}

.workshop ul {
  padding-left: 18px;
  color: #556a78;
  line-height: 1.8;
}

.price-row {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.price-row > div {
  background: #fff;
  padding: 17px 22px;
  border-radius: 12px;
  border-left: 4px solid #d68d2c;
}

.price-row small,
.price-row b {
  display: block;
}

.price-row small {
  font-size: 9px;
  color: #96601d;
}

.price-row b {
  font-size: 24px;
}

.note {
  font-size: 12px;
}

.registration {
  background: #fff;
}

.table-wrap {
  overflow: auto;
  box-shadow: 0 15px 45px #16354a12;
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th {
  background: #0d3049;
  color: #fff;
  padding: 17px;
  font-size: 12px;
}

td {
  padding: 16px;
  border-bottom: 1px solid #e7e9e9;
  font-size: 12px;
  text-align: center;
}

td:first-child {
  text-align: left;
  font-weight: 700;
}

tbody tr:nth-child(odd) {
  background: #fff8ed;
}

.payment-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.payment {
  background: #0d2d44;
  color: #fff;
  padding: 40px;
  border-radius: 18px;
}

.payment span {
  color: #dba34d;
  font-size: 10px;
  letter-spacing: 2px;
}

.payment h3 {
  font: 700 30px "Cormorant Garamond";
}

.payment p {
  color: #c5d0d8;
}

.payment-grid img {
  box-shadow: 0 15px 40px #17354b20;
}

.highlights {
  background: #f6f1e9;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.highlight-grid div {
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 3px solid #d48a29;
}

.viewer {
  display: grid;
  grid-template-columns: 55px minmax(0, 650px) 55px;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.viewer button {
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d2d44;
  color: #fff;
  font-size: 28px;
}

.page {
  position: relative;
  background: #fff;
  padding: 8px;
  box-shadow: 0 20px 60px #17354b25;
}

.page span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #0d2d44e8;
  color: #fff;
  padding: 6px 9px;
  font-size: 10px;
}

.thumbs {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin-top: 20px;
}

.thumbs img {
  width: 65px;
  height: 90px;
  object-fit: cover;
  border: 2px solid transparent;
  padding: 2px;
  cursor: pointer;
}

.thumbs img.active {
  border-color: #d58a26;
}

.sponsors {
  text-align: center;
  padding: 45px;
  background: #e6aa4b;
  color: #fff;
}

.sponsors p {
  font-size: 9px;
  letter-spacing: 2px;
}

.sponsors h3 {
  font: italic 800 38px Manrope;
  margin: 5px;
}

.sponsors span {
  font-size: 11px;
}

.contact {
  background: #0b263b;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact h2 {
  color: #fff;
}

.contact p {
  color: #b8c7d0;
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-cards a,
.contact-cards span {
  color: #fff;
  text-decoration: none;
  border: 1px solid #ffffff1c;
  background: #ffffff09;
  padding: 17px;
  border-radius: 10px;
  font-size: 13px;
}

footer {
  background: #061a29;
  color: #9aabb7;
  padding: 28px;
}

.wrap footer {
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

@media (max-width: 1000px) {
  #menu {
    display: block;
  }

  .nav nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 4%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav nav.open {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .people {
    grid-template-columns: repeat(3, 1fr);
  }

  .committee-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faculty-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split,
  .workshop-grid,
  .payment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .big-photo {
    min-height: 450px;
  }

  .visual-pair {
    max-width: 600px;
    margin: auto;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .announcement {
    font-size: 9px;
  }

  .hero,
  .hero-grid {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-meta {
    flex-direction: column;
  }

  .ribbon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 65px 0;
  }

  .section h2,
  .title h2 {
    font-size: 39px;
  }

  .people,
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .official-panels,
  .faculty-pages,
  .branch-wdc {
    grid-template-columns: 1fr;
  }

  .central-list {
    grid-template-columns: 1fr;
  }

  .reference {
    grid-template-columns: 1fr;
  }

  .visual-pair {
    height: 480px;
  }

  .visual-pair img {
    width: 245px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .viewer {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 5px;
  }

  .viewer button {
    width: 34px;
    height: 34px;
  }

  .payment-grid img {
    max-width: 380px;
    margin: auto;
  }

  footer .wrap {
    flex-direction: column;
    gap: 8px;
  }

  .people.mini {
    grid-template-columns: 1fr 1fr;
  }
}

.abstract-section {
  background: linear-gradient(135deg, #0b263b, #123e5c);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.abstract-section:after {
  content: "ABSTRACT";
  position: absolute;
  right: -30px;
  bottom: -35px;
  font: 700 130px "Cormorant Garamond";
  color: #ffffff05;
  letter-spacing: 8px;
}

.abstract-box {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.abstract-section h2 {
  color: #fff;
}

.abstract-section p {
  color: #bdccd6;
}

.abstract-points {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.abstract-points span {
  border: 1px solid #ffffff22;
  background: #ffffff0b;
  padding: 9px 12px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  color: #e5edf2;
}

.abstract-button {
  background: #d5902e;
  color: #fff;
  opacity: 0.82;
}

.touch{
  color: #d5902e;
  font-weight: bold;
}

.link-note {
  font-size: 10px !important;
  margin-top: 12px;
}

.link-note b {
  color: #e8b866;
}

.abstract-art {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #dca64e66;
  background: radial-gradient(
    circle,
    #dca64e25,
    #ffffff05 60%,
    transparent 61%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 18px #ffffff04;
}

.abstract-art strong {
  font: 700 42px/0.9 "Cormorant Garamond";
  color: #fff;
}

.abstract-art span {
  margin-top: 15px;
  color: #e6b764;
  font-weight: 800;
}

.abstract-art small {
  margin-top: 8px;
  letter-spacing: 2px;
  color: #9fb4c2;
}

@media (max-width: 850px) {
  .abstract-box {
    grid-template-columns: 1fr;
  }

  .abstract-art {
    max-width: 330px;
    margin: auto;
  }
}

.sponsor-showcase {
  background: linear-gradient(180deg, #fffaf1, #fff);
  position: relative;
  overflow: hidden;
}

.sponsor-showcase:before {
  content: "PARTNERS";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font: 700 150px "Cormorant Garamond";
  color: #d9972b08;
  letter-spacing: 10px;
  white-space: nowrap;
}

.sponsor-showcase .title {
  position: relative;
  z-index: 2;
}

.principal-label,
.co-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2.4px;
  font-weight: 800;
  color: #b6761f;
  margin: 35px 0 16px;
}

.principal-sponsor {
  max-width: 950px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: center;
  background: linear-gradient(135deg, #8f161b, #d82d34);
  color: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 30px 70px #8f161b30;
  position: relative;
  overflow: hidden;
}

.principal-sponsor:after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid #ffffff20;
  right: -120px;
  top: -140px;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  min-height: 150px;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 15px 35px #0002;
  font-weight: 800;
}

.colgate-logo {
  font-size: 55px;
  font-style: italic;
  color: #d71920;
  letter-spacing: -4px;
  border: 5px solid #fff;
}

.sponsor-copy {
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

.sponsor-copy > span {
  font-size: 9px;
  letter-spacing: 2px;
  color: #ffd7b4;
}

.sponsor-copy h3 {
  font: 700 45px "Cormorant Garamond";
  margin: 8px 0;
}

.sponsor-copy p {
  color: #ffe9e4;
  margin: 0 0 15px;
}

.sponsor-badge {
  display: inline-block;
  border: 1px solid #ffffff55;
  background: #ffffff12;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
}

.co-sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 950px;
  margin: auto;
}

.co-sponsor {
  background: #fff;
  border: 1px solid #ece5da;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 45px #17354b0d;
  transition: 0.25s;
}

.co-sponsor:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px #17354b18;
}

.co-sponsor .sponsor-logo {
  min-height: 120px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.swadeshi-logo {
  font-size: 26px;
  color: #153b59;
  flex-direction: column;
}

.swadeshi-logo small {
  font-size: 11px;
  letter-spacing: 4px;
  color: #c27b22;
  margin-top: 5px;
}

.dentalmall-logo {
  font-size: 35px;
  color: #153b59;
}

.dentalmall-logo span {
  color: #d58a26;
}

.co-sponsor h3 {
  font: 700 27px "Cormorant Garamond";
  margin: 7px;
}

.co-sponsor p {
  color: #b47420;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px;
}

.co-sponsor > span {
  font-size: 11px;
  color: #788791;
}

.sponsor-thanks {
  max-width: 950px;
  margin: 28px auto 0;
  background: #102f47;
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.sponsor-thanks strong {
  color: #e8b25e;
}

.sponsor-thanks span {
  font-size: 11px;
  color: #c2d0d9;
}

@media (max-width: 750px) {
  .principal-sponsor {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .sponsor-copy {
    padding: 25px 0 0;
  }

  .colgate-logo {
    font-size: 45px;
  }

  .co-sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-thanks {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-showcase:before {
    font-size: 75px;
  }
}