@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");
/* ============================================
   Lifeskills Link API - Developer Portal
   Container: 1200px | Primary: #10BFD5 → #27E9FF
   ============================================ */

:root {
  --primary-color: #25e6fc;
  --primary-start: #10bfd5;
  --primary-end: #27e9ff;
  --primary-gradient: linear-gradient(135deg, #10bfd5 0%, #27e9ff 100%);
  --text-gradient: linear-gradient(135deg, #34c2d8 0%, #138394 100%);
  --primary-light: rgba(16, 191, 213, 0.12);
  --dark-blue: #0f172a;
  --dark-blue-soft: #1e293b;
  --dark-blue-hero: #0c1222;
  --hero-bg: #1b2a41;
  --grid-line: rgba(16, 191, 213, 0.15);
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
}
/* ----- Header ----- */
.site-header {
  padding: 20px 0;
  top: 0;
  z-index: 100;
  background-color: #b7b7b766;
  background-size: cover;
  background-repeat: no-repeat;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}
.toogle-button {
  width: 32px;
  height: 32px;
  background: #46c8d7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-links span {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #676767;
}

header nav {
  cursor: pointer;
  float: right;
}
header .menu {
  color: #46c8d7;
  font-size: 13px;
  text-align: right;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  background: #46c8d7;
  width: 60px;
  height: 60px;
  padding: 5px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: scale(0.6) rotate(0deg);
  transform: scale(0.6) rotate(0deg);
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
.dotted-dropdown {
  position: absolute;
  top: 50%;
  left: 50%;
}
.dotted-icon {
  height: 48px;
  width: 48px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
  -webkit-transform: translate3d(-50%, -50%, 0px);
  transform: translate3d(-50%, -50%, 0px);
}
#dotted-dropdown:checked + .dotted-dropdown:after {
  background: none;
  -webkit-box-shadow:
    -18px -18px 0 0 transparent,
    -12px 6px 0 0 #fff,
    18px -18px 0 0 transparent,
    -6px 0px 0 0 #fff,
    6px 0px 0 0 #fff,
    -18px 18px 0 0 transparent,
    0px -6px 0 0 #fff,
    18px 18px 0 0 transparent,
    12px 6px 0 0 #fff;
  box-shadow:
    -18px -18px 0 0 transparent,
    -12px 6px 0 0 #fff,
    18px -18px 0 0 transparent,
    -6px 0px 0 0 #fff,
    6px 0px 0 0 #fff,
    -18px 18px 0 0 transparent,
    0px -6px 0 0 #fff,
    18px 18px 0 0 transparent,
    12px 6px 0 0 #fff;
}
nav:hover .dotted-dropdown:after {
  background: none;
  -webkit-box-shadow:
    -18px -18px 0 0 transparent,
    -12px -6px 0 0 #fff,
    18px -18px 0 0 transparent,
    -6px 0px 0 0 #fff,
    6px 0px 0 0 #fff,
    -18px 18px 0 0 transparent,
    0px 6px 0 0 #fff,
    18px 18px 0 0 transparent,
    12px -6px 0 0 #fff;
  box-shadow:
    -18px -18px 0 0 transparent,
    -12px -6px 0 0 #fff,
    18px -18px 0 0 transparent,
    -6px 0px 0 0 #fff,
    6px 0px 0 0 #fff,
    -18px 18px 0 0 transparent,
    0px 6px 0 0 #fff,
    18px 18px 0 0 transparent,
    12px -6px 0 0 #fff;
}
.dotted-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0px);
  transform: translate3d(-50%, -50%, 0px);
  height: 6px;
  width: 6px;
  background-color: #fff;
  -webkit-box-shadow:
    -12px -12px 0 0 #fff,
    0px -12px 0 0 #fff,
    12px -12px 0 0 #fff,
    -12px 0px 0 0 #fff,
    12px 0px 0 0 #fff,
    -12px 12px 0 0 #fff,
    0px 12px 0 0 #fff,
    12px 12px 0 0 #fff;
  box-shadow:
    -12px -12px 0 0 #fff,
    0px -12px 0 0 #fff,
    12px -12px 0 0 #fff,
    -12px 0px 0 0 #fff,
    12px 0px 0 0 #fff,
    -12px 12px 0 0 #fff,
    0px 12px 0 0 #fff,
    12px 12px 0 0 #fff;
  -webkit-transition: -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dotted-icon {
  height: 48px;
  width: 48px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
  -webkit-transform: translate3d(-50%, -50%, 0px);
  transform: translate3d(-50%, -50%, 0px);
}
.dotted-icon-checkbox {
  position: fixed;
  top: 0px;
  left: 0px;
  opacity: 0;
}
.side-nav.open-menu {
  top: 60px;
  height: auto;
  opacity: 1;
  visibility: visible;
  border-radius: 7px;
  z-index: 999;
}
.side-nav.open-menu {
  top: 60px;
  height: auto;
  opacity: 1;
  visibility: visible;
  border-radius: 7px;
}
.side-nav.open-menu {
  overflow: hidden;
}
.dropdown-menu.show {
  animation: fade-in2 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.dropdown-menu.show {
  display: block;
}
.side-nav .dropdown-menu {
  transform: unset !important;
  background: #7ae1ed5c;
  margin: 0;
  padding: 0;
  min-width: 100%;
  position: static !important;
  box-shadow: unset;
  width: 100% !important;
  border: unset;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-menu,
.popover {
  position: fixed !important;
  z-index: 50;
  left: 5% !important;
  top: 50% !important;
  width: 90% !important;
  transform: translateY(-50%) !important;
  min-width: 10px !important;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 15rem;
  padding: 0.65rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.88rem;
  color: #495057;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
aside.side-nav {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  width: 220px;
  position: absolute;
  top: 100px;
  right: 20px;
  -webkit-transition: all 0.84s;
  transition: all 0.84s;
  z-index: 99;
}
header nav span {
  color: #676767;
}
.side-nav .side-logo {
  padding: 0;
}
aside .side-logo {
  padding: 15px 30px;
  background: #0b89b3;
  border-radius: 7px;
}
aside .side-logo {
  padding: 15px 30px;
  background: #0b89b3;
  border-radius: 7px;
}
.side-nav.open-menu {
  top: 60px;
  height: auto;
  opacity: 1;
  visibility: visible;
  border-radius: 7px;
}
.side-nav.open-menu {
  overflow: hidden;
}
.side-nav .side-logo .side-nav a {
  padding: 10px 30px;
  color: #fff;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 240px;
  display: block;
}
aside .side-nav a {
  display: block;
  padding: 10px 0px 5px;
  font-size: 13px;
  color: #fff;
  border-bottom: 1px solid #2690f6;
  transition: all 0.34s;
}
.side-nav li .main-drop {
  background: transparent !important;
}
.side-nav li {
  list-style: none;
}
.side-nav .dropdown-menu > li > a:hover,
.side-nav .dropdown-menu > li > a:focus,
.side-nav .side-logo .side-nav a:hover {
  background-color: #46c8d7 !important;
  color: #fff;
}
.inner-container {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  font-family: "Open Sans", sans-serif;
}
.features-banner_inner {
  background-image: url("/files/images/features/banner-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 20px;
  background-position: center;
  padding-block: 115px;
  border-radius: 20px;
  position: relative;
}

.features-banner {
  display: flex;
  justify-content: center;
}

.features-banner__title {
  background:
    linear-gradient(90.28deg, #10bfd5 1.07%, #27e9ff 99.8%),
    linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Open Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  padding-inline: 10px;
  letter-spacing: 0px;
  text-align: center;
  margin: 0;
}

.features-banner__logo {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: -55px;
  top: auto;
  background: #1cb3c4;
  border: 8px solid #f1feff;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
/* Block */
.popular-tags {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  justify-content: center;
}

/* Title */
.popular-tags__title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}

/* List */
.popular-tags__list {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

/* Tag Button */
.popular-tags__tag {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #101828;
  background: #f8fafd;
  font-size: 16px;
  color: #101828;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Open Sans";
}

/* Hover */
.popular-tags__tag:hover {
  background-color: #c8f1f4;
  border-color: #1cb2c4;
}

/* Active Modifier */
.popular-tags__tag--active {
  background: #c8f1f4;
  border-color: #1cb2c4;
  color: #1cb2c4;
  position: relative;
}

.popular-tagg-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.popular-tags__tag--active {
  background-image: url("/files/images/features/check-active.svg");
  background-repeat: no-repeat;
  background-position: left 8px center;
  padding-left: 30px;
}
/* Cards Wrapper */
.popular-tags__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  margin-block: 50px;
}

/* No features empty state */
.no-features-found {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(16, 191, 213, 0.35);
}

.no-features-found__illustration {
  width: 160px;
  height: 128px;
  margin-bottom: 24px;
  color: var(--primary-start);
}

.no-features-found__illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no-features-found__title {
  margin: 0 0 8px;
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.no-features-found__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.5;
}

/* Single Card */
.popular-tags__card {
  background: #edf2fa;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  padding: 30px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.popular-tags__card:hover {
  transform: translateY(-4px);
}

/* Image */
.popular-tags__card-image-wrapper {
  width: 100%;
  overflow: hidden;
  background: #f3feff;
  padding: 26px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  height: 210px;
}
.popular-tags__card-image-wrapper .popular-tags__card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}
.popular-tags__card-image-wrapper .new-btn {
    position: absolute;
    background: #1cb3c4;
    color: #fff;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 15px;
    top: 20px;
    right: 22px;
}

.popular-tags__card-image-wrapper .new-btn:hover {
    text-decoration: none;
    background: #178c9e;
}
/* Content */
.popular-tags__card-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-block-start: 16px;
  flex-direction: column;
  gap: 16px;
}

.popular-tags__card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Action Button */
.popular-tags__card-action {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #46c8d7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-left: auto;
}
.popular-tags__card-action:hover {
  background: #178c9e;
}
.popular-tags__card-icon {
  width: 18px;
  height: 18px;
}
.popular-tags-card__tags .popular-tags__tag {
  padding: 6px 14px;
  border: 1px solid #0ba8bc;
  background: #e2f8fb;
  font-size: 14px;
  border-radius: 8px;
  color: #0ba8bc;
}
.popular-tags__card-title {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
}

.popular-tags__card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0px;
  color: #364153;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* Modal Base */
.pt-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

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

/* Overlay */
.pt-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.pt-modal__container {
  position: relative;
  background: var(--white);
  max-width: 1200px;
  border-radius: 20px;
  padding: 30px;
  z-index: 2;
  margin: 20px;
  animation: ptFadeIn 0.3s ease;
}

.pt-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #43494b;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
.pt-modal__close img {
  display: inline-block;
  transition: transform 0.3s ease;
}

.pt-modal__close:hover img {
  animation: spin 1s linear 0.5;
}

.pt-modal__content {
    display: grid;
    gap: 30px;
    align-items: center;
    grid-template-columns: 1fr;
    max-width: 846px;
    margin: auto;
}

.pt-modal__tags {
  margin-bottom: 20px;
}

.pt-modal__tag {
  display: inline-block;
  background: #e0f4f6;
  color: #1e9fb3;
  padding: 6px 14px;
  border-radius: 8px;
  margin-right: 8px;
  font-family: Open Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
}

/* Title */
.pt-modal__title {
  margin-bottom: 10px;
  font-family: Open Sans;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #101828;
}

.pt-modal__description {
  margin-bottom: 20px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #364153;
}

.pt-modal__button {
  display: inline-flex;
  background: #00bcd4;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-family: Heebo;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

.pt-modal__button:hover {
  background: #00bcd4;
}
.pt-modal__image {
  /* padding: 40px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  /* background-image: url("/files/images/features/popup-bg.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 360px;
  position: relative;
  padding-block: 30px;
  background: #f8f8f8;
}
.pt-modal__content .full-screen-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    background: transparent;
    padding: 0;
}
.full-screen-button:focus{
  outline: none;
}
/* ----- Footer ----- */
.site-footer {
  position: relative;
  /* background: #2c4573; */
  color: var(--white);
  padding: 60px 0 0;
  overflow: hidden;
  background: url("/files/images/features/footer-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(105deg, rgba(16, 191, 213, 0.12) 1px, transparent 1px),
    linear-gradient(75deg, rgba(16, 191, 213, 0.08) 1px, transparent 1px),
    linear-gradient(15deg, rgba(16, 191, 213, 0.06) 1px, transparent 1px);
  background-size:
    32px 32px,
    24px 24px,
    40px 40px;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}

.footer-col {
  padding-top: 0;
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-students .footer-heading,
.footer-admin .footer-heading {
  margin-bottom: 12px;
}

.footer-students .footer-heading {
  text-align: left;
}

.footer-admin .footer-heading {
  text-align: right;
}

.footer-heading-line {
  width: 100%;
  max-width: 270px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-admin .footer-heading-line {
  margin-left: auto;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 14px;
  max-width: 280px;
  font-weight: 600;
}
.footer-contact-row span.call-text {
  color: #bdbcbc;
}
.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-contact-row:hover {
  color: var(--white);
}
.footer-contact-row:hover {
  text-decoration: none;
}

.footer-contact-row--reverse {
  flex-direction: row-reverse;
  margin-left: auto;
  max-width: 280px;
}
.footer-contact-row--reverse span {
  order: 2;
}
.footer-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  min-width: 24px;
}

.footer-students .footer-icon {
  color: #7dd3fc;
}

.footer-logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.footer-logo-img {
  display: block;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  min-width: 300px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: none;
}

.footer-logo-text .footer-logo-accent {
  color: #7dd3fc;
}

.footer-logo-text sup {
  font-size: 0.6em;
  vertical-align: top;
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.439216);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-bottom p a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.pt-modal__image img, .pt-modal__image video {
    display: block;
    border-radius: 20px;
    width: 100%;
    object-fit: contain;
    max-width: 300px;
    /* box-shadow: 0 4px 20px 0px #747474; */
}


/* Animation */
@keyframes ptFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive */

@media (max-width: 991px) {
  .popular-tags__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-heading-line {
    max-width: 160px;
  }
  .footer-logo-img {
    max-width: 240px;
    min-width: 240px;
  }
  .footer-heading-line {
    max-width: 160px;
  }
  .footer-logo-img {
    max-width: 240px;
    min-width: 240px;
  }
  .pt-modal__image{
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .container,
  .inner-container {
    padding: 0 15px;
  }
  .site-header {
    padding: 10px 0;
  }
  .logo img {
    width: 200px;
  }
  .nav-links .nav-link-login a {
    font-size: 14px;
    padding: 10px 20px;
  }
  .features-banner__title {
    font-size: 32px;
  }
  .pt-modal__content {
    flex-direction: column;
    text-align: center;
    display: flex;
    gap: 20px;
  }
  .features-banner_inner {
    padding-block: 55px;
  }
  .features-banner__logo {
    bottom: -40px;
    width: 75px;
    height: 75px;
    transform: translateX(-50%);
  }
  .features-banner__logo-image {
    max-width: 35px;
    height: auto;
  }
  .features-banner_inner {
    margin: 15px;
  }
  .popular-tags__card-action {
    width: 35px;
    height: 35px;
  }
  .pt-modal__image {
    padding: 20px;
    width: 100%;
  }
  .pt-modal__container {
    padding: 15px;
  }
  .popular-tags__card-icon {
    width: 15px;
    height: 15px;
  }
  .pt-modal__container {
    margin: 15px;
  }
  .popular-tags__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .popular-tags__card {
    padding: 15px;
  }
  .popular-tags__card-content {
    gap: 12px;
  }
  .popular-tags-card__tags .popular-tags__tag {
    padding: 5px 12px;
    font-size: 12px;
  }
  .pt-modal__close {
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
  }
  .pt-modal__close img {
    max-width: 12px;
  }
  .pt-modal__image img {
    max-width: 120px;
  }
  .popular-tagg-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-direction: column;
  }
  .popular-tags__list {
    gap: 8px;
    justify-content: center;
  }
  .popular-tags__tag {
    font-size: 14px;
  }
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-students .footer-heading {
    text-align: center;
  }
  .footer-heading-line {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact-row {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .site-footer .footer-inner .footer-logo {
    order: -1;
  }
  .footer-contact-row--reverse {
    flex-direction: row;
    max-width: 100%;
  }
  .footer-admin .footer-heading {
    text-align: center;
  }
  .footer-admin .footer-heading-line {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .footer-inner {
    padding-bottom: 50px;
  }
  .site-footer {
    padding-top: 50px;
  }
  .footer-heading-line {
    max-width: 100%;
  }
  header nav span {
    display: none;
  }
  .pt-modal__content .full-screen-button svg {
    width: 15px;
  } 
  .pt-modal__content .full-screen-button {
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 7px;
}
}

@media (max-width: 640px) {
  .site-header .hero__deco {
    display: none;
  }
  .site-header .hero__chips {
    gap: 8px;
  }
  .site-header .hero__chip {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .site-header .logo img {
    width: 140px;
  }
  .site-header .nav-links .nav-link-login a {
    font-size: 14px;
    padding: 9px 18px;
  }
  .site-header .nav-links .nav-link-login a svg {
    width: 20px;
  }
  .site-header .hero-title {
    font-size: 1.5rem;
  }
}
