:root {
  --fm-orange: #ff9f06;
  --fm-blue: #14aaf5;
  --fm-green-soft: #eef9f2;
  --fm-dark: #07111f;
  --fm-ink: #1b2330;
  --fm-muted: #7b8595;
  --fm-line: #e8edf3;
  --fm-soft: #f5f9fd;
}

.fm-home {
  background: #fff;
  color: var(--fm-ink);
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 13px;
}

.fm-home .container,
.fm-header .container {
  max-width: 1180px;
}

.fm-section {
  padding: 28px 0 0;
}

.fm-hero-section {
  padding: 42px 0 20px;
}

.fm-hero-banner {
  min-height: 230px;
  overflow: hidden;
  background: #111;
  border-radius: 2px;
}

.fm-hero-intro {
  height: 100%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--fm-orange);
  color: #fff;
  padding: 34px 35px;
}

.fm-hero-intro h2,
.fm-hero-copy h1 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.fm-hero-intro p,
.fm-hero-copy p {
  max-width: 440px;
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.7;
  opacity: .92;
  color: #fff;
}

.fm-btn-outline-light {
  width: max-content;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 3px;
  color: #fff;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
}

.fm-hero-visual {
  position: relative;
  height: 100%;
  min-height: 230px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #101010;
}

.fm-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .3));
}

.fm-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-hero-copy {
  position: relative;
  z-index: 2;
  padding: 32px 42px;
}

.fm-hero-dots {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 14px;
  display: flex;
  gap: 5px;
}

.fm-hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
}

.fm-hero-dots .fm-active {
  background: #fff;
}

.fm-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.fm-title-left {
  justify-content: flex-start;
}

.fm-title-row h2 {
  margin: 0;
  color: var(--fm-ink);
  font-size: 15px;
  font-weight: 800;
}

.fm-title-row h2 span {
  color: var(--fm-orange);
}

.fm-title-row p {
  margin: 5px 0 0;
  color: var(--fm-muted);
  font-size: 12px;
}

.fm-filter-pills,
.fm-filters,
.fm-country-list,
.fm-plan-list,
.fm-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fm-pill {
  border: 1px solid #ffd493;
  border-radius: 3px;
  background: #fff;
  color: var(--fm-orange);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.fm-pill.fm-active {
  background: var(--fm-orange);
  color: #fff;
}

.fm-gig-card,
.fm-review-card,
.fm-promo-card,
.fm-freelancer-card,
.fm-profile-card,
.fm-blog-card {
  height: 100%;
  border: 1px solid var(--fm-line);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(20, 30, 45, .035);
}

.fm-card-image {
  position: relative;
  height: 132px;
  background: #eef2f6;
  overflow: hidden;
}

.fm-card-image img,
.fm-blog-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fm-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #9aa3af;
  font-size: 11px;
}

.fm-gig-card .card-body {
  padding: 13px 13px 12px;
}

.fm-user-line {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7d8795;
  font-size: 11px;
  margin-bottom: 8px;
}

.fm-user-line img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.fm-gig-card h3 {
  min-height: 42px;
  margin: 0 0 12px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.fm-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d97a6;
  font-size: 11px;
}

.fm-card-meta strong {
  color: #101722;
  font-weight: 800;
}

.fm-review-card {
  padding: 20px 18px;
  text-align: center;
}

.fm-review-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
}

.fm-rating {
  margin-bottom: 8px;
  color: var(--fm-orange);
  font-size: 11px;
  font-weight: 800;
}

.fm-review-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.fm-review-card p,
.fm-promo-card p {
  margin: 0 0 13px;
  color: var(--fm-muted);
  font-size: 12px;
  line-height: 1.55;
}

.fm-text-link {
  color: var(--fm-orange);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.fm-promo-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  padding: 22px 0 22px 24px;
  background: #fff7ec;
}

.fm-promo-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.fm-promo-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.fm-filters {
  color: #9aa3af;
  font-size: 11px;
}

.fm-filters span,
.fm-filters a {
  color: #9aa3af;
  text-decoration: none;
}

.fm-freelancer-card,
.fm-profile-card {
  position: relative;
  padding: 22px 16px 18px;
  text-align: center;
}

.fm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 12px;
  background: #fff4dd;
  color: var(--fm-orange);
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 800;
}

.fm-freelancer-card img,
.fm-profile-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin: 8px auto 12px;
}

.fm-freelancer-card h3,
.fm-profile-card h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 800;
}

.fm-freelancer-card p,
.fm-profile-card p {
  margin: 0 0 12px;
  color: var(--fm-muted);
  font-size: 11px;
}

.fm-mini-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #8791a0;
  font-size: 10px;
}

.fm-btn-blue,
.fm-btn-orange {
  border: 0;
  border-radius: 3px;
  color: #fff;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 800;
}

.fm-btn-blue {
  background: var(--fm-blue);
}

.fm-btn-orange {
  background: var(--fm-orange);
}

.fm-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 28px;
  border-radius: 5px;
  background: var(--fm-dark);
  color: #b8c2cf;
}

.fm-feature-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  font-size: 11px;
  line-height: 1.5;
}

.fm-feature-strip i {
  grid-row: span 2;
  color: var(--fm-orange);
  font-size: 18px;
  margin-top: 2px;
}

.fm-feature-strip strong {
  color: #fff;
  font-size: 12px;
}

.fm-country-section {
  padding-top: 54px;
}

.fm-country-section h2,
.fm-profiles-section h2 {
  margin: 0 0 8px;
  color: var(--fm-orange);
  font-size: 26px;
  font-weight: 800;
}

.fm-profiles-section h2 span {
  color: var(--fm-blue);
}

.fm-country-section p,
.fm-business-section>.container>p,
.fm-profiles-section>.container>p {
  max-width: 540px;
  margin: 0 auto 23px;
  color: var(--fm-muted);
  font-size: 13px;
  line-height: 1.65;
}

.fm-country-search {
  width: min(540px, 100%);
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 18px;
  border: 1px solid var(--fm-line);
  border-radius: 24px;
  background: #fff;
  padding: 0 16px;
  color: #9aa3af;
}

.fm-country-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 12px;
}

.fm-country-search button {
  border: 0;
  background: transparent;
  color: #9aa3af;
}

.fm-country-list {
  justify-content: center;
  gap: 13px;
}

.fm-country-list span {
  min-width: 82px;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: #fff;
  padding: 8px 14px;
  color: #465266;
  font-size: 11px;
  font-weight: 800;
}

.fm-course-banner {
  min-height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(8, 14, 22, .65), rgba(8, 14, 22, .65)), url("../images/banner/hero-banner-bg-1.jpg") center/cover;
}

.fm-course-banner span,
.fm-kicker {
  color: var(--fm-orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.fm-course-banner h2 {
  margin: 3px 0 8px;
  font-size: 27px;
  font-weight: 800;
}

.fm-course-banner p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.fm-course-banner form,
.fm-newsletter-box form {
  width: min(520px, 90%);
  display: flex;
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}

.fm-course-banner input,
.fm-newsletter-box input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 0;
  outline: 0;
  padding: 0 15px;
  font-size: 12px;
}

.fm-course-banner button,
.fm-newsletter-box button {
  border: 0;
  background: var(--fm-orange);
  color: #fff;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
}

.fm-business-section {
  padding: 66px 0 48px;
}

.fm-business-section h2 {
  margin: 7px 0 9px;
  font-size: 23px;
  font-weight: 800;
}

.fm-business-tool {
  max-width: 270px;
  margin: 20px auto 0;
  color: var(--fm-muted);
}

.fm-business-tool i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border: 1px solid #ffe1ac;
  border-radius: 4px;
  color: var(--fm-orange);
  font-size: 18px;
}

.fm-business-tool h3 {
  margin: 0 0 7px;
  color: var(--fm-ink);
  font-size: 13px;
  font-weight: 800;
}

.fm-business-tool p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.fm-profiles-section {
  padding: 56px 0;
  background: var(--fm-soft);
}

.fm-profile-card {
  padding-top: 28px;
}

.fm-profile-card strong {
  color: var(--fm-orange);
  font-size: 16px;
  font-weight: 800;
}

.fm-profiles-section .fm-btn-orange {
  margin-top: 30px;
}

.fm-social-section {
  padding-bottom: 52px;
}

.fm-plan-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  border: 1px solid #e4edf7;
  border-radius: 3px;
  background: #f2f8ff;
  padding: 28px 34px;
}

.fm-plan-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
}

.fm-plan-card h3 i {
  color: var(--fm-blue);
}

.fm-plan-card p {
  margin: 0 0 10px;
  color: var(--fm-muted);
  font-size: 12px;
}

.fm-plan-list span {
  color: #516073;
  font-size: 11px;
  font-weight: 700;
}

.fm-plan-price {
  text-align: right;
}

.fm-plan-price strong {
  display: block;
  color: var(--fm-blue);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.fm-plan-price span {
  display: block;
  margin-bottom: 12px;
  color: #8c96a5;
  font-size: 11px;
}

.fm-tabs {
  gap: 25px;
  margin: 24px 0 20px;
  border-bottom: 1px solid var(--fm-line);
}

.fm-tabs a {
  padding-bottom: 12px;
  color: #687386;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.fm-tabs a.fm-active {
  color: var(--fm-orange);
  border-bottom: 2px solid var(--fm-orange);
}

.fm-blog-card>img {
  height: 190px;
}

.fm-blog-card .card-body {
  padding: 16px;
}

.fm-blog-card h3 {
  min-height: 40px;
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.fm-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d97a6;
  font-size: 11px;
}

.fm-blog-meta a {
  color: var(--fm-orange);
  font-weight: 700;
  text-decoration: none;
}

.fm-upgrade {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  border: 1px solid var(--fm-line);
  border-radius: 3px;
  padding: 16px 21px;
  color: #667286;
  font-size: 12px;
}

.fm-newsletter-section {
  padding: 0 0 70px;
}

.fm-newsletter-box {
  min-height: 262px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(106, 65, 85, .38), rgba(106, 65, 85, .38)), url("../images/footer-bg-1.jpg") center/cover;
}

.fm-newsletter-box h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .fm-card-image {
    height: 148px;
  }
}

@media (max-width: 991px) {
  .fm-hero-section {
    padding-top: 24px;
  }

  .fm-feature-strip,
  .fm-plan-card {
    grid-template-columns: 1fr 1fr;
  }

  .fm-plan-price {
    text-align: left;
  }
}

@media (max-width: 767px) {

  .fm-title-row,
  .fm-upgrade {
    align-items: flex-start;
    flex-direction: column;
  }

  .fm-feature-strip,
  .fm-plan-card,
  .fm-promo-card {
    grid-template-columns: 1fr;
  }

  .fm-feature-strip {
    gap: 18px;
  }

  .fm-course-banner h2,
  .fm-country-section h2,
  .fm-profiles-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {

  .fm-hero-copy,
  .fm-hero-intro {
    padding: 28px 22px;
  }

  .fm-course-banner form,
  .fm-newsletter-box form {
    flex-direction: column;
  }

  .fm-course-banner button,
  .fm-newsletter-box button {
    height: 40px;
  }
}
