@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
  font-family: var(--primary-font-family);
  font-size: var(--primary-font-size);
  background: #fff;
  color: var(--text-color);
}
..featured .badge{
    font-weight: 500;
}
/* HEADER */
.landing_header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  box-shadow: 0px 1px 8px 0px #A9A9A940;
}

.landing_header .logo {
  height: 32px;
}

.landing_header .navbar-light .navbar-toggler {
  border: none;
  padding: 0;
  align-self: center;
  height: 30px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 32px 16px;
}

.hero strong,
.complete_and_shine .title strong,
.testimonial .title strong {
  position: relative;
  color: var(--primary-color);
  text-transform: uppercase;
}

.hero strong svg,
.complete_and_shine .title strong svg,
.testimonial .title strong svg {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  width: 100%;
}

.hero-img {
  width: 80%;
  margin-top: 24px;
}

/* Why OnlyInterns */
.why_onlyinterns .card h3 {
  font-size: calc(var(--primary-font-size) + 4px);
  font-family: var(--secondary-font-family);
  margin-top: 12px;
}

.why_onlyinterns .card p {
  color: var(--para-light-color);
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.complete_and_shine .icon-card {
  background: #fff;
  padding: 28px 48px;
  border-radius: 8px;
  border-bottom: 1.5px solid var(--primary-color);
  margin-bottom: 8px;
}

/* dashboard_that */
.dashboard_that .list {
  text-align: left;
  margin: 16px 0;
  list-style: none;
}

.dashboard_that .list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* BADGES */
.verify_badge.soft_bg_gradient {
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(195, 212, 228, 1) 100%);

}

.verify_badge .badges .swiper-slide {
  transition: all 200ms linear;
  transform: scale(0.8);
}

.verify_badge .badges .swiper-slide-active {
  transform: scale(1);

}

.verify_badge .badges img {
  width: 100%;
}

/* TESTIMONIAL */
.testimonial .testimonial_slider .swiper-slide .cust_card {
  box-shadow: 0px 2.31px 13.88px 0px #F0F0F0CC;
  padding: 24px;
  margin: 5px;
  border-radius: 8px;
}

.testimonial_slider .swiper-button-next,
.swiper-button-prev {
  width: 26px;
  height: 26px;
  border-radius: 50px;
  box-shadow: 0px 2.17px 17.39px 2.61px #E5E5E5CC;
}

.testimonial_slider .swiper-button-next::after,
.swiper-button-prev::after {
  font-size: calc(var(--primary-font-size) - 2px);
  color: var(--text-color);
}

.testimonial_slider .user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* FOOTER */
.footer {
  padding: 16px;
  text-align: center;
}

footer nav {
  display: flex;
  justify-content: space-around;
  padding-bottom: 16px;
}

footer .menus {
  margin-bottom: 16px;
  border-bottom: 1px solid #F1F1F1;

}
.featured .badge {
    font-weight: 500 !important;
}

@media (min-width: 768px) {
  .landing_page {
    display: none;
  }

  .hide_screen {
    display: block;
  }
}

@media (max-width: 767px) {
  .hide_screen {
    display: none;
  }
}

@media (max-width: 991px) {
  .custom-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1051;
  }

  .custom-collapse.show {
    transform: translateX(0);
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1050;
  }

  .nav-overlay.show {
    display: block;
  }
}

@media (max-width: 441px) {
    .pricing-card {
    margin-bottom: 25px;
}
}