.icon {
    font-size: 36px;
    width: 36px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mv__section .row {
    --bs-gutter-x: 3rem;
}

.mv__card {
    background: var(--bg-offwhite-color);
    border-radius: 0.8rem;
    padding: 4rem 3.5rem;
    height: 100%;
    position: relative;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.mv__card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top-color: var(--secondary-color);
    transform: translateY(-5px);
}

.mv__icon {
    width: 6.5rem;
    height: 6.5rem;
    min-width: 6.5rem;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv__icon svg {
    width: 2.8rem;
    height: 2.8rem;
}

.mv__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.mv__desc {
    font-size: 1.5rem;
    line-height: 2.8rem;
    color: var(--foreground-sub-color);
    margin: 0;
}

@media only screen and (max-width:991px) {
    .mv__card {
        padding: 3rem 2.5rem;
        margin-bottom: 2rem;
    }
}

.product__section--inner .row {
    align-items: stretch;
}

.single__product--wrapper {
    height: 100%;
}

.single__product--thumbnail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single__product--thumbnail {
    height: 100%;
}

.mv__card {
    background: var(--bg-offwhite-color);
    border-radius: 0.8rem;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.mv__card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top-color: var(--secondary-color);
    transform: translateY(-5px);
}

.mv__icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv__icon svg {
    width: 2.2rem;
    height: 2.2rem;
}

.mv__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mv__desc {
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: var(--foreground-sub-color);
    margin: 0;
}

@media only screen and (max-width:991px) {
    .mv__card {
        margin-bottom: 2rem;
    }
}

.mv2__section {
    position: relative;
    overflow: hidden;
    background: var(--bg-offwhite-color);
}

.mv2__heading {
    text-align: center;
    margin-bottom: 5rem;
}

.mv2__heading--tag {
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.mv2__heading--title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: inline-block;
}

.mv2__heading--title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1.2rem;
    transform: translateX(-50%);
    width: 6rem;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 10px;
    animation: mv2LineGrow 1.8s ease-in-out infinite alternate;
}

@keyframes mv2LineGrow {
    0% {
        width: 3rem;
        opacity: .6;
    }

    100% {
        width: 7rem;
        opacity: 1;
    }
}

.mv2__row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.mv2__panel {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    position: relative;
    background: var(--text-white-color);
    border-radius: 1.6rem;
    padding: 4.5rem 3.5rem;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: transform .45s ease, box-shadow .45s ease;
}

.mv2__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-color), #ff6a3d);
    opacity: 0;
    z-index: -1;
    transition: opacity .5s ease;
}

.mv2__panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left .9s ease;
}

.mv2__panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.mv2__panel:hover::before {
    opacity: 1;
}

.mv2__panel:hover::after {
    left: 130%;
}

.mv2__panel:hover .mv2__title,
.mv2__panel:hover .mv2__desc,
.mv2__panel:hover .mv2__num {
    color: #fff;
}

.mv2__panel:hover .mv2__icon {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mv2__panel:hover .mv2__icon svg {
    stroke: var(--secondary-color);
}

.mv2__num {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-size: 6rem;
    font-weight: 800;
    color: var(--border-color);
    opacity: .6;
    z-index: 0;
    transition: color .45s ease;
}

.mv2__icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 1;
    animation: mv2Float 3.2s ease-in-out infinite;
    transition: background .45s ease, box-shadow .45s ease;
}

.mv2__panel:nth-child(2) .mv2__icon {
    animation-delay: .4s;
}

@keyframes mv2Float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.mv2__icon svg {
    width: 3rem;
    height: 3rem;
    stroke: #fff;
    transition: stroke .45s ease;
}

.mv2__title {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color .45s ease;
}

.mv2__desc {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    line-height: 2.8rem;
    color: var(--foreground-sub-color);
    margin: 0;
    transition: color .45s ease;
}

@media only screen and (max-width:767px) {
    .mv2__panel {
        padding: 3.5rem 2.5rem;
    }

    .mv2__heading--title {
        font-size: 2.4rem;
    }
}

.about__content--subtitle2 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about__content--subtitle2::before {
    content: "";
    width: 3.5rem;
    height: 2px;
    background: var(--secondary-color);
    display: inline-block;
}

.about__content--intro {
    background: var(--bg-offwhite-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.6rem;
    padding: 2rem 2.2rem;
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.about__content--intro b {
    font-weight: 700;
}

.about__feature__list {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.about__feature__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about__feature__item:last-child {
    margin-bottom: 0;
}

.about__feature__icon {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.about__feature__icon svg {
    width: 1.9rem;
    height: 1.9rem;
    stroke: #fff;
}

.about__feature__item:hover .about__feature__icon {
    transform: scale(1.1) rotate(-6deg);
}

.about__feature__text--title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.about__feature__text--desc {
    font-size: 1.45rem;
    line-height: 2.4rem;
    color: var(--foreground-sub-color);
    margin: 0;
}

.services {
    color: #ed131a;
    font-weight: 600;
}

.footer__widget .footer__map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 8px;
}

.footer__location {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
}