*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* FONTS */
.chakra-petch-light {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.chakra-petch-regular {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.chakra-petch-medium {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.chakra-petch-semibold {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.chakra-petch-bold {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.chakra-petch-light-italic {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.chakra-petch-regular-italic {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.chakra-petch-medium-italic {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.chakra-petch-semibold-italic {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.chakra-petch-bold-italic {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: italic;
}


html {
  height: 100%;
}

body {
  min-height: 100%;
  /* Ensures it's at least the height of the viewport */
  margin: 0;
  /* Removes the default 8px margin that can cause scrolling */
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 1.1em;
  background: #F5F5F7;
  color: #4A4969;
}


/* body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #0f0f0f;
    color: #f0f0f0;
    min-height: 100vh;
} */
.margin0auto {
  margin: 0 auto;
  display: block;
}

/* ─── HEADER ─── */
header {
  /* background: radial-gradient(circle at top right, #2E0B45, #141414); */
  background: #ffffff;
  width: 100%;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 14px 20px; */
  padding: 25px 20px;
  /* border-bottom: 1px solid rgba(255,255,255,0.08); */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-box {
  /* width: 38px; height: 38px; */
  /* border-radius: 10px; */
  /* background: rgba(255,255,255,0.12); */
  /* border: 1px solid rgba(255,255,255,0.18); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: auto;
  height: 43px;
  object-fit: contain;
}

.logo-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.burger-btn {
  background: transparent;
  border: 1px solid #5D318D;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.burger-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

/* ─── HERO ─── */
.hero {
  padding: 36px 20px 44px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.hero-main {
  padding: 0px 0px 0px;
  text-align: center;
}

.hero-main h1 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #6728af;
  font-size: 1.5em;
  margin-bottom: 5px;
  line-height: 35px;
}

.hero-main-success h1 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #6728af;
  font-size: 1.5em;
  margin-bottom: 15px;
  margin-top: 15px;
  line-height: 27px;
  text-align: center;
}

.hero-main h2 {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 1.1em;
  color: #4A4969;
}


/* ─── OVERLAY MENÚ FULLSCREEN ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #1a0629 0%, #0d0d0d 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 14px 20px; */
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 24px;
}

.overlay-nav a {
  width: 100%;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.overlay-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ─── MAIN ─── */
main {
  padding: 32px 16px 48px;
  background: #F5F5F7;
  min-height: 100%;
  height: 100%;
}

/* ─── CALENDAR ─── */
.calendar-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.calendar-container {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 0px;
  /* max-width: 800px; */
  max-width: 400px;
  /* margin: 20px auto; */

  position: relative;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.calendar-container-header {
  background-color: #6728AF;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 12px 30px 2px 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 15px;
}

.calendar-header h2#monthYear {
  font-size: 1.1em;
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #ffffff;
  margin: 0;
}

.cal-btn {
  background: transparent;
  color: #fff;
  border: 0px solid rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-style: normal;
}

.cal-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-days-of-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  padding-bottom: 10px;
}

.calendar-grid {
  /* display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;

  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 1.1em;
  width: 320px; */
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  width: 320px;
  padding: 15px 30px 30px 30px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
}

.cal-day.empty {
  visibility: hidden;
}

.cal-day.disabled {
  color: #000000;
  cursor: default;
  pointer-events: none;
}

.cal-day.has-sessions {
  background: #6728AF;
  ;
  border-color: rgba(127, 119, 221, 0.3);
  font-weight: normal;
  color: #ffffff;
}

.cal-day.has-sessions:hover,
.cal-day.selected {
  background: #3e0084;
  color: #fff;
}

.day-sessions-container {
  margin-top: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  background-color: #ffffff;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  max-width: 340px;
  width: 320px;
  position: relative;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: height 0.3s ease-out;
}

.day-sessions-container h3 {
  margin-bottom: 3px;
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  text-align: center;
  color: #14141B;
  padding: 4px 20px;
}

.day-sessions-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 250px;
  overflow-y: auto;
}

.session-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.session-item .s-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.session-item .s-time {
  font-weight: bold;
  color: #6728af;
}

.session-item .s-title {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 0.8em;
  color: #0f0f0f;
}

/* ─── CONFIRMATION SCREEN ─── */
.success-screen {
  display: none;
  text-align: center;
  padding: 20px;
}

.success-screen.active {
  display: block;
}

.success-screen svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  fill: #28a745;
}

.success-screen h2 {
  color: #fff;
  margin-bottom: 10px;
}

.success-screen p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.success-screen .detail {
  font-weight: bold;
  color: #fff;
}

/* ─── CARDS ─── */
.session-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.session-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.session-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.session-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  flex: 1;
}

.aia-btn {
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
}

.aia-btn:hover {
  opacity: 0.88;
}

.aia-btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #6728AF;
  color: #fff;
  font-family: "Afacad Flux", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 1.1em;
}

.btn-primary.size1em {
  font-size: 1em;
}

/* .btn-primarymod {
  background: transparent;
  color: #6728AF;
  font-family: "Afacad Flux", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 1.1em;
  border: 1px solid #6728AF;
}

.btn-primarymod:hover {
  background: #6728AF;
  color: #ffffff;
  font-family: "Afacad Flux", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 1.1em;
  border: 1px solid #6728AF;
}

.btn-primarymod-img {} */

.btn-primarymod {
  background: transparent;
  color: #6728AF;
  border: 1px solid #6728AF;
  position: relative;
  font-family: "Afacad Flux", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 1.1em;
}

.icon-hover {
  display: none;
}

.btn-primarymod:hover {
  background: #6728AF;
  color: #fff;
}

.btn-primarymod:hover .icon-default {
  display: none;
}

.btn-primarymod:hover .icon-hover {
  display: inline;
}



.btn-full-width {
  width: 100%;
}



.modal-header .popup-title {
  width: stretch;
  text-align: center;
}

#dynamicFields div.form-group label {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #14141C;
  font-size: 0.9em;
  width: fit-content;
}

#dynamicFields .form-group input,
#dynamicFields .form-group select,
#dynamicFields .form-group textarea {
  width: 100%;
  padding: 15px 14px;
  background: rgb(255 255 255);
  border: 1px solid #DFDFE9;
  border-radius: 8px;

  font-family: "Roboto Flex", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  color: #494A67;

  outline: none;
  transition: border-color 0.15s;

}

.input-icon {
  width: 47px;
  height: 47px;
  margin-right: 14px;
  object-fit: contain;
  vertical-align: middle;
}


/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #F5F5F7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #6728af;
  font-size: 1.3em;
}

.modal-header .popup-subtitle {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #494A67;
  font-size: 0.9em;
}

.modal-header .close-btn {
  background: none;
  border: none;
  font-size: 34px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  line-height: 1;
}

.modal-header .close-btn:hover {
  color: #6728af;
}

.footer-title h2 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #6728af;
  font-size: 1.1em;
  text-align: center;
}

.footer-title .popup-subtitle {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #494A67;
  font-size: 0.9em;
  padding-bottom: 20px;
  padding-top: 5px;
}

/* Campos del formulario */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.form-group label.labelRequired::after {
  content: ' *';
  color: #f09595;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
}

.form-group select option {
  background: #1a1a2e;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7f77dd;
}

/* Alertas */
.alert {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.alert.success {
  display: block;
  background: rgba(29, 158, 117, 0.15);
  border: 1px solid #1d9e75;
  color: #5dcaa5;
}

.alert.error {
  display: block;
  background: rgba(226, 75, 74, 0.15);
  border: 1px solid #e24b4a;
  color: #f09595;
}

/* Loader en botón */
.loader {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── SUCCESS SCREEN ─── */
.agendado-icon {
  display: block;
  margin: 0 auto;
}


.sesion-details {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
  border-radius: 15px;
  max-width: 640px;
  margin: 0 auto;
  padding: 25px;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.1);
}

.sesion-detail-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: flex-start;
  height: 70px;
  max-width: 320px;
}

.sesion-detail-item h3 {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 0.9em;
  color: #4A4969;
  width: 170px;
  text-align: center;
  padding-top: 8px;
}

.sesion-detail-item h3.duration {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 0.8em;
  color: #4A4969;
  max-width: 170px;
  text-align: center;
  padding: 0px;
}

.agendado-icon {
  display: block;
  margin: 0 auto;
  height: 100px;
}

.sesion-detail-item img {
  height: 47px;
  width: auto;
  padding-right: 20px;
}

.emailtag {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 0.9em;
  color: #6728af;
  text-align: center;
  padding: 0px;
}

.mt-25-mobile {
  margin-top: 25px;
}


/* ─── BREAKPOINTS ─── */
@media (min-width: 600px) {

  /* ─── CALENDAR ─── */
  .calendar-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    width: 400px;
    padding: 15px 30px 30px 30px;
  }

  .calendar-grid > *:nth-child(7n+6),
  .calendar-grid > *:nth-child(7n+7) {
    color: #979797;
  }

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

  .hero-main h1 {
    font-family: "Chakra Petch", sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #6728af;
    font-size: 2.5em;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .hero-main-success {
    text-align: center;
  }

  .agendado-icon {
    display: block;
    margin: 0 auto;
    height: 100px;
  }

  .hero-main-success h1 {
    font-family: "Chakra Petch", sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #6728af;
    font-size: 2.2em;
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: 530px;
    display: block;
    text-align: center;
    margin: 0 auto;
    line-height: 37px;
  }

  .sesion-details {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    border-radius: 15px;
    max-width: 640px;
    margin: 0 auto;
    padding: 25px;
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.1);
  }

  .sesion-detail-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    height: 85px;
  }

  .sesion-detail-item img {
    height: 47px;
    width: auto;
    padding-right: 0;
  }

  .sesion-detail-item h3 {
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 0.8em;
    color: #4A4969;
    max-width: 160px;
    text-align: center;
    padding-top: 8px;
  }

  .sesion-detail-item h3.duration {
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 0.8em;
    color: #4A4969;
    max-width: 160px;
    text-align: center;
    padding: 0px;
  }

  .emailtag {
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 0.9em;
    color: #6728af;
    text-align: center;
    padding: 0px;
  }

  .day-sessions-container {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 5px 10px 5px;
    background-color: #ffffff;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;

    max-width: 340px;
    width: 340px;

    position: relative;
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: height 0.3s ease-out;
  }

  .success-footer {
    max-width: 640px;
    margin: 0 auto;
    padding-top: 21px;
  }

  .mt-25-mobile {
    margin-top: 0px;
  }
}

@media (min-width: 960px) {
  .burger-btn {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

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

  .nav-bar {
    padding: 24px 76px
  }

  .hero {
    padding: 48px 36px 56px;
  }

  main {
    padding: 21px 36px 64px;
  }
}