/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 09 2026 | 20:03:59 */
/* =========================================
   GLOBAL
========================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;

  font-family: Georgia, serif;

  background: #f8f8f6;
  color: #2f2f2f;
}

body {
  line-height: 1.4;
}

img {
  display: block;
  max-width: 100%;
}

a {
  transition: all 0.3s ease;
}

.mf-site,
.mf-bottom,
.mf-header,
.mf-categories,
.mf-newsletter,
.mf-footer,
.mf-hero {
  width: 100%;
  max-width: 100%;
}

/* =========================================
   HEADER
========================================= */

.mf-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
}

/* TOP */

.mf-topbar {
  width: 100%;
  padding: 22px 2% 0;
}

.mf-center {
  text-align: center;
}

/* LOGO */

.mf-logo {
  font-size: 66px;
  letter-spacing: 4px;
  line-height: 1;
  font-weight: normal;
}

/* TAGLINE */

.mf-tagline {
  margin-top: 10px;

  font-size: 22px;
  font-style: italic;

  color: #7890a8;
}

/* =========================================
   NAVIGATION
========================================= */

.mf-nav {

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 56px;

  padding: 26px 20px 22px;

  font-size: 11px;
  letter-spacing: 2px;
}

.mf-nav a {
  position: relative;

  text-decoration: none;
  color: #2f2f2f;
}

.mf-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #7890a8;

  transition: width 0.3s ease;
}

.mf-nav a:hover {
  color: #7890a8;
}

.mf-nav a:hover::after {
  width: 100%;
}

/* =========================================
   HERO
========================================= */

.mf-hero {
  position: relative;

  width: 100vw;
  height: 610px;

  overflow: hidden;
}

/* IMAGE */

.mf-hero-image {
  position: absolute;
  inset: 0;
}

.mf-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

/* OVERLAY */

.mf-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(255,255,255,0.04);
}

/* HERO CONTENT */

.mf-hero-content {
  position: relative;
  z-index: 5;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */

.mf-card {

  width: 430px;

  background: rgba(255,255,255,0.94);

  padding: 50px 44px;

  text-align: center;

  box-shadow:
    0 18px 60px rgba(0,0,0,0.08);
}

/* TITLE */

.mf-card h1 {
  margin: 0 0 16px;

  font-size: 56px;
  line-height: 1.08;
  font-weight: normal;
}

/* DIVIDER */

.mf-divider {
  width: 56px;
  height: 2px;

  margin: 22px auto;

  background: #7890a8;
}

/* TEXT */

.mf-card p {
  margin-bottom: 30px;

  font-size: 12px;
  line-height: 2;
  letter-spacing: 3px;
}

/* BUTTON */

.mf-button {
  display: inline-block;

  padding: 15px 30px;

  background: #7890a8;
  color: #fff;

  text-decoration: none;

  font-size: 11px;
  letter-spacing: 2px;
}

.mf-button:hover {
  background: #5f7589;
}

/* =========================================
   CATEGORIES
========================================= */

.mf-categories {
  width: 100%;

  padding: 42px 2.5% 44px;

  background: #fff;
}

/* GRID */

.mf-category-grid {

  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 24px;
}

/* CARD */

.mf-category {
  text-align: center;
}

/* IMAGE */

.mf-category img {
  width: 100%;
  height: 250px;

  object-fit: cover;

  margin-bottom: 14px;
}

/* TITLE */

.mf-category h3 {
  margin-bottom: 8px;

  font-size: 14px;
  font-weight: normal;

  letter-spacing: 2px;
}

/* TEXT */

.mf-category p {
  margin-bottom: 12px;

  font-size: 12px;
  line-height: 1.7;

  color: #666;
}

/* LINK */

.mf-category a {
  text-decoration: none;

  color: #7890a8;

  font-size: 10px;
  letter-spacing: 1px;
}

.mf-category a:hover {
  text-decoration: underline;
}

/* =========================================
   NEWSLETTER
========================================= */

.mf-newsletter {

  position: relative;

  min-height: 260px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background: #edf3f6;
}

/* IMAGE */

.mf-newsletter-image {
  position: absolute;
  inset: 0;
}

.mf-newsletter-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* CONTENT */

.mf-newsletter-content {

  position: relative;
  z-index: 5;

  padding-left: 4%;

  max-width: 520px;
}

/* TITLE */

.mf-newsletter-content h2 {
  margin-bottom: 12px;

  font-size: 42px;
  line-height: 1.1;
  font-weight: normal;
}

/* TEXT */

.mf-newsletter-content p {
  margin-bottom: 20px;

  font-size: 14px;
  line-height: 1.8;
}

/* FORM */

.mf-newsletter-form {
  display: flex;
  gap: 10px;
}

.mf-newsletter-form input {

  width: 240px;

  padding: 14px;

  border: none;

  font-size: 12px;
  font-family: inherit;
}

.mf-newsletter-form button {

  padding: 14px 20px;

  border: none;

  background: #7890a8;
  color: #fff;

  font-size: 11px;
  letter-spacing: 1px;

  cursor: pointer;
}

.mf-newsletter-form button:hover {
  background: #5f7589;
}

/* =========================================
   FOOTER
========================================= */

.mf-footer {

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 3%;

  background: #fff;

  font-size: 10px;
  letter-spacing: 1px;
}

/* LINKS */

.mf-footer-links {
  display: flex;
  gap: 24px;
}

.mf-footer-links a {
  text-decoration: none;
  color: #2f2f2f;
}

.mf-footer-links a:hover {
  color: #7890a8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .mf-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-logo {
    font-size: 52px;
  }

  .mf-card h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {

  .mf-nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .mf-hero {
    height: 520px;
  }

  .mf-card {
    width: 82%;
    padding: 34px;
  }

  .mf-card h1 {
    font-size: 38px;
  }

  .mf-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mf-newsletter {
    min-height: 320px;
  }

  .mf-newsletter-content {
    padding: 36px;
  }

  .mf-footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 500px) {

  .mf-logo {
    font-size: 34px;
  }

  .mf-tagline {
    font-size: 14px;
  }

  .mf-nav {
    gap: 12px;
    font-size: 10px;
  }

  .mf-hero {
    height: 460px;
  }

  .mf-card {
    width: 88%;
    padding: 28px;
  }

  .mf-card h1 {
    font-size: 30px;
  }

  .mf-category-grid {
    grid-template-columns: 1fr;
  }

  .mf-newsletter-form {
    flex-direction: column;
  }

  .mf-newsletter-form input {
    width: 100%;
  }

  .mf-newsletter-content h2 {
    font-size: 32px;
  }
}