
/*
Theme Name: MM Group Corporate
Theme URI: https://mmgroup.org.bd
Author: Rezaul Islam
Description: Bootstrap 5 corporate construction theme for MM Group of Companies.
Version: 1.0
Text Domain: mmgroup
*/

:root{
  /*--primary:#C70705;*/
  --primary: #f77f00;
  --primary-hover: #e07401;
  --primary-button: #ffb703;
  --primary-button-hover: #FFF;
  --color-white: #FFF;
  --dark:#111;
  --mild-dark: #595959;
  --menu-black:#000;
  --muted:#f3f3f3;
  --font-sans: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  --barlow-font: 'Barlow', sans-serif;
  --primary-menu-font: 'Barlow' ;
  --primary-font: "PT Sans", "Barlow", "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;;
  --font-barlow-regular:'Barlow';
  --title-font:'Barlow';
  --font-oswald: 'Oswald';
  --font-geist-mono: "Geist Mono", monospace;
  --font-roboto: 'Roboto', sans-serif;
  --font-pt-sans: 'PT Sans', sans-serif;
  --spacing: .25rem;
}

body{
    /*background:#050505;*/
    color:var(--text);
    font-family: "PT Sans", Barlow, "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    line-height:1.6;
}
.general-container {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    display: block;
    /*padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 40px;*/
}

.general-container .container {
    max-width: 95% !important;
    padding-left: 0px;
    padding-right: 0px;
    border: 0px solid;
}
/*body {
    font-family: Arial, sans-serif;
    color: #0f172a;
}*/

.header-top {
    font-family: var(--barlow-font);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.65;
    letter-spacing: 0.15px;
}

.header-top a {
    color: #FFF;
    text-decoration: none;
}
.header-top a:hover {
    color: #f90;
    text-decoration: underline;
}
.header-top-inner {
    background-color: #F5F5F5;
    /*border-bottom: 1px solid #cacaca;*/
    font-family: var(--barlow-font);
    font-size: 14px;
    font-weight: 400;
    color: #505059;
    line-height: 1.65;
    letter-spacing: 0.15px;
}

.header-top-inner a {
    color: var(--primary);
    text-decoration: none;
}
.header-top-inner a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}


.header-top .top-right{
/*    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.15px;
    font-family: var(--barlow-font);
    font-weight: 400;
    color: #18181B;
    font-weight: 500;*/
}

.site-header.sticky-active .header-top {
    color: #050505;
}

.site-header.sticky-active .header-top a {
    color: #06F;
}

.site-header.sticky-active .header-top a:hover {
    color: #F60;
}
.site-header.sticky-active .header-top{
    height:0;
    padding:0;
    opacity:0;
}


/*
|--------------------------------------------------------------------------
| TOPBAR
|--------------------------------------------------------------------------
*/

.mm-topbar {
    padding: 10px 0;
    /*background: #F5F5F5;*/
    /*background: rgba(0,0,0,.15);*/
    /*backdrop-filter: blur(.3px);*/
}

.mm-topbar-inner {
    max-width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.mm-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
}

.mm-topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.mm-topbar a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: .3s ease;
}

.mm-topbar a:hover {
    color: var(--primary-hover);
}

.mm-topbar-text {
    color: var(--primary);
    font-size: 14px;
}

.mm-topbar-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mm-topbar-icon-link span {
    display: inline-block;
}

@media(max-width:991px){
    .mm-topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .mm-topbar-left,
    .mm-topbar-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

@media(max-width:991px){
    .mm-topbar-text,
    .mm-topbar-icon-link span {
        display: none;
    }
}

@media(max-width:991px){
    .mm-topbar-icon-link {
        font-size: 18px;
    }
}

/*
|--------------------------------------------------------------------------
| TOOLTIP
|--------------------------------------------------------------------------
*/

.mm-topbar-icon-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    pointer-events: none;
}

.mm-topbar-icon-link:hover::after {
    opacity: 1;
    visibility: visible;
}

@media(max-width:575px){
    .mm-topbar {
        padding: 8px 0;
    }
}

@media(max-width:991px){
    .mm-topbar-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mm-topbar-left,
    .mm-topbar-right {
        justify-content: center;
    }
}

@media(max-width:575px){
    .mm-topbar-left {
        flex-wrap: wrap;
        gap: 8px;
    }
    .mm-topbar-right {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media(max-width:991px){
    .mm-topbar-text {
        display: none;
    }
}

/*
|--------------------------------------------------------------------------
| HEADER GRID
|--------------------------------------------------------------------------
*/

.mm-header-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    /*gap: 30px;*/
    min-height: 90px;
}

.mm-header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.mm-header-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 0;
    overflow: hidden;
}

.title {
    font-family: var(--font-oswald);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.title-inner {
    font-family: var(--font-oswald);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #4f4f4f;
}

.title,
.title-inner {
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance;
}

.mm-header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.mm-header-nav .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media(max-width:1199px){
    .title,
    .title-inner {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
}

@media(max-width:991px){
    .mm-header-wrap {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
        min-height: 80px;
    }

    .mm-header-nav {
        display: none;
    }

    .mm-header-logo {
        justify-content: flex-start;
    }
}

@media(max-width:991px){
    .mm-header-logo {
        width: 100%;
        justify-content: space-between;
    }
}

/* LOGO */
.logo {
    max-width: 100%;
    height: auto;
}

.site-header.sticky-active .logo img{
    max-width:90%;
    height: auto;
}

@media(max-width: 575px) {
    .logo img, 
    .site-header.sticky-active .logo img {
        max-width: 70px;
        height: auto;
    }
}

.site-header.sticky-active .title {
    color: #4f4f4f;
    font-size: 2rem;
}

.site-header.sticky-active .navbar {
    padding: 0px;
}

.site-header.sticky-active #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #111 !important;
    text-transform: capitalize !important;
}
.site-header.sticky-active #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    color: #e07401 !important;
    text-transform: capitalize !important;
}

@media(max-width: 991px){
    .site-header.sticky-active #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
        color: #fff !important;
        text-transform: capitalize !important;
    }
    .site-header.sticky-active #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
        color: #e07401 !important;
        text-transform: capitalize !important;
    }
    .site-header.sticky-active .title {
      /*color: #4f4f4f;*/
      font-size: 1.4rem;
    }
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.navbar {
    transition: all .3s ease;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: transparent;    
    transition: all 0.3s ease;
    padding: 0;
    z-index: 9999;
}

.mm-inner-header-nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #111 !important;
    text-transform: capitalize !important;
}

.mm-inner-header-nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    color: #e07401 !important;
    text-transform: capitalize !important
}

@media(min-width:992px){
    .main-navigation{
        display:flex;
        justify-content:flex-end;
    }
    #mega-menu-wrap-primary{
        background-color: transparent;
        width:auto !important;
    }
}

@media(max-width:1199px){
    li.mega-menu-item {
        font-size: 14px !important;
    }
}

.navbar {
    padding: 0px 0;
    transition: all 0.3s ease;
}

.navbar-nav{
    align-items:center;
}

.navbar-nav .dropdown-menu {
  position: static;
  background-color: darkslategray;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:600;
    padding:10px 15px !important;
}

.navbar-nav .nav-link:hover{
    color:#f59e0b !important;
}

/* Sticky Active */

.site-header.sticky-active {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #111;
}

.site-header.sticky-active.title {
  color: #4f4f4f;
}

.navbar-brand {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
}

/* FORCE HORIZONTAL MENU */

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}

/* MENU ITEMS */

.navbar-nav .menu-item {
    display: flex;
    align-items: center;
}

/* LINKS */

.navbar-nav .nav-link {
    display: block;
    padding: 10px 15px !important;
}

/* MOBILE */

.navbar-toggler-icon {
    filter: invert(0);
}

@media(max-width:991px){
    .navbar-nav{
        flex-direction: column !important;
        align-items: flex-start !important;
        width:100%;
    }
    .navbar-nav .menu-item{
        width:100%;
    }
    .navbar-nav .nav-link{
        width:100%;
    }
}

/***************************************************/

/* Styling for the fly-out menu links */
.mobile-flyout-menu {
    list-style: none;
    padding: 0;
}

.mobile-flyout-menu li {
    /*border-bottom: 1px solid #333;*/
    text-align: left;
    padding: 12px 0;    
}

.mobile-flyout-menu li a {
    flex: 1 1 auto;
    min-width: 0px;
    font-family: var(--font-liberator-medium);
    font-size: 29px;
    font-weight: 300;
    /*line-height: 1.1;*/
    padding: 16px 32px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.mobile-flyout-menu li a:hover {
/*    flex: 1 1 auto;
    min-width: 0px;
    font-family: var(--font-liberator-medium);
    font-size: 29px;
    font-weight: 400;
    line-height: 1.1;
    padding: 16px 32px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);*/
}

/* Offcanvas width adjustment */
.offcanvas {
    width: 100% !important; /* Specific width like RC mobile menu */
}
.offcanvas-header .btn-close {
    color: #fff;
    margin-right: 20px;
}
.offcanvas-title {
    font-family: var(--font-liberator-medium);
    font-size: 16px;
    letter-spacing: 0.65px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(199, 7, 5);
    margin: 20px 20px;
}
.btn-close-white {
    padding: 10px;
    width: 80px !important;
    height: 80px !important;
}

.offcanvas .links {
    margin-top: 32px;
}
.offcanvas .utility { 
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    border-radius: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    color: inherit;
    display: flex;
    -moz-box-flex: 1;
    flex-grow: 1;
    -moz-box-pack: start;
    justify-content: flex-start;
    -moz-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    min-width: 0px;
    box-sizing: border-box;
    text-align: left;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 32px;
}
.offcanvas .top-nav { 
    flex: 1 1 auto;
    min-width: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
}

/********** Swiper Sliders ***************/
.mm-hero-slider {
    width: 100%;
    height: 98vh;
}

.mm-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.mm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.15)) ;
}

.mm-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 90%;
    padding: 90px 0 30px 0;
}

.mm-content h1 {
    font-family: var(--font-oswald);
    font-size: 4.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.mm-content p {
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.mm-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-button); /*#ffb703*/
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}

.mm-btn:hover {
    background: var(--primary-button-hover); /*#fff*/
    color: #000;
}

/* Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.mm-hero-slider .swiper-button-prev,
.mm-hero-slider .swiper-button-next {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.mm-hero-slider:hover .swiper-button-prev,
.mm-hero-slider:hover .swiper-button-next {
    opacity: 1;
    transform: translateX(0);
}

.swiper-pagination-bullet {
    background: #fff;
}

/*
|--------------------------------------------------------------------------
| INITIAL STATES
|--------------------------------------------------------------------------
*/

.mm-title,
.mm-subtitle,
.mm-button {
    opacity: 0;
}

/*
|--------------------------------------------------------------------------
| TITLE ANIMATION
|--------------------------------------------------------------------------
*/

.mm-title {
    transform: translateY(50px);
}

/*
|--------------------------------------------------------------------------
| SUBTITLE ANIMATION
|--------------------------------------------------------------------------
*/

.mm-subtitle {
    transform: translateY(50px);
}

/*
|--------------------------------------------------------------------------
| BUTTON ANIMATION
|--------------------------------------------------------------------------
*/

.mm-button {
    transform: translateY(30px);
}

/*
|--------------------------------------------------------------------------
| ACTIVE SLIDE ANIMATIONS
|--------------------------------------------------------------------------
*/

.swiper-slide-active .mm-title {
    animation: mmFadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

.swiper-slide-active .mm-subtitle {
    animation: mmFadeUp 1s ease forwards;
    animation-delay: 0.8s;
}

.swiper-slide-active .mm-button {
    animation: mmFadeUp 1s ease forwards;
    animation-delay: 1.2s;
}

/*
|--------------------------------------------------------------------------
| BACKGROUND IMAGE ZOOM
|--------------------------------------------------------------------------
*/

.mm-slide {
    overflow: hidden;
}

.mm-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background-image: inherit;*/
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 7s ease;
    z-index: 0;
}

.swiper-slide-active.mm-slide::before {
    transform: scale(1.1);
}

/*
|--------------------------------------------------------------------------
| REMOVE OLD BG IMAGE
|--------------------------------------------------------------------------
*/

.mm-slide {
    background-image: none !important;
}

/*
|--------------------------------------------------------------------------
| CONTENT LAYER
|--------------------------------------------------------------------------
*/

.mm-content {
    position: relative;
    z-index: 5;
}


/* Base hidden state */
.mm-animate {
    opacity: 0;
}

/* =========================
   FADE UP (default)
========================= */
.swiper-slide-active.anim-fade-up .mm-title,
.swiper-slide-active.anim-fade-up .mm-subtitle,
.swiper-slide-active.anim-fade-up .mm-button {
    animation: fadeUp 1s ease forwards;
}

.swiper-slide-active.anim-fade-up .mm-subtitle { animation-delay: 0.3s; }
.swiper-slide-active.anim-fade-up .mm-button { animation-delay: 0.6s; }

/* =========================
   ZOOM IN
========================= */
.swiper-slide-active.anim-zoom-in .mm-content {
    animation: zoomIn 1s ease forwards;
}

/* =========================
   SLIDE LEFT
========================= */
.swiper-slide-active.anim-left .mm-content {
    animation: slideLeft 1s ease forwards;
}

/* =========================
   SLIDE RIGHT
========================= */
.swiper-slide-active.anim-right .mm-content {
    animation: slideRight 1s ease forwards;
}

/* =========================
   FADE ONLY
========================= */
.swiper-slide-active.anim-fade .mm-content {
    animation: fadeOnly 1s ease forwards;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(1.2); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOnly {
    from { opacity: 0; }
    to   { opacity: 1; }
}



/*
|--------------------------------------------------------------------------
| KEYFRAMES
|--------------------------------------------------------------------------
*/

/*@keyframes mmFadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}*/

/* Responsive */
/* Tablet */
@media (max-width: 992px) {
    .mm-hero-slider {
        height: 60vh;
    }    
    .mm-content {
        padding: 40px;
        max-width: 100%;
        text-align: center;
    }
    .mm-content h1 {
        font-size: 3.6rem;
    }
    .mm-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mm-hero-slider {
        height: 70vh;
    }
    .mm-content {
        max-width: 100%;
        padding: 30px;
        text-align: center;
    }
    .mm-content h1 {
        font-size: 3rem;
        line-height: 1.3;
    }
    .mm-content p {
        font-size: 1.4rem;
    }
    .mm-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
    .mm-slide {
        justify-content: center;
    }
    /*.mm-overlay {
        background: rgba(0,0,0,0.65);
    }*/
}

/* Mobile */
@media (max-width: 576px) {
    .mm-hero-slider {
        height: 50vh;
    }
    .mm-content {
        max-width: 100%;
        padding: 20px;
        text-align: center;
    }
    .mm-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    .mm-content p {
        font-size: 0.7rem;
    }
    .mm-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    .mm-slide {
        justify-content: center;
    }
    /*.mm-overlay {
        background: rgba(0,0,0,0.65);
    }*/
}

/* Homepage History Section */
/*
|--------------------------------------------------------------------------
| SECTION
|--------------------------------------------------------------------------
*/

.mm-home-history-section {
    padding: 100px 0;
    background: #f8f8f8;
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.mm-home-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}


/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.mm-home-history-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*
|--------------------------------------------------------------------------
| SUBTITLE
|--------------------------------------------------------------------------
*/

.mm-home-history-subtitle {
    display: inline-block;
    color: #ffb703;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| TITLE
|--------------------------------------------------------------------------
*/

.mm-home-history-content h2 {
    color: #595959;
    font-family: var(--font-oswald);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| TEXT
|--------------------------------------------------------------------------
*/

.mm-home-history-text p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/*
|--------------------------------------------------------------------------
| STATS
|--------------------------------------------------------------------------
*/

.mm-home-history-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    margin: 40px 0;
}

/*
|--------------------------------------------------------------------------
| STAT ITEM
|--------------------------------------------------------------------------
*/

.mm-home-history-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/*
|--------------------------------------------------------------------------
| ICON
|--------------------------------------------------------------------------
*/

.mm-home-history-stat-icon {
    margin-bottom: 20px;
}

.mm-home-history-stat-icon svg {
    width: 42px;
    height: 42px;
    color: #ffb703;
    stroke-width: 1.8;
    transition: transform 0.4s ease;
}

.mm-home-history-stat:hover
.mm-home-history-stat-icon svg {
    transform: translateY(-5px);
}

/*
|--------------------------------------------------------------------------
| NUMBER
|--------------------------------------------------------------------------
*/

.mm-home-history-stat-number {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.mm-home-history-stat strong,
.mm-home-history-stat span {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| LABEL
|--------------------------------------------------------------------------
*/

.mm-home-history-stat small {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* svg icon background */

/*.mm-home-history-stat-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: rgba(255,183,3,0.12);

    display: flex;
    align-items: center;
    justify-content: center;
}*/

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.mm-home-history-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background: var(--primary-button);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: all 0.5s ease;
}

.mm-home-history-btn:hover {
    background: #111;
    color: #fff;
    transition: all 0.5s ease;    
}

/*
|--------------------------------------------------------------------------
| IMAGE
|--------------------------------------------------------------------------
*/

.mm-home-history-image {
    height: 100%;
}

.mm-home-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (min-width: 993px) {
    .mm-home-history-image {
        order: 1;
    }
    .mm-home-history-content {
        order: 2;
    }
}

@media (max-width: 992px) {
    .mm-home-history-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    /* reset order for natural flow */
    .mm-home-history-image,
    .mm-home-history-content {
        order: unset;
    }
}

@media (max-width: 576px) {

    .mm-home-history-section {
        padding: 70px 0;
    }
    .mm-home-history-content h2 {
        font-size: 34px;
    }
    .mm-home-history-stat {
        /*grid-template-columns: 1fr;*/
        text-align: center;
    }
}

/* History Page Section */

/*
|--------------------------------------------------------------------------
| SECTION
|--------------------------------------------------------------------------
*/

.mm-company-history-section {
    padding: 100px 0;
    background: #f8f8f8;
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.mm-company-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

/*
|--------------------------------------------------------------------------
| TIMELINE
|--------------------------------------------------------------------------
*/

.mm-company-timeline {
    position: relative;
    margin-top: 50px;
}

.mm-company-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

/*
|--------------------------------------------------------------------------
| ITEM
|--------------------------------------------------------------------------
*/

.mm-company-timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 50px;
}

/*
|--------------------------------------------------------------------------
| DOT
|--------------------------------------------------------------------------
*/

.mm-company-timeline-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffb703;
    z-index: 2;
}

/*
|--------------------------------------------------------------------------
| YEAR
|--------------------------------------------------------------------------
*/

.mm-company-timeline-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffb703;
    margin-bottom: 10px;
}

/*
|--------------------------------------------------------------------------
| TITLE
|--------------------------------------------------------------------------
*/

.mm-company-timeline-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

/*
|--------------------------------------------------------------------------
| TEXT
|--------------------------------------------------------------------------
*/

.mm-company-timeline-content p {
    color: #666;
    line-height: 1.8;
}

/*
|--------------------------------------------------------------------------
| IMAGE
|--------------------------------------------------------------------------
*/

.mm-company-history-image {
    height: 100%;
}

.mm-company-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {
    .mm-company-history-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {

    .mm-company-history-section {
        padding: 70px 0;
    }
    .mm-company-timeline-content h3 {
        font-size: 22px;
    }
}

/************************************************/
/* Homepage Service Section */

.mm-services-section {
    padding: 80px 0;
}

.mm-section-title,
.mm-section-subtitle {
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
}
.mm-section-title h2{
    color: #595959;
    font-family: var(--font-oswald);
    font-size: 60px;
    margin-bottom: 30px;
}
.mm-section-subtitle {
    color: #cacaca;
    /*font-family: var(--font-oswald);*/
    font-size: 18px;
    /*margin-bottom: 20px;*/
}

@media(max-width: 576px) {
    .mm-section-title h2{
        font-size: 34px;
    }
    .mm-section-subtitle {
        font-size: 16px;
    }
}

.mm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mm-service-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mm-service-image {
    position: relative;
    overflow: hidden;
}

.mm-service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Overlay */
.mm-service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: all 1.4s ease;
}

/* Hover Effects */
.mm-service-card:hover .mm-service-overlay {
    opacity: 1;
}

.mm-service-card:hover img {
    transform: scale(1.08);
}

/* Animated Button */
.mm-service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-button); /*#ffb703*/
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 13px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mm-service-card:hover .mm-service-btn {
    transform: translateY(0);
    opacity: 1;
}

.mm-service-btn:hover {
    background: #fff;
}

/* Content */
.mm-service-content {
    padding: 20px 0 25px 0;
}

.mm-service-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
}
.mm-service-content h3 a {
    color: #2A2F35;
    font-family: var(--barlow-font);
    text-decoration: none;
    text-transform: uppercase;
}
.mm-service-content h3 a:hover {
    color: #7A7F85;
    text-decoration: underline;
}

.mm-service-content p {
    color: #666;
    line-height: 1.6;
}

/*.mm-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}*/

/* Responsive */
@media (max-width: 992px) {

    .mm-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mm-services-grid {
        grid-template-columns: 1fr;
    }
}

/************************************/
/* Homepage About Section */

.mm-about-section {
    background: #0c0d0f;
    color: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.mm-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}


/* LEFT CONTENT */
.mm-about-content {
    max-width: 600px;
}

.mm-about-subtitle {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    gap: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.mm-about-subtitle span{
  width: 60px;
  height: 2px;
  background: #ffb703;
}

.mm-about-content .line {
    width: 60px;
    height: 2px;
    background: #ffb703;
}

.mm-about-content h2 {
    font-family: var(--font-oswald);
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.mm-about-content p {
    color: #8b9095;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.mm-about-btn {
    display: inline-block;
    padding: 10px 28px;
    /*background: #ffb703;*/
    background-color: color-mix(in oklab,var(--primary) 90%,transparent);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mm-about-btn:hover {
    background-color: color-mix(in oklab,var(--primary-hover) 90%,transparent);
}

/* FEATURES GRID */
.mm-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px 0;
}
.mm-about-certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

/*
|--------------------------------------------------------------------------
| Certifications
|--------------------------------------------------------------------------
*/

.mm-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mm-cert-item {
    width: 150px;
    height: 150px;
    background: #fff;
    /*border: 1px solid rgba(0,0,0,.08);*/
    /*border-radius: 8px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 10px;*/
    transition: .3s ease;
}

.mm-cert-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .3s ease;
}

.mm-cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.mm-certifications-header {
    margin-top: 30px;
    margin-bottom: 15px;
}

.mm-certifications-header h5 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-button);
}

@media (max-width: 767px) {

    .mm-certifications {
        justify-content: center;
    }

    .mm-cert-item {
        width: 110px;
        height: 110px;
    }
}


/* FEATURE ITEM */
.mm-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 2px solid var(--primary);
    padding-left: calc(var(--spacing) * 4);
}

/* ICON */
.mm-feature-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: #ffb703;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-feature-icon i {
    color: #000;
    font-size: 22px;
}

/* TEXT */
.mm-feature-text h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.0;
}

.mm-feature-text span {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .mm-about-features,
    .mm-about-certifications {
        grid-template-columns: 1fr;
    }
}

/* RIGHT IMAGE */

.mm-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* IMAGE HOVER */
.mm-about-image {
    overflow: hidden;
    height: 100%;
}

.mm-about-image img {
    transition: transform 0.6s ease;
}

.mm-about-image:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .mm-about-grid {
        grid-template-columns: 1fr;
    }
    .mm-about-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .mm-about-section {
        padding: 70px 0;
    }

    .mm-about-content h2 {
        font-size: 32px;
    }
}

/* Homepage Services Section */

/*
|--------------------------------------------------------------------------
| SECTION
|--------------------------------------------------------------------------
*/

.mm-homepage-services-section {
    padding: 100px 0;
    background: #fff;
}

/*
|--------------------------------------------------------------------------
| ROWS
|--------------------------------------------------------------------------
*/

.mm-homepage-services-row {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.mm-homepage-services-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mm-homepage-services-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/*
|--------------------------------------------------------------------------
| BOX
|--------------------------------------------------------------------------
*/

.mm-homepage-services-box {
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| IMAGE
|--------------------------------------------------------------------------
*/

.mm-homepage-services-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    /*transition: transform 0.6s ease;*/
}

/*
|--------------------------------------------------------------------------
| OVERLAY
|--------------------------------------------------------------------------
*/

.mm-homepage-services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
    transition: all 0.4s ease;
}

/*
|--------------------------------------------------------------------------
| TITLE
|--------------------------------------------------------------------------
*/

.mm-homepage-services-overlay h3 {
    color: #fff;
    font-family: var(--font-oswald);
    font-size: 24px;
    /*text-align: center;*/
    text-transform: uppercase;
    /*padding: 16px;*/
    line-height: 1.2;
    margin-bottom: 8px;
    /*transition: transform 0.4s ease;*/
}


/*
|--------------------------------------------------------------------------
| HOVER
|--------------------------------------------------------------------------
*/

.mm-homepage-services-box:hover
.mm-homepage-services-image {
    /*transform: scale(1.06);*/
}

.mm-homepage-services-box:hover
.mm-homepage-services-overlay {
    background: rgba(0,0,0,0.15);
}

.mm-homepage-services-box:hover
.mm-homepage-services-overlay h3 {
    /*transform: translateY(-5px);*/
}

.mm-homepage-services-box:hover
.mm-homepage-services-overlay a {
    color: var(--primary);
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {

    .mm-homepage-services-section {
        padding: 70px 0;
    }
    .mm-homepage-services-row-2,
    .mm-homepage-services-row-3 {
        grid-template-columns: 1fr;
    }

}
/*
|--------------------------------------------------------------------------
| READ MORE LINK
|--------------------------------------------------------------------------
*/



.mm-homepage-services-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    transition: all 0.3s ease;
}


/*
|--------------------------------------------------------------------------
| SHOW LINK ON HOVER
|--------------------------------------------------------------------------
*/

.mm-homepage-services-box:hover
.mm-homepage-services-link {
    opacity: 1;
    /*transform: translateY(0);*/
}

/*
|--------------------------------------------------------------------------
| LINK HOVER
|--------------------------------------------------------------------------
*/

.mm-homepage-services-link:hover {
    color: var(--primary);
}

/*.mm-homepage-services-arrow {
    transition: transform 0.3s ease;
    line-height: 1px;
}*/

.mm-homepage-services-arrow {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mm-homepage-services-box:hover
.mm-homepage-services-arrow {
    transform: translateX(3px);
}

/*.mm-homepage-services-link:hover {
    color: #ffb703;
}*/

@media (max-width: 576px) {

    .mm-homepage-services-overlay {
        padding: 25px;
    }

    .mm-homepage-services-overlay h3 {
        font-size: 28px;
    }
}


/*
|--------------------------------------------------------------------------
| REVEAL ANIMATION
|--------------------------------------------------------------------------
*/

.mm-reveal-up {
    opacity: 0;
    transform: translateY(60px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.mm-reveal-down {
    opacity: 0;
    transform: translateY(-60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

/*
|--------------------------------------------------------------------------
| ACTIVE STATE
|--------------------------------------------------------------------------
*/

.mm-reveal-up.mm-active {
    opacity: 1;
    transform: translateY(0);
}

.mm-reveal-down.mm-active {
    opacity: 1;
    transform: translateY(0);
}


.mm-delay-1 { transition-delay: 0.2s; }
.mm-delay-2 { transition-delay: 0.4s; }
.mm-delay-3 { transition-delay: 0.6s; }
.mm-delay-4 { transition-delay: 0.8s; }
.mm-delay-5 { transition-delay: 1.0s; }

/*
|--------------------------------------------------------------------------
| REVEAL LEFT
|--------------------------------------------------------------------------
*/

.mm-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.mm-reveal-left.mm-active {
    opacity: 1;
    transform: translateX(0);
}

/*
|--------------------------------------------------------------------------
| REVEAL RIGHT
|--------------------------------------------------------------------------
*/

.mm-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.mm-reveal-right.mm-active {
    opacity: 1;
    transform: translateX(0);
}


/*
|--------------------------------------------------------------------------
| SECTION
|--------------------------------------------------------------------------
*/

.mm-featured-projects-section {
    padding: 100px 0;
    background: #fff;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.mm-featured-projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.mm-featured-projects-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;

    /*margin-bottom: 20px;*/
}

.mm-featured-projects-subtitle span {
    width: 60px;
    height: 2px;
    background: #ffb703;
}

.mm-featured-projects-subtitle small {
    letter-spacing: 2px;
    font-weight: 700;
    /*color: #666;*/
}

.mm-featured-projects-header h2 {
    color: #595959;
    font-family: var(--font-oswald);
    font-size: 60px;
    line-height: 1.2;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| ALL PROJECTS LINK
|--------------------------------------------------------------------------
*/

.mm-featured-projects-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.mm-featured-projects-all-link svg {
    transition: transform 0.3s ease;
}

.mm-featured-projects-all-link:hover svg {
    transform: translateX(5px);
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.mm-featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.mm-featured-project-card {
    position: relative;
    overflow: hidden;
}

.mm-featured-project-image {
    position: relative;
    height: 500px;
}

.mm-featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/*
|--------------------------------------------------------------------------
| OVERLAY
|--------------------------------------------------------------------------
*/

.mm-featured-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.15)
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: all 0.4s ease;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.mm-featured-project-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.mm-featured-project-content h3 {
    color: #fff;
    font-family: var(--font-oswald);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mm-featured-project-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.mm-featured-project-content .line {
    width: 100%;
    height: 1px;
    background: color-mix(in oklab,var(--color-white) 20%,transparent);
    border-top-width: 1px;
    /*border-color: color-mix(in oklab,var(--color-white) 20%,transparent);*/
}

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.mm-featured-project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0 0;
    gap: 10px;
    /*background: #ffb703;*/
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.mm-featured-project-btn:hover {
    /*background: #fff;*/
    color: var(--primary-hover);
}

/*
|--------------------------------------------------------------------------
| HOVER
|--------------------------------------------------------------------------
*/

.mm-featured-project-card:hover
.mm-featured-project-image img {
    transform: scale(1.06);
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {

    .mm-featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 576px) {

    .mm-featured-projects-section {
        padding: 70px 0;
    }

    .mm-featured-projects-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .mm-featured-projects-grid {
        grid-template-columns: 1fr;
    }

    .mm-featured-projects-header h2 {
        font-size: 34px;
    }

}


/*
|--------------------------------------------------------------------------
| CLIENTS
|--------------------------------------------------------------------------
*/

.mm-home-clients {
    padding: 100px 0;
    background: #fff;
}

.mm-home-client-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.mm-home-client-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 15px;
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
    transition: .3s ease;
}

.mm-home-client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.mm-home-client-item img {
    max-width: 170px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    /*filter: grayscale(100%);*/
    opacity: .75;
    transition: .3s ease;
}

.mm-home-client-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/*
|--------------------------------------------------------------------------
| SECTION SUBTITLE
|--------------------------------------------------------------------------
*/

.mm-home-section-subtitle {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.mm-home-section-subtitle span {
    width: 60px;
    height: 2px;
    background: #ffb703;
    display: block;
}

.mm-home-section-subtitle small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
}

.mm-home-section-head h2 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0;
    color: #111;
}

.mm-home-client-item h3 {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #111;
}

@media(max-width:991px){
    .mm-home-client-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px){
    .mm-home-section-head h2 {
        font-size: 34px;
    }
}

@media(max-width:575px){

    .mm-home-client-grid {
        grid-template-columns: 1fr;
    }
}


/*
|--------------------------------------------------------------------------
| TESTIMONIALS
|--------------------------------------------------------------------------
*/

.mm-home-testimonials {
    padding: 100px 0;
    background: #f7f7f7;
}

.mm-home-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.mm-home-testimonial-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: .3s ease;
}

.mm-home-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.mm-home-testimonial-author {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 20px;
}
.mm-home-testimonial-author h3 {
    color: lightcoral;
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 400;
}

.mm-home-testimonial-author img {
    width: 60px;
    height: 60px;
    /*border-radius: 50%;*/
    object-fit: cover;
}

.mm-home-testimonial-rating {
    color: #ffb703;
    font-size: 20px;
    margin-bottom: 20px;
}

.mm-home-testimonial-text {
    line-height: 1.6;
    color: #898989;
}

@media(max-width:991px){
    .mm-home-testimonial-grid {
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:767px){
    .mm-home-testimonial-grid {
        grid-template-columns: 1fr;
    }

}


/*
|--------------------------------------------------------------------------
| SECTION HEADER WRAP
|--------------------------------------------------------------------------
*/

.mm-home-section-head-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.mm-home-section-head {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mm-home-section-head span {
    width: 60px;
    height: 2px;
    background: #ffb703;
}
.mm-home-section-head small {
    letter-spacing: 2px;
    font-weight: 700;
    /*color: #666;*/
    text-transform: uppercase;
}

.mm-home-section-head-wrap h2 {
    color: #595959;
    font-family: var(--font-oswald);
    font-size: 60px;
    line-height: 1.2;
    text-transform: uppercase;
}

.mm-home-section-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.mm-home-section-link a:hover {
    color: #ffb703;
}

.mm-home-section-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media(max-width:767px){
    .mm-home-section-head-wrap {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
}

/*
|--------------------------------------------------------------------------
| TESTIMONIAL ARCHIVE
|--------------------------------------------------------------------------
*/

.mm-testimonial-archive {
    padding: 60px 0;
    /*background: #f7f7f7;*/
}

.mm-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mm-testimonial-card {
    background: #fff;
    padding: 35px;
    border: 1px solid #eee;
    /*transition: .3s ease;*/
}

.mm-testimonial-card:hover {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 15px 40px rgba(0,0,0,.08);*/
}

.mm-testimonial-author {
    display: flex;
    gap: 20px;
}

.mm-testimonial-author img {
    width: 60px;
    height: 60px;
}

.mm-testimonial-author h3 {
    color: lightcoral;
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 400;
}
.mm-testimonial-rating {
    color: #ffb703;
    font-size: 20px;
    margin-bottom: 20px;
}
.mm-rating-stars {
    display: flex;
    gap: 4px;
    color: #f5b301;
    font-size: 16px;
}

.mm-testimonial-text {
    color: #898989;
    font-family: var(--font-pt-sans);
    font-size: 15px;
    padding-bottom: 1rem;
}

.mm-testimonial-author-info {
    color: #898989;
}

.mm-pagination {
    margin-top: 60px;
    text-align: center;
}

@media(max-width:991px){
    .mm-testimonial-grid {
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:767px){
    .mm-testimonial-grid {
        grid-template-columns: 1fr;
    }

}

/*
|--------------------------------------------------------------------------
| CONTACT SECTION
|--------------------------------------------------------------------------
*/

.mm-home-contact-section {
    position: relative;
    padding: 70px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*
|--------------------------------------------------------------------------
| PARALLAX
|--------------------------------------------------------------------------
*/

@media (min-width: 993px) {
    .mm-home-contact-section {
        background-attachment: fixed;
    }
}

/*
|--------------------------------------------------------------------------
| OVERLAY
|--------------------------------------------------------------------------
*/

.mm-home-contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.mm-home-contact-section .container {
    position: relative;
    z-index: 2;
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.mm-home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/*
|--------------------------------------------------------------------------
| SUBTITLE
|--------------------------------------------------------------------------
*/

.mm-home-contact-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    /*margin-bottom: 20px;*/
}

.mm-home-contact-subtitle span {
    width: 60px;
    height: 2px;
    background: #ffb703;
}

.mm-home-contact-subtitle small {
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

/*
|--------------------------------------------------------------------------
| TITLE
|--------------------------------------------------------------------------
*/

.mm-home-contact-form-wrap h2 {
    color: #595959;
    font-family: var(--font-oswald);
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| CONTACT FORM 7
|--------------------------------------------------------------------------
*/

.mm-cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mm-textarea-wrap {
    display: grid;
    margin-bottom: 20px;
    /*grid-template-columns: 1fr;*/
}

@media(max-width:768px) {
    .mm-cf7-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mm-textarea-wrap {
        margin-bottom: 20px;
    }
}


.mm-home-contact-grid {
    align-items: stretch;
}

.mm-home-contact-form-wrap,
.mm-home-contact-map {
    height: 100%;
}

.mm-home-contact-map iframe {
    height: 100%;
    min-height: 700px;
}

.mm-home-contact-form label {
    color: oklch(58% .008 250);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.mm-home-contact-form input,
.mm-home-contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    /*background: oklch(12% .005 250);*/
    border: 1px solid #adadad;
    border-width: 1px;
    color: oklch(58% .008 250);
    font-size: 14px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease-in-out;
}

.mm-home-contact-form textarea {
    height: 120px;
    max-height: 300px;
    overflow-y: auto;
    resize: none;
    line-height: 1.6;
    transition: all .3s ease;
}

.mm-home-contact-form input:focus,
.mm-home-contact-form textarea:focus {
    border-color: #111;
    border-width: 1px;
    outline: none;    
}

.mm-home-contact-form input::placeholder,
.mm-home-contact-form textarea::placeholder {
    color: oklch(58% .008 250);
    font-size: 14px;
}

.mm-home-contact-form select {
    width: 100%;
    height: auto;
    padding: 10px;    
    background: none; /*oklch(12% .005 250)*/
    border: 1px solid #adadad;
    border-width: 1px;
    color: oklch(58% .008 250);
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.mm-select-wrap {
    position: relative;
    margin-bottom: 20px;
}

.mm-select-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 70%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .mm-select-wrap {
        margin-bottom: 20px;
    }
}

.mm-home-contact-form select:focus {
    outline: none;
    border-color: #111;
    /*box-shadow: 0 0 0 3px rgba(255,183,3,.15);*/
}

.mm-home-contact-form select:hover {
    border-color: #111;
}

.wpcf7-form-control-wrap select {
    width: 100%;
}

.mm-contact-btn-wrap {
    margin-bottom: 20px;
}

/*
|--------------------------------------------------------------------------
| CF7 CONSISTENT SPACING
|--------------------------------------------------------------------------
*/

.mm-home-contact-form p {
    margin: 0 0 20px;
}

.mm-home-contact-form p:last-child {
    margin-bottom: 0;
}

.mm-home-contact-form .wpcf7-form-control-wrap {
    display: block;
}

.mm-home-contact-form input,
.mm-home-contact-form textarea,
.mm-home-contact-form select {
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.mm-home-contact-form input[type="submit"] {
    width: auto;
    background: #ffb703; /*var(--primary)*/
    color: #111;
    border: 1px solid #ffb703;
    padding: 12px 34px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mm-home-contact-form input[type="submit"]:hover {
    background: #111;
    border:  1px solid #111;
    color: #fff;
}

@media(max-width: 768px) {    
    .mm-home-contact-form input[type="submit"] {
        margin-bottom: 20px;
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| MAP
|--------------------------------------------------------------------------
*/

.mm-home-contact-map iframe {
    width: 100%;
    height: 100%;
    /*min-height: 650px;*/
    border: none;
    /*filter: grayscale(100%);*/
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {
    .mm-home-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .mm-home-contact-section {
        padding: 80px 0;
    }
    .mm-home-contact-form-wrap h2 {
        font-size: 34px;
    }
    .mm-home-contact-map iframe {
        min-height: 400px;
    }
}


/*
|--------------------------------------------------------------------------
| HOME PARALLAX CTA
|--------------------------------------------------------------------------
*/

.mm-home-parallax {
    position: relative;
    padding: 80px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.mm-home-parallax-content {
    max-width: 1000px;
    margin: auto;
}

.mm-home-parallax h2 {
    font-family: var(--font-oswald);
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.mm-home-parallax p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.88);
    margin-bottom: 35px;
}

.mm-home-parallax-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /*height: 58px;*/
    padding: 12px 34px;
    background: #ffb703;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.mm-home-parallax-btn:hover {
    background: #fff;
    /*transform: translateY(-3px);*/
}

@media(max-width:991px){

    .mm-home-parallax {
        padding: 100px 0;
        background-attachment: scroll;
    }
    .mm-home-parallax h2 {
        font-size: 44px;
    }

}

@media(max-width:767px){

    .mm-home-parallax {
        padding: 80px 0;
    }
    .mm-home-parallax h2 {
        font-size: 32px;
    }
    .mm-home-parallax p {
        font-size: 16px;
    }
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.mm-footer {
    background: oklch(16% .005 250);
    border-top: 1px solid rgba(255,255,255,.1);
    color: oklch(65% .01 250);
    margin-top: 0;
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.mm-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 70px 0;
}

/*
|--------------------------------------------------------------------------
| TITLES
|--------------------------------------------------------------------------
*/

.mm-footer h3 {
    font-family: var(--font-oswald);
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--primary);
}

/*
|--------------------------------------------------------------------------
| TEXT
|--------------------------------------------------------------------------
*/

.mm-footer p,
.mm-footer li {
    color: oklch(65% .01 250);
    font-size: 14px;
    line-height: 1.5;
}

.mm-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mm-footer li {
    margin-bottom: 12px;
}

.mm-footer-socials {
    display: flex;
    gap: 10px;
}

/*
|--------------------------------------------------------------------------
| LINKS
|--------------------------------------------------------------------------
*/

.mm-footer a {
    color: oklch(65% .01 250);
    text-decoration: none;
    transition: .3s;
}

.mm-footer a:hover {
    color: #ffb703;
}

.mm-footer-contact svg {
    color: var(--primary);
    /*margin-right: 12px;*/
}

.mm-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}
/*
|--------------------------------------------------------------------------
| BOTTOM
|--------------------------------------------------------------------------
*/

.mm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    color: oklch(65% .01 250);
    font-family: var(--barlow-font);
    font-size: 13px;
    padding: 25px 0;
    text-align: center;
    color: rgba(255,255,255,.6);
}

@media (max-width: 767px) {
    .mm-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /*
    |--------------------------------------------------------------------------
    | ROW 1
    |--------------------------------------------------------------------------
    */

    .mm-footer-company {
        grid-column: 1 / -1;
        text-align: center;
    }
    .mm-footer-socials {
        justify-content: center;
    }

    /*
    |--------------------------------------------------------------------------
    | ROW 2
    |--------------------------------------------------------------------------
    */

    .mm-footer-links {
        grid-column: 1;
    }
    .mm-footer-services {
        grid-column: 2;
    }

    /*
    |--------------------------------------------------------------------------
    | ROW 3
    |--------------------------------------------------------------------------
    */

    .mm-footer-contact {
        grid-column: 1 / -1;
        /*text-align: center;*/
    }
}

@media (max-width: 767px) {
    .mm-footer-company img {
        display: block;
        margin: 0 auto 20px;
    }
}

@media (max-width: 767px) {
    .custom-logo-link {
        display: inline-block;
    }
}


/*.mm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}*/

.mm-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 767px) {

    .mm-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .mm-footer-bottom-menu ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .mm-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/***** Footer Menu ******/

.mm-footer-bottom-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mm-footer-bottom-menu li {
    margin: 0;
    padding: 0;
    font-family: var(--barlow-font);
    font-size: 13px;
}

.mm-footer-bottom-menu a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .3s ease;
}

.mm-footer-bottom-menu a:hover {
    color: #ffb703;
}

@media (max-width: 767px) {

    .mm-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .mm-footer-bottom-menu ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/*
|--------------------------------------------------------------------------
| SCROLL TO TOP
|--------------------------------------------------------------------------
*/

.mm-scroll-top {
    position: fixed;
    right: 0px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background: #ffb703;
    color: #111;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
}

.mm-scroll-top.mm-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mm-scroll-top:hover {
    transform: translateY(-4px);
    background: #111;
    color: #fff;
}

@media (max-width: 767px) {
    .mm-scroll-top {
        width: 46px;
        height: 46px;
        right: 15px;
        bottom: 15px;
    }
}


/*
|--------------------------------------------------------------------------
| BLOG PAGE
|--------------------------------------------------------------------------
*/

.mm-blog-page {
    padding: 80px 0;
    background: #fff;
}


/*
|--------------------------------------------------------------------------
| INNER HERO
|--------------------------------------------------------------------------
*/

.mm-inner-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    /*background-image:  url('assets/images/hero-inner-post-2.webp');*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f3f3f3;
    overflow: hidden;
}

.mm-inner-hero .container {
    height: 320px;
    position: relative;
}

.mm-inner-hero-content {
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    opacity: 1;
    transform: translateY(60px);
    animation: mmHeroReveal .8s ease forwards;    
}

@keyframes mmHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mm-inner-hero h1 {
    font-family: var(--font-oswald);
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;    
    font-weight: 500;
    text-transform: uppercase;
}

.mm-inner-hero p {
    font-size: 16px;
    color: #666;
    margin: 0;
    max-width: 700px;
}

@media (max-width: 991px) {
    .mm-inner-hero {
        min-height: 260px;
    }
    .mm-inner-hero .container {
        height: 260px;
    }
    .mm-inner-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .mm-inner-hero {
        min-height: 220px;
    }
    .mm-inner-hero .container {
        height: 220px;
    }
    .mm-inner-hero-content {
        bottom: 20px;
    }
    .mm-inner-hero h1 {
        font-size: 30px;
        padding-left: 15px;
    }
    .mm-inner-hero p {
        font-size: 15px;
    }
}

/*
|--------------------------------------------------------------------------
| PAGE HERO
|--------------------------------------------------------------------------
*/

.mm-page-hero {
    /*min-height: 320px;*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.page-content p,
.page-content li {
    color: #898989;
    font-family: 'PT Sans';
    font-size: 15px;
    /*margin-bottom: 30px;*/
}
.page-content p {
    /*margin-bottom: 30px;*/
}

.wp-block-heading {
    color: var(--mild-dark);
    font-family: var(--font-oswald);
    font-weight: 400;
    /*text-transform: uppercase;*/
    margin: 20px 0;
    /*margin-block-end: calc(var(--has-theme-content-spacing, 1)*(.3em + 10px));*/
}

/*************************** Breadcrumb ************************************/

.mm-breadcrumb-container {
    background-color: rgb(245, 245, 245); 
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;    
    padding: 15px 0;
    display: block;
    align-items: center;
}
@media (max-width:991px) {
    .mm-breadcrumb-container { 
        margin-left: auto;
        box-sizing: border-box;
        margin-right: auto;
        display: block;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;        
    }
}

.mm-breadcrumb {
    font-family: var(--font-roboto);
    font-size: 13px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0.15px;
}

.mm-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mm-breadcrumb li + li::before {
    content: "›";
    padding: 0 8px;
    color: #999;
}

.mm-breadcrumb a {
    color: #111;
    text-decoration: none;
}

.mm-breadcrumb .active {
    color: #777;
    font-weight: 400;
}

/*
|--------------------------------------------------------------------------
| BLOG LAYOUT
|--------------------------------------------------------------------------
*/

.mm-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: start;
}

/* Title */
.mm-blog-title {
    font-family: var(--font-oswald);
    font-size: 48px;
    margin-bottom: 40px;
    color: #595959;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.mm-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.mm-blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.mm-blog-card:hover {
    /*transform: translateY(-5px);*/
}

.mm-blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.mm-blog-content {
    padding: 20px;
}

/*.mm-blog-content .mm-blog-category a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px !important;
}*/

/*
|--------------------------------------------------------------------------
| BLOG META
|--------------------------------------------------------------------------
*/

.mm-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.mm-blog-category a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*min-height: 34px;*/
    padding: 6px 14px;
    background: rgba(255,183,3,.12);
    color: #ffb703;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s ease;
}

.mm-blog-category a:hover {
    background: rgba(255,183,153,.12);
    color: #111;
}

.mm-blog-date {
    font-size: 14px;
    color: #777;
    white-space: nowrap;
    opacity: .75;
}

@media(max-width:575px){
    .mm-blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.mm-blog-content h2 {
    font-family: var(--font-roboto);
    font-size: 22px;
    margin-bottom: 10px;
    color: #7A7F85;
    text-decoration: none;
}

.mm-blog-content a {
    color: #000;
    text-decoration: none;
}

.mm-blog-content a:hover {
    text-decoration: underline;
}

.mm-blog-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.mm-blog-btn {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: var(--primary-button);
    transition: .3s ease;
}

.mm-blog-btn:hover {
    color: #fff;
    background-color: var(--mild-dark);
    text-decoration: none !important;
}


/*
|--------------------------------------------------------------------------
| NO RESULTS
|--------------------------------------------------------------------------
*/

.mm-no-results {
    padding: 80px 40px;
    background: #f7f7f7;
    text-align: center;
}

.mm-no-results h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.mm-no-results p {
    color: #666;
}

/*
|--------------------------------------------------------------------------
| SIDEBAR
|--------------------------------------------------------------------------
*/

.mm-sidebar {
    position: sticky;
    top: 120px;
}

.mm-sidebar-widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.mm-sidebar-widget h3 {
    font-family: var(--font-oswald);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.mm-sidebar-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ffb703;
}

.mm-sidebar-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mm-sidebar-widget li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.mm-sidebar-widget li:last-child {
    border-bottom: none;
}

.mm-sidebar-widget a {
    color: #111;
    text-decoration: none;
    transition: .3s ease;
}

.mm-sidebar-widget a:hover {
    color: #ffb703;
}

.mm-sidebar .search-form {
    display: flex;
}

.mm-sidebar .search-field {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #ddd;
}

.mm-sidebar .search-submit {
    border: none;
    background: #ffb703;
    color: #111;
    padding: 0 20px;
    cursor: pointer;
}

@media(max-width:991px){

    .mm-blog-layout {
        grid-template-columns: 1fr;
    }

    .mm-blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mm-sidebar {
        position: relative;
        top: 0;
    }
}

@media(max-width:767px){
    .mm-blog-grid {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| SIDEBAR SEARCH
|--------------------------------------------------------------------------
*/

.mm-sidebar-search {
    position: relative;
}

.mm-sidebar-search input {
    width: 100%;
    height: 30px;
    border: 1px solid #e7e7e7;
    background: #f7f7f7;
    padding: 0 70px 0 20px;
    font-size: 15px;
    outline: none;
    transition: .3s ease;
}

.mm-sidebar-search input:focus {
    border-color: #ffb703;
    background: #fff;
}

.mm-sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 30px;
    border: none;
    background: #ffb703;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}

.mm-sidebar-search button:hover {
    background: #111;
    color: #fff;
}


/*
|--------------------------------------------------------------------------
| ARCHIVE DROPDOWN
|--------------------------------------------------------------------------
*/

.mm-sidebar-archive-dropdown {
    position: relative;
    width: 100%;
}


.mm-sidebar .mm-sidebar-archive-dropdown select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
}

.mm-sidebar-archive-dropdown select {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e7e7e7 !important;
    background-color: #f7f7f7 !important;
    color: #111 !important;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    /*line-height: 62px;*/
    cursor: pointer;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    transition: all .3s ease;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
}

.mm-sidebar-archive-dropdown select::-ms-expand {
    display: none;
}

/*.mm-sidebar-archive-dropdown select:focus {
    border-color: #ffb703;
    background: #fff;
}*/
.mm-sidebar-archive-dropdown select:hover,
.mm-sidebar-archive-dropdown select:focus {
    background-color: #fff !important;
    border-color: #ffb703;
}

.mm-sidebar-archive-dropdown {
    position: relative;
}

.mm-sidebar-archive-dropdown::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 9px;
    height: 9px;
    border-right: 1px solid #111;
    border-bottom: 1px solid #111;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

/*
|--------------------------------------------------------------------------
| TAG CLOUD
|--------------------------------------------------------------------------
*/

.mm-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mm-tag-cloud a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*height: 42px;*/
    padding: 0px 10px;
    background: #f7f7f7;
    border: 1px solid #ececec;
    color: #111;
    font-size: 14px !important;
    text-decoration: none;
    transition: .3s ease;
}

.mm-tag-cloud a:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/*
|--------------------------------------------------------------------------
| SINGLE HERO
|--------------------------------------------------------------------------
*/

.mm-single-hero {
    position: relative;
    min-height: 320px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.mm-single-hero .mm-inner-hero-content {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
}

.mm-single-category {
    margin-bottom: 20px;
}

.mm-single-category a {
    display: inline-block;
    background: #ffb703;
    color: #111;
    padding: 8px 16px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.mm-single-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 20px;
}

.mm-single-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}

@media(max-width:991px){
    .mm-single-hero {
        min-height: 400px;
    }

    .mm-single-hero .container {
        height: 400px;
    }

    .mm-single-hero h1 {
        font-size: 42px;
    }
}

@media(max-width:767px){
    .mm-single-hero {
        min-height: 320px;
    }

    .mm-single-hero .container {
        height: 320px;
    }

    .mm-single-hero h1 {
        font-size: 30px;
    }

    .mm-single-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.mm-single-content {
    font-size: 15px;
    line-height: 1.9;
    color: #898989;
}

.mm-single-content a {
    color: #111;
}

.mm-single-content p {
    margin-bottom: 25px;
}

.mm-single-content img {
    max-width: 100%;
    height: auto;
}

.mm-comments-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mm-comments-section h3 {
    font-family: var(--font-oswald);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--mild-dark);
}

.comments-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.comment-reply-link {
    color: #ffb703;
    font-weight: 600;
    text-decoration: none;
}

.comment-reply-link:hover {
    color: #111;
}

.comment-respond {
    margin-top: 60px;
    padding: 40px;
    background: #f7f7f7;
}

.comment-reply-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

.comment-form .submit {
    background: #ffb703;
    border: none;
    padding: 14px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.comment-form .submit:hover {
    background: #111;
    color: #fff;
}

.comment-list li {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
}

/*
|--------------------------------------------------------------------------
| PAGINATION
|--------------------------------------------------------------------------
*/

.mm-pagination {
    margin-top: 50px;
    text-align: center;
}

.mm-pagination a,
.mm-pagination span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.mm-pagination .current {
    background: #ffb703;
    color: #111;
    border-color: #ffb703;
}

.mm-blog-thumb {
    position: relative;
    overflow: hidden;
}

.mm-blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: .3s;
}

.mm-blog-card:hover .mm-blog-thumb::after {
    opacity: 1;
}

@media(max-width:767px) {
    .mm-blog-title {
        font-size: 28px;
    }
}


/*
|--------------------------------------------------------------------------
| SEARCH MODAL
|--------------------------------------------------------------------------
*/

.mm-search-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.92);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.mm-search-modal.active {
    opacity: 1;
    visibility: visible;
}

.mm-search-modal-content {
    width: 100%;
    max-width: 900px;
}

.mm-search-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mm-search-form input {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border: none;
    background: #fff;
    font-size: 24px;
    outline: none;
}

.mm-search-form button {
    height: 40px;
    padding: 0 35px;
    border: none;
    background: #ffb703;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.mm-search-form button:hover {
    background: #fff;
}

.mm-search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

.mm-search-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--primary);
}

.mm-search-trigger svg {
    color: #009922;
}

.mm-search-trigger svg:hover {
    color: var(--primary-hover);
}

@media(max-width:767px){
    .mm-search-form {
        flex-direction: column;
    }

    .mm-search-form input {
        height: 45px;
        font-size: 18px;
    }

    .mm-search-form button {
        width: 100%;
        height: 45px;
    }
}


/*
|--------------------------------------------------------------------------
| FAQ
|--------------------------------------------------------------------------
*/

.mm-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mm-faq-item {
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    overflow: hidden;
    transition: .3s ease;
}

.mm-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    background: #ffe299;
    border: none;
    color: #111;
    cursor: pointer;
    font-family: var(--font-oswald);
    font-size: 24px;
    font-weight: 300;
    text-align: left;
    transition: .5s ease;
}

.mm-faq-question:hover {
    background-color: #ffb703;
    color: #fff;
}

.mm-faq-icon {
    font-size: 26px;
    line-height: 1;
    transition: .3s ease;
}

.mm-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
    overflow: hidden;
}

.mm-faq-answer-inner {
    overflow: hidden;
    padding: 20px;
}

.mm-faq-item.active
.mm-faq-answer {
    /*max-height: 500px;*/
    grid-template-rows: 1fr;
}


.mm-faq-item.active
.mm-faq-icon {
    transform: rotate(45deg);
}

@media(max-width:767px){

    .mm-faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    .mm-faq-answer-inner {
        padding: 20px;
    }
}

.not-found h1 {
    font-family: var(--font-oswald);
    /*font-size: 3rem;*/
    font-weight: 500;
    color: red;
    text-transform: uppercase;
}
.not-found p {
    color: #898989;
    font-family: var(--font-roboto);
    font-size: 1rem;
}





.service-card {
    transition: transform .3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}
