/*--------- Copyright (c) 2021 ---------
[Master Stylesheet] 
Project: Health Care - Responsive Html Template
Version: 1.0.0 
Author: Kamleshyadav
--------------------------
[Table of contents] 
1. body 
2. Top Header
3. Main Header
4. Banner Slider
5. Services
6. about
7. team
8. counter
9. contact
10. blog
11. testimonial
12. footer
---------------*/
/**********************************
 	1. Global CSS Start 
 **********************************/

:root {
    --mlf-title-color: #0a3380;
    --mlf-primary: #3cd9ee;
    --mlf-txt-color: #3b4964;
    --mlf-second-color: var(--mlf-second-color);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #1f2732;
}
a {
	color: #1f2732;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
	color: var(--mlf-primary);
}
:focus {
    outline: none;
}
p {
    margin-bottom: 1.5rem;
}
input,textarea {
    border: 1px solid #eee;
    outline: none;
    padding: 10px 15px;
    border-radius: 50px;
    width: 100%;
}
textarea {
    border-radius: 10px;
    height: 130px;
    resize: none;
}
.cv-spacer-top {
    padding-top: 80px;
}
.cv-spacer-bottom {
    padding-bottom: 80px;
}
.cv-spacer-high {
    padding-top: 170px;
}
.cv-btn {
    display: inline-block;
    min-width: 140px;
    background: var(--mlf-primary);
    color: #fff;
    text-transform: capitalize;
    outline: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border: none;
    border-radius: 50px;
    transition: 0.3s;
    max-width: max-content;
    line-height: normal;
    position: relative;
    box-shadow: 0px 0px 0px 4px rgb(253 150 120 / 15%);
}
.cv-btn:hover {
    background: var(--mlf-second-color);
    color: #fff;
    box-shadow: 0px 0px 0px 4px rgb(26 188 156 / 0.15);
    transform: scale(1.05);
}
.cv-btn:focus {
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.cv-sub-heading {
    font-size: 20px;
    color: var(--mlf-second-color);
    position: relative;
    text-transform: capitalize;
}
.cv-sub-heading:after,
.cv-heading-wrap.text-center .cv-sub-heading:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background: var(--mlf-second-color);
    top: 0;
    bottom: 0;
    margin: auto 0 auto 15px;
}
.cv-heading-wrap.text-center .cv-sub-heading:before {
    margin-left: -65px;
}
.cv-heading h1 {
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 700;
}
/* Main Css Start */

/* top header start */
.cv-top-header {
    background: var(--mlf-second-color);
    padding: 10px 0px;
}
.cv-top-head-div {
    padding: 5px 0px;
}
.cv-top-head-div p {
    margin: 0;
    color: #fff;
    font-weight: 500;
}
.cv-top-head-div span svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}
.cv-top-head-div span {
    margin-right: 5px;
    vertical-align: middle;
    width: 29px;
    height: 29px;
    background: var(--mlf-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.cv-top-head-right {
    text-align: right;
}
.cv-top-header .row,
.cv-main-header .row {
    align-items: center;
}
/* top header end */
/* main header start */
.cv-main-head-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cv-navbar>div>ul>li a {
    text-transform: capitalize;
}
.cv-navbar>div>ul>li>a {
    padding: 15px 0px;
    display: inline-block;
}
.cv-main-header {
    padding: 10px 0;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 3%);
    z-index: 5;
    background: #fff;
}
.cv-main-header.cv-header-sticky{
    position: sticky;
    top: 0;
    z-index: 99;
    transition: 1s;
}
.cv-has-submenu:after {
    position: absolute;
    content: '';
    right: 0;
    width: 6px;
    height: 6px;
    background: transparent;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto;
}
.cv-navbar>div>ul>li.cv-has-submenu>a {
    padding-right: 15px;
}
.cv-head-btn {
    margin-left: 20px;
}
li.cv-home-new {
    position: relative;
}
li.cv-home-new:after {
    position: absolute;
    content: 'New';
    left: -9px;
    top: 0px;
    font-size: 8px;
    background: #ffffff;
    padding: 2px 8px;
    color: var(--mlf-primary);
    border-radius: 30px;
    transform: rotate(-40deg);
    border: 1px dashed;
    animation: 0.5s hc_home_new linear alternate infinite;
}
@keyframes hc_home_new {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
/* main header end */
/* banner start */
.cv-banner {
    position: relative;
    overflow: hidden;
}
.cv-banner-content {
    padding: 150px 0;
    z-index: 2;
    position: relative;
}
.cv-banner-content h2 {
    font-size: 20px;
    color: var(--mlf-second-color);
    position: relative;
}
.cv-banner-content h1 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 25px;
}
.cv-banner-box p {
    margin: 0;
}
.cv-banner-box {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 20px 0 #eee;
    border-left: 2px solid var(--mlf-primary);
}
.cv-banner-content h2:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background: var(--mlf-second-color);
    top: 0;
    bottom: 0;
    margin: auto 0 auto 15px;
}
.cv-banner-img {
    text-align: center;
    position: relative;
    margin: auto;
    width: fit-content;
    width: -moz-fit-content;
    z-index: 10;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.cv-banner-img:after, .cv-banner-img:before {
    position: absolute;
    content: '';
    max-width: 400px;
    left: 20px;
    right: 20px;
    top: 20px;
    background: rgb(255 255 255 / 70%);
    z-index: 0;
    margin: auto;
    box-shadow: 0 0 20px 0 #eee;
    bottom: 20px;
    border-radius: 5px;
}
.cv-banner-img:before {
    top: 50px;
    bottom: 50px;
    left: 50px;
    right: 50px;
    z-index: 1;
}
.cv-banner-img img {
    z-index: 2;
    position: relative;
}
.cv-banner:after {
    position: absolute;
    content: '';
    right: -200px;
    top: -100px;
    bottom: -200px;
    background: var(--mlf-second-color);
    max-width: 765px;
    width: 100%;
    z-index: 0;
    transform: rotate(15deg);
}
.cv-banner-shape {
    position: absolute;
    top: 100px;
    right: 0px;
}
.cv-banner-shape span {
    width: 235px;
    height: 235px;
    background: radial-gradient(#ffffff 2px, transparent 0px);
    z-index: 1;
    position: absolute;
    top: 100px;
    right: 100px;
    background-size: 20px 20px;
    opacity: 0.5;
    transform: rotate(-10deg);
}
.cv-banner:before {
    position: absolute;
    content: '';
    left: -150px;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: var(--mlf-primary);
    border-radius: 100%;
    opacity: 0.1;
}
/* banner end */
/* services start */
.cv-service,.cv-team {
    padding-bottom: 50px;
}
.cv-services-box {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #eee;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}
.cv-services-box:hover {
    box-shadow: 3px 3px 0 5px rgb(253 150 120 / 15%);
}
.cv-services-box p {
    margin-bottom: 0;
}
.cv-service-title {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
}
.cv-service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--mlf-primary);
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 0 0 0 5px rgb(253 150 120 / 15%);
}
.cv-service-ico-clr1 {
    background: #4fcecd;
    box-shadow: 0 0 0 5px rgb(79 206 205 / 15%);
}
.cv-service-ico-clr2 {
    background: #5aa2ec;
    box-shadow: 0 0 0 5px rgb(90 162 236 / 15%);
}
.cv-service-ico-clr3 {
    background: #fbbb1c;
    box-shadow: 0 0 0 5px rgb(251 187 28 / 15%);
}
.cv-service-arrow svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transition: 0.3s;
    fill: #1f2732;
}
.cv-service-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px 0 #eee;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -45px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.cv-services-box:hover .cv-service-arrow {
    bottom: -25px;
    opacity: 1;
    visibility: visible;
}
.cv-service-arrow:hover {
    background: var(--mlf-primary);
    box-shadow: 0 0 0 5px rgb(253 150 120 / 15%);
}
.cv-service-arrow:hover svg {
    fill: #fff;
}
/* services end */
/* about start */
.cv-about,
.cv-blog {
    background: #fffaf9;
}
.cv-tab-list li {
    margin-right: 30px;
}
.cv-tab-list li a {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}
.cv-tab-list li:last-child {
    margin-right: 0;
}
.cv-tab-list li a.active {
    border-bottom: 2px solid var(--mlf-primary);
    color: var(--mlf-primary);
}
.cv-tab-content {
    margin-top: 40px;
}
.cv-tab-content {
    margin-bottom: 30px;
}
.cv-image-style img {
    border-radius: 60% 10% 70% 60%/170% 80% 32% 40%;
    z-index: 2;
    position: relative;
}
.cv-image-style {
    position: relative;
}
.cv-image-style:after,.cv-image-style:before {
    width: 160px;
    height: 160px;
    background: radial-gradient(var(--mlf-second-color) 2px, transparent 0px);
    z-index: 0;
    position: absolute;
    top: 30px;
    right: 50px;
    background-size: 10px 10px;
    content: '';
    opacity: 0.5;
    transform: rotate(65deg);
}
.cv-image-style:after {
    right: auto;
    left: -40px;
    bottom: 0;
    top: auto;
    background: radial-gradient(var(--mlf-primary) 2px, transparent 0px);
    background-size: 10px 10px;
}
/* about end */
/* team start */
.cv-team-box {
    box-shadow: 0 0 20px 0 #eee;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    margin: 0 15px 30px;
    max-width: 332px;
}
.cv-team-name {
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 20px;
}
.cv-team-designation {
    font-size: 18px;
    color: var(--mlf-second-color);
    margin-bottom: 0;
    margin-top: 10px;
}
.cv-team-img img {
    width: 100px;
    height: 100px;
    display: block;
    margin: auto;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 15%);
    border: 1px solid #fff;
}
.cv-dr-rating {
    font-size: 14px;
    color: var(--mlf-primary);
    position: absolute;
    left: 0;
    top: 20px;
    padding: 3px 10px;
    background: rgb(253 150 120 / 15%);
    border-radius: 0 30px 30px 0
}
.cv-team-box p {
    margin-bottom: 0;
    margin-top: 20px;
}
.cv-team-social {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
}
.cv-team-social li {
    margin-right: 8px;
    display: inline-block;
}
.cv-team-social li:last-child,
.cv-blog-social li:last-child {
    margin-right: 0;
}
.cv-team-social li a,
.cv-blog-social li a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    font-size: 16px;
    border-radius: 100%;
}
.cv-team-social li a:hover,
.cv-blog-social li a:hover {
    box-shadow: 0 0 0 3px rgb(253 150 120 / 15%);
}
/*.cv-team-box:after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    height: 2px;*/
/*    background: var(--mlf-primary);*/
/*    width: 0;*/
/*    transition: 0.3s;*/
/*    margin: auto;*/
/*}*/

.cv-team-box .cv-product-thumb {
    margin: 0;
}
.cv-team-box .cv-product-thumb .star-rating {
    display: inline-block;
}

.cv-team-box .cv-product-thumb .price {
    width: 100%;
    display: block;
}

.cv-testi-box .swiper-container.gallery-thumbs {
    padding-top: 30px;
}

.cv-team-box:hover:after {
    width: 80%;
}
.cv-team-tab-list ul li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
}
.cv-team-tab-list {
    text-align: center;
    margin-bottom: 20px;
}
.cv-team-tab-list ul li:last-child {
    margin: 0;
}
.cv-team-tab-list ul li a {
    border: 1px solid #eee;
    padding: 2px 20px;
    display: inline-block;
    border-radius: 50px;
    cursor: pointer;
}
.cv-team-tab-list ul li a.cv-team-tab-active,
.cv-team-tab-list ul li a:hover {
    color: var(--mlf-primary);
    border-color: var(--mlf-primary);
    background: transparent;
}
/* team end */
/* counters start */
.cv-counter {
    background: var(--mlf-second-color);
}
.cv-counter-wrap {
    margin-bottom: -200px;
}
.cv-counter-box {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 10px 0 rgb(238 238 238 / 44%);
    margin-bottom: 30px;
}
.cv-count-head h2 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
}
.cv-count-data {
    display: flex;
    align-items: center;
}
.cv-count-icon {
    width: 60px;
}
.cv-count-head {
    width: calc(100% - 60px);
    padding-left: 15px;
}
.cv-counter-box p {
    margin-bottom: 0;
    margin-top: 20px;
}
.cv-count-no h2 {
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 800;
    opacity: 0.5;
    color: var(--mlf-primary);
}
.cv-counter .cv-sub-heading,
.cv-counter .cv-heading {
    color: #fff;
}
.cv-counter .cv-sub-heading:after,
.cv-counter .cv-heading-wrap .cv-sub-heading:before {
    background: #fff;
}
/* counters end */
/* contact start */
.cv-contact-box label {
    display: block;
    font-weight: 500;
}
.cv-contact-box .cv-btn {
    margin-top: 30px;
}
.cv-contact-box input {
    margin-bottom: 15px;
} 
.cv-map-box ul li {
    position: absolute;
}
.cv-map-box {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}
.cv-map-box ul li span {
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--mlf-second-color);
    color: #fff;
    border-radius: 100%;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}
.cv-map-address {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 210px;
    margin-top: 15px;
    box-shadow: 0 0 20px 0 #eee;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translateY(5px);
    z-index: 1;
}
.cv-map-box ul li:hover .cv-map-address {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.cv-map-address p {
    margin-bottom: 0;
}
.cv-map-address:after {
    position: absolute;
    content: '';
    left: 20px;
    top: -10px;
    border-top: 10px solid rgb(255 255 255 / 0%);
    border-left: 10px solid var(--mlf-second-color);
}
.cv-map-box ul li:nth-child(1) {
    top: 130px;
    left: 80px;
}
.cv-map-box ul li:nth-child(2) {
    top: 100px;
    right: 100px;
}
.cv-map-box ul li:nth-child(3) {
    bottom: 100px;
    right: 260px;
}
.response {
    margin-top: 10px;
}
/* contact end */
/* blog start */
.cv-blog {
    padding-bottom: 30px;
}
.cv-blogs-data {
    box-shadow: 0 8px 20px 0 #eee;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    top: -50px;
    left: 0;
    right: 0;
    width: 85%;
    background: #fff;
    margin: auto;
    transition: 0.3s;
}
.cv-blog-box:hover .cv-blogs-data {
    box-shadow: 3px 3px 0 5px rgb(253 150 120 / 15%);
}
.cv-blog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.cv-blog-title {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 0;
}
.cv-blogs-data p {
    margin-bottom: 0;
    margin-top: 10px;
}
.cv-blog-more {
    margin-top: 15px;
    color: var(--mlf-primary);
    font-weight: 500;
    display: block;
}
.cv-blog-more i {
    padding-left: 3px;
}
.cv-blog-more:hover {
    letter-spacing: 1px;
}
.cv-blog-img img {
    border-radius: 10px;
}
.cv-blog-social li {
    margin-right: 3px;
    display: inline-block;
}
/* blog end */
/* testimonial start */
.cv-testi-img img {
    width: 100px;
    height: 100px;
    margin: auto;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 15%);
    border: 1px solid #fff;
}
.cv-testi-img {
    padding-bottom: 20px;
}
.cv-testimonials .swiper-slide {
    opacity: 0;
}
.cv-testimonials .swiper-slide.swiper-slide-active,
.cv-testimonials .swiper-slide.swiper-slide-prev,
.cv-testimonials .swiper-slide.swiper-slide-next {
    opacity: 1;
}
.cv-testi-nav {
    position: absolute;
    top: 95px;
    height: 50px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 500px;
}
.cv-testi-data {
    position: relative;
}
.cv-testi-data svg {
    width: 110px;
    height: 110px;
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    bottom: 0;
    margin: auto;
    fill: #58495e;
    opacity: 0.07;
}
.cv-testi-data p {
    margin-top: 15px;
    margin-bottom: 0px;
}
.cv-testi-data h4 {
    font-weight: 500;
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 0;
}
.cv-testi-data h5 {
    font-size: 14px;
    margin: 8px 0 0;
    color: var(--mlf-primary);
}
.cv-testi-nav .swiper-button-prev,
.cv-testi-nav .swiper-button-next {
    background: transparent;
    box-shadow: none;
}
.cv-testi-nav .swiper-button-prev::before,
.cv-testi-nav .swiper-button-next::before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background: #ccc;
    margin: auto;
    transition: 0.3s;
}
.cv-testi-nav .swiper-button-prev:after,
.cv-testi-nav .swiper-button-next:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: transparent;
    border: 0;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transform: rotate(45deg);
    margin: auto;
    transition: 0.3s;
}
.cv-testi-nav .swiper-button-prev:hover::after,
.cv-testi-nav .swiper-button-next:hover::after{
    border-left-color: var(--mlf-primary);
    border-bottom-color: var(--mlf-primary);
}
.cv-testi-nav .swiper-button-prev:hover::before,
.cv-testi-nav .swiper-button-next:hover::before{
    background: var(--mlf-primary);
}
.cv-testi-nav .swiper-button-prev::before {
    left: 10px;
}
.cv-testi-nav .swiper-button-next::before {
    right: 10px;
}
.mt-em-testimonial .swiper-button-prev,
.mt-em-testimonial .swiper-button-next,
.cv-testimonials .swiper-slide-shadow-left,
.cv-testimonials .swiper-slide-shadow-right {
    background-image: none;
    outline: none;
}
.cv-testi-box {
    text-align: center;
}
.cv-testi-nav .swiper-button-next:after {
    transform: rotate(225deg);
    right: -10px;
}
.cv-testi-img {
    width: auto;
    transform: unset;
}
.cv-testi-data:hover {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 5%);
}
.cv-testi-data:hover {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 5%);
}

.cv-team-box .cv-product-thumb a[data-title="Browse wishlist"] {
    display: none;
}

.cv-product-hover ul li .cv-product-icon {
    visibility: visible;
    opacity: 1;
    transform: unset;
    position: unset;
}

.cv-team-box .cv-product-thumb .cv-product-hover ul li {
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.cv-team-box .cv-product-thumb .cv-product-hover ul .cv-product-icon {
    height: auto;
    width: auto;
    line-height: initial;
}
.cv-team-box .cv-product-thumb .cv-product-hover ul li .yith-wcwl-add-to-wishlist {
    margin-top: 0;
    height: auto;
    line-height: initial;
    display: flex;
}

.cv-team-box .cv-product-thumb .cv-product-hover ul li a:hover svg {
    fill: #fd9678;
}

.cv-team-box .cv-product-thumb .cv-product-hover ul li .yith-wcwl-add-button .yith-wcwl-icon.fa.fa-heart-o {
    margin: 0;
}

.cv-team-box .cv-product-thumb .cv-product-hover ul li .yith-wcwl-add-to-wishlist .feedback {
    font-size: 0;
}

.cv-team-box .cv-product-thumb .cv-product-hover ul li .yith-wcwl-add-to-wishlist .feedback i {
    font-size: 16px;
}

/* testimonial end */
/* footer start */
.cv-footer {
    background: #1f2732;
    padding-top: 0px !important;
}
.cv-footer-logo {
    text-align: center;
}
.cv-footer-contact-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #323d4c;
    border-bottom: 1px solid #323d4c;
}
.cv-foot-contact-box h2,
.cv-foot-contact-box p,
.menu-information-container li a {
    color: #a9a9a9;
}
.menu-information-container li a:hover {
    color: var(--mlf-primary);
}
.cv-foot-contact-box h2 {
    font-size: 22px;
    margin-bottom: 5px;
}
.cv-foot-contact-box p {
    margin-bottom: 0;
}
.cv-footer-contact-list li {
    border-right: 1px solid #323d4c;
}
.cv-footer-contact-list li:last-child {
    border: none;
}
.menu-information-container li {
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px !important;
}
.menu-information-container li:last-child {
    margin-bottom: 0;
}
.menu-information-container li:before {
    position: absolute;
    content: '';
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--mlf-primary);
    top: 0;
    bottom: 0;
    margin: auto;
}
/* footer end */
/* copyright start */
.cv-copyright {
    background: #25272e;
    padding: 18px 0;
    text-align: center;
}
.cv-copyright p {
    margin-bottom: 0;
    color: #fff;
}
/* copyright end */
/* appointment start */
.modal-header button.close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 2px solid #fff;
    background: #F44336;
    opacity: 1;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    outline: none;
}
.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
}
.modal-content .cv-contact-box form {
    padding: 15px;
}
#cv-appointment .modal-header {
    background: var(--mlf-primary);
    color: #fff;
}
/* appointment end */
/* go to top start */
.cv-go-top {
    width: 60px;
    height: 60px;
    line-height: 55px;
    text-align: center;
    background: var(--mlf-primary);
    color: #fff;
    font-size: 25px;
    position: fixed;
    bottom: 50%;
    border-radius: 100%;
    right: 100px;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cv-go-top.cv-go-top-show {
    bottom: 35px;
    opacity: 1;
    visibility: visible;
    transition: 1s;
}
.cv-go-top svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.cv-go-top:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    border-radius: 100%;
    z-index: -1;
    transition: 0.3s;
}
.cv-go-top:hover:after{
    animation: hc_gotop_wave 2s infinite;
}

/**********************************
 	4. Woocommerce CSS Start
 **********************************/


/* Product Thumb CSS Start */

#yith-quick-view-modal .yith-wcqv-main div#yith-quick-view-content div.product .single_add_to_cart_button {
    min-height: 40px;
    height: 40px;
    line-height: 40px !important;
    padding: 2px 0 !important;
}

.woocommerce .products .cv-product-hover ul {
    margin-bottom: 0;
}

.cv-product-hover ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 40px;
}

.cv-product-image img {
    width: 100%;
}

.cv-product-info {
    text-align: center;
}

.cv-product-thumb h2 {
    margin: 0;
    color: var(--cv-txt-color);
    font-size: var(--cv-globle-font);
    font-weight: 500;
    line-height: 1.5;
    font-family: var(--cv-font-family);
}

.cv-product-thumb h2 a,
.cv-product-thumb h2 a:hover,
.cv-product-thumb h2 a:visited {
    color: var(--cv-txt-color);
}

.cv-product-thumb h2:hover a,
.cv-product-thumb h2 a:hover {
    color: var(--primary);
}

.cv-product-title h2,
.cv-product-title:hover h2 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.cv-product-thumb .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--primary);
    font-weight: 500;
    font-size: var(--cv-widget-title-font);
    font-family: var(--cv-title-font-family);
}

.cv-product-hover ul .cv-product-icon {
    height: 40px;
    width: 40px;
    display: inline-block;
    border: none;
    border-radius: var(--cv-circle-radius);
    text-align: center;
    line-height: 40px;
    margin: 0;
    background: var(--cv-product-icon-bg);
}

.cv-product-hover ul .cv-product-icon:hover {
    background: var(--cv-product-icon-hover-bg);
}

.cv-product-hover ul .cv-product-icon svg {
    height: 16px;
    width: 16px;
    fill: var(--cv-product-icon-color);
}

.cv-product-hover ul .cv-product-icon:hover svg {
    fill: var(--cv-product-icon-hover-color);
}

.cv-product-hover {
    margin: 0;
    position: absolute;
    top: 20px;
    right: 20px;
}

.cv-product-thumb {
    margin: 0 0 42px;
    position: relative;
}

.cv-product-image {
    margin-bottom: 20px;
}

body.woocommerce .cv-shop-wrapper .cv-product-thumb {
    margin: 0 0 42px;
}

.cv-products-wrapper .cv-btn-wrap {
    margin: -10px 0 40px;
    justify-content: center;
}

.cv-product-hover ul li {
    transform: translateX(20px);
    transition: 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    margin-bottom: 10px;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
}

.cv-product-thumb:hover .cv-product-hover ul li:first-child,
.cv-product-thumb:hover .cv-product-hover ul li:nth-child(2),
.cv-product-thumb:hover .cv-product-hover ul li:nth-child(3),
.cv-product-thumb:hover .cv-product-hover ul li:nth-child(4) {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.cv-product-hover ul li:first-child,
.cv-product-hover:hover ul li:first-child {
    transition: 300ms ease-in-out;
}

.cv-product-hover ul li:nth-child(2),
.cv-product-hover:hover ul li:nth-child(2) {
    transition: 300ms ease-in-out 100ms;
}

.cv-product-hover ul li:nth-child(3),
.cv-product-hover:hover ul li:nth-child(3) {
    transition: 300ms ease-in-out 200ms;
}

.cv-product-hover ul li:nth-child(4),
.cv-product-hover:hover ul li:nth-child(4) {
    transition: 300ms ease-in-out 300ms;
}

.woocommerce table.shop_table td ins {
    background: transparent;
}

.cv-footer-social .widget-title:before {
    height: auto;
}

.price del .woocommerce-Price-amount.amount,
del .woocommerce-Price-amount.amount {
    color: var(--cv-txt-color) !important;
    font-weight: 500;
    font-size: var(--cv-widget-title-font);
    font-family: var(--cv-title-font-family);
}

.cv-product-image {
    position: relative;
    background: var(--product-bg);
}

.cv-product-image .cv-overlay-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    background: var(--product-bg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cv-product-thumb:hover .cv-product-image .cv-overlay-img {
    visibility: visible;
    opacity: 1;
}

.cv-product-thumb:hover .cv-product-image .cv-overlay-img,
.cv-product-thumb .cv-product-image .cv-overlay-img,
.cv-product-thumb,
.horizontal-icon .cv-product-hover,
.horizontal-icon:hover .cv-product-hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cv-product-image .cv-overlay-img img {
    width: auto;
    max-height: 100%;
}


/* THUMB ICON STYLE */

.horizontal-icon .cv-product-hover {
    top: 35%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.horizontal-icon:hover .cv-product-hover {
    opacity: 1;
    visibility: visible;
}

.horizontal-icon .cv-product-hover ul {
    width: auto;
    justify-content: center;
    background: var(--primary);
}

body .horizontal-icon .cv-product-hover ul li {
    margin: 0 3px;
}

.horizontal-icon .cv-product-hover ul li a,
.horizontal-icon .cv-product-hover ul li a:hover {
    background: transparent;
}


/* THUMB TAG STYLE*/

.cv-tag-sale-right {
    overflow: hidden;
}

.cv-tag-sale-right span.onsale,
body.woocommerce .cv-tag-sale-right span.onsale {
    left: auto;
    margin: 0;
    min-width: 60px;
    min-height: 30px;
    text-align: center;
    line-height: 3px;
    height: 50px;
    border-radius: 0;
    position: absolute;
    right: -45px;
    top: -10px !important;
    padding: 34px 24px 22px 30px;
    transform: rotate( 46deg);
    width: 130px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}
/* Product Filter Section*/

.cv-filter-menus ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 20px;
}

.cv-filter-menus ul li {
    list-style: none;
    margin: 0 0 10px;
}

.cv-filter-menus ul li a {
    display: inline-block;
    cursor: pointer;
    color: var(--filter-tab-color);
    position: relative;
    padding: 10px 20px 8px;
    text-transform: capitalize;
    font-size: var(--font14);
    border: 1px solid #e0e4ed;
    background-color: var(--filter-tab-bg);
    margin: 0 5px;
    font-weight: 500;
}

.cv-filter-menus ul li a.gallery-active,
.cv-filter-menus ul li a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.cv-filter-menus {
    width: 100%;
}

.cv-pro-filter-wrap {
    position: relative;
    margin: auto;
}
.cv-new-prod-tag {
    min-height: unset;
    min-width: 50px;
    margin: 0;
    background: var(--mlf-second-color);
    padding: 0;
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--white);
    width: 50px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    font-size: 12px;
    z-index: 1;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--shp-radius-round);
}


@keyframes hc_gotop_wave {
    0%{
        box-shadow: 0px 0px 0px 0px var(--mlf-primary);
    }
    100%{
        box-shadow: 0px 0px 0px 12px var(--mlf-primary);
        opacity: 0;
    }
}
/* go to top end */
/* loader css start */
#cv-preloader {
	background-color: #000000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
}
.cv-loading {
    width: 100%;
    max-width: 550px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0px auto;
    margin-top: -90px;
}
.cv-loading svg {
	width: 100%;
	height: 100%;
}
.cv-loading #pulsar{
	stroke-dasharray:281;
	-webkit-animation: dash 2.5s infinite linear forwards;
}
@-webkit-keyframes dash{
    from {
        stroke-dashoffset:814;
    } 
    to {
        stroke-dashoffset:-814;
    }
}
/* loader css end */
.cv-team-box .cv-product-thumb .cv-product-hover ul li .notify_wish {
    display: none;
}
.cv-team-box .cv-product-thumb .cv-product-hover ul li .yith-wcwl-wishlistexistsbrowse .notify_wish {
    display: unset;
}

/* responsive start */
@media screen and (min-width:1200px){
    .container {
        max-width: 1180px;
    }
    .cv-submenu {
        background: #fff;
        box-shadow: 0 0px 20px 0 rgb(0 0 0 / 3%);
        border-top: 3px solid var(--mlf-primary);
        border-bottom: 3px solid var(--mlf-primary);
        position: absolute;
        top: 100%;
        max-width: 200px;
        width: max-content;
        min-width: 150px;
        padding: 8px 0;
        transform-origin: top;
        visibility: hidden;
        opacity: 0;
        z-index: 9;
        transition: 0.3s;
        transform: scaleY(0);
    }
    .cv-submenu li {
        display: block;
    }
    .cv-submenu li a {
        display: block;
        padding: 5px 15px;
    }
    .cv-navbar>div>ul>li:hover .cv-submenu {
        visibility: visible;
        opacity: 1;
        transform: scaleY(1);
    }
    .cv-navbar>div>ul>li {
        display: inline-block;
        margin-right: 20px;
        position: relative;
    }
    .cv-navbar>div>ul>li:last-child {
        margin-right: 0;
    }
}
@media screen and (min-width:1600px){
    .container {
        max-width: 1480px;
    }
}
@media screen and (max-width:1199px){
    .cv-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #1f2732;
        margin-bottom: 4px;
        transition: 0.3s;;
    }
    .cv-menu-toggle span:nth-child(3) {
        margin-bottom: 0px;
    }
    .cv-menu-toggle span:nth-child(2) {
        width: 12px;
        background: var(--mlf-second-color);
        margin-left: auto;
        margin-right: auto;
    }
    .cv-menu-toggle {
        width: 22px;
        text-align: center;
    }
    .cv-open-menu .cv-menu-toggle span:nth-child(3) {
        transform: translate(1px, -9px) rotate(48deg);
    }
    .cv-open-menu .cv-menu-toggle span:nth-child(1) {
        transform: translate(1px, 6px) rotate(-48deg);
    }
    .cv-open-menu .cv-menu-toggle span:nth-child(2) {
        transform: translateY(9px);
        width: 24px;
        transition: 0.3s;
        height: 5px;
        background: var(--mlf-primary);
        border-radius: 5px;
    }
    .cv-main-head-flex {
        justify-content: flex-end;
    }
    .cv-navbar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -270px;
        width: 260px;
        background: #fff;
        z-index: 99;
        transition: 0.3s;
        overflow-y: auto;
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07);
        text-align: left;
    }
    .cv-open-menu .cv-navbar {
        left: 0;
    }
    .cv-navbar>div>ul li {
        border-bottom: 1px solid #eee;
        position: relative;
    }
    .cv-navbar>div>ul li:last-child {
        border-bottom: 0;
    }
    .cv-navbar>div>ul li a {
        padding: 15px;
        display: inline-block;
    }
    .cv-navbar ul.cv-submenu li:first-child {
        border-top: 1px solid #eee;
    }
    ul.cv-submenu {
        display: none;
    }
    .cv-has-submenu:after {
        right: 15px;
        top: 23px;
        bottom: auto;
    }
    .cv-team-box {
        max-width: 280px;
    }
    .cv-banner-content {
        padding: 60px 0;
    }
    .cv-banner-content h1 {
        font-size: 40px;
    }
}
@media screen and (max-width:991px){
    .cv-map-address {
        width: auto;
    }
    .cv-about-content {
        padding-top: 50px;
    }
    .cv-team-box {
        max-width: 310px;
    }
    .cv-go-top {
        right: 50px;
    }
    .cv-banner-img {
        position: unset;
    }
    .cv-banner-shape,
    .cv-banner:after {
        display: none;
    }
}
@media screen and (max-width:767px){
    .cv-top-head-div,.cv-top-head-right {
        text-align: center;
    }
    .cv-footer-contact-list {
        grid-template-columns: repeat(1,1fr);
    }
    .cv-footer-contact-list li {
        border-right: 0px solid #323d4c;
        border-bottom: 1px solid #323d4c;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .cv-footer-contact-list li:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .cv-main-head-flex {
        justify-content: center;
    }
    .cv-logo {
        text-align: center;
        margin-bottom: 10px;
    }
    .cv-blog-img img {
        width: 100%;
    }
    .cv-team-box {
        max-width: 100%;
        margin: 0 0px 30px;
    }
    .cv-spacer-bottom {
        padding-bottom: 60px;
    }
    .cv-spacer-top {
        padding-top: 60px;
    }
    .cv-blog {
        padding-bottom: 10px;
    }
    .cv-service, .cv-team {
        padding-bottom: 30px;
    }
    .cv-map-box {
        margin-bottom: 50px;
    }
}
@media screen and (max-width:480px){
    .cv-testi-img img {
        width: 80px;
        height: 80px;
    }
    .cv-heading {
        font-size: 30px;
    }
    .cv-go-top {
        width: 50px;
        height: 50px;
    }
    .cv-go-top svg {
        width: 15px;
        height: 15px;
    }
    .cv-heading-wrap.text-center .cv-sub-heading:before {
        margin-left: -45px;
    }
    .cv-sub-heading:after,
    .cv-heading-wrap.text-center .cv-sub-heading:before {
        width: 30px;
    }
    .cv-go-top.cv-go-top-show {
        bottom: 20px;
    }
    .cv-go-top {
        right: 20px;
    }
    .cv-tab-list li {
        margin-right: 15px;
    }
    .cv-tab-content {
        margin-top: 20px;
    }
    .cv-blogs-data {
        width: 95%;
    }
}
/* responsive end */