@charset "UTF-8";
/*-----------------------------------------------------------------------------------
 
/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classes
		1.3 Default Spacing

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Back to top
		2.2 Theme Settings
		2.3 Buttons
		2.4 Animations
		2.5 Preloader
		2.6 Background 
		2.7 Carousel
		2.8 Nice Select
		2.9 Pagination
		2.10 Offcanvas
		2.11 Breadcrumb
		2.12 Accordion
		2.13 Tab
		2.14 Modal
		2.15 Section Title
		2.16 Search
		2.17 Hotspot
		2.18 Ragne Slider

	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style 1
		3.2 Header Style 2
		3.3 Header Style 3


    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main menu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
	    5.1 blog css start
		5.2 Postbox css
		5.3 Recent Post css
		5.4 Sidebar css

	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1


	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 about css start 
		7.2 app css start
		7.3 brand css start
		7.4 cart css start
		7.5 checkout css start
		7.6 choose css start
		7.7 contact css start 
		7.8 cta css start
		7.9 error css start
		7.10 faq css start
		7.11 feature css start
		7.12 funfact css start
		7.13 price css start 
		7.14 project css start
		7.15 service css start
		7.16 shop css start 
		7.17 slider css start
		7.18 step css start
		7.19 team css start
		7.20 testimonial css start
		7.21 video css start



**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;family=Quicksand:wght@300..700&amp;display=swap");

:root {
    /**
  @font family declaration
  */
    --mt-ff-body: Quicksand;
    --mt-ff-heading: Lora;
    --mt-ff-p: Quicksand;
    --mt-ff-fontawesome: "Font Awesome 6 Pro";
    /**
  @color declaration
  */
    --mt-common-white: #fff;
    --mt-common-black: #000000;
    --mt-common-dark: #060121;
    --mt-grey-1: #DADADA;
    --mt-grey-2: #646373;
    --mt-text-body: #646373;
    --mt-theme-1: #17AF26;
    --mt-theme-2: #e0b44d;
    --mt-theme-3: #e0b44d;
    --mt-border-1: #EAEAEF;
}

/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
#back-to-top {
    position: fixed;
    right: 30px;
    bottom: 50px;
    background: var(--mt-theme-1);
    color: #fff;
    z-index: 9;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: scale(0.7);
}

    #back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.mt-btn {
    height: 50px;
    line-height: 49px;
    position: relative;
    background-color: var(--mt-theme-2);
    color: var(--mt-common-black);
    border: 1px solid var(--mt-common-black);
    padding: 0 21px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-btn span {
        position: relative;
        z-index: 2;
    }

        .mt-btn span i {
            margin-left: 5px;
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            font-size: 16px;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

    .mt-btn img {
        margin-left: 5px;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn:hover {
        color: var(--mt-common-white);
        border-radius: 50px;
        background: var(--mt-theme-1);
        border: 1px solid var(--mt-common-white);
    }

        .mt-btn:hover span i {
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

.mt-btn-cart {
    height: 34px;
    border-radius: 100px;
    background: var(--mt-theme-1);
    line-height: 34px;
    color: var(--mt-common-white);
    border: 1px solid transparent;
    padding: 0px 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--mt-ff-body);
    text-transform: math-auto;
}

    .mt-btn-cart:hover {
        color: var(--mt-common-black);
        border-radius: 50px;
        background: var(--mt-theme-2);
        border: 1px solid transparent;
    }

.mt-btn-sm {
    height: 41px;
    line-height: 41px;
    color: #060121 !important;
    font-size: 14px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

    .mt-btn-sm i {
        margin-right: 5px;
    }

    .mt-btn-sm:hover {
        border: 1px solid var(--mt-common-white) !important;
        color: var(--mt-common-white) !important;
    }

.mt-btn-2 {
    padding: 0 22px;
    font-size: 14px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    background: var(--mt-theme-2);
    color: var(--mt-common-black);
    border: 1px solid var(--mt-theme-2);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
}

    .mt-btn-2.btn-footer {
        padding: 0 62px;
    }

    .mt-btn-2 i {
        margin-right: 5px;
        font-size: 16px;
        color: var(--mt-common-black);
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn-2 span {
        position: relative;
        z-index: 1;
        color: var(--mt-common-black);
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn-2:hover {
        color: var(--mt-common-black);
        background: var(--mt-theme-1);
        border: 1px solid var(--mt-border-1);
    }

        .mt-btn-2:hover span {
            color: var(--mt-common-white);
        }

        .mt-btn-2:hover i {
            color: var(--mt-common-white);
        }

.mt-btn-3 {
    padding: 0 21px;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    color: var(--mt-common-white);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    border-radius: 100px;
    background: var(--mt-theme-1);
}

    .mt-btn-3 span {
        position: relative;
        z-index: 2;
        margin-right: 8px;
    }

    .mt-btn-3 i {
        margin-left: 5px;
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        font-size: 16px;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn-3:hover {
        background: var(--mt-theme-2);
        color: var(--mt-common-black);
    }

.mt-btn-4 {
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    padding: 0px 24px;
    line-height: 50px;
    display: inline-block;
    color: var(--mt-common-white);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background: var(--mt-theme-4);
    border-radius: 50px;
}

    .mt-btn-4 span {
        position: relative;
        z-index: 2;
        margin-right: 8px;
    }

        .mt-btn-4 span i {
            margin-left: 5px;
            font-size: 16px;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

    .mt-btn-4 img {
        margin-left: 5px;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn-4.small-btn {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
        width: 100%;
    }

    .mt-btn-4:hover.small-btn {
        background: var(--FF2E00, #FF2E00);
    }

.mt-btn-5 {
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    padding: 0px 24px;
    line-height: 50px;
    display: inline-block;
    color: var(--mt-common-black);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background: var(--mt-theme-5);
}

    .mt-btn-5 span {
        position: relative;
        z-index: 2;
        margin-right: 8px;
    }

        .mt-btn-5 span i {
            margin-left: 5px;
            font-size: 16px;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

    .mt-btn-5 img {
        margin-left: 5px;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn-5.small-btn {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
        width: 100%;
    }

    .mt-btn-5:hover.small-btn {
        background: var(--FF2E00, #FF2E00);
    }

.mt-btn-black {
    padding: 0 40px;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--mt-common-white);
    background-color: var(--mt-common-black);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
}

    .mt-btn-black span {
        position: relative;
        z-index: 1;
    }

    .mt-btn-black::after {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 0%;
        height: 100%;
        content: "";
        background: var(--mt-theme-1);
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .mt-btn-black:hover {
        color: var(--mt-common-white);
    }

        .mt-btn-black:hover::after {
            left: 0%;
            right: auto;
            width: 100%;
        }

        .mt-btn-black:hover.hover-2 {
            color: var(--mt-common-black);
        }

        .mt-btn-black:hover.red-bg {
            color: var(--mt-common-black);
        }

    .mt-btn-black.red-bg {
        background-color: var(--mt-theme-1);
    }

        .mt-btn-black.red-bg::after {
            background: var(--mt-common-white);
        }

    .mt-btn-black.red-bg-2 {
        background-color: var(--mt-theme-1);
    }

        .mt-btn-black.red-bg-2::after {
            background: var(--mt-common-black);
        }

    .mt-btn-black.hover-2::after {
        background: var(--mt-common-white);
    }

.mt-btn-border {
    padding: 0 40px;
    font-size: 14px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--mt-theme-1);
    border: 1px solid var(--mt-theme-1);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
}

    .mt-btn-border span {
        position: relative;
        z-index: 1;
    }

        .mt-btn-border span i {
            margin-left: 5px;
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            font-size: 16px;
            -webkit-transition: 0.2s;
            -moz-transition: 0.2s;
            -ms-transition: 0.2s;
            -o-transition: 0.2s;
            transition: 0.2s;
        }

    .mt-btn-border.slider-color {
        border: 1px solid var(--mt-border-2);
        color: var(--mt-common-white);
    }

        .mt-btn-border.slider-color:hover {
            color: var(--mt-common-white);
            border: 1px solid var(--mt-border-2);
        }

    .mt-btn-border:hover {
        color: var(--mt-common-white);
        border-color: var(--mt-theme-1);
    }

        .mt-btn-border:hover span i {
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

.mt-menu-btn {
    background-color: var(--mt-theme-1);
    color: var(--mt-common-white);
    width: 140px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    overflow: hidden;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 9;
}

    .mt-menu-btn:hover {
        color: var(--mt-common-white);
        background-color: var(--mt-common-black);
    }

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
    background-color: var(--mt-theme-1);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.object {
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-top: 5px solid #FFF;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #FFF;
    border-right: 5px solid transparent;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

#object_one {
    left: 75px;
    top: 75px;
    width: 50px;
    height: 50px;
}

#object_two {
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#object_three {
    left: 55px;
    top: 55px;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#object_four {
    left: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes animate {
    50% {
        -ms-transform: rotate(360deg) scale(0.8);
        -webkit-transform: rotate(360deg) scale(0.8);
        transform: rotate(360deg) scale(0.8);
    }
}

@keyframes animate {
    50% {
        -ms-transform: rotate(360deg) scale(0.8);
        -webkit-transform: rotate(360deg) scale(0.8);
        transform: rotate(360deg) scale(0.8);
    }
}
/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/
.white-bg {
    background-color: var(--mt-common-white);
}

.black-bg {
    background-color: var(--mt-common-black);
}

.drak-bg {
    background-color: var(--mt-common-dark);
}

.theme-bg {
    background-color: var(--mt-theme-1);
}

.theme-bg-2 {
    background-color: var(--mt-theme-2);
}

.grey-bg {
    background-color: var(--mt-grey-1);
}

.grey-bg-2 {
    background-color: var(--mt-grey-2);
}

/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

    .nice-select:hover {
        border-color: #dbdbdb;
    }

    .nice-select:active, .nice-select.open, .nice-select:focus {
        border-color: #999;
    }

    .nice-select::after {
        position: absolute;
        content: "\f107";
        top: 50%;
        right: 0;
        font-family: var(--mt-ff-fontawesome);
        color: var(--mt-common-black);
        font-weight: 500;
        pointer-events: none;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        margin-top: 0;
        transform-origin: center;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .nice-select.open::after {
        -moz-transform: translateY(-50%) rotate(-180deg);
        -o-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
        -webkit-transform: translateY(-50%) rotate(-180deg);
        transform: translateY(-50%) rotate(-180deg);
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none;
    }

        .nice-select.disabled::after {
            border-color: #cccccc;
        }

    .nice-select.wide {
        width: 100%;
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .nice-select.right {
        float: right;
    }

        .nice-select.right .list {
            left: auto;
            right: 0;
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

        .nice-select.small::after {
            height: 4px;
            width: 4px;
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px;
        }

    .nice-select .list {
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 9;
    }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .nice-select .option.selected {
            font-weight: bold;
        }

        .nice-select .option.disabled {
            background-color: transparent;
            color: #999;
            cursor: default;
        }

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*----------------------------------------*/
/*  2.178 Range Slider css start
/*----------------------------------------*/
.ui-button-icon-only, .ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box;
}

.ui-checkboxradio-disabled, .ui-state-disabled {
    pointer-events: none;
}

.ui-datepicker .ui-icon, .ui-icon {
    text-indent: -99999px;
    background-repeat: no-repeat;
}

.ui-helper-reset, .ui-menu {
    outline: 0;
    list-style: none;
}

.ui-helper-hidden, .ui-resizable-autohide .ui-resizable-handle, .ui-resizable-disabled .ui-resizable-handle {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
}

.ui-helper-clearfix:after, .ui-helper-clearfix:before {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}

.ui-front {
    z-index: 100;
}

.ui-state-disabled {
    cursor: default !important;
}

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.25em;
    position: relative;
    overflow: hidden;
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block;
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0;
    padding: 0.5em 0.5em 0.5em 0.7em;
    font-size: 100%;
}

.ui-autocomplete, .ui-menu .ui-menu {
    position: absolute;
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}

.ui-autocomplete {
    top: 0;
    left: 0;
    cursor: default;
}

.ui-menu {
    padding: 0;
    margin: 0;
    display: block;
}

.ui-button, .ui-controlgroup {
    display: inline-block;
    vertical-align: middle;
}

.ui-button, .ui-menu-icons, .ui-resizable {
    position: relative;
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0;
}

.ui-menu .ui-state-active, .ui-menu .ui-state-focus {
    margin: -1px;
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em;
}

.ui-button, .ui-controlgroup .ui-controlgroup-label {
    padding: 0.4em 1em;
}

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.2em;
    margin: auto 0;
}

.ui-menu .ui-menu-icon {
    left: auto;
    right: 0;
}

.ui-button {
    line-height: normal;
    margin-right: 0.1em;
    cursor: pointer;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
}

    .ui-button, .ui-button:active, .ui-button:hover, .ui-button:link, .ui-button:visited {
        text-decoration: none;
    }

.ui-button-icon-only {
    width: 2em;
    text-indent: -9999px;
    white-space: nowrap;
}

input.ui-button.ui-button-icon-only {
    text-indent: 0;
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: 0.4em 1em;
}

button.ui-button::-moz-focus-inner, input.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.ui-controlgroup > .ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0;
}

    .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus, .ui-controlgroup > .ui-controlgroup-item:focus {
        z-index: 9999;
    }

.ui-controlgroup-vertical > .ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
    border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
    border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none;
}

.ui-controlgroup-vertical .ui-spinner-input {
    width: 75%;
    width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc;
    border-radius: 0.12em;
    border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid;
}

.ui-datepicker {
    width: 17em;
    padding: 0.2em 0.2em 0;
    display: none;
}

    .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: 0.2em 0;
    }

    .ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
        position: absolute;
        top: 2px;
        width: 1.8em;
        height: 1.8em;
    }

    .ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover {
        top: 1px;
    }

    .ui-datepicker .ui-datepicker-prev {
        left: 2px;
    }

    .ui-datepicker .ui-datepicker-next {
        right: 2px;
    }

    .ui-datepicker .ui-datepicker-prev-hover {
        left: 1px;
    }

    .ui-datepicker .ui-datepicker-next-hover {
        right: 1px;
    }

    .ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -8px;
        top: 50%;
        margin-top: -8px;
    }

    .ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center;
    }

        .ui-datepicker .ui-datepicker-title select {
            font-size: 1em;
            margin: 1px 0;
        }

    .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
        width: 45%;
    }

    .ui-datepicker table {
        width: 100%;
        font-size: 0.9em;
        border-collapse: collapse;
        margin: 0 0 0.4em;
    }

    .ui-datepicker th {
        padding: 0.7em 0.3em;
        text-align: center;
        font-weight: 700;
        border: 0;
    }

    .ui-datepicker td {
        border: 0;
        padding: 1px;
    }

        .ui-datepicker td a, .ui-datepicker td span {
            display: block;
            padding: 0.2em;
            text-align: right;
            text-decoration: none;
        }

    .ui-datepicker .ui-datepicker-buttonpane {
        background-image: none;
        margin: 0.7em 0 0;
        padding: 0 0.2em;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

        .ui-datepicker .ui-datepicker-buttonpane button {
            float: right;
            margin: 0.5em 0.2em 0.4em;
            cursor: pointer;
            padding: 0.2em 0.6em 0.3em;
            width: auto;
            overflow: visible;
        }

            .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-multi .ui-datepicker-group, .ui-datepicker-rtl .ui-datepicker-buttonpane button {
                float: left;
            }

    .ui-datepicker.ui-datepicker-multi {
        width: auto;
    }

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

.ui-datepicker-rtl {
    direction: rtl;
}

    .ui-datepicker-rtl .ui-datepicker-prev {
        right: 2px;
        left: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-next {
        left: 2px;
        right: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-prev:hover {
        right: 1px;
        left: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-next:hover {
        left: 1px;
        right: auto;
    }

    .ui-datepicker-rtl .ui-datepicker-buttonpane {
        clear: right;
    }

        .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group, .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
            float: right;
        }

    .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px;
    }

.ui-datepicker .ui-icon {
    display: block;
    overflow: hidden;
    left: 0.5em;
    top: 0.3em;
}

.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.2em;
    outline: 0;
}

    .ui-dialog .ui-dialog-titlebar {
        padding: 0.4em 1em;
        position: relative;
    }

    .ui-dialog .ui-dialog-title {
        float: left;
        margin: 0.1em 0;
        white-space: nowrap;
        width: 90%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        right: 0.3em;
        top: 50%;
        width: 20px;
        margin: -10px 0 0;
        padding: 1px;
        height: 20px;
    }

    .ui-dialog .ui-dialog-content {
        position: relative;
        border: 0;
        padding: 0.5em 1em;
        background: 0 0;
        overflow: auto;
    }

    .ui-dialog .ui-dialog-buttonpane {
        text-align: left;
        border-width: 1px 0 0;
        background-image: none;
        margin-top: 0.5em;
        padding: 0.3em 1em 0.5em 0.4em;
    }

        .ui-dialog .ui-dialog-buttonpane button {
            margin: 0.5em 0.4em 0.5em 0;
            cursor: pointer;
        }

    .ui-dialog .ui-resizable-n {
        height: 2px;
        top: 0;
    }

    .ui-dialog .ui-resizable-e {
        width: 2px;
        right: 0;
    }

    .ui-dialog .ui-resizable-s {
        height: 2px;
        bottom: 0;
    }

    .ui-dialog .ui-resizable-w {
        width: 2px;
        left: 0;
    }

    .ui-dialog .ui-resizable-ne, .ui-dialog .ui-resizable-nw, .ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw {
        width: 7px;
        height: 7px;
    }

    .ui-dialog .ui-resizable-se {
        right: 0;
        bottom: 0;
    }

    .ui-dialog .ui-resizable-sw {
        left: 0;
        bottom: 0;
    }

    .ui-dialog .ui-resizable-ne {
        right: 0;
        top: 0;
    }

    .ui-dialog .ui-resizable-nw {
        left: 0;
        top: 0;
    }

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

.ui-draggable-handle, .ui-selectable, .ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}

    .ui-progressbar .ui-progressbar-value {
        margin: -1px;
        height: 100%;
    }

    .ui-progressbar .ui-progressbar-overlay {
        background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
        height: 100%;
        opacity: 0.25;
    }

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted #000;
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

    .ui-selectmenu-menu .ui-menu {
        overflow: auto;
        overflow-x: hidden;
        padding-bottom: 1px;
    }

        .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
            font-size: 1em;
            font-weight: 700;
            line-height: 1.5;
            padding: 2px 0.4em;
            margin: 0.5em 0 0;
            height: auto;
            border: 0;
        }

.ui-selectmenu-open {
    display: block;
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em;
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0;
}

.ui-slider {
    position: relative;
    text-align: left;
}

    .ui-slider .ui-slider-handle {
        position: absolute;
        z-index: 2;
        width: 1.2em;
        height: 1.2em;
        cursor: default;
        -ms-touch-action: none;
        touch-action: none;
    }

    .ui-slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        font-size: 0.7em;
        display: block;
        border: 0;
        background-position: 0 0;
    }

    .ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
        filter: inherit;
    }

.ui-slider-horizontal {
    height: 0.8em;
}

    .ui-slider-horizontal .ui-slider-handle {
        top: -0.3em;
        margin-left: -0.6em;
    }

    .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%;
    }

    .ui-slider-horizontal .ui-slider-range-min {
        left: 0;
    }

    .ui-slider-horizontal .ui-slider-range-max {
        right: 0;
    }

.ui-slider-vertical {
    width: 0.8em;
    height: 100px;
}

    .ui-slider-vertical .ui-slider-handle {
        left: -0.3em;
        margin-left: 0;
        margin-bottom: -0.6em;
    }

    .ui-slider-vertical .ui-slider-range {
        left: 0;
        width: 100%;
    }

    .ui-slider-vertical .ui-slider-range-min, .ui-spinner-down {
        bottom: 0;
    }

    .ui-slider-vertical .ui-slider-range-max, .ui-spinner-up {
        top: 0;
    }

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}

.ui-spinner-input {
    border: none;
    background: 0 0;
    color: inherit;
    padding: 0.222em 0;
    margin: 0.2em 2em 0.2em 0.4em;
    vertical-align: middle;
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: 0.5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
}

.ui-tabs {
    position: relative;
    padding: 0.2em;
}

    .ui-tabs .ui-tabs-nav {
        margin: 0;
        padding: 0.2em 0.2em 0;
    }

        .ui-tabs .ui-tabs-nav li {
            list-style: none;
            float: left;
            position: relative;
            top: 0;
            margin: 1px 0.2em 0 0;
            border-bottom-width: 0;
            padding: 0;
            white-space: nowrap;
        }

        .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
            float: left;
            padding: 0.5em 1em;
            text-decoration: none;
        }

        .ui-tabs .ui-tabs-nav li.ui-tabs-active {
            margin-bottom: -1px;
            padding-bottom: 1px;
        }

            .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
                cursor: text;
            }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: 0 0;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
}

body .ui-tooltip {
    border-width: 2px;
}

.ui-widget, .ui-widget button, .ui-widget input, .ui-widget select, .ui-widget textarea {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}

    .ui-widget .ui-widget {
        font-size: 1em;
    }

    .ui-widget.ui-widget-content {
        border: 1px solid #c5c5c5;
    }

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}

    .ui-widget-content a, .ui-widget-header a {
        color: #333;
    }

.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: 700;
}

    .ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
        border: 1px solid #c5c5c5;
        background: #f6f6f6;
        font-weight: 400;
        color: #454545;
    }

        .ui-button, .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button {
            color: #454545;
            text-decoration: none;
        }

            .ui-button:focus, .ui-button:hover, .ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover {
                border: 1px solid #ccc;
                background: #ededed;
                font-weight: 400;
                color: #2b2b2b;
            }

                .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, a.ui-button:focus, a.ui-button:hover {
                    color: #2b2b2b;
                    text-decoration: none;
                }

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-button.ui-state-active:hover, .ui-button:active, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: 400;
    color: #fff;
}

    .ui-icon-background, .ui-state-active .ui-icon-background {
        border: #003eff;
        background-color: #fff;
    }

    .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
        color: #fff;
        text-decoration: none;
    }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620;
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
    color: #777620;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f;
}

    .ui-state-error a, .ui-state-error-text, .ui-widget-content .ui-state-error a, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error a, .ui-widget-header .ui-state-error-text {
        color: #5f3f3f;
    }

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
    font-weight: 700;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    opacity: 0.7;
    filter: Alpha(Opacity=70);
    font-weight: 400;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    opacity: 0.35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

    .ui-state-disabled .ui-icon {
        filter: Alpha(Opacity=35);
    }

.ui-icon {
    width: 16px;
    height: 16px;
}

.ui-icon, .ui-widget-content .ui-icon, .ui-widget-header .ui-icon {
    background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-button:focus .ui-icon, .ui-button:hover .ui-icon, .ui-state-focus .ui-icon, .ui-state-hover .ui-icon {
    background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-button:active .ui-icon, .ui-state-active .ui-icon {
    background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-button .ui-state-highlight.ui-icon, .ui-state-highlight .ui-icon {
    background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
    background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
    background-image: url("images/ui-icons_777777_256x240.png");
}

.ui-icon-blank {
    background-position: 16px 16px;
}

.ui-icon-caret-1-n {
    background-position: 0 0;
}

.ui-icon-caret-1-ne {
    background-position: -16px 0;
}

.ui-icon-caret-1-e {
    background-position: -32px 0;
}

.ui-icon-caret-1-se {
    background-position: -48px 0;
}

.ui-icon-caret-1-s {
    background-position: -65px 0;
}

.ui-icon-caret-1-sw {
    background-position: -80px 0;
}

.ui-icon-caret-1-w {
    background-position: -96px 0;
}

.ui-icon-caret-1-nw {
    background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0;
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}

.ui-icon-arrow-4 {
    background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}

.ui-icon-extlink {
    background-position: -32px -80px;
}

.ui-icon-newwin {
    background-position: -48px -80px;
}

.ui-icon-refresh {
    background-position: -64px -80px;
}

.ui-icon-shuffle {
    background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}

.ui-icon-folder-open {
    background-position: -16px -96px;
}

.ui-icon-document {
    background-position: -32px -96px;
}

.ui-icon-document-b {
    background-position: -48px -96px;
}

.ui-icon-note {
    background-position: -64px -96px;
}

.ui-icon-mail-closed {
    background-position: -80px -96px;
}

.ui-icon-mail-open {
    background-position: -96px -96px;
}

.ui-icon-suitcase {
    background-position: -112px -96px;
}

.ui-icon-comment {
    background-position: -128px -96px;
}

.ui-icon-person {
    background-position: -144px -96px;
}

.ui-icon-print {
    background-position: -160px -96px;
}

.ui-icon-trash {
    background-position: -176px -96px;
}

.ui-icon-locked {
    background-position: -192px -96px;
}

.ui-icon-unlocked {
    background-position: -208px -96px;
}

.ui-icon-bookmark {
    background-position: -224px -96px;
}

.ui-icon-tag {
    background-position: -240px -96px;
}

.ui-icon-home {
    background-position: 0 -112px;
}

.ui-icon-flag {
    background-position: -16px -112px;
}

.ui-icon-calendar {
    background-position: -32px -112px;
}

.ui-icon-cart {
    background-position: -48px -112px;
}

.ui-icon-pencil {
    background-position: -64px -112px;
}

.ui-icon-clock {
    background-position: -80px -112px;
}

.ui-icon-disk {
    background-position: -96px -112px;
}

.ui-icon-calculator {
    background-position: -112px -112px;
}

.ui-icon-zoomin {
    background-position: -128px -112px;
}

.ui-icon-zoomout {
    background-position: -144px -112px;
}

.ui-icon-search {
    background-position: -160px -112px;
}

.ui-icon-wrench {
    background-position: -176px -112px;
}

.ui-icon-gear {
    background-position: -192px -112px;
}

.ui-icon-heart {
    background-position: -208px -112px;
}

.ui-icon-star {
    background-position: -224px -112px;
}

.ui-icon-link {
    background-position: -240px -112px;
}

.ui-icon-cancel {
    background-position: 0 -128px;
}

.ui-icon-plus {
    background-position: -16px -128px;
}

.ui-icon-plusthick {
    background-position: -32px -128px;
}

.ui-icon-minus {
    background-position: -48px -128px;
}

.ui-icon-minusthick {
    background-position: -64px -128px;
}

.ui-icon-close {
    background-position: -80px -128px;
}

.ui-icon-closethick {
    background-position: -96px -128px;
}

.ui-icon-key {
    background-position: -112px -128px;
}

.ui-icon-lightbulb {
    background-position: -128px -128px;
}

.ui-icon-scissors {
    background-position: -144px -128px;
}

.ui-icon-clipboard {
    background-position: -160px -128px;
}

.ui-icon-copy {
    background-position: -176px -128px;
}

.ui-icon-contact {
    background-position: -192px -128px;
}

.ui-icon-image {
    background-position: -208px -128px;
}

.ui-icon-video {
    background-position: -224px -128px;
}

.ui-icon-script {
    background-position: -240px -128px;
}

.ui-icon-alert {
    background-position: 0 -144px;
}

.ui-icon-info {
    background-position: -16px -144px;
}

.ui-icon-notice {
    background-position: -32px -144px;
}

.ui-icon-help {
    background-position: -48px -144px;
}

.ui-icon-check {
    background-position: -64px -144px;
}

.ui-icon-bullet {
    background-position: -80px -144px;
}

.ui-icon-radio-on {
    background-position: -96px -144px;
}

.ui-icon-radio-off {
    background-position: -112px -144px;
}

.ui-icon-pin-w {
    background-position: -128px -144px;
}

.ui-icon-pin-s {
    background-position: -144px -144px;
}

.ui-icon-play {
    background-position: 0 -160px;
}

.ui-icon-pause {
    background-position: -16px -160px;
}

.ui-icon-seek-next {
    background-position: -32px -160px;
}

.ui-icon-seek-prev {
    background-position: -48px -160px;
}

.ui-icon-seek-end {
    background-position: -64px -160px;
}

.ui-icon-seek-first, .ui-icon-seek-start {
    background-position: -80px -160px;
}

.ui-icon-stop {
    background-position: -96px -160px;
}

.ui-icon-eject {
    background-position: -112px -160px;
}

.ui-icon-volume-off {
    background-position: -128px -160px;
}

.ui-icon-volume-on {
    background-position: -144px -160px;
}

.ui-icon-power {
    background-position: 0 -176px;
}

.ui-icon-signal-diag {
    background-position: -16px -176px;
}

.ui-icon-signal {
    background-position: -32px -176px;
}

.ui-icon-battery-0 {
    background-position: -48px -176px;
}

.ui-icon-battery-1 {
    background-position: -64px -176px;
}

.ui-icon-battery-2 {
    background-position: -80px -176px;
}

.ui-icon-battery-3 {
    background-position: -96px -176px;
}

.ui-icon-circle-plus {
    background-position: 0 -192px;
}

.ui-icon-circle-minus {
    background-position: -16px -192px;
}

.ui-icon-circle-close {
    background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}

.ui-icon-circle-check {
    background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}

.ui-corner-all, .ui-corner-left, .ui-corner-tl, .ui-corner-top {
    border-top-left-radius: 3px;
}

.ui-corner-all, .ui-corner-right, .ui-corner-top, .ui-corner-tr {
    border-top-right-radius: 3px;
}

.ui-corner-all, .ui-corner-bl, .ui-corner-bottom, .ui-corner-left {
    border-bottom-left-radius: 3px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-br, .ui-corner-right {
    border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
    background: #aaa;
    opacity: 0.3;
    filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;
}

/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.mt-offcanvas {
    position: fixed;
    right: 0;
    top: 0;
    width: 360px;
    height: 100%;
    padding: 50px 40px;
    background: var(--mt-common-white);
    transform: translateX(calc(100% + 80px));
    background: var(--mt-common-white) none repeat scroll 0 0;
    transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999;
    scrollbar-width: none;
    overflow-y: scroll;
}

.mt-offcanvas-logo img {
    /*width: 168px;*/
}

@media only screen and (max-width: 400px) {
    .mt-offcanvas {
        width: 100%;
        padding: 35px 30px;
    }
}

.mt-offcanvas-open {
    transform: translateX(0);
    right: 0;
}

.mt-offcanvas-close-toggle {
    font-size: 29px;
    color: var(--mt-common-black);
    transition: 0.3s;
}

    .mt-offcanvas-close-toggle:hover {
        transform: rotate(90deg);
    }

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-offcanvas-header {
        margin-bottom: 40px;
    }
}

.mt-offcanvas-title {
    font-size: 35px;
}

.mt-offcanvas-content p {
    color: var(--mt-text-body);
}

.mt-offcanvas-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.mt-offcanvas-info span {
    color: #222;
    display: block;
    margin-bottom: 5px;
}

    .mt-offcanvas-info span:hover {
        color: var(--mt-theme-1);
    }

.mt-offcanvas-sm-title {
    font-size: 25px;
    margin-bottom: 15px;
}

.mt-offcanvas-social a {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 39px;
    border-radius: 40px;
    color: var(--mt-common-black);
    border: 1px solid rgba(2, 11, 24, 0.1);
    font-size: 14px;
}

    .mt-offcanvas-social a:hover {
        background-color: var(--mt-theme-1);
        color: var(--mt-common-white);
        border-color: var(--mt-theme-1);
    }

.mt-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
    background: var(--mt-common-black);
}

.mt-offcanvas-overlay-open {
    opacity: 0.7;
    visibility: visible;
}

.mt-offcanvas-toogle {
    color: var(--mt-common-white);
    font-size: 25px;
    transition: 0.3s;
}

.mt-offcanvas-toogle-2 {
    margin-left: 30px;
    color: var(--mt-common-black);
}

.mt-offcanvas-toogle:hover {
    color: var(--mt-theme-2);
}

.mt-offcanvas-menu ul {
    list-style: none;
}

    .mt-offcanvas-menu ul li {
        position: relative;
    }

        .mt-offcanvas-menu ul li > a {
            padding: 8px 0;
            display: block;
            font-size: 16px;
            font-weight: 500;
            color: var(--mt-common-black);
        }

            .mt-offcanvas-menu ul li > a:hover {
                color: var(--mt-theme-1);
            }

        .mt-offcanvas-menu ul li:not(:last-child) > a {
            border-bottom: 1px dashed var(--mt-border-1);
        }

        .mt-offcanvas-menu ul li.active > a {
            color: var(--mt-theme-1);
        }

        .mt-offcanvas-menu ul li.active > .mt-menu-close {
            border-color: var(--mt-theme-1);
            color: var(--mt-common-white);
            background-color: var(--mt-theme-1);
        }

            .mt-offcanvas-menu ul li.active > .mt-menu-close i {
                -moz-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }

        .mt-offcanvas-menu ul li .sub-menu {
            display: none;
            padding-left: 20px;
        }

.mt-menu-close {
    position: absolute;
    right: 0;
    top: 6.5px;
    border: 1px solid rgba(1, 15, 28, 0.12);
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 12px;
    line-height: 29px;
}

    .mt-menu-close:hover {
        background-color: var(--mt-theme-1);
        color: var(--mt-common-white);
        border-color: var(--mt-theme-1);
    }

    .mt-menu-close i {
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
.mt-breadcrumb-space {
    padding-top: 25px;
    padding-bottom: 0px;
}

.mt-breadcrumb-title {
    font-size: 60px;
}

@media (max-width: 767px) {
    .mt-breadcrumb-title {
        font-size: 30px;
    }

    .mt-breadcrumb-list span a {
        font-size: 14px !important;
    }
}

.mt-breadcrumb-title span {
    color: var(--mt-theme-1);
}

.mt-breadcrumb-list {
    border: 1px solid var(--mt-border-1);
    border-radius: 100px;
    padding: 10px 15px;
    margin-top: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

    .mt-breadcrumb-list span {
        margin: 0 2px;
        display: inline-block;
        color: #B1B4BA;
    }

        .mt-breadcrumb-list span.active a {
            color: var(--mt-common-dark);
        }

        .mt-breadcrumb-list span a {
            color: var(--mt-text-body);
            font-size: 16px;
        }

        .mt-breadcrumb-list span.dvir {
            margin: 0 2px;
        }

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.mt-accordion-header {
    margin: 0;
}

.mt-accordion-item {
    border: 1px solid var(--mt-border-1);
    border-radius: 10px;
}

.mt-accordion-button {
    font-size: 20px;
    width: 100%;
    padding: 23px 30px;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

    .mt-accordion-button span {
        margin-left: 20px;
        font-size: 16px;
        color: #57595c;
    }

    .mt-accordion-button.collapsed span {
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

.mt-accordion-body {
    margin: 0 30px;
    border-top: 1px dashed var(--mt-border-1);
    padding-top: 20px;
    padding-bottom: 10px;
}

.mt-faq-button {
    text-align: left;
    font-size: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid transparent;
    margin-bottom: 0px;
    padding-top: 0px;
    display: block;
    width: 100%;
}

    .mt-faq-button:after {
        content: "-";
    }

    .mt-faq-button.collapsed {
        border-bottom: 1px solid #D9D9D9;
        margin-bottom: 20px;
    }

        .mt-faq-button.collapsed:after {
            content: "+";
        }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-fact-wrap p br {
        display: none;
    }
}

/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.mt-section-subtitle {
    color: var(--mt-common-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
    border-radius: 50px;
    border: 1px solid var(--mt-common-dark);
    padding: 15px 35px;
    display: inline-block;
}

    .mt-section-subtitle i {
        height: 10px;
        width: 10px;
        border-radius: 30px;
        background: var(--mt-theme-color);
        display: inline-block;
        transform: translateY(0px);
        margin-right: 10px;
    }

        .mt-section-subtitle i.sub-dot-color {
            background: var(--Linear, linear-gradient(266deg, #CCFF02 7.19%, #68FFB3 98.22%));
        }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-section-subtitle {
        font-size: 14px;
    }
}

.mt-section-subtitle span {
    display: inline-block;
    padding-left: 0px;
}

.mt-section-subtitle.text-color {
    border: 0;
    text-decoration: underline;
    text-decoration-color: var(--mt-theme-3);
    padding: 0;
}

.mt-section-subtitle.subtitle-color {
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.mt-section-subtitle.text-color-2 {
    color: #989899;
}

.mt-section-title {
    font-size: 30px;
    font-weight: 700;
    color: #060121;
}

    .mt-section-title span {
        color: var(--mt-theme-1);
        font-family: "Lora", serif;
        font-size: 30px;
        font-weight: 700;
        margin-right: 4px;
    }

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mt-section-title {
        font-size: 42px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-section-title {
        font-size: 40px;
    }

        .mt-section-title br {
            display: none;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-section-title {
        font-size: 38px;
    }

        .mt-section-title br {
            display: none;
        }
}

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

        .mt-section-title br {
            display: none;
        }
}

.mt-section-title-2 {
    font-size: 48px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .mt-section-title-2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-section-title-2 {
        font-size: 38px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-section-title-2 {
        font-size: 40px;
    }

        .mt-section-title-2 br {
            display: none;
        }
}

@media (max-width: 767px) {
    .mt-section-title-2 {
        font-size: 28px;
    }

        .mt-section-title-2 br {
            display: none;
        }
}

@media (max-width: 767px) {
    .mt-section-content p br {
        display: none;
    }
}

/*----------------------------------------*/
/*  2.5 Custom Animation
/*----------------------------------------*/
.mtFadeInUp {
    opacity: 0;
    /* Start invisible */
    animation: mtFadeInUp 2s ease-out forwards;
    /* 2 seconds duration, ease-out effect */
}

@keyframes mtFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        /* Start slightly below */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* End at original position */
    }
}

@keyframes mtslideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.mtfadeInLeft {
    opacity: 0;
    /* Start invisible */
    animation: mtfadeInLeft 2s ease-out forwards;
    /* 2 seconds duration, ease-out effect */
}

@keyframes mtfadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        /* Start slightly to the left */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End at original position */
    }
}

.mtSkillInLeft {
    opacity: 0;
    /* Start invisible */
    animation: mtSkillInLeft 2s ease-out forwards;
    /* 2 seconds duration, ease-out effect */
}

@keyframes mtSkillInLeft {
    0% {
        opacity: 0;
        transform: translateX(-300px);
        /* Start slightly to the left */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End at original position */
    }
}

.slideinup {
    -webkit-animation-name: slideinup;
    animation-name: slideinup;
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

    100% {
        transform: translateY(0);
    }
}

.slideinleft {
    -webkit-animation-name: slideinleft;
    animation-name: slideinleft;
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slidebottomright {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(100px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes slidetopleft {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(-100px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

    0% {
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-top-color: transparent;
        border-left-color: transparent;
    }

    75% {
        border-top-color: #fff;
        border-left-color: #fff;
        border-right-color: #fff;
        border-bottom-color: transparent;
    }

    100% {
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-top-color: transparent;
        border-left-color: transparent;
    }
}
/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes mttranslateY2 {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes mttranslateX2 {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -ms-transform: translateX(40px);
        -o-transform: translateX(40px);
        transform: translateX(40px);
    }
}
/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.mt-pagination a {
    padding: 5px 14px;
    border: 1px solid var(--mt-grey-1);
    font-size: 14px;
    color: #646373;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 30px;
    margin: 0 3px;
    display: inline-block;
}

    .mt-pagination a:hover {
        background-color: var(--mt-common-black);
        color: var(--mt-common-white);
    }

    .mt-pagination a.button {
        border-radius: 100px;
    }

.mt-pagination-sort {
    display: flex;
    align-items: center;
}

    .mt-pagination-sort .nice-select::after {
        right: 8px;
    }

    .mt-pagination-sort span {
        display: inline-block;
        margin-right: 8px;
        font-weight: 600;
    }

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1330px !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
    color: var(--mt-text-p);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: inherit;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--mt-ff-heading);
    color: var(--mt-common-black);
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transition: color;
    -moz-transition: color;
    -ms-transition: color;
    -o-transition: color;
    transition: color;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--mt-ff-body);
    color: var(--mt-text-p);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

p,
a,
article,
aside,
span,
li,
a,
button,
input,
textarea {
    font-family: var(--mt-ff-body);
}

img {
    max-width: 100%;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    a:not([href]):not([class]),
    a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none;
    }

    a:focus,
    .button:focus {
        text-decoration: none;
        outline: none;
    }

    a:focus,
    a:hover {
        color: inherit;
        text-decoration: none;
    }

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

    button:focus {
        outline: 0;
    }

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    outline: none;
    background-color: #f1f1f1;
    height: 40px;
    width: 100%;
    line-height: 52px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid var(--mt-border-1);
    padding: 0 15px;
    position: relative;
}

    input[type=text]::-webkit-input-placeholder,
    input[type=email]::-webkit-input-placeholder,
    input[type=tel]::-webkit-input-placeholder,
    input[type=number]::-webkit-input-placeholder,
    input[type=password]::-webkit-input-placeholder,
    input[type=url]::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        color: #646373;
    }

    input[type=text]:-moz-placeholder,
    input[type=email]:-moz-placeholder,
    input[type=tel]:-moz-placeholder,
    input[type=number]:-moz-placeholder,
    input[type=password]:-moz-placeholder,
    input[type=url]:-moz-placeholder,
    textarea:-moz-placeholder {
        color: #646373;
    }

    input[type=text]::-moz-placeholder,
    input[type=email]::-moz-placeholder,
    input[type=tel]::-moz-placeholder,
    input[type=number]::-moz-placeholder,
    input[type=password]::-moz-placeholder,
    input[type=url]::-moz-placeholder,
    textarea::-moz-placeholder {
        color: #646373;
    }

    input[type=text]:-ms-input-placeholder,
    input[type=email]:-ms-input-placeholder,
    input[type=tel]:-ms-input-placeholder,
    input[type=number]:-ms-input-placeholder,
    input[type=password]:-ms-input-placeholder,
    input[type=url]:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        color: #646373;
    }

    input[type=text]:focus,
    input[type=email]:focus,
    input[type=tel]:focus,
    input[type=number]:focus,
    input[type=password]:focus,
    input[type=url]:focus,
    textarea:focus {
        border-color: var(--mt-theme-1);
    }

        input[type=text]:focus::placeholder,
        input[type=email]:focus::placeholder,
        input[type=tel]:focus::placeholder,
        input[type=number]:focus::placeholder,
        input[type=password]:focus::placeholder,
        input[type=url]:focus::placeholder,
        textarea:focus::placeholder {
            opacity: 0;
        }

textarea {
    height: 164px;
    line-height: 1.4;
    padding-top: 17px;
    padding-bottom: 17px;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--mt-common-black);
    color: var(--mt-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--mt-common-black);
    color: var(--mt-common-white);
    text-shadow: none;
}

::selection {
    background: var(--mt-common-black);
    color: var(--mt-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--mt-common-black);
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: var(--mt-common-black);
    font-size: 14px;
    opacity: 1;
}

.z-index {
    position: relative;
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

.z-index-4 {
    position: relative;
    z-index: 4;
}

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

.z-index-6 {
    position: relative;
    z-index: 6;
}

.z-index-7 {
    position: relative;
    z-index: 7;
}

.z-index-8 {
    position: relative;
    z-index: 8;
}

.z-index-9 {
    position: relative;
    z-index: 9;
}

.gx-10 {
    --bs-gutter-x: 10px;
}

.gx-15 {
    --bs-gutter-x: 15px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gx-25 {
    --bs-gutter-x: 25px;
}

.gx-30 {
    --bs-gutter-x: 30px;
}

.gx-35 {
    --bs-gutter-x: 35px;
}

.gx-40 {
    --bs-gutter-x: 40px;
}

.gx-45 {
    --bs-gutter-x: 45px;
}

.gx-50 {
    --bs-gutter-x: 50px;
}

.mt-slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.mt-brand-slide-element {
    width: auto;
    display: inline-block;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.br-20 {
    border-radius: 20px;
}

.br-10 {
    border-radius: 10px;
}

.br-5 img {
    border-radius: 5px;
}

.br-8 img {
    border-radius: 8px;
}

.br-12 img {
    border-radius: 12px;
}

.br-15 img {
    border-radius: 15px;
}

.br-20 img {
    border-radius: 20px;
}

.br-40 img {
    border-radius: 40px;
}

.mt-fs-24 {
    font-size: 24px;
}

.pt-190 {
    padding-top: 190px;
}

.mt-upper {
    text-transform: uppercase;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
    background-color: var(--mt-common-black);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .body-overlay:hover {
        cursor: url("../img/icon/cross-out.html"), pointer;
    }

    .body-overlay.opened {
        opacity: 0.7;
        visibility: visible;
    }

/* dropcap */
.mt-dropcap::first-letter {
    font-size: 90px;
    font-weight: 500;
    float: left;
    text-align: center;
    color: var(--mt-common-black);
    margin-right: 5px;
    line-height: inherit;
    text-transform: capitalize;
}

.class {
    stroke-dasharray: 189px, 191px;
    stroke-dashoffset: 0px;
}

/* gutter for x axis */
.mt-gx-20 {
    --bs-gutter-x: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-gx-20 {
        --bs-gutter-x: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-gx-20 {
        --bs-gutter-x: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .mt-gx-20 {
        --bs-gutter-x: 15px;
    }
}

@media (max-width: 767px) {
    .mt-gx-20 {
        --bs-gutter-x: 10px;
    }
}

.mt-gx-20 [class*=col-] {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.mt-gx-30 {
    --bs-gutter-x: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-gx-30 {
        --bs-gutter-x: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-gx-30 {
        --bs-gutter-x: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .mt-gx-30 {
        --bs-gutter-x: 15px;
    }
}

@media (max-width: 767px) {
    .mt-gx-30 {
        --bs-gutter-x: 10px;
    }
}

.mt-gx-30 [class*=col-] {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.mt-gx-40 {
    --bs-gutter-x: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-gx-40 {
        --bs-gutter-x: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-gx-40 {
        --bs-gutter-x: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .mt-gx-40 {
        --bs-gutter-x: 30px;
    }
}

@media (max-width: 767px) {
    .mt-gx-40 {
        --bs-gutter-x: 15px;
    }
}

.mt-gx-40 [class*=col-] {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 1400px) {
    .container-large {
        max-width: 1325px;
    }
}
/*----------------------------------------*/
/*  1.3 Default Spacing
/*----------------------------------------*/
/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-1 {
    margin-top: 1px;
}

.mt-2 {
    margin-top: 2px;
}

.mt-3 {
    margin-top: 3px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-7 {
    margin-top: 7px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-9 {
    margin-top: 9px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-11 {
    margin-top: 11px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-13 {
    margin-top: 13px;
}

.mt-14 {
    margin-top: 14px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-17 {
    margin-top: 17px;
}

.mt-18 {
    margin-top: 18px;
}

.mt-19 {
    margin-top: 19px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-21 {
    margin-top: 21px;
}

.mt-22 {
    margin-top: 22px;
}

.mt-23 {
    margin-top: 23px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-26 {
    margin-top: 26px;
}

.mt-27 {
    margin-top: 27px;
}

.mt-28 {
    margin-top: 28px;
}

.mt-29 {
    margin-top: 29px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-31 {
    margin-top: 31px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-33 {
    margin-top: 33px;
}

.mt-34 {
    margin-top: 34px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-36 {
    margin-top: 36px;
}

.mt-37 {
    margin-top: 37px;
}

.mt-38 {
    margin-top: 38px;
}

.mt-39 {
    margin-top: 39px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-41 {
    margin-top: 41px;
}

.mt-42 {
    margin-top: 42px;
}

.mt-43 {
    margin-top: 43px;
}

.mt-44 {
    margin-top: 44px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-46 {
    margin-top: 46px;
}

.mt-47 {
    margin-top: 47px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-49 {
    margin-top: 49px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-51 {
    margin-top: 51px;
}

.mt-52 {
    margin-top: 52px;
}

.mt-53 {
    margin-top: 53px;
}

.mt-54 {
    margin-top: 54px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-56 {
    margin-top: 56px;
}

.mt-57 {
    margin-top: 57px;
}

.mt-58 {
    margin-top: 58px;
}

.mt-59 {
    margin-top: 59px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-61 {
    margin-top: 61px;
}

.mt-62 {
    margin-top: 62px;
}

.mt-63 {
    margin-top: 63px;
}

.mt-64 {
    margin-top: 64px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-66 {
    margin-top: 66px;
}

.mt-67 {
    margin-top: 67px;
}

.mt-68 {
    margin-top: 68px;
}

.mt-69 {
    margin-top: 69px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-71 {
    margin-top: 71px;
}

.mt-72 {
    margin-top: 72px;
}

.mt-73 {
    margin-top: 73px;
}

.mt-74 {
    margin-top: 74px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-76 {
    margin-top: 76px;
}

.mt-77 {
    margin-top: 77px;
}

.mt-78 {
    margin-top: 78px;
}

.mt-79 {
    margin-top: 79px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-81 {
    margin-top: 81px;
}

.mt-82 {
    margin-top: 82px;
}

.mt-83 {
    margin-top: 83px;
}

.mt-84 {
    margin-top: 84px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-86 {
    margin-top: 86px;
}

.mt-87 {
    margin-top: 87px;
}

.mt-88 {
    margin-top: 88px;
}

.mt-89 {
    margin-top: 89px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-91 {
    margin-top: 91px;
}

.mt-92 {
    margin-top: 92px;
}

.mt-93 {
    margin-top: 93px;
}

.mt-94 {
    margin-top: 94px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-96 {
    margin-top: 96px;
}

.mt-97 {
    margin-top: 97px;
}

.mt-98 {
    margin-top: 98px;
}

.mt-99 {
    margin-top: 99px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-101 {
    margin-top: 101px;
}

.mt-102 {
    margin-top: 102px;
}

.mt-103 {
    margin-top: 103px;
}

.mt-104 {
    margin-top: 104px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-106 {
    margin-top: 106px;
}

.mt-107 {
    margin-top: 107px;
}

.mt-108 {
    margin-top: 108px;
}

.mt-109 {
    margin-top: 109px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-111 {
    margin-top: 111px;
}

.mt-112 {
    margin-top: 112px;
}

.mt-113 {
    margin-top: 113px;
}

.mt-114 {
    margin-top: 114px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-116 {
    margin-top: 116px;
}

.mt-117 {
    margin-top: 117px;
}

.mt-118 {
    margin-top: 118px;
}

.mt-119 {
    margin-top: 119px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-121 {
    margin-top: 121px;
}

.mt-122 {
    margin-top: 122px;
}

.mt-123 {
    margin-top: 123px;
}

.mt-124 {
    margin-top: 124px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-126 {
    margin-top: 126px;
}

.mt-127 {
    margin-top: 127px;
}

.mt-128 {
    margin-top: 128px;
}

.mt-129 {
    margin-top: 129px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-131 {
    margin-top: 131px;
}

.mt-132 {
    margin-top: 132px;
}

.mt-133 {
    margin-top: 133px;
}

.mt-134 {
    margin-top: 134px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-136 {
    margin-top: 136px;
}

.mt-137 {
    margin-top: 137px;
}

.mt-138 {
    margin-top: 138px;
}

.mt-139 {
    margin-top: 139px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-141 {
    margin-top: 141px;
}

.mt-142 {
    margin-top: 142px;
}

.mt-143 {
    margin-top: 143px;
}

.mt-144 {
    margin-top: 144px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-146 {
    margin-top: 146px;
}

.mt-147 {
    margin-top: 147px;
}

.mt-148 {
    margin-top: 148px;
}

.mt-149 {
    margin-top: 149px;
}

.mt-150 {
    margin-top: 150px;
}

/*-- Margin Bottom --*/
.mb-1 {
    margin-bottom: 1px;
}

.mb-2 {
    margin-bottom: 2px;
}

.mb-3 {
    margin-bottom: 3px;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-6 {
    margin-bottom: 6px;
}

.mb-7 {
    margin-bottom: 7px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-9 {
    margin-bottom: 9px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-11 {
    margin-bottom: 11px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-13 {
    margin-bottom: 13px;
}

.mb-14 {
    margin-bottom: 14px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-17 {
    margin-bottom: 17px;
}

.mb-18 {
    margin-bottom: 18px;
}

.mb-19 {
    margin-bottom: 19px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-21 {
    margin-bottom: 21px;
}

.mb-22 {
    margin-bottom: 22px;
}

.mb-23 {
    margin-bottom: 23px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-26 {
    margin-bottom: 26px;
}

.mb-27 {
    margin-bottom: 27px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mb-29 {
    margin-bottom: 29px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-31 {
    margin-bottom: 31px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-33 {
    margin-bottom: 33px;
}

.mb-34 {
    margin-bottom: 34px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-37 {
    margin-bottom: 37px;
}

.mb-38 {
    margin-bottom: 38px;
}

.mb-39 {
    margin-bottom: 39px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-41 {
    margin-bottom: 41px;
}

.mb-42 {
    margin-bottom: 42px;
}

.mb-43 {
    margin-bottom: 43px;
}

.mb-44 {
    margin-bottom: 44px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-46 {
    margin-bottom: 46px;
}

.mb-47 {
    margin-bottom: 47px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-49 {
    margin-bottom: 49px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-51 {
    margin-bottom: 51px;
}

.mb-52 {
    margin-bottom: 52px;
}

.mb-53 {
    margin-bottom: 53px;
}

.mb-54 {
    margin-bottom: 54px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-56 {
    margin-bottom: 56px;
}

.mb-57 {
    margin-bottom: 57px;
}

.mb-58 {
    margin-bottom: 58px;
}

.mb-59 {
    margin-bottom: 59px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-61 {
    margin-bottom: 61px;
}

.mb-62 {
    margin-bottom: 62px;
}

.mb-63 {
    margin-bottom: 63px;
}

.mb-64 {
    margin-bottom: 64px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-66 {
    margin-bottom: 66px;
}

.mb-67 {
    margin-bottom: 67px;
}

.mb-68 {
    margin-bottom: 68px;
}

.mb-69 {
    margin-bottom: 69px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-71 {
    margin-bottom: 71px;
}

.mb-72 {
    margin-bottom: 72px;
}

.mb-73 {
    margin-bottom: 73px;
}

.mb-74 {
    margin-bottom: 74px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-76 {
    margin-bottom: 76px;
}

.mb-77 {
    margin-bottom: 77px;
}

.mb-78 {
    margin-bottom: 78px;
}

.mb-79 {
    margin-bottom: 79px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-81 {
    margin-bottom: 81px;
}

.mb-82 {
    margin-bottom: 82px;
}

.mb-83 {
    margin-bottom: 83px;
}

.mb-84 {
    margin-bottom: 84px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-86 {
    margin-bottom: 86px;
}

.mb-87 {
    margin-bottom: 87px;
}

.mb-88 {
    margin-bottom: 88px;
}

.mb-89 {
    margin-bottom: 89px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-91 {
    margin-bottom: 91px;
}

.mb-92 {
    margin-bottom: 92px;
}

.mb-93 {
    margin-bottom: 93px;
}

.mb-94 {
    margin-bottom: 94px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-96 {
    margin-bottom: 96px;
}

.mb-97 {
    margin-bottom: 97px;
}

.mb-98 {
    margin-bottom: 98px;
}

.mb-99 {
    margin-bottom: 99px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-101 {
    margin-bottom: 101px;
}

.mb-102 {
    margin-bottom: 102px;
}

.mb-103 {
    margin-bottom: 103px;
}

.mb-104 {
    margin-bottom: 104px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-106 {
    margin-bottom: 106px;
}

.mb-107 {
    margin-bottom: 107px;
}

.mb-108 {
    margin-bottom: 108px;
}

.mb-109 {
    margin-bottom: 109px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-111 {
    margin-bottom: 111px;
}

.mb-112 {
    margin-bottom: 112px;
}

.mb-113 {
    margin-bottom: 113px;
}

.mb-114 {
    margin-bottom: 114px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-116 {
    margin-bottom: 116px;
}

.mb-117 {
    margin-bottom: 117px;
}

.mb-118 {
    margin-bottom: 118px;
}

.mb-119 {
    margin-bottom: 119px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-121 {
    margin-bottom: 121px;
}

.mb-122 {
    margin-bottom: 122px;
}

.mb-123 {
    margin-bottom: 123px;
}

.mb-124 {
    margin-bottom: 124px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-126 {
    margin-bottom: 126px;
}

.mb-127 {
    margin-bottom: 127px;
}

.mb-128 {
    margin-bottom: 128px;
}

.mb-129 {
    margin-bottom: 129px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-131 {
    margin-bottom: 131px;
}

.mb-132 {
    margin-bottom: 132px;
}

.mb-133 {
    margin-bottom: 133px;
}

.mb-134 {
    margin-bottom: 134px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-136 {
    margin-bottom: 136px;
}

.mb-137 {
    margin-bottom: 137px;
}

.mb-138 {
    margin-bottom: 138px;
}

.mb-139 {
    margin-bottom: 139px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-141 {
    margin-bottom: 141px;
}

.mb-142 {
    margin-bottom: 142px;
}

.mb-143 {
    margin-bottom: 143px;
}

.mb-144 {
    margin-bottom: 144px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-146 {
    margin-bottom: 146px;
}

.mb-147 {
    margin-bottom: 147px;
}

.mb-148 {
    margin-bottom: 148px;
}

.mb-149 {
    margin-bottom: 149px;
}

.mb-150 {
    margin-bottom: 150px;
}

/*-- Margin Left --*/
.ml-1 {
    margin-left: 1px;
}

.ml-2 {
    margin-left: 2px;
}

.ml-3 {
    margin-left: 3px;
}

.ml-4 {
    margin-left: 4px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-6 {
    margin-left: 6px;
}

.ml-7 {
    margin-left: 7px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-9 {
    margin-left: 9px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-11 {
    margin-left: 11px;
}

.ml-12 {
    margin-left: 12px;
}

.ml-13 {
    margin-left: 13px;
}

.ml-14 {
    margin-left: 14px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-16 {
    margin-left: 16px;
}

.ml-17 {
    margin-left: 17px;
}

.ml-18 {
    margin-left: 18px;
}

.ml-19 {
    margin-left: 19px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-21 {
    margin-left: 21px;
}

.ml-22 {
    margin-left: 22px;
}

.ml-23 {
    margin-left: 23px;
}

.ml-24 {
    margin-left: 24px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-26 {
    margin-left: 26px;
}

.ml-27 {
    margin-left: 27px;
}

.ml-28 {
    margin-left: 28px;
}

.ml-29 {
    margin-left: 29px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-31 {
    margin-left: 31px;
}

.ml-32 {
    margin-left: 32px;
}

.ml-33 {
    margin-left: 33px;
}

.ml-34 {
    margin-left: 34px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-36 {
    margin-left: 36px;
}

.ml-37 {
    margin-left: 37px;
}

.ml-38 {
    margin-left: 38px;
}

.ml-39 {
    margin-left: 39px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-41 {
    margin-left: 41px;
}

.ml-42 {
    margin-left: 42px;
}

.ml-43 {
    margin-left: 43px;
}

.ml-44 {
    margin-left: 44px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-46 {
    margin-left: 46px;
}

.ml-47 {
    margin-left: 47px;
}

.ml-48 {
    margin-left: 48px;
}

.ml-49 {
    margin-left: 49px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-51 {
    margin-left: 51px;
}

.ml-52 {
    margin-left: 52px;
}

.ml-53 {
    margin-left: 53px;
}

.ml-54 {
    margin-left: 54px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-56 {
    margin-left: 56px;
}

.ml-57 {
    margin-left: 57px;
}

.ml-58 {
    margin-left: 58px;
}

.ml-59 {
    margin-left: 59px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-61 {
    margin-left: 61px;
}

.ml-62 {
    margin-left: 62px;
}

.ml-63 {
    margin-left: 63px;
}

.ml-64 {
    margin-left: 64px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-66 {
    margin-left: 66px;
}

.ml-67 {
    margin-left: 67px;
}

.ml-68 {
    margin-left: 68px;
}

.ml-69 {
    margin-left: 69px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-71 {
    margin-left: 71px;
}

.ml-72 {
    margin-left: 72px;
}

.ml-73 {
    margin-left: 73px;
}

.ml-74 {
    margin-left: 74px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-76 {
    margin-left: 76px;
}

.ml-77 {
    margin-left: 77px;
}

.ml-78 {
    margin-left: 78px;
}

.ml-79 {
    margin-left: 79px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-81 {
    margin-left: 81px;
}

.ml-82 {
    margin-left: 82px;
}

.ml-83 {
    margin-left: 83px;
}

.ml-84 {
    margin-left: 84px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-86 {
    margin-left: 86px;
}

.ml-87 {
    margin-left: 87px;
}

.ml-88 {
    margin-left: 88px;
}

.ml-89 {
    margin-left: 89px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-91 {
    margin-left: 91px;
}

.ml-92 {
    margin-left: 92px;
}

.ml-93 {
    margin-left: 93px;
}

.ml-94 {
    margin-left: 94px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-96 {
    margin-left: 96px;
}

.ml-97 {
    margin-left: 97px;
}

.ml-98 {
    margin-left: 98px;
}

.ml-99 {
    margin-left: 99px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-101 {
    margin-left: 101px;
}

.ml-102 {
    margin-left: 102px;
}

.ml-103 {
    margin-left: 103px;
}

.ml-104 {
    margin-left: 104px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-106 {
    margin-left: 106px;
}

.ml-107 {
    margin-left: 107px;
}

.ml-108 {
    margin-left: 108px;
}

.ml-109 {
    margin-left: 109px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-111 {
    margin-left: 111px;
}

.ml-112 {
    margin-left: 112px;
}

.ml-113 {
    margin-left: 113px;
}

.ml-114 {
    margin-left: 114px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-116 {
    margin-left: 116px;
}

.ml-117 {
    margin-left: 117px;
}

.ml-118 {
    margin-left: 118px;
}

.ml-119 {
    margin-left: 119px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-121 {
    margin-left: 121px;
}

.ml-122 {
    margin-left: 122px;
}

.ml-123 {
    margin-left: 123px;
}

.ml-124 {
    margin-left: 124px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-126 {
    margin-left: 126px;
}

.ml-127 {
    margin-left: 127px;
}

.ml-128 {
    margin-left: 128px;
}

.ml-129 {
    margin-left: 129px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-131 {
    margin-left: 131px;
}

.ml-132 {
    margin-left: 132px;
}

.ml-133 {
    margin-left: 133px;
}

.ml-134 {
    margin-left: 134px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-136 {
    margin-left: 136px;
}

.ml-137 {
    margin-left: 137px;
}

.ml-138 {
    margin-left: 138px;
}

.ml-139 {
    margin-left: 139px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-141 {
    margin-left: 141px;
}

.ml-142 {
    margin-left: 142px;
}

.ml-143 {
    margin-left: 143px;
}

.ml-144 {
    margin-left: 144px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-146 {
    margin-left: 146px;
}

.ml-147 {
    margin-left: 147px;
}

.ml-148 {
    margin-left: 148px;
}

.ml-149 {
    margin-left: 149px;
}

.ml-150 {
    margin-left: 150px;
}

/*-- Margin Right --*/
.mr-1 {
    margin-right: 1px;
}

.mr-2 {
    margin-right: 2px;
}

.mr-3 {
    margin-right: 3px;
}

.mr-4 {
    margin-right: 4px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-6 {
    margin-right: 6px;
}

.mr-7 {
    margin-right: 7px;
}

.mr-8 {
    margin-right: 8px;
}

.mr-9 {
    margin-right: 9px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-11 {
    margin-right: 11px;
}

.mr-12 {
    margin-right: 12px;
}

.mr-13 {
    margin-right: 13px;
}

.mr-14 {
    margin-right: 14px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-16 {
    margin-right: 16px;
}

.mr-17 {
    margin-right: 17px;
}

.mr-18 {
    margin-right: 18px;
}

.mr-19 {
    margin-right: 19px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-21 {
    margin-right: 21px;
}

.mr-22 {
    margin-right: 22px;
}

.mr-23 {
    margin-right: 23px;
}

.mr-24 {
    margin-right: 24px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-26 {
    margin-right: 26px;
}

.mr-27 {
    margin-right: 27px;
}

.mr-28 {
    margin-right: 28px;
}

.mr-29 {
    margin-right: 29px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-31 {
    margin-right: 31px;
}

.mr-32 {
    margin-right: 32px;
}

.mr-33 {
    margin-right: 33px;
}

.mr-34 {
    margin-right: 34px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-36 {
    margin-right: 36px;
}

.mr-37 {
    margin-right: 37px;
}

.mr-38 {
    margin-right: 38px;
}

.mr-39 {
    margin-right: 39px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-41 {
    margin-right: 41px;
}

.mr-42 {
    margin-right: 42px;
}

.mr-43 {
    margin-right: 43px;
}

.mr-44 {
    margin-right: 44px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-46 {
    margin-right: 46px;
}

.mr-47 {
    margin-right: 47px;
}

.mr-48 {
    margin-right: 48px;
}

.mr-49 {
    margin-right: 49px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-51 {
    margin-right: 51px;
}

.mr-52 {
    margin-right: 52px;
}

.mr-53 {
    margin-right: 53px;
}

.mr-54 {
    margin-right: 54px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-56 {
    margin-right: 56px;
}

.mr-57 {
    margin-right: 57px;
}

.mr-58 {
    margin-right: 58px;
}

.mr-59 {
    margin-right: 59px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-61 {
    margin-right: 61px;
}

.mr-62 {
    margin-right: 62px;
}

.mr-63 {
    margin-right: 63px;
}

.mr-64 {
    margin-right: 64px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-66 {
    margin-right: 66px;
}

.mr-67 {
    margin-right: 67px;
}

.mr-68 {
    margin-right: 68px;
}

.mr-69 {
    margin-right: 69px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-71 {
    margin-right: 71px;
}

.mr-72 {
    margin-right: 72px;
}

.mr-73 {
    margin-right: 73px;
}

.mr-74 {
    margin-right: 74px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-76 {
    margin-right: 76px;
}

.mr-77 {
    margin-right: 77px;
}

.mr-78 {
    margin-right: 78px;
}

.mr-79 {
    margin-right: 79px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-81 {
    margin-right: 81px;
}

.mr-82 {
    margin-right: 82px;
}

.mr-83 {
    margin-right: 83px;
}

.mr-84 {
    margin-right: 84px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-86 {
    margin-right: 86px;
}

.mr-87 {
    margin-right: 87px;
}

.mr-88 {
    margin-right: 88px;
}

.mr-89 {
    margin-right: 89px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-91 {
    margin-right: 91px;
}

.mr-92 {
    margin-right: 92px;
}

.mr-93 {
    margin-right: 93px;
}

.mr-94 {
    margin-right: 94px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-96 {
    margin-right: 96px;
}

.mr-97 {
    margin-right: 97px;
}

.mr-98 {
    margin-right: 98px;
}

.mr-99 {
    margin-right: 99px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-101 {
    margin-right: 101px;
}

.mr-102 {
    margin-right: 102px;
}

.mr-103 {
    margin-right: 103px;
}

.mr-104 {
    margin-right: 104px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-106 {
    margin-right: 106px;
}

.mr-107 {
    margin-right: 107px;
}

.mr-108 {
    margin-right: 108px;
}

.mr-109 {
    margin-right: 109px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-111 {
    margin-right: 111px;
}

.mr-112 {
    margin-right: 112px;
}

.mr-113 {
    margin-right: 113px;
}

.mr-114 {
    margin-right: 114px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-116 {
    margin-right: 116px;
}

.mr-117 {
    margin-right: 117px;
}

.mr-118 {
    margin-right: 118px;
}

.mr-119 {
    margin-right: 119px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-121 {
    margin-right: 121px;
}

.mr-122 {
    margin-right: 122px;
}

.mr-123 {
    margin-right: 123px;
}

.mr-124 {
    margin-right: 124px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-126 {
    margin-right: 126px;
}

.mr-127 {
    margin-right: 127px;
}

.mr-128 {
    margin-right: 128px;
}

.mr-129 {
    margin-right: 129px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-131 {
    margin-right: 131px;
}

.mr-132 {
    margin-right: 132px;
}

.mr-133 {
    margin-right: 133px;
}

.mr-134 {
    margin-right: 134px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-136 {
    margin-right: 136px;
}

.mr-137 {
    margin-right: 137px;
}

.mr-138 {
    margin-right: 138px;
}

.mr-139 {
    margin-right: 139px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-141 {
    margin-right: 141px;
}

.mr-142 {
    margin-right: 142px;
}

.mr-143 {
    margin-right: 143px;
}

.mr-144 {
    margin-right: 144px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-146 {
    margin-right: 146px;
}

.mr-147 {
    margin-right: 147px;
}

.mr-148 {
    margin-right: 148px;
}

.mr-149 {
    margin-right: 149px;
}

.mr-150 {
    margin-right: 150px;
}

/*-- Padding Top --*/
.pt-1 {
    padding-top: 1px;
}

.pt-2 {
    padding-top: 2px;
}

.pt-3 {
    padding-top: 3px;
}

.pt-4 {
    padding-top: 4px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-6 {
    padding-top: 6px;
}

.pt-7 {
    padding-top: 7px;
}

.pt-8 {
    padding-top: 8px;
}

.pt-9 {
    padding-top: 9px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-11 {
    padding-top: 11px;
}

.pt-12 {
    padding-top: 12px;
}

.pt-13 {
    padding-top: 13px;
}

.pt-14 {
    padding-top: 14px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-16 {
    padding-top: 16px;
}

.pt-17 {
    padding-top: 17px;
}

.pt-18 {
    padding-top: 18px;
}

.pt-19 {
    padding-top: 19px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-21 {
    padding-top: 21px;
}

.pt-22 {
    padding-top: 22px;
}

.pt-23 {
    padding-top: 23px;
}

.pt-24 {
    padding-top: 24px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-26 {
    padding-top: 26px;
}

.pt-27 {
    padding-top: 27px;
}

.pt-28 {
    padding-top: 28px;
}

.pt-29 {
    padding-top: 29px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-31 {
    padding-top: 31px;
}

.pt-32 {
    padding-top: 32px;
}

.pt-33 {
    padding-top: 33px;
}

.pt-34 {
    padding-top: 34px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-36 {
    padding-top: 36px;
}

.pt-37 {
    padding-top: 37px;
}

.pt-38 {
    padding-top: 38px;
}

.pt-39 {
    padding-top: 39px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-41 {
    padding-top: 41px;
}

.pt-42 {
    padding-top: 42px;
}

.pt-43 {
    padding-top: 43px;
}

.pt-44 {
    padding-top: 44px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-46 {
    padding-top: 46px;
}

.pt-47 {
    padding-top: 47px;
}

.pt-48 {
    padding-top: 48px;
}

.pt-49 {
    padding-top: 49px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-51 {
    padding-top: 51px;
}

.pt-52 {
    padding-top: 52px;
}

.pt-53 {
    padding-top: 53px;
}

.pt-54 {
    padding-top: 54px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-56 {
    padding-top: 56px;
}

.pt-57 {
    padding-top: 57px;
}

.pt-58 {
    padding-top: 58px;
}

.pt-59 {
    padding-top: 59px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-61 {
    padding-top: 61px;
}

.pt-62 {
    padding-top: 62px;
}

.pt-63 {
    padding-top: 63px;
}

.pt-64 {
    padding-top: 64px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-66 {
    padding-top: 66px;
}

.pt-67 {
    padding-top: 67px;
}

.pt-68 {
    padding-top: 68px;
}

.pt-69 {
    padding-top: 69px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-71 {
    padding-top: 71px;
}

.pt-72 {
    padding-top: 72px;
}

.pt-73 {
    padding-top: 73px;
}

.pt-74 {
    padding-top: 74px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-76 {
    padding-top: 76px;
}

.pt-77 {
    padding-top: 77px;
}

.pt-78 {
    padding-top: 78px;
}

.pt-79 {
    padding-top: 79px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-81 {
    padding-top: 81px;
}

.pt-82 {
    padding-top: 82px;
}

.pt-83 {
    padding-top: 83px;
}

.pt-84 {
    padding-top: 84px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-86 {
    padding-top: 86px;
}

.pt-87 {
    padding-top: 87px;
}

.pt-88 {
    padding-top: 88px;
}

.pt-89 {
    padding-top: 89px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-91 {
    padding-top: 91px;
}

.pt-92 {
    padding-top: 92px;
}

.pt-93 {
    padding-top: 93px;
}

.pt-94 {
    padding-top: 94px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-96 {
    padding-top: 96px;
}

.pt-97 {
    padding-top: 97px;
}

.pt-98 {
    padding-top: 98px;
}

.pt-99 {
    padding-top: 99px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-101 {
    padding-top: 101px;
}

.pt-102 {
    padding-top: 102px;
}

.pt-103 {
    padding-top: 103px;
}

.pt-104 {
    padding-top: 104px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-106 {
    padding-top: 106px;
}

.pt-107 {
    padding-top: 107px;
}

.pt-108 {
    padding-top: 108px;
}

.pt-109 {
    padding-top: 109px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-111 {
    padding-top: 111px;
}

.pt-112 {
    padding-top: 112px;
}

.pt-113 {
    padding-top: 113px;
}

.pt-114 {
    padding-top: 114px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-116 {
    padding-top: 116px;
}

.pt-117 {
    padding-top: 117px;
}

.pt-118 {
    padding-top: 118px;
}

.pt-119 {
    padding-top: 119px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-121 {
    padding-top: 121px;
}

.pt-122 {
    padding-top: 122px;
}

.pt-123 {
    padding-top: 123px;
}

.pt-124 {
    padding-top: 124px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-126 {
    padding-top: 126px;
}

.pt-127 {
    padding-top: 127px;
}

.pt-128 {
    padding-top: 128px;
}

.pt-129 {
    padding-top: 129px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-131 {
    padding-top: 131px;
}

.pt-132 {
    padding-top: 132px;
}

.pt-133 {
    padding-top: 133px;
}

.pt-134 {
    padding-top: 134px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-136 {
    padding-top: 136px;
}

.pt-137 {
    padding-top: 137px;
}

.pt-138 {
    padding-top: 138px;
}

.pt-139 {
    padding-top: 139px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-141 {
    padding-top: 141px;
}

.pt-142 {
    padding-top: 142px;
}

.pt-143 {
    padding-top: 143px;
}

.pt-144 {
    padding-top: 144px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-146 {
    padding-top: 146px;
}

.pt-147 {
    padding-top: 147px;
}

.pt-148 {
    padding-top: 148px;
}

.pt-149 {
    padding-top: 149px;
}

.pt-150 {
    padding-top: 150px;
}

/*-- Padding Bottom --*/
.pb-1 {
    padding-bottom: 1px;
}

.pb-2 {
    padding-bottom: 2px;
}

.pb-3 {
    padding-bottom: 3px;
}

.pb-4 {
    padding-bottom: 4px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-6 {
    padding-bottom: 6px;
}

.pb-7 {
    padding-bottom: 7px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-9 {
    padding-bottom: 9px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-11 {
    padding-bottom: 11px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pb-13 {
    padding-bottom: 13px;
}

.pb-14 {
    padding-bottom: 14px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pb-17 {
    padding-bottom: 17px;
}

.pb-18 {
    padding-bottom: 18px;
}

.pb-19 {
    padding-bottom: 19px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-21 {
    padding-bottom: 21px;
}

.pb-22 {
    padding-bottom: 22px;
}

.pb-23 {
    padding-bottom: 23px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-26 {
    padding-bottom: 26px;
}

.pb-27 {
    padding-bottom: 27px;
}

.pb-28 {
    padding-bottom: 28px;
}

.pb-29 {
    padding-bottom: 29px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-31 {
    padding-bottom: 31px;
}

.pb-32 {
    padding-bottom: 32px;
}

.pb-33 {
    padding-bottom: 33px;
}

.pb-34 {
    padding-bottom: 34px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-36 {
    padding-bottom: 36px;
}

.pb-37 {
    padding-bottom: 37px;
}

.pb-38 {
    padding-bottom: 38px;
}

.pb-39 {
    padding-bottom: 39px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-41 {
    padding-bottom: 41px;
}

.pb-42 {
    padding-bottom: 42px;
}

.pb-43 {
    padding-bottom: 43px;
}

.pb-44 {
    padding-bottom: 44px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-46 {
    padding-bottom: 46px;
}

.pb-47 {
    padding-bottom: 47px;
}

.pb-48 {
    padding-bottom: 48px;
}

.pb-49 {
    padding-bottom: 49px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-51 {
    padding-bottom: 51px;
}

.pb-52 {
    padding-bottom: 52px;
}

.pb-53 {
    padding-bottom: 53px;
}

.pb-54 {
    padding-bottom: 54px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-56 {
    padding-bottom: 56px;
}

.pb-57 {
    padding-bottom: 57px;
}

.pb-58 {
    padding-bottom: 58px;
}

.pb-59 {
    padding-bottom: 59px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-61 {
    padding-bottom: 61px;
}

.pb-62 {
    padding-bottom: 62px;
}

.pb-63 {
    padding-bottom: 63px;
}

.pb-64 {
    padding-bottom: 64px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-66 {
    padding-bottom: 66px;
}

.pb-67 {
    padding-bottom: 67px;
}

.pb-68 {
    padding-bottom: 68px;
}

.pb-69 {
    padding-bottom: 69px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-71 {
    padding-bottom: 71px;
}

.pb-72 {
    padding-bottom: 72px;
}

.pb-73 {
    padding-bottom: 73px;
}

.pb-74 {
    padding-bottom: 74px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-76 {
    padding-bottom: 76px;
}

.pb-77 {
    padding-bottom: 77px;
}

.pb-78 {
    padding-bottom: 78px;
}

.pb-79 {
    padding-bottom: 79px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-81 {
    padding-bottom: 81px;
}

.pb-82 {
    padding-bottom: 82px;
}

.pb-83 {
    padding-bottom: 83px;
}

.pb-84 {
    padding-bottom: 84px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-86 {
    padding-bottom: 86px;
}

.pb-87 {
    padding-bottom: 87px;
}

.pb-88 {
    padding-bottom: 88px;
}

.pb-89 {
    padding-bottom: 89px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-91 {
    padding-bottom: 91px;
}

.pb-92 {
    padding-bottom: 92px;
}

.pb-93 {
    padding-bottom: 93px;
}

.pb-94 {
    padding-bottom: 94px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-96 {
    padding-bottom: 96px;
}

.pb-97 {
    padding-bottom: 97px;
}

.pb-98 {
    padding-bottom: 98px;
}

.pb-99 {
    padding-bottom: 99px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-101 {
    padding-bottom: 101px;
}

.pb-102 {
    padding-bottom: 102px;
}

.pb-103 {
    padding-bottom: 103px;
}

.pb-104 {
    padding-bottom: 104px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-106 {
    padding-bottom: 106px;
}

.pb-107 {
    padding-bottom: 107px;
}

.pb-108 {
    padding-bottom: 108px;
}

.pb-109 {
    padding-bottom: 109px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-111 {
    padding-bottom: 111px;
}

.pb-112 {
    padding-bottom: 112px;
}

.pb-113 {
    padding-bottom: 113px;
}

.pb-114 {
    padding-bottom: 114px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-116 {
    padding-bottom: 116px;
}

.pb-117 {
    padding-bottom: 117px;
}

.pb-118 {
    padding-bottom: 118px;
}

.pb-119 {
    padding-bottom: 119px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-121 {
    padding-bottom: 121px;
}

.pb-122 {
    padding-bottom: 122px;
}

.pb-123 {
    padding-bottom: 123px;
}

.pb-124 {
    padding-bottom: 124px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-126 {
    padding-bottom: 126px;
}

.pb-127 {
    padding-bottom: 127px;
}

.pb-128 {
    padding-bottom: 128px;
}

.pb-129 {
    padding-bottom: 129px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-131 {
    padding-bottom: 131px;
}

.pb-132 {
    padding-bottom: 132px;
}

.pb-133 {
    padding-bottom: 133px;
}

.pb-134 {
    padding-bottom: 134px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-136 {
    padding-bottom: 136px;
}

.pb-137 {
    padding-bottom: 137px;
}

.pb-138 {
    padding-bottom: 138px;
}

.pb-139 {
    padding-bottom: 139px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-141 {
    padding-bottom: 141px;
}

.pb-142 {
    padding-bottom: 142px;
}

.pb-143 {
    padding-bottom: 143px;
}

.pb-144 {
    padding-bottom: 144px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-146 {
    padding-bottom: 146px;
}

.pb-147 {
    padding-bottom: 147px;
}

.pb-148 {
    padding-bottom: 148px;
}

.pb-149 {
    padding-bottom: 149px;
}

.pb-150 {
    padding-bottom: 150px;
}

/*-- Padding Left --*/
.pl-1 {
    padding-left: 1px;
}

.pl-2 {
    padding-left: 2px;
}

.pl-3 {
    padding-left: 3px;
}

.pl-4 {
    padding-left: 4px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-6 {
    padding-left: 6px;
}

.pl-7 {
    padding-left: 7px;
}

.pl-8 {
    padding-left: 8px;
}

.pl-9 {
    padding-left: 9px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-11 {
    padding-left: 11px;
}

.pl-12 {
    padding-left: 12px;
}

.pl-13 {
    padding-left: 13px;
}

.pl-14 {
    padding-left: 14px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-16 {
    padding-left: 16px;
}

.pl-17 {
    padding-left: 17px;
}

.pl-18 {
    padding-left: 18px;
}

.pl-19 {
    padding-left: 19px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-21 {
    padding-left: 21px;
}

.pl-22 {
    padding-left: 22px;
}

.pl-23 {
    padding-left: 23px;
}

.pl-24 {
    padding-left: 24px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-26 {
    padding-left: 26px;
}

.pl-27 {
    padding-left: 27px;
}

.pl-28 {
    padding-left: 28px;
}

.pl-29 {
    padding-left: 29px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-31 {
    padding-left: 31px;
}

.pl-32 {
    padding-left: 32px;
}

.pl-33 {
    padding-left: 33px;
}

.pl-34 {
    padding-left: 34px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-36 {
    padding-left: 36px;
}

.pl-37 {
    padding-left: 37px;
}

.pl-38 {
    padding-left: 38px;
}

.pl-39 {
    padding-left: 39px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-41 {
    padding-left: 41px;
}

.pl-42 {
    padding-left: 42px;
}

.pl-43 {
    padding-left: 43px;
}

.pl-44 {
    padding-left: 44px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-46 {
    padding-left: 46px;
}

.pl-47 {
    padding-left: 47px;
}

.pl-48 {
    padding-left: 48px;
}

.pl-49 {
    padding-left: 49px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-51 {
    padding-left: 51px;
}

.pl-52 {
    padding-left: 52px;
}

.pl-53 {
    padding-left: 53px;
}

.pl-54 {
    padding-left: 54px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-56 {
    padding-left: 56px;
}

.pl-57 {
    padding-left: 57px;
}

.pl-58 {
    padding-left: 58px;
}

.pl-59 {
    padding-left: 59px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-61 {
    padding-left: 61px;
}

.pl-62 {
    padding-left: 62px;
}

.pl-63 {
    padding-left: 63px;
}

.pl-64 {
    padding-left: 64px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-66 {
    padding-left: 66px;
}

.pl-67 {
    padding-left: 67px;
}

.pl-68 {
    padding-left: 68px;
}

.pl-69 {
    padding-left: 69px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-71 {
    padding-left: 71px;
}

.pl-72 {
    padding-left: 72px;
}

.pl-73 {
    padding-left: 73px;
}

.pl-74 {
    padding-left: 74px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-76 {
    padding-left: 76px;
}

.pl-77 {
    padding-left: 77px;
}

.pl-78 {
    padding-left: 78px;
}

.pl-79 {
    padding-left: 79px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-81 {
    padding-left: 81px;
}

.pl-82 {
    padding-left: 82px;
}

.pl-83 {
    padding-left: 83px;
}

.pl-84 {
    padding-left: 84px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-86 {
    padding-left: 86px;
}

.pl-87 {
    padding-left: 87px;
}

.pl-88 {
    padding-left: 88px;
}

.pl-89 {
    padding-left: 89px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-91 {
    padding-left: 91px;
}

.pl-92 {
    padding-left: 92px;
}

.pl-93 {
    padding-left: 93px;
}

.pl-94 {
    padding-left: 94px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-96 {
    padding-left: 96px;
}

.pl-97 {
    padding-left: 97px;
}

.pl-98 {
    padding-left: 98px;
}

.pl-99 {
    padding-left: 99px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-101 {
    padding-left: 101px;
}

.pl-102 {
    padding-left: 102px;
}

.pl-103 {
    padding-left: 103px;
}

.pl-104 {
    padding-left: 104px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-106 {
    padding-left: 106px;
}

.pl-107 {
    padding-left: 107px;
}

.pl-108 {
    padding-left: 108px;
}

.pl-109 {
    padding-left: 109px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-111 {
    padding-left: 111px;
}

.pl-112 {
    padding-left: 112px;
}

.pl-113 {
    padding-left: 113px;
}

.pl-114 {
    padding-left: 114px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-116 {
    padding-left: 116px;
}

.pl-117 {
    padding-left: 117px;
}

.pl-118 {
    padding-left: 118px;
}

.pl-119 {
    padding-left: 119px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-121 {
    padding-left: 121px;
}

.pl-122 {
    padding-left: 122px;
}

.pl-123 {
    padding-left: 123px;
}

.pl-124 {
    padding-left: 124px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-126 {
    padding-left: 126px;
}

.pl-127 {
    padding-left: 127px;
}

.pl-128 {
    padding-left: 128px;
}

.pl-129 {
    padding-left: 129px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-131 {
    padding-left: 131px;
}

.pl-132 {
    padding-left: 132px;
}

.pl-133 {
    padding-left: 133px;
}

.pl-134 {
    padding-left: 134px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-136 {
    padding-left: 136px;
}

.pl-137 {
    padding-left: 137px;
}

.pl-138 {
    padding-left: 138px;
}

.pl-139 {
    padding-left: 139px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-141 {
    padding-left: 141px;
}

.pl-142 {
    padding-left: 142px;
}

.pl-143 {
    padding-left: 143px;
}

.pl-144 {
    padding-left: 144px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-146 {
    padding-left: 146px;
}

.pl-147 {
    padding-left: 147px;
}

.pl-148 {
    padding-left: 148px;
}

.pl-149 {
    padding-left: 149px;
}

.pl-150 {
    padding-left: 150px;
}

/*-- Padding Right --*/
.pr-1 {
    padding-right: 1px;
}

.pr-2 {
    padding-right: 2px;
}

.pr-3 {
    padding-right: 3px;
}

.pr-4 {
    padding-right: 4px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-6 {
    padding-right: 6px;
}

.pr-7 {
    padding-right: 7px;
}

.pr-8 {
    padding-right: 8px;
}

.pr-9 {
    padding-right: 9px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-11 {
    padding-right: 11px;
}

.pr-12 {
    padding-right: 12px;
}

.pr-13 {
    padding-right: 13px;
}

.pr-14 {
    padding-right: 14px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-16 {
    padding-right: 16px;
}

.pr-17 {
    padding-right: 17px;
}

.pr-18 {
    padding-right: 18px;
}

.pr-19 {
    padding-right: 19px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-21 {
    padding-right: 21px;
}

.pr-22 {
    padding-right: 22px;
}

.pr-23 {
    padding-right: 23px;
}

.pr-24 {
    padding-right: 24px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-26 {
    padding-right: 26px;
}

.pr-27 {
    padding-right: 27px;
}

.pr-28 {
    padding-right: 28px;
}

.pr-29 {
    padding-right: 29px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-31 {
    padding-right: 31px;
}

.pr-32 {
    padding-right: 32px;
}

.pr-33 {
    padding-right: 33px;
}

.pr-34 {
    padding-right: 34px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-36 {
    padding-right: 36px;
}

.pr-37 {
    padding-right: 37px;
}

.pr-38 {
    padding-right: 38px;
}

.pr-39 {
    padding-right: 39px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-41 {
    padding-right: 41px;
}

.pr-42 {
    padding-right: 42px;
}

.pr-43 {
    padding-right: 43px;
}

.pr-44 {
    padding-right: 44px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-46 {
    padding-right: 46px;
}

.pr-47 {
    padding-right: 47px;
}

.pr-48 {
    padding-right: 48px;
}

.pr-49 {
    padding-right: 49px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-51 {
    padding-right: 51px;
}

.pr-52 {
    padding-right: 52px;
}

.pr-53 {
    padding-right: 53px;
}

.pr-54 {
    padding-right: 54px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-56 {
    padding-right: 56px;
}

.pr-57 {
    padding-right: 57px;
}

.pr-58 {
    padding-right: 58px;
}

.pr-59 {
    padding-right: 59px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-61 {
    padding-right: 61px;
}

.pr-62 {
    padding-right: 62px;
}

.pr-63 {
    padding-right: 63px;
}

.pr-64 {
    padding-right: 64px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-66 {
    padding-right: 66px;
}

.pr-67 {
    padding-right: 67px;
}

.pr-68 {
    padding-right: 68px;
}

.pr-69 {
    padding-right: 69px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-71 {
    padding-right: 71px;
}

.pr-72 {
    padding-right: 72px;
}

.pr-73 {
    padding-right: 73px;
}

.pr-74 {
    padding-right: 74px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-76 {
    padding-right: 76px;
}

.pr-77 {
    padding-right: 77px;
}

.pr-78 {
    padding-right: 78px;
}

.pr-79 {
    padding-right: 79px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-81 {
    padding-right: 81px;
}

.pr-82 {
    padding-right: 82px;
}

.pr-83 {
    padding-right: 83px;
}

.pr-84 {
    padding-right: 84px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-86 {
    padding-right: 86px;
}

.pr-87 {
    padding-right: 87px;
}

.pr-88 {
    padding-right: 88px;
}

.pr-89 {
    padding-right: 89px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-91 {
    padding-right: 91px;
}

.pr-92 {
    padding-right: 92px;
}

.pr-93 {
    padding-right: 93px;
}

.pr-94 {
    padding-right: 94px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-96 {
    padding-right: 96px;
}

.pr-97 {
    padding-right: 97px;
}

.pr-98 {
    padding-right: 98px;
}

.pr-99 {
    padding-right: 99px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-101 {
    padding-right: 101px;
}

.pr-102 {
    padding-right: 102px;
}

.pr-103 {
    padding-right: 103px;
}

.pr-104 {
    padding-right: 104px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-106 {
    padding-right: 106px;
}

.pr-107 {
    padding-right: 107px;
}

.pr-108 {
    padding-right: 108px;
}

.pr-109 {
    padding-right: 109px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-111 {
    padding-right: 111px;
}

.pr-112 {
    padding-right: 112px;
}

.pr-113 {
    padding-right: 113px;
}

.pr-114 {
    padding-right: 114px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-116 {
    padding-right: 116px;
}

.pr-117 {
    padding-right: 117px;
}

.pr-118 {
    padding-right: 118px;
}

.pr-119 {
    padding-right: 119px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-121 {
    padding-right: 121px;
}

.pr-122 {
    padding-right: 122px;
}

.pr-123 {
    padding-right: 123px;
}

.pr-124 {
    padding-right: 124px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-126 {
    padding-right: 126px;
}

.pr-127 {
    padding-right: 127px;
}

.pr-128 {
    padding-right: 128px;
}

.pr-129 {
    padding-right: 129px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-131 {
    padding-right: 131px;
}

.pr-132 {
    padding-right: 132px;
}

.pr-133 {
    padding-right: 133px;
}

.pr-134 {
    padding-right: 134px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-136 {
    padding-right: 136px;
}

.pr-137 {
    padding-right: 137px;
}

.pr-138 {
    padding-right: 138px;
}

.pr-139 {
    padding-right: 139px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-141 {
    padding-right: 141px;
}

.pr-142 {
    padding-right: 142px;
}

.pr-143 {
    padding-right: 143px;
}

.pr-144 {
    padding-right: 144px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-146 {
    padding-right: 146px;
}

.pr-147 {
    padding-right: 147px;
}

.pr-148 {
    padding-right: 148px;
}

.pr-149 {
    padding-right: 149px;
}

.pr-150 {
    padding-right: 150px;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.mtheader__logo {
    position: relative;
    z-index: 3;
    padding: 10px 0;
}

.mtheader__top-left a {
    font-size: 14px;
    color: var(--mt-text-body);
    padding: 0 10px;
    display: inline-block;
    font-weight: 500;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtheader__top-left a:hover {
        color: var(--mt-theme-1);
    }

.mtheader__top-right {
    gap: 20px;
}

.mtheader__top-social a {
    width: 25px;
    height: 25px;
    border: 1px solid var(--mt-text-body);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-text-body);
    margin: 0px 2px;
}

    .mtheader__top-social a:hover {
        color: var(--mt-theme-1);
        border-color: var(--mt-theme-1);
    }

.mtheader__top-lang .nice-select, .mtheader__top-currency .nice-select {
    border: none;
    color: var(--mt-text-body);
    font-size: 14px;
}

.mtheader__top-2 .mtheader__top-left a {
    color: var(--mt-common-white);
    font-size: 16px;
    padding: 0 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtheader__top-2 .mtheader__top-left a span {
        margin-left: 10px;
    }

    .mtheader__top-2 .mtheader__top-left a:hover {
        color: var(--mt-theme-2);
    }

.mtheader__top-2 .mtheader__top-left span i {
    font-size: 10px;
    color: var(--mt-theme-2);
}

.mtheader__top-2 .mtheader__top-social a {
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-common-white);
    border-color: var(--mt-common-white);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtheader__top-2 .mtheader__top-social a:hover {
        color: var(--mt-theme-2);
        border-color: var(--mt-theme-2);
    }

.mtheader__top-2 .mtheader__top-right span i {
    font-size: 10px;
    color: var(--mt-theme-2);
}

.mtheader__midel-search input {
    background-color: transparent;
    border: 1px solid var(--mt-border-1);
    font-size: 16px;
    font-weight: 500;
    color: var(--mt-text-body);
    position: relative;
    border-radius: 100px;
    width: 520px;
    height: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtheader__midel-search input {
        width: 380px;
    }
}

.mtheader__midel-search input::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-text-body);
}

.mtheader__midel-search input:focus {
    border-color: var(--mt-grey-1);
}

    .mtheader__midel-search input:focus::placeholder {
        opacity: 0;
    }

.mtheader__midel-search button {
    background-color: var(--mt-theme-1);
    border-radius: 100px;
    padding: 8px 18px;
    position: absolute;
    top: 50%;
    right: 10px;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtheader__midel-search button:hover {
        background: var(--mt-theme-2);
    }

        .mtheader__midel-search button:hover i {
            color: var(--mt-common-black);
        }

        .mtheader__midel-search button:hover span {
            color: var(--mt-common-black);
        }

    .mtheader__midel-search button i {
        margin-right: 6px;
        color: var(--mt-common-white);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .mtheader__midel-search button span {
        font-size: 14px;
        font-weight: 500;
        color: var(--mt-common-white);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

.mtheader__midel-wishlist {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtheader__midel-wishlist:hover {
        background-color: var(--mt-theme-1);
    }

        .mtheader__midel-wishlist:hover i {
            color: var(--mt-common-white);
        }

    .mtheader__midel-wishlist i {
        color: var(--mt-common-dark);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

.mtheader__midel-login a,
.mtheader__midel-login .mtcartmini-open-btn {
    text-align: center;
}

    .mtheader__midel-login a i,
    .mtheader__midel-login .mtcartmini-open-btn i {
        font-size: 28px;
        color: var(--mt-common-dark);
        position: relative;
        top: 5px;
        margin-right: 10px;
    }

    .mtheader__midel-login a span,
    .mtheader__midel-login .mtcartmini-open-btn span {
        color: var(--mt-text-body);
        font-size: 12px;
        font-weight: 500;
    }

@media (max-width: 767px) {
    .mtheader__midel-login a span,
    .mtheader__midel-login .mtcartmini-open-btn span {
        display: none;
    }
}

.mtheader__midel-login a h6,
.mtheader__midel-login .mtcartmini-open-btn h6 {
    text-align: end;
}

@media (max-width: 767px) {
    .mtheader__midel-login a h6,
    .mtheader__midel-login .mtcartmini-open-btn h6 {
        display: none;
    }
}

.mtheader__midel-account-wrap {
    gap: 20px;
}

@media (max-width: 767px) {
    .mtheader__midel-account-wrap {
        gap: 10px;
    }
}

.mtheader__bottom-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 31.5%;
    background-color: #10A31F;
    height: 100%;
    z-index: 1;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .mtheader__bottom-bg::before {
        width: 28.5%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .mtheader__bottom-bg::before {
        width: 25.5%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mtheader__bottom-bg::before {
        width: 24.5%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtheader__bottom-bg::before {
        width: 25.5%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtheader__bottom-bg::before {
        display: none;
    }
}

.mtheader__bottom-category-list {
    border: 1px solid var(--mt-border-1);
    background-color: var(--mt-common-white);
    width: 300px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 73px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mtheader__bottom-category-list {
        width: 285px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtheader__bottom-category-list {
        width: 225px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtheader__bottom-category-list {
        display: none !important;
    }
}

.mtheader__bottom-category-list ul li {
    width: 100%;
    padding: 13px 24px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    list-style: none;
}

    .mtheader__bottom-category-list ul li a {
        font-size: 16px;
        font-weight: 600;
        color: var(--mt-common-dark);
    }

        .mtheader__bottom-category-list ul li a span {
            margin-left: 15px;
        }

    .mtheader__bottom-category-list ul li:hover {
        background-color: var(--mt-theme-1);
    }

        .mtheader__bottom-category-list ul li:hover a {
            color: var(--mt-common-white);
        }

.mtheader__bottom-category-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--mt-common-dark);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--mt-border-1);
    display: inline-block;
    margin: 16px 24px;
    border-radius: 100px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtheader__bottom-category-btn:hover {
        background: var(--mt-theme-1);
        color: var(--mt-common-white);
    }

.mtheader__bottom-category-offcanvas ul li {
    padding: 13px 0px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    list-style: none;
    border-bottom: 1px dashed var(--mt-border-1);
}

    .mtheader__bottom-category-offcanvas ul li a {
        font-size: 16px;
        font-weight: 600;
        color: var(--mt-common-dark);
    }

        .mtheader__bottom-category-offcanvas ul li a span {
            margin-left: 15px;
        }

    .mtheader__bottom-category-offcanvas ul li:hover a {
        color: var(--mt-theme-1);
    }

.mtheader__bottom-bar {
    z-index: 1;
    position: relative;
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtheader__bottom-bar {
        display: none !important;
    }
}

.mtheader__bottom-bar span {
    color: var(--mt-common-white);
    font-size: 18px;
}

.mtheader__bottom-bar i {
    font-size: 20px;
    color: var(--mt-common-white);
    margin-right: 10px;
}

.mtheader__bottom-bar .mtcategories-icon {
    margin-right: 15px;
}

.mtheader__bottom-menu ul li {
    display: inline-block;
    margin-left: 40px;
    position: relative;
    padding: 25px 0px;
}

    .mtheader__bottom-menu ul li.has-dropdown::after {
        position: absolute;
        content: "\f107";
        font-family: "Font Awesome 6 Pro";
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: -20px;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        color: var(--mt-common-white);
    }

    .mtheader__bottom-menu ul li .mt-submenu {
        background-color: var(--mt-common-white);
        width: 220px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        padding: 14px 0;
        top: 110%;
        left: 0;
        border-top: 3px solid var(--mt-theme-2);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        position: absolute;
        z-index: 2;
        box-shadow: -9px 5px 45px -27px rgb(8, 2, 8);
    }

        .mtheader__bottom-menu ul li .mt-submenu li {
            display: block;
            width: 100%;
            margin: 0;
            padding: 5px 20px;
            text-align: left;
            position: relative;
        }

            .mtheader__bottom-menu ul li .mt-submenu li a {
                color: var(--mt-common-dark);
            }

            .mtheader__bottom-menu ul li .mt-submenu li .mt-submenu {
                top: 110%;
                left: 100%;
                visibility: hidden;
                opacity: 0;
            }

            .mtheader__bottom-menu ul li .mt-submenu li:hover > a {
                color: var(--mt-theme-2);
            }

            .mtheader__bottom-menu ul li .mt-submenu li:hover > .mt-submenu {
                opacity: 1;
                visibility: visible;
                top: 0;
            }

    .mtheader__bottom-menu ul li a {
        color: var(--mt-common-white);
        font-weight: 500;
    }

    .mtheader__bottom-menu ul li:hover.has-dropdown::after {
        color: var(--mt-theme-2);
    }

    .mtheader__bottom-menu ul li:hover > a {
        color: var(--mt-theme-2);
    }

    .mtheader__bottom-menu ul li:hover .mt-submenu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

.mtheader__bottom-right > a {
    color: var(--mt-common-white);
    display: -webkit-inline-box;
}

    .mtheader__bottom-right > a span {
        margin-right: 8px;
    }

        .mtheader__bottom-right > a span:hover {
            color: var(--mt-theme-2);
        }

.mtheader__bottom-2 .mtheader__bottom-menu {
    margin-left: 50px;
}

    .mtheader__bottom-2 .mtheader__bottom-menu ul li.has-dropdown::after {
        color: var(--mt-common-dark);
    }

    .mtheader__bottom-2 .mtheader__bottom-menu ul li a {
        color: var(--mt-common-dark);
        font-weight: 500;
    }

    .mtheader__bottom-2 .mtheader__bottom-menu ul li:hover.has-dropdown::after {
        color: var(--mt-theme-1);
    }

    .mtheader__bottom-2 .mtheader__bottom-menu ul li:hover a {
        color: var(--mt-theme-1);
    }

    .mtheader__bottom-2 .mtheader__bottom-menu ul li .mt-submenu {
        border-color: var(--mt-theme-1);
    }

        .mtheader__bottom-2 .mtheader__bottom-menu ul li .mt-submenu li a {
            color: var(--mt-common-black);
        }

        .mtheader__bottom-2 .mtheader__bottom-menu ul li .mt-submenu li:hover > a {
            color: var(--mt-theme-1);
        }

.mtheader__bottom-2 .mtheader__midel-account-wrap span i {
    font-size: 10px;
    color: var(--mt-theme-1);
}

.mtheader__midel-card-value {
    position: relative;
}

    .mtheader__midel-card-value p {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 18px;
        height: 18px;
        background: var(--mt-theme-2);
        margin-bottom: 0;
        border-radius: 50%;
        color: var(--mt-common-white);
        font-size: 11px;
        line-height: 18px;
    }

@media (max-width: 767px) {
    .mtheader__mobile-cart .mtheader__midel-account-wrap {
        gap: 10px;
    }
}

.mtheader__mobile-cart .mtheader__midel-login i {
    top: 0px;
    margin-right: 0;
}

.mtheader-top-border {
    border-top: 4px solid var(--mt-theme-1);
}

.mtheader-border {
    border-bottom: 1px dashed var(--mt-grey-1);
}

.mtcartmini-open-btn {
    cursor: pointer;
}

@keyframes mtfadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mtfadeInDown {
    animation: mtfadeInDown 1s ease-out forwards;
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation: 0.7s ease-in-out 0s normal none 1 running mtfadeInDown;
    animation: 0.7s ease-in-out 0s normal none 1 running mtfadeInDown;
    box-shadow: 0px 20px 30px rgba(167, 167, 167, 0.1);
    z-index: 888;
}

    .header-sticky.mt-sticky-theme {
        background-color: var(--mt-theme-1);
    }

    .header-sticky.mt-sticky-theme-2 {
        background-color: #fff;
    }

    .header-sticky .mtheader__bottom-category-list {
        display: none;
    }

.nice-select {
    background: transparent;
}

.mtheader__top-2 .mtheader__top-lang span {
    color: #fff;
}

.mtheader__top-2 .mtheader__top-currency span {
    color: #fff;
}

.mtheader__top-2 .mtheader__top-lang .nice-select::after {
    color: #fff;
}

.mtheader__top-2 .mtheader__top-currency .nice-select::after {
    color: #fff;
}

@media (max-width: 767px) {
    .mtheader__midel-login.mtheader__mobile-cart i {
        top: 0;
        margin-right: 0px;
    }
}

.mtheader__bottom-bar-wrap.offcanvas-cate .mtheader__bottom-bar {
    display: flex !important;
    background: var(--mt-theme-1);
    padding: 10px;
}

    .mtheader__bottom-bar-wrap.offcanvas-cate .mtheader__bottom-bar .mtcategories-icon {
        margin-right: 0px;
    }

/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.mt-header-main-menu nav ul li .has-homemenu {
    width: 1100px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    visibility: hidden;
    background-color: var(--mt-common-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .mt-header-main-menu nav ul li .has-homemenu .homemenu {
        padding: 0px 10px;
        position: relative;
        margin-bottom: 20px;
    }

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .mt-header-main-menu nav ul li .has-homemenu {
        left: -50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mt-header-main-menu nav ul li .has-homemenu {
        left: -200px;
    }
}

.mt-header-2__menu nav ul li .has-homemenu {
    width: 810px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    visibility: hidden;
    background-color: var(--mt-common-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .mt-header-2__menu nav ul li .has-homemenu .homemenu {
        padding: 0px 10px;
        position: relative;
        margin-bottom: 20px;
    }

.homemenu-btn {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.homemenu-title {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--mt-common-black);
    display: inline-block;
    font-weight: 700;
}

    .homemenu-title:hover {
        color: var(--mt-theme-1);
    }

.homemenu-thumb {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .homemenu-thumb:hover .homemenu-btn {
        opacity: 1;
        visibility: visible;
        bottom: 50%;
        -moz-transform: translateY(50%);
        -o-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

.mt-main-menu-mobile .mt-submenu {
    display: none;
}

.mt-main-menu-mobile .header-icon {
    display: none;
}

.mt-main-menu-mobile ul {
    position: static;
    display: block;
    box-shadow: none;
}

    .mt-main-menu-mobile ul li {
        list-style: none;
        position: relative;
        width: 100%;
        padding: 0;
    }

        .mt-main-menu-mobile ul li:not(:last-child) a {
            border-bottom: 1px solid rgba(6, 7, 40, 0.1);
        }

        .mt-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
            position: absolute;
            right: 0;
            top: 21%;
            -moz-transform: translateY(-2px);
            -o-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
            font-size: 18px;
            color: #7F8387;
            font-family: "Font Awesome 6 Pro";
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            z-index: 1;
            width: 25px;
            height: 25px;
            line-height: 22px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
        }

            .mt-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
                -webkit-transition: 0.3s;
                -moz-transition: 0.3s;
                -ms-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s;
                margin-left: 2px;
            }

            .mt-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
                -moz-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }

            .mt-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
                background-color: var(--mt-theme-1);
                border-color: var(--mt-theme-1);
                color: var(--mt-common-white);
            }

                .mt-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
                    color: var(--mt-common-white);
                }

        .mt-main-menu-mobile ul li.has-dropdown > a.expanded {
            color: var(--mt-theme-1);
        }

            .mt-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
                background-color: var(--mt-theme-1);
                border-color: var(--mt-theme-1);
                color: var(--mt-common-white);
            }

                .mt-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
                    color: var(--mt-common-white);
                }

        .mt-main-menu-mobile ul li.has-dropdown:hover > a::after {
            color: var(--mt-theme-green);
        }

        .mt-main-menu-mobile ul li:last-child a span {
            border-bottom: 0;
        }

        .mt-main-menu-mobile ul li > a {
            display: block;
            font-size: 16px;
            color: var(--mt-common-white);
            position: relative;
            padding: 10px 0;
            padding-right: 20px;
        }

            .mt-main-menu-mobile ul li > a svg {
                -moz-transform: translateY(-2px);
                -o-transform: translateY(-2px);
                -ms-transform: translateY(-2px);
                -webkit-transform: translateY(-2px);
                transform: translateY(-2px);
            }

            .mt-main-menu-mobile ul li > a > i {
                display: inline-block;
                width: 11%;
                margin-right: 13px;
                -moz-transform: translateY(4px);
                -o-transform: translateY(4px);
                -ms-transform: translateY(4px);
                -webkit-transform: translateY(4px);
                transform: translateY(4px);
                font-size: 21px;
                line-height: 1;
            }

            .mt-main-menu-mobile ul li > a .menu-text {
                font-size: 16px;
                line-height: 11px;
                border-bottom: 1px solid #EAEBED;
                width: 82%;
                display: inline-block;
                padding: 19px 0 17px;
            }

        .mt-main-menu-mobile ul li img {
            width: 100%;
        }

        .mt-main-menu-mobile ul li ul {
            padding: 0;
        }

            .mt-main-menu-mobile ul li ul li {
                padding: 0;
            }

                .mt-main-menu-mobile ul li ul li a {
                    margin-left: auto;
                    width: 93%;
                    padding: 10px 5%;
                    text-shadow: none !important;
                    visibility: visible;
                    padding-left: 0;
                    padding-right: 20px;
                }

                .mt-main-menu-mobile ul li ul li li a {
                    width: 88%;
                    padding: 10px 7%;
                    padding-left: 0;
                    padding-right: 20px;
                }

                .mt-main-menu-mobile ul li ul li li li a {
                    width: 83%;
                    padding: 10px 9%;
                    padding-left: 0;
                    padding-right: 20px;
                }

                .mt-main-menu-mobile ul li ul li li li li a {
                    width: 68%;
                    padding: 10px 11%;
                    padding-left: 0;
                    padding-right: 20px;
                }

        .mt-main-menu-mobile ul li:hover > a {
            color: var(--mt-theme-1);
        }

            .mt-main-menu-mobile ul li:hover > a::after {
                color: var(--mt-theme-1);
            }

            .mt-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
                color: var(--mt-theme-1);
            }

        .mt-main-menu-mobile ul li:hover .mega-menu {
            visibility: visible;
            opacity: 1;
            top: 0;
        }

        .mt-main-menu-mobile ul li .mega-menu, .mt-main-menu-mobile ul li .submenu {
            position: static;
            min-width: 100%;
            padding: 0;
            box-shadow: none;
            visibility: visible;
            opacity: 1;
            display: none;
        }

            .mt-main-menu-mobile ul li .mega-menu li, .mt-main-menu-mobile ul li .submenu li {
                float: none;
                display: block;
                width: 100%;
                padding: 0;
            }

                .mt-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .mt-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
                    color: var(--mt-theme-1);
                }

.mt-main-menu-mobile .mt-main-menu-content ul li:not(:last-child) .home-menu-title a {
    border-bottom: none;
}

.mt-main-menu-mobile * ul, .mt-main-menu-mobile * li {
    transition: none !important;
}

/*----------------------------------------*/
/*  5.1 blog css start
/*----------------------------------------*/
.mtblog__item:hover .mtblog__title {
    color: var(--mt-theme-1);
}

.mtblog__item:hover .mtblog__btn a {
    color: var(--mt-common-black);
}

.mtblog__thumb {
    overflow: hidden;
}

@media (max-width: 767px) {
    .mtblog__thumb img {
        width: 100%;
    }
}

.mtblog__thumb::before {
    position: absolute;
    top: 0;
    left: -80%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtblog__thumb::before {
        display: none;
    }
}

.mtblog__thumb:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.mtblog__date {
    position: relative;
    /*left: 12px;*/
    bottom: 12px;
}

    .mtblog__date span {
        padding: 4px 6px;
        padding-right: 10px;
        background-color: var(--mt-theme-2);
        color: var(--mt-common-dark);
        font-size: 14px;
        font-weight: 600;
        font-family: "Lora", serif;
        border-radius: 4px;
        display: inline-block;
    }

        .mtblog__date span i {
            width: 22px;
            height: 22px;
            background-color: var(--mt-common-white);
            border: 1px solid var(--mt-common-dark);
            border-radius: 4px;
            display: inline-block;
            text-align: center;
            line-height: 18px;
            margin-right: 10px;
        }

.mtblog__meta span {
    color: var(--mt-text-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0 15px 0 0;
    font-family: var(--mt-ff-body);
}

    .mtblog__meta span i {
        margin-right: 5px;
    }

.mtblog__meta cite {
    margin: 0 15px 0 0;
}

.mtblog__title {
    color: var(--mt-common-dark);
    font-size: 20px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtblog__title br {
        display: none;
    }
}

.mtblog__content p br {
    display: none;
}

.mtblog__btn a {
    font-size: 16px;
    font-weight: 500;
    color: var(--mt-text-body);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-family: var(--mt-ff-heading);
}

    .mtblog__btn a i {
        margin-left: 5px;
    }

.mtblog__arrow {
    gap: 10px;
}

.mtblog__arrow-next span, .mtblog__arrow-prev span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--mt-grey-1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtblog__2 .mtblog__item:hover .mtblog__title {
    color: var(--mt-theme-2);
}

.mtblog__2 .mtblog__item:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.mtblog__2 .mtblog__item-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .mtblog__2 .mtblog__item-bg::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.5%, rgba(0, 0, 0, 0.78) 100%);
    }

.mtblog__2 .mtblog__item-border {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--mt-common-dark);
}

    .mtblog__2 .mtblog__item-border::before {
        position: absolute;
        top: 0;
        left: -80%;
        z-index: 2;
        display: block;
        content: "";
        width: 50%;
        height: 100%;
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg);
        z-index: 1;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtblog__2 .mtblog__item-border::before {
        display: none;
    }
}

.mtblog__2 .mtblog__item .mtblog__content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.mtblog__2 .mtblog__item .mtblog__sep {
    height: 280px;
}

.mtblog__2 .mtblog__item .mtblog__date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--mt-theme-2);
    padding: 8px;
    border-radius: 8px;
    bottom: inherit;
}

    .mtblog__2 .mtblog__item .mtblog__date span {
        font-size: 20px;
        font-weight: 700;
        color: var(--mt-common-dark);
        display: block;
        padding: 0;
    }

    .mtblog__2 .mtblog__item .mtblog__date p {
        font-size: 12px;
        font-weight: 600;
        color: var(--mt-common-dark);
        margin-bottom: 0;
        line-height: 1;
    }

.mtblog__2 .mtblog__item .mtblog__meta span {
    margin: 0px 2px;
}

.mtblog__2 .mtblog__item .mtblog__meta a {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Lora", serif;
    background: var(--mt-common-white);
    color: var(--mt-common-dark);
    border-radius: 100px;
    border: 1px solid var(--mt-common-dark);
    display: inline-block;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtblog__2 .mtblog__item .mtblog__meta a:hover {
        background: var(--mt-theme-2);
    }

.mtblog__2 .mtblog__item .mtblog__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--mt-common-white);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    line-height: 1.4;
    margin-bottom: 0;
}

.mt-trending-blog-border {
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--mt-border-1);
}

@media (max-width: 767px) {
    .mt-trending-blog-border {
        flex-wrap: wrap;
    }
}

.mt-trending-blog-item:hover .mtblog__title {
    color: var(--mt-theme-1);
}

.mt-trending-blog-thumb {
    flex: 0 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-trending-blog-thumb {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-trending-blog-thumb img {
        width: 100%;
    }
}

.mt-trending-blog-banner {
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--mt-common-dark);
}

.mt-trending-blog-banner-space {
    padding-bottom: 270px;
}

.mt-trending-blog-banner-title {
    font-size: 24px;
    color: var(--mt-theme-1);
}

.mt-trending-blog-banner-content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--mt-text-body);
}

.mt-explore-blog-border {
    padding: 20px;
    border: 1px solid var(--mt-border-1);
    background: var(--mt-common-white);
}

.mt-explore-blog-item:hover .mt-explore-blog-title {
    color: var(--mt-theme-1);
}

.mt-explore-blog-item:hover .mt-explore-blog-thumb {
    scale: 1.1;
}

.mt-explore-blog-thumb {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mt-explore-blog-meta span {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-text-body);
    margin-right: 14px;
}

    .mt-explore-blog-meta span i {
        margin-right: 5px;
    }

.mt-explore-blog-title {
    font-size: 20px;
    color: var(--mt-common-dark);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mt-explore-blog-date span {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-text-body);
    border-radius: 100px;
    border: 1px solid var(--mt-common-dark);
    padding: 5px 10px;
    display: inline-block;
}

.mt-explore-blog-thumb img {
    border-radius: 100px 100px 100px 0px;
}

/*----------------------------------------*/
/*  5.2 Postbox css
/*----------------------------------------*/
.mt-postbox-wrap {
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.17);
    margin-top: -235px;
    padding: 20px;
    position: relative;
    margin-left: 55px;
    margin-right: 55px;
    z-index: 2;
}

@media (max-width: 767px) {
    .mt-postbox-wrap {
        margin-top: 0px;
        margin-right: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .mt-postbox-wrapper {
        margin-right: 0px;
    }
}

.mt-postbox-content {
    border: 1px dashed #EAEAEF;
    padding: 23px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .mt-postbox-content {
        padding: 15px;
    }
}

.mt-postbox-content p {
    color: #646373;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.mt-postbox-content-2 {
    padding: 0;
    border: 0;
    border-radius: 0;
}

    .mt-postbox-content-2 .mt-postbox-meta {
        padding: 20px;
        border: 1px solid #DADADA;
        border-radius: 4px;
    }

    .mt-postbox-content-2 .mt-postbox-title {
        font-size: 30px;
    }

    .mt-postbox-content-2 .mt-postbox-title-sm {
        font-size: 20px;
    }

.mt-postbox-title {
    font-size: 24px;
    font-weight: 600;
}

    .mt-postbox-title a:hover {
        color: var(--mt-theme-1);
    }

.mt-postbox-btn {
    padding-top: 16px;
    border-top: 1px dashed #EAEAEF;
}

.mt-postbox-meta span {
    margin: 0 6px;
    position: relative;
    color: #646373;
    font-size: 14px;
    font-weight: 600;
}

    .mt-postbox-meta span.date {
        padding: 4px 8px 4px 4px;
        background-color: #17AF26;
        color: #ffffff;
        border-radius: 4px;
        display: inline-block;
    }

        .mt-postbox-meta span.date i {
            color: #060121;
            background-color: #ffffff;
            border-radius: 4px;
            padding: 3px;
        }

    .mt-postbox-meta span a:hover {
        color: var(--mt-theme-2);
    }

    .mt-postbox-meta span i {
        margin-right: 2px;
        font-size: 14px;
    }

@media (max-width: 767px) {
    .mt-postbox-title {
        font-size: 25px;
    }
}

.mt-postbox-details blockquote {
    border-radius: 20px;
    border: 1px solid #EAEAEF;
    background: rgba(234, 132, 40, 0.09);
    padding: 40px 40px 28px 40px;
    text-align: center;
}

@media (max-width: 767px) {
    .mt-postbox-details blockquote {
        padding: 25px;
    }
}

.mt-postbox-details blockquote i {
    font-size: 50px;
    margin-bottom: 25px;
}

.mt-postbox-details blockquote p {
    font-size: 24px;
    font-weight: 400;
    color: #060121;
    margin-top: 10px;
}

.mt-postbox-details blockquote cite {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

    .mt-postbox-details blockquote cite::before {
        content: "";
        position: absolute;
        width: 16px;
        height: 1px;
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: -15%;
        background-color: #000;
    }

@media (max-width: 767px) {
    .mt-postbox-tag {
        margin-bottom: 20px;
    }
}

.mt-postbox-tag-wrapper {
    border: 1px solid #EAEAEF;
    border-radius: 8px;
    padding: 25px;
}

.mt-postbox-tag span {
    color: #0A0E1A;
    font-weight: 500;
    margin-right: 5px;
}

.mt-postbox-tag a {
    color: #646373;
    font-size: 16px;
    border: 1px solid #EAEAEF;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 5px 10px;
    border-radius: 100px;
}

    .mt-postbox-tag a:hover {
        background-color: var(--mt-theme-1);
        color: #fff;
    }

.mt-postbox-social span {
    font-size: 16px;
    font-weight: 500;
    color: #060121;
    margin-right: 5px;
}

.mt-postbox-social a {
    font-size: 14px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    color: #646373;
    border: 1px solid #646373;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-postbox-social a:hover {
        background-color: var(--mt-theme-1);
        color: #fff;
    }

.mt-postbox-comments ul {
    list-style: none;
}

    .mt-postbox-comments ul li {
        margin-bottom: 20px;
    }

        .mt-postbox-comments ul li.children {
            padding-left: 100px;
        }

@media (max-width: 767px) {
    .mt-postbox-comments ul li.children {
        padding-left: 20px;
    }
}

.mt-postbox-comments-thumb {
    float: left;
}

    .mt-postbox-comments-thumb img {
        width: 64px;
        height: 64px;
        margin-right: 16px;
    }

.mt-postbox-comments-text {
    overflow: hidden;
    position: relative;
}

    .mt-postbox-comments-text span {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #646373;
    }

        .mt-postbox-comments-text span b {
            content: "";
            background: #000;
            width: 5px;
            height: 5px;
            border-radius: 50px;
            display: inline-block;
            -moz-transform: translateY(-2px);
            -o-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
            margin: 0 5px;
        }

    .mt-postbox-comments-text p {
        font-size: 16px;
        font-weight: 500;
        color: #646373;
        margin-top: 10px;
    }

.mt-postbox-comments-author {
    font-size: 20px;
    margin-bottom: 5px;
}

.reply {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    font-weight: 600;
    color: #646373;
    border: 1px solid #EAEAEF;
    padding: 6px 10px;
    border-radius: 100px;
}

    .reply:hover {
        color: var(--mt-theme-1);
    }

@media (max-width: 767px) {
    .reply {
        position: static;
    }
}

.mt-swiper-blog-button {
    height: 75px;
    width: 135px;
    background: var(--mt-theme-color-2);
    display: inline-block;
    border-radius: 100%;
    line-height: 89px;
    font-size: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 30px;
}

.mt-swiper-blog-button-prev {
    -moz-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.mt-swiper-blog-button-next {
    left: auto;
    right: 30px;
}

.mt-comment-input textarea {
    height: 190px;
}

.mt-blog-video {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    text-align: center;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .mt-blog-video {
        top: 50%;
    }
}

.mt-blog-video a {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    color: #222;
    line-height: 100px;
    font-size: 21px;
    background-color: var(--mt-theme-2);
    display: inline-block;
}

.mt-pagination ul {
    list-style: none;
}

    .mt-pagination ul li {
        display: inline-block;
        margin-right: 7px;
    }

        .mt-pagination ul li a {
            border: 1px solid #57595C;
            line-height: 58px;
            text-align: center;
            font-size: 17px;
            font-weight: 500;
            color: #57595C;
            border-radius: 20px;
            height: 60px;
            width: 60px;
            display: inline-block;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
        }

            .mt-pagination ul li a:hover {
                background-color: var(--mt-theme-color);
                border-color: var(--mt-theme-color);
                color: #fff;
            }

            .mt-pagination ul li a i {
                font-size: 26px;
                -moz-transform: translateY(3px);
                -o-transform: translateY(3px);
                -ms-transform: translateY(3px);
                -webkit-transform: translateY(3px);
                transform: translateY(3px);
            }

/*----------------------------------------*/
/*  5.4 Sidebar css
/*----------------------------------------*/
.mt-blog-sidebar-widget {
    border-radius: 16px;
    border: 1px solid var(--mt-border-1);
    padding: 18px;
    background: var(--mt-common-white);
}

.mt-blog-sidebar-widget-subscribe {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 0;
    padding: 0 28px;
    padding-top: 28px;
    padding-bottom: 40px;
}

    .mt-blog-sidebar-widget-subscribe .mt-blog-sidebar-title {
        color: var(--mt-common-white);
    }

    .mt-blog-sidebar-widget-subscribe p {
        color: var(--mt-common-white);
    }

.mt-blog-sidebar-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--mt-common-dark);
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--mt-border-1);
}

.mt-blog-sidebar-post-thumb {
    flex: 0 0 auto;
    position: relative;
}

.mt-blog-sidebar-post-title {
    font-family: var(--mt-ff-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

    .mt-blog-sidebar-post-title:hover {
        color: var(--mt-theme-1);
    }

.mt-blog-sidebar-banner {
    border: 2px solid var(--mt-common-dark);
    border-radius: 15px;
}

.mt-blog-sidebar-cat ul li {
    margin-bottom: 13px;
    list-style: none;
    border-bottom: 1px dashed var(--mt-border-1);
    padding-bottom: 16px;
}

    .mt-blog-sidebar-cat ul li a {
        font-size: 16px;
        font-weight: 500;
        color: var(--mt-text-body);
        display: block;
        position: relative;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

        .mt-blog-sidebar-cat ul li a:hover {
            color: var(--mt-theme-1);
        }

        .mt-blog-sidebar-cat ul li a:after {
            content: "\f061";
            font-family: "Font Awesome 6 Pro";
            position: absolute;
            right: 25px;
            top: 50%;
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

    .mt-blog-sidebar-cat ul li:last-child {
        margin-bottom: 0;
        border: 0;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-blog-sidebar-banner img {
        width: 100%;
    }
}

.mt-blog-form input {
    padding: 14px 8px 14px 20px;
    background: var(--mt-common-white);
    border: 1px solid #EAEAEF;
    border-radius: 100px;
    position: relative;
    width: 100%;
}

.mt-blog-form button {
    background-color: var(--mt-theme-2);
    color: var(--mt-common-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--mt-common-dark);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
}

    .mt-blog-form button:hover {
        background-color: var(--mt-theme-1);
        color: var(--mt-common-white);
        border-color: var(--mt-common-white);
    }

.mt-blog-sidebar-post-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--mt-border-1);
}

    .mt-blog-sidebar-post-item:last-child {
        margin: 0;
        padding: 0;
        border: 0;
    }

.tagcloud a {
    display: inline-block;
    line-height: 1;
    margin-right: 5px;
    margin-bottom: 8px;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mt-text-body);
    border: 1px solid var(--mt-border-1);
    border-radius: 100px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .tagcloud a:hover {
        background-color: var(--mt-theme-1);
        color: var(--mt-common-white);
        border-color: var(--mt-theme-1);
    }

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.mt-footer-area {
    background-repeat: no-repeat;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-footer-area {
        background-size: cover;
    }
}

.mt-footer-space {
    padding-top: 180px;
}

.mt-footer-title {
    color: var(--mt-common-dark);
    font-size: 24px;
    font-weight: 600;
    position: relative;
}

    .mt-footer-title::after {
        content: "";
        position: absolute;
        bottom: -9px;
        left: 0;
        background: var(--mt-theme-2);
        width: 32px;
        height: 1px;
    }

.mt-footer-list {
    overflow: hidden;
}

    .mt-footer-list ul li {
        margin-bottom: 18px;
        list-style: none;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

        .mt-footer-list ul li:last-child {
            margin-bottom: 0;
        }

        .mt-footer-list ul li a {
            overflow: hidden;
            font-size: 16px;
            font-weight: 500;
            color: var(--mt-text-body);
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            position: relative;
        }

            .mt-footer-list ul li a::before {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: var(--mt-theme-3);
                border: 1px solid var(--mt-common-dark);
                content: "";
                position: absolute;
                top: 50%;
                -moz-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                left: -25px;
                -webkit-transition: 0.3s;
                -moz-transition: 0.3s;
                -ms-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s;
            }

        .mt-footer-list ul li:hover a {
            color: var(--mt-theme-1);
            padding-left: 15px;
        }

            .mt-footer-list ul li:hover a::before {
                opacity: 1;
                left: 0px;
            }

.mt-footer-content p {
    color: var(--mt-text-body);
    font-size: 16px;
    font-weight: 500;
}

.mt-footer-content-boxicon {
    margin-right: 15px;
}

    .mt-footer-content-boxicon span {
        font-size: 48px;
        font-weight: 900;
        color: var(--mt-common-dark);
    }

.mt-footer-content-boxtext span {
    font-size: 12px;
    font-weight: 500;
    color: var(--mt-common-dark);
    margin-bottom: 3px;
}

.mt-footer-content-boxtext .mttitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--mt-common-dark);
    font-family: var(--mt-ff-heading);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mt-footer-box-item a {
    display: flex;
    gap: 24px;
    align-items: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-footer-box-item a:hover {
        color: var(--mt-theme-1);
    }

        .mt-footer-box-item a:hover p {
            color: var(--mt-theme-1);
        }

        .mt-footer-box-item a:hover span i {
            color: var(--mt-theme-1);
        }

.mt-footer-box-item span i {
    color: var(--mt-text-body);
    font-size: 18px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mt-footer-box-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--mt-text-body);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
}

.mt-footer-box-follow .mtfollow-title {
    color: var(--mt-text-body);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.mt-footer-box-social a {
    display: inline-block;
    text-align: center;
    border: 1px solid var(--mt-text-body);
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 10px;
    color: var(--mt-text-body);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-right: 8px;
}

    .mt-footer-box-social a:hover {
        background: var(--mt-theme-1);
        color: var(--mt-common-white);
        border: 1px solid transparent;
    }

.mt-footer-app-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--mt-common-dark);
    margin-bottom: 12px;
}

.mt-footer-app-space {
    padding-left: 130px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mt-footer-app-space {
        padding-left: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-footer-app-space {
        padding-left: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-footer-app-space {
        padding-left: 0px;
    }
}

.mt-footer-app p {
    font-size: 16px;
    font-weight: 500;
    color: var(--mt-text-body);
}

.mt-footer-subscribe-space {
    padding-left: 40px;
    padding-right: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mt-footer-subscribe-space {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-footer-subscribe-space {
        padding: 0px;
    }
}

.mt-footer-subscribe input {
    border-radius: 100px;
    border: 1px solid var(--mt-border-1);
    background-color: var(--mt-common-white);
    width: 100%;
    height: 50px;
    color: var(--mt-common-black);
}

    .mt-footer-subscribe input::placeholder {
        font-size: 14px;
        font-weight: 500;
        color: var(--mt-text-body);
    }

    .mt-footer-subscribe input:focus {
        border-color: var(--mt-border-1);
    }

        .mt-footer-subscribe input:focus::placeholder {
            opacity: 0;
        }

.mt-footer-subscribe button {
    padding: 5px 15px;
    position: absolute;
    right: 8px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid var(--mt-theme-2);
    height: inherit;
    line-height: inherit;
}

.footer-cols-1 {
    padding-right: 50px;
}

.footer-cols-2 {
    padding-left: 130px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-cols-2 {
        padding-left: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-cols-2 {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .footer-cols-2 {
        padding-left: 0px;
    }
}

.footer-cols-3 {
    padding-left: 150px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-cols-3 {
        padding-left: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-cols-3 {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .footer-cols-3 {
        padding-left: 0px;
    }
}

.footer-cols-4 {
    padding-left: 160px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-cols-4 {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-cols-4 {
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .footer-cols-4 {
        padding-left: 0px;
    }
}

.mt-copyright-border {
    border-top: 1px dashed var(--mt-border-1);
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.mt-footer-2 .mt-footer-widget p {
    color: var(--mt-grey-1);
}

.mt-footer-2 .mt-footer-social a {
    color: var(--mt-grey-1);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid var(--mt-grey-1);
    line-height: 32px;
    display: inline-block;
    text-align: center;
}

    .mt-footer-2 .mt-footer-social a:hover {
        color: var(--mt-theme-2);
        border-color: var(--mt-theme-2);
    }

.mt-footer-2 .mt-footer-title {
    color: var(--mt-common-white);
}

.mt-footer-2 .mt-footer-list ul li {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-footer-2 .mt-footer-list ul li:hover a {
        color: var(--mt-theme-2);
    }

    .mt-footer-2 .mt-footer-list ul li a {
        color: var(--mt-grey-1);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

.mt-footer-2 .mt-footer-app-title {
    color: var(--mt-common-white);
}

.mt-footer-midel-border {
    border-top: 1px dashed #242944;
    border-bottom: 1px dashed #242944;
    padding-top: 38px;
}

@media (max-width: 767px) {
    .mt-footer-midel-border {
        padding-top: 15px;
    }
}

.mt-footer-midel-icon span {
    color: var(--mt-grey-1);
}

.mt-footer-midel-content a {
    color: var(--mt-grey-1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-footer-midel-content a:hover {
        color: var(--mt-theme-2);
    }

.footer-2-cols-1 {
    padding-right: 50px;
}

.footer-2-cols-2 {
    padding-left: 8px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-2-cols-2 {
        padding-left: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-2-cols-2 {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .footer-2-cols-2 {
        padding-left: 0px;
    }
}

.footer-2-cols-3 {
    padding-left: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-2-cols-3 {
        padding-left: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-2-cols-3 {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .footer-2-cols-3 {
        padding-left: 0px;
    }
}

.footer-2-cols-4 {
    padding-left: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-2-cols-4 {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-2-cols-4 {
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .footer-2-cols-4 {
        padding-left: 0px;
    }
}

.footer-2-cols-5 {
    padding-left: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-2-cols-5 {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-2-cols-5 {
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .footer-2-cols-5 {
        padding-left: 0px;
    }
}

.mt-copyright-2 .mt-copyright-left p {
    color: var(--mt-grey-1);
    margin: 0;
    padding: 0;
}

@media (max-width: 767px) {
    .mt-copyright-2 .mt-copyright-left p {
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .mt-footer-wrapper {
        margin-bottom: 0;
    }
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.mtabout__list {
    border-top: 1px dashed var(--mt-border-1);
    padding-top: 25px;
    display: inline-block;
}

    .mtabout__list ul {
        list-style: none;
    }

        .mtabout__list ul li {
            font-size: 16px;
            font-weight: 600;
            color: var(--mt-common-dark);
            margin-bottom: 16px;
        }

            .mtabout__list ul li:last-child {
                margin-bottom: 0;
            }

            .mtabout__list ul li i {
                color: var(--mt-theme-1);
                margin-right: 8px;
            }

.mtabout__thumb-sm {
    position: absolute;
    left: 40px;
    bottom: 30px;
    animation: mtcircle-rotate 20s linear infinite reverse;
}

.mthero__banner {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 85px 52px;
}

.mthero__subtitle {
    color: #646373;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    animation-delay: 0.3s;
    animation-duration: 1s;
}

    .mthero__subtitle img {
        margin-bottom: 5px;
        margin-right: 5px;
    }

.mthero__title {
    color: var(--mt-common-dark);
    font-size: 48px;
    font-weight: 700;
    animation-delay: 0.5s;
    animation-duration: 1s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mthero__title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .mthero__title {
        font-size: 30px;
    }
}

.mthero__title span {
    color: #17AF26;
}

.mthero__content p {
    animation-delay: 0.7s;
    animation-duration: 1s;
}

.mthero__btn {
    animation-delay: 0.9s;
    animation-duration: 1s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mthero__img {
        margin-top: 30px;
    }
}

.mthero__img img {
    animation-delay: 0.9s;
    animation-duration: 1s;
}

.mthero__2 .mthero__title {
    font-size: 72px;
    animation-delay: 0.5s;
    animation-duration: 1s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mthero__2 .mthero__title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mthero__2 .mthero__title {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .mthero__2 .mthero__title {
        font-size: 40px;
    }
}

.mthero__2 .mthero__title span {
    position: relative;
    color: inherit;
}

    .mthero__2 .mthero__title span img {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }

.mthero__2 .mthero__subtitle {
    color: var(--mt-theme-1);
    animation-delay: 0.3s;
    animation-duration: 1s;
}

.mthero__2 .mthero__content p {
    font-size: 18px;
    font-weight: 500;
    animation-delay: 0.7s;
    animation-duration: 1s;
}

.mthero__2__btn {
    animation-delay: 0.9s;
    animation-duration: 1s;
}

.mthero__shape {
    position: absolute;
    left: 55%;
    top: 10%;
    animation: mttranslateX2 3s infinite alternate;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mthero__shape {
        top: 4%;
    }
}

@media (max-width: 767px) {
    .mthero__shape {
        top: 2%;
        left: 0%;
    }
}

.mthero__shape-2 {
    position: absolute;
    left: 32%;
    bottom: 7%;
    animation: mttranslateX2 3s infinite alternate;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mthero__shape-2 {
        left: 6%;
        bottom: 3%;
    }
}

@media (max-width: 767px) {
    .mthero__shape-2 {
        left: 6%;
        bottom: 3%;
    }
}

.mthero__shape-3 {
    position: absolute;
    right: 0;
    top: 0;
    animation: mttranslateY2 3s infinite alternate;
}

@media (max-width: 767px) {
    .mthero__shape-3 {
        top: 35%;
    }
}

.mt-hero-active .swiper-slide-active .mthero__subtitle,
.mt-hero-active .swiper-slide-active .mthero__title,
.mt-hero-active .swiper-slide-active .mthero__content p,
.mt-hero-active .swiper-slide-active .mthero__img img,
.mt-hero-active .swiper-slide-active .mthero__btn {
    animation-name: fadeInUp;
    animation-fill-mode: both;
}

.mt-hero-2-active .swiper-slide-active .mthero__subtitle,
.mt-hero-2-active .swiper-slide-active .mthero__title,
.mt-hero-2-active .swiper-slide-active .mthero__content p,
.mt-hero-2-active .swiper-slide-active .mthero__img img,
.mt-hero-2-active .swiper-slide-active .mthero__btn {
    animation-name: fadeInUp;
    animation-fill-mode: both;
}

.mthero__wrapper .mthero-pagination {
    text-align: center;
    position: absolute;
    margin-bottom: 0%;
    z-index: 1;
}

    .mthero__wrapper .mthero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #e0b44d;
        border: 1px solid #060121;
        opacity: 1;
        text-align: center;
        margin-bottom: 15px;
    }

    .mthero__wrapper .mthero-pagination .swiper-pagination-bullet-active {
        width: 40px;
        border-radius: 100px;
    }

.mthero__wrapper .mthero-2-pagination {
    text-align: center;
    position: absolute;
    margin-bottom: 0%;
}

    .mthero__wrapper .mthero-2-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #e0b44d;
        border: 1px solid #060121;
        opacity: 1;
        text-align: center;
        margin-bottom: 15px;
    }

    .mthero__wrapper .mthero-2-pagination .swiper-pagination-bullet-active {
        width: 40px;
        border-radius: 100px;
    }

.mtchoose__bg {
    padding: 40px;
    padding-bottom: 0px;
    border-radius: 20px;
    border: 1px solid var(--LIght-Gray, #DADADA);
    background: linear-gradient(131deg, #F7FFF1 0%, #FFF 50%, #FFFAF3 100%);
}

.mtchoose__thumb {
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 85px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtchoose__thumb {
        position: static;
        margin-bottom: 30px;
    }
}

.mtchoose__top {
    position: absolute;
    position: absolute;
    top: 39px;
    right: -42px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

    .mtchoose__top span {
        background-color: var(--mt-theme-1);
        color: #fff;
        padding: 10px 40px;
    }

.mtchoose__icon {
    border: 1px solid #DADADA;
    display: inline-block;
    padding: 10px;
    border-radius: 100px;
}

.mtchoose__title {
    font-size: 20px;
    font-weight: 600;
    color: #060121;
}

.mttestimonial__bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttestimonial__wrapper {
        padding: 0;
    }
}

.mttestimonial__item {
    background-color: #ffffff;
    padding: 45px 30px;
    border-radius: 400px;
    border: 1px dashed #EAEAEF;
}

@media (max-width: 767px) {
    .mttestimonial__item {
        padding: 20px;
        border-radius: 0;
    }
}

.mttestimonial__ratting a {
    color: #e0b44d;
}

.mttestimonial__content p {
    font-size: 20px;
    font-weight: 500;
    color: #646373;
    font-family: "Lora", serif;
    padding: 0px 50px;
}

@media (max-width: 767px) {
    .mttestimonial__content p {
        padding: 0px 20px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttestimonial__content p br {
        display: none;
    }
}

.mttestimonial__author-img {
    margin-right: 20px;
}

@media (max-width: 767px) {
    .mttestimonial__author-img {
        margin-right: 10px;
    }
}

.mttestimonial__author-title {
    font-size: 20px;
    font-weight: 600;
    color: #060121;
}

.mttestimonial__author-text span {
    font-size: 16px;
    font-weight: 500;
    color: #646373;
}

.mttestimonial__shape {
    position: absolute;
    left: -40px;
    bottom: 0;
    animation: mttranslateX2 3s infinite alternate;
}

.mttestimonial__shape-2 {
    position: absolute;
    right: 0;
    top: 0;
    animation: mttranslateY2 3s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttestimonial__shape-2 {
        display: none;
    }
}

.mttestimonial__shape-3 {
    position: absolute;
    left: 10%;
    bottom: 4%;
}

.mttestimonial__shape-4 {
    position: absolute;
    right: 7%;
    bottom: 18%;
}

.mttestimonial__arrow-next {
    position: absolute;
    top: 50%;
    left: 5%;
    z-index: 2;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mttestimonial__arrow-next {
        left: -3%;
    }
}

@media (max-width: 767px) {
    .mttestimonial__arrow-next {
        bottom: -30%;
        top: inherit;
        left: 45%;
    }
}

.mttestimonial__arrow-prev {
    position: absolute;
    right: 5%;
    top: 50%;
    z-index: 2;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mttestimonial__arrow-prev {
        right: -3%;
    }
}

@media (max-width: 767px) {
    .mttestimonial__arrow-prev {
        bottom: -30%;
        top: inherit;
        right: 25%;
    }
}

.mttestimonial__arrow-next span, .mttestimonial__arrow-prev span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #DADADA;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mttestimonial__arrow-next span:hover, .mttestimonial__arrow-prev span:hover {
        background-color: #17AF26;
        color: #fff;
    }

        .mttestimonial__arrow-next span:hover svg path, .mttestimonial__arrow-prev span:hover svg path {
            stroke: #ffffff;
        }

.mttestimonial__arrow-2 {
    justify-content: end;
    gap: 11px;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttestimonial__arrow-2 {
        justify-content: start;
    }
}

.mttestimonial__arrow-2 .mttestimonial__arrow-next, .mttestimonial__arrow-2 .mttestimonial__arrow-prev {
    position: inherit;
    text-align: end;
    transform: translate(0px);
}

.mttestimonial__2 .mttestimonial__item {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--Border-Color, #EAEAEF);
    background: var(--White, #FFF);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

    .mttestimonial__2 .mttestimonial__item:hover {
        border-radius: 16px;
        border: 1px solid var(--Border-Color, #EAEAEF);
        background: var(--White, #FFF);
        box-shadow: 0px 0px 6px 4px rgba(240, 240, 240, 0.39);
    }

.mttestimonial__2 .mttestimonial__content p {
    padding: 0px;
    color: var(--Dark, #060121);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.mttestimonial__2 .mttestimonial__author-title {
    font-size: 22px;
    margin-bottom: 0;
}

.mttestimonial__2 .mttestimonial__ratting {
    color: #060121;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-faq-thumb {
        margin-left: 0;
        margin-right: 0;
    }
}

.mtteam__border {
    border: 1px solid #DADADA;
    border-radius: 12px;
    padding: 8px;
}

.mtteam__item {
    text-align: center;
}

    .mtteam__item:hover .mtteam__content {
        opacity: 0;
        visibility: hidden;
    }

    .mtteam__item:hover .mtteam__info {
        opacity: 1;
        visibility: visible;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtteam__item img {
        width: 100%;
    }
}

.mtteam__content {
    position: absolute;
    right: -35px;
    bottom: 30px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
}

.mtteam__title {
    background-color: #17AF26;
    border: 1px solid #060121;
    display: inline-block;
    color: #fff;
    padding: 6px 30px;
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-bottom: 0;
    font-size: 16px;
}

.mtteam__info {
    border-radius: 16px;
    background: rgba(11, 96, 65, 0.9);
    position: absolute;
    top: 50%;
    width: 80%;
    margin: auto;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 80px 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtteam__member-name {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.mtteam__member-regi {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.mtteam__member-social a {
    width: 32px;
    height: 32px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    border: 1px solid #ffffff;
    color: #ffffff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    margin: 0 2px;
}

    .mtteam__member-social a:hover {
        background-color: #e0b44d;
        color: #fff;
        border: 1px solid #e0b44d;
    }

.mtteam__arrow {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.mtteam__arrow-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #DADADA;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtteam__pagination {
    margin-top: 10px;
}

    .mtteam__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #e0b44d;
        border: 1px solid #060121;
        opacity: 1;
        text-align: center;
        margin-top: 15px;
    }

    .mtteam__pagination .swiper-pagination-bullet-active {
        width: 40px;
        border-radius: 100px;
    }

.mt-team-more-info ul {
    list-style: none;
}

    .mt-team-more-info ul li {
        margin-bottom: 10px;
    }

        .mt-team-more-info ul li span {
            color: #222;
        }

        .mt-team-more-info ul li label {
            width: 140px;
            font-weight: 700;
        }

.mt-team-exp-info ul {
    margin-left: 16px;
}

    .mt-team-exp-info ul li {
        color: #222;
        margin-bottom: 3px;
    }

.mt-team-skill-info .progress-outer {
    border: 0;
    padding: 0;
}

.mt-team-skill-info .mt-skill-item .progress, .mt-team-skill-info .mt-skill-item .progress-stacked {
    height: 7px;
    background-color: #ddd;
}

.contact-form-box textarea {
    height: 164px;
}

.mt-team-call a {
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    align-items: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 9px 20px;
    display: inline-flex;
}

@media (max-width: 767px) {
    .mt-team-call a {
        padding: 9px 4px;
    }
}

.mt-team-call a i {
    color: var(--mt-theme-2);
    font-size: 14px;
    border-left: 1px solid #ddd;
    margin-left: 20px;
    padding-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-team-details-content {
        padding-left: 0;
    }
}

.mt-team-details-thumb img {
    width: 100%;
}

.mt-skill-item label {
    font-size: 15px;
    font-weight: 500;
    color: #0A0E1A;
    margin-bottom: 8px;
    line-height: 1;
}

.mt-skill-item .progress-bar {
    background-color: var(--mt-theme-1);
}

.mt-skill-item .progress, .mt-skill-item .progress-stacked {
    height: 12px;
    background-color: transparent;
    border-radius: 4px;
}

.progress-outer {
    border: 1px solid #57595C;
    padding: 3px;
    border-radius: 5px;
    position: relative;
}

.progress-num {
    position: absolute;
    left: calc(25% - 31px);
    top: -36px;
    background: var(--mt-theme-1);
    color: #fff;
    padding: 6px 5px;
    font-size: 11px;
    line-height: 1;
    border-radius: 4px;
}

    .progress-num:before {
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 10px 10px 0;
        border-color: transparent var(--mt-theme-1) transparent transparent;
        transform: rotate(0deg);
        content: "";
        position: absolute;
        top: 99%;
        right: 8px;
    }

.mt-fact-wrapper {
    padding: 48px 110px 48px 60px;
    border-radius: 20px;
    border: 1px solid #EAEAEF;
    background: linear-gradient(93deg, #F3FFF5 0%, #F0F3FF 47.61%, #FFFCF6 99.19%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-fact-wrapper {
        padding: 48px 30px 48px 30px;
    }
}

@media (max-width: 767px) {
    .mt-fact-wrapper {
        padding: 48px 30px 48px 30px;
    }
}

.mt-fact-content {
    border-radius: 20px;
    background: #ffffff;
    padding: 50px 65px;
    text-align: center;
}

    .mt-fact-content h4 {
        font-size: 20px;
        font-weight: 600;
        color: #000;
    }

.mt-fact-info {
    padding: 0px 60px;
    padding-right: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-fact-info {
        padding: 0;
    }
}

.mt-fact-wrap p {
    font-size: 20px;
    font-weight: 500;
    color: #646373;
    margin-bottom: 0;
}

.mt-fact-title {
    font-size: 40px;
    font-family: var(--mt-ff-body);
}

@media (max-width: 767px) {
    .mtfeature__wrapper {
        margin-bottom: 30px;
    }
}

.mtfeature__offer {
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtfeature__offer {
        background-size: cover;
        background-position: center;
        text-align: start;
    }
}

.mtfeature__bg {
    background: linear-gradient(91deg, rgba(255, 190, 17, 0.06) 0%, rgba(77, 137, 10, 0.03) 99.9%);
}

.mtfeature__title {
    font-size: 18px;
    font-weight: 700;
    color: #060121;
}

.mtfeature__content {
    margin-left: 20px;
}

    .mtfeature__content p {
        font-size: 14px;
        font-weight: 500;
        color: #646373;
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtfeature__content p br {
        display: none;
    }
}

.mtfeature__offer-title {
    color: #ffffff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font-size: 36px;
    font-weight: 700;
}

.mtfeature__text {
    padding: 20px;
}

    .mtfeature__text span {
        text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
    }

    .mtfeature__text a {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        display: block;
        margin-top: 20px;
    }

.mtshop__category-item {
    padding: 8px 20px 16px 20px;
    border-radius: 16px;
    border-radius: 1px solid var(--mt-border-1);
    box-shadow: 0px 1px 9px 2px rgba(155, 154, 154, 0.18);
    position: relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 10px 0;
    text-align: center;
}

    .mtshop__category-item::after {
        content: "";
        background: linear-gradient(91deg, rgba(255, 190, 17, 0.04) 0%, rgba(77, 137, 10, 0.04) 99.9%);
        position: absolute;
        left: 0;
        top: 0;
        clip-path: circle(50% at 50% 0);
        width: 100%;
        height: 115%;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        z-index: -1;
    }

    .mtshop__category-item:hover::after {
        clip-path: circle(123% at 80% 0);
        height: 100%;
    }

    .mtshop__category-item span {
        color: #646373;
        font-weight: 600;
        font-size: 14px;
    }

.mtshop__category-title {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--mt-ff-body);
    margin-top: 30px;
    margin-bottom: 0;
}

.mtshop__category-arrow {
    position: absolute;
    right: 0;
    top: -10px;
}

@media (max-width: 767px) {
    .mtshop__category-arrow {
        top: -20px;
        left: 0px;
        right: inherit;
    }
}

.mtshop__category-arrow-left span, .mtshop__category-arrow-right span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #DADADA;
}

.mtshop__category-arrow-right {
    margin-left: 15px;
}

.mtshop__category-content-title {
    color: var(--mt-common-dark);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.mtshop__category-content-btn {
    color: var(--mt-text-body);
    font-size: 16px;
    font-weight: 600;
}

    .mtshop__category-content-btn i {
        margin-left: 6px;
    }

.mtshop__category-arrow-2 .mtshop__category-arrow {
    position: absolute;
    left: 15%;
    top: 80px;
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtshop__category-arrow-2 .mtshop__category-arrow {
        left: 87%;
        top: 50px;
    }
}

@media (max-width: 767px) {
    .mtshop__category-arrow-2 .mtshop__category-arrow {
        left: 70%;
        top: 50px;
    }
}

.mtshop__category-arrow-2 .mtshop__category-arrow-right {
    right: -2%;
    left: inherit;
}

@media (max-width: 767px) {
    .mtshop__category-arrow-2 .mtshop__category-arrow-right {
        left: 82%;
        top: 50px;
    }
}

.mtfeature__product-item {
    border-radius: 16px;
    border: 1px solid var(--mt-border-1);
    background: linear-gradient(180deg, #fff 0%, #f9fff6 100%);
    padding: 25px 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

    .mtfeature__product-item:hover {
        border: 1px solid var(--mt-theme-1);
    }

        .mtfeature__product-item:hover .mtfeature__product-img img {
            scale: 1.1;
        }

        .mtfeature__product-item:hover .mtfeature__product-title {
            color: var(--mt-theme-1);
        }

.mtfeature__product-img img {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mtfeature__product-offer {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 3;
}

    .mtfeature__product-offer span {
        font-size: 14px;
        font-weight: 600;
        background-color: #e0b44d;
        padding: 7px;
        display: inline-block;
        position: relative;
        color: #ffffff;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.mtfeature__product-content span {
    font-size: 16px;
    font-weight: 500;
    color: #646373;
    margin-bottom: 5px;
    display: block;
}

.mtfeature__product-title {
    font-size: 17px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: #060121;
}

.mtfeature__product-rating {
    color: #e0b44d;
}

.mtfeature__product-price span {
    font-size: 15px;
    font-weight: 700;
    font-family: "Lora", serif;
    color: #060121;
}

.mtfeature__product-price del {
    font-size: 16px;
    font-weight: 500;
    color: #646373;
    font-family: "Lora", serif;
}

.mtfeature__product-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.mtfeature__product-arrow {
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 767px) {
    .mtfeature__product-arrow {
        left: 0;
        right: inherit;
        top: -15px;
    }
}

.mtfeature__product-arrow-left span, .mtfeature__product-arrow-right span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #DADADA;
}

.mtfeature__product-arrow-right {
    margin-left: 15px;
}

.mtfeature__product-2 .mtfeature__product-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtfeature__product-2 .mtfeature__product-cols {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtfeature__product-2 .mtfeature__product-cols {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .mtfeature__product-2 .mtfeature__product-cols {
        grid-template-columns: 1fr;
    }
}

.mtfeature__product-2 .mtfeature__product-item {
    border: 1px solid #EAEAEF;
    background: linear-gradient(180deg, #f8fff9 0%, #fff 38.5%, #fff 100%);
    padding: 0px 14px 7px 14px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

    .mtfeature__product-2 .mtfeature__product-item:hover {
        border: 1px solid var(--mt-theme-2);
    }

        .mtfeature__product-2 .mtfeature__product-item:hover .mtfeature__product-wishlist {
            opacity: 1;
            visibility: visible;
        }

            .mtfeature__product-2 .mtfeature__product-item:hover .mtfeature__product-wishlist a {
                scale: 1;
            }

.mtfeature__product-2 .mtfeature__product-wishlist {
    position: absolute;
    right: 5%;
    top: 5%;
    z-index: 2;
}

    .mtfeature__product-2 .mtfeature__product-wishlist a {
        background-color: transparent;
        color: #17AF26;
        border: 1px solid #17AF26;
        font-size: 14px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        scale: 0;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        display: inline-block;
        border-radius: 50px;
    }

.mtfeature__product-2 .mtfeature__product-content {
    text-align: start;
}

.mtfeature__product-2 .mtfeature__product-title {
    font-size: 16px;
}

.mtfeature__product-2 .mtfeature__product-cate span {
    font-size: 12px;
    font-weight: 600;
    color: #646373;
    padding: 4px 8px;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
    display: inline-block;
}

.mtfeature__product-2 .mtfeature__product-rating {
    text-align: start;
}

.mtfeature__product-2 .mtfeature__product-pricing-wrap {
    border-top: 1px dashed #EAEAEF;
}

.mtfeature__product-2 .mtfeature__product-cart a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    color: #ffffff;
    background-color: #e0b44d;
    box-shadow: 0px 0px 14px 0px #ffebcc;
}

.mtfeature__product-2 .mtfeature__product-offer span {
    color: #fff;
    background-color: #17AF26;
    border-radius: 4px;
    padding: 1px 8px;
    font-size: 12px;
    font-weight: 600;
    display: inherit;
}

.mtfeature__product-2 .mtfeature__product-category {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 3;
}

    .mtfeature__product-2 .mtfeature__product-category span {
        color: var(--mt-common-black);
        background-color: var(--mt-theme-2);
        border-radius: 4px;
        padding: 5px 8px;
        font-size: 12px;
        font-weight: 600;
        display: inline;
    }

.mtpopular__product-wrapper .cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtpopular__product-wrapper .cols {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtpopular__product-wrapper .cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-device-width: 481px) and (max-device-width: 768px) {
    .mtpopular__product-wrapper .cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 480px) {
    .mtpopular__product-wrapper .cols {
        grid-template-columns: 1fr;
    }
}

.mtpopular__product-tab ul {
    margin-bottom: 0 !important;
    border: 1px solid #EAEAEF;
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
}

    .mtpopular__product-tab ul li {
        text-align: end;
    }

        .mtpopular__product-tab ul li button {
            font-size: 14px;
            font-weight: 600;
            color: #646373;
        }

            .mtpopular__product-tab ul li button.active {
                background: #17AF26 !important;
                padding: 8px 14px;
                border-radius: 100px;
            }

            .mtpopular__product-tab ul li button:hover {
                color: #000;
            }

.mtpopular__product-shape {
    position: absolute;
    right: -2%;
    z-index: -1;
    animation: mttranslateY2 3s infinite alternate;
}

.mtpopular__product-shape-2 {
    position: absolute;
    left: -4%;
    z-index: -1;
    animation: mttranslateY2 3s infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtpopular__product-shape-2 {
        display: none;
    }
}

.mtpopular__product-2 .mthot__product-item-wrap {
    margin: 15px 4px;
}

.mtpopular__product-2 .mthot__product-item {
    border-radius: 10px;
    border: 1px solid #EAEAEF;
    background: #fbfbfb;
    position: relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}

    .mtpopular__product-2 .mthot__product-item::before {
        width: 100%;
        height: 1px;
        border: 1px dashed #EAEAEF;
        left: 0;
        bottom: 40px;
        position: absolute;
        content: "";
    }

    .mtpopular__product-2 .mthot__product-item:hover {
        box-shadow: 0px 0px 30px 0px #E3E2E2;
        border: 1px solid transparent;
    }

        .mtpopular__product-2 .mthot__product-item:hover .mthot__product-wishlist {
            opacity: 1;
            visibility: visible;
        }

.mtpopular__product-2 .mthot__product-price span {
    display: inline-block;
}

.mtpopular__product-2 .mthot__product-wishlist {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtpopular__product-2 .mthot__product-cart {
    position: absolute;
    right: 10px;
    bottom: 23px;
}

    .mtpopular__product-2 .mthot__product-cart a {
        border-radius: 50%;
        position: relative;
        color: #ffffff;
        background-color: #17AF26;
        border: 2px solid #ffffff;
        width: 40px;
        height: 40px;
        line-height: 35px;
        box-shadow: 0px 1px 12px 0px rgba(218, 211, 211, 0.3607843137);
    }

.mtpopular__product-3 .mtfeature__product-item {
    text-align: start;
    padding-bottom: 0px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: transparent;
}

    .mtpopular__product-3 .mtfeature__product-item:hover {
        border-radius: 8px;
        border: 1px solid var(--mt-common-white);
        background: linear-gradient(180deg, #F8FFF9 0%, #FFF 38.5%, #FFF 100%);
        box-shadow: 0px 0px 20px 0px #E0E0E0;
    }

        .mtpopular__product-3 .mtfeature__product-item:hover .mtfeature__product-cart a {
            color: #ffffff;
            background-color: #e0b44d;
            box-shadow: 0px 0px 14px 0px #ffebcc;
        }

        .mtpopular__product-3 .mtfeature__product-item:hover .mtfeature__product-wishlist a {
            scale: 1;
        }

.mtpopular__product-3 .mtfeature__product-img {
    text-align: center;
}

.mtpopular__product-3 .mtfeature__product-offer span {
    display: inline-block;
    position: relative;
    color: #fff;
    background-color: #17AF26;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

.mtpopular__product-3 .mtfeature__product-content span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #646373;
    padding: 4px 8px;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
}

.mtpopular__product-3 .mtfeature__product-cart a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    background-color: #17AF26;
    color: #ffffff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtpopular__product-3 .mtfeature__product-pricing-wrap {
    padding-bottom: 13px;
    border-top: 1px dashed #EAEAEF;
}

.mtpopular__product-3 .mtfeature__product-wishlist a {
    background-color: transparent;
    color: #17AF26;
    border: 1px solid #17AF26;
    font-size: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    scale: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    text-align: center;
    border-radius: 50px;
}

.mtpopular__product-wrap-tab {
    position: absolute;
    right: -24%;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtpopular__product-wrap-tab {
        position: inherit;
        right: 0;
    }
}

.mtpopular__product-banner {
    margin-top: 14px;
    padding: 30px 10px 215px 20px;
    width: 21%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    flex: 0 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtpopular__product-banner {
        display: none;
    }
}

.mtpopular__product-bannertitle {
    color: var(--mt-common-white);
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.33);
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtpopular__product-bannertitle {
        font-size: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtpopular__product-bannertitle {
        font-size: 30px;
    }
}

.mtpopular__product-bannersubtitle {
    color: var(--mt-common-white);
    font-size: 24px;
    font-weight: 600;
}

    .mtpopular__product-bannersubtitle span {
        color: var(--mt-theme-2);
    }

.mthot__product-item .mtfeature__product-offer {
    padding-top: 7px;
}

    .mthot__product-item .mtfeature__product-offer span {
        padding: 1px 7px;
        border-radius: 10px;
        font-size: 12px;
    }

.mthot__product-arrow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mthot__product-img {
    text-align: center;
}

.mthot__product-slider-left1 span, .mthot__product-slider-right1 span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #DADADA;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mthot__product-wrapper-2 .mthot__product_active_2 {
    margin: 5px 10px;
}

.mthot__product-wrapper-2 .mtfeature__product-item {
    padding: 0px 14px 7px 14px;
    border-radius: 10px;
    border: 1px solid var(--mt-border-1);
    background: #FBFBFB;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 5px 0px;
}

    .mthot__product-wrapper-2 .mtfeature__product-item:hover {
        background: var(--mt-common-white);
        box-shadow: 0px 0px 30px 0px #E3E2E2;
    }

        .mthot__product-wrapper-2 .mtfeature__product-item:hover .mtfeature__product-wishlist a {
            scale: 1;
        }

.mthot__product-wrapper-2 .mtfeature__product-wishlist {
    position: absolute;
    right: 20px;
    top: 13px;
}

    .mthot__product-wrapper-2 .mtfeature__product-wishlist a {
        background-color: transparent;
        color: #17AF26;
        border: none;
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        scale: 0;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        scale: 0;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1;
    }

.mthot__product-wrapper-2 .mtfeature__product-pricing-wrap {
    position: relative;
}

    .mthot__product-wrapper-2 .mtfeature__product-pricing-wrap::after {
        width: 111%;
        height: 1px;
        border: 1px dashed #EAEAEF;
        left: -15px;
        bottom: 35px;
        position: absolute;
        content: "";
        z-index: -1;
    }

.mthot__product-wrapper-2 .mtfeature__product-cart a {
    border-radius: 50%;
    position: relative;
    color: #ffffff;
    background-color: #17AF26;
    border: 2px solid #ffffff;
    width: 40px;
    height: 40px;
    line-height: 35px;
    box-shadow: 0px 1px 12px 0px rgba(218, 211, 211, 0.3607843137);
    display: inline-block;
    top: -18px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mthot__product-wrapper-2 .mtfeature__product-cart a:hover {
        background-color: var(--mt-theme-2);
        color: var(--mt-common-black);
    }

.mthot__product-wrapper-2 .mtfeature__product-cate span {
    font-size: 12px;
    font-weight: 600;
    color: #646373;
    padding: 4px 8px;
    border: 1px solid #EAEAEF;
    border-radius: 100px;
}

.mthot__product-wrapper-2 .mtfeature__product-offer {
    top: 7px;
}

    .mthot__product-wrapper-2 .mtfeature__product-offer span {
        font-size: 12px;
        color: #fff;
        border-radius: 4px;
        padding: 2px 5px;
        font-size: 12px;
        font-weight: 600;
    }

.mthot__product-wrapper-2 .mtfeature__product-price {
    margin-top: 10px;
}

.mthot__product-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #060121;
    margin-bottom: 5px;
    margin-right: 150px;
}

    .mthot__product-subtitle span {
        color: #e0b44d;
    }

.mthot__product-2 .mthot__product-countdown {
    border: 1px dashed #DADADA;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 15px;
    display: inline-block;
    text-align: end;
}

.mthot__product-2 .mthot__product-shape {
    position: absolute;
    bottom: 0px;
    z-index: -1;
    animation: mttranslateY2 3s infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mthot__product-2 .mthot__product-shape {
        display: none;
    }
}

.mtpopular__product-arrowbtn {
    text-align: center;
    margin-top: -45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtpopular__product-arrowbtn {
        margin-top: 0px;
    }
}

.mtpopular__product-arrowbtn .mtpopular__product-arrow {
    margin-top: 0px;
    text-align: center;
    margin-left: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtpopular__product-arrowbtn .mtpopular__product-arrow {
        margin-top: 30px;
        text-align: start;
        margin-left: 0px;
    }
}

.mtpopular__product-arrowbtn .mtpopular__product-btn {
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtpopular__product-arrowbtn .mtpopular__product-btn {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 574px) {
    .mtpopular__product-arrowbtn .mtpopular__product-btn {
        margin-top: -45px;
    }
}

@media only screen and (max-width: 400px) {
    .mtpopular__product-arrowbtn .mtpopular__product-btn {
        margin-top: -47px;
    }
}

.mtpopular__product-arrow {
    z-index: 4;
    position: relative;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .mtpopular__product-arrow {
        text-align: start !important;
    }
}

.mtpopular__product-slider-left1, .mtpopular__product-slider-right1 {
    display: inline-block;
}

    .mtpopular__product-slider-left1 span, .mtpopular__product-slider-right1 span {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        line-height: 40px;
        display: inline-block;
        text-align: center;
        border: 1px solid #DADADA;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        cursor: pointer;
        margin-left: 10px;
    }

        .mtpopular__product-slider-left1 span:hover, .mtpopular__product-slider-right1 span:hover {
            background-color: #17AF26;
        }

            .mtpopular__product-slider-left1 span:hover svg path, .mtpopular__product-slider-right1 span:hover svg path {
                stroke: #ffffff;
            }

.mtflash__product-bg {
    background-repeat: no-repeat;
}

.mtflash__product-item {
    background-color: #ffffff;
    border: 1px solid #EAEAEF;
    border-radius: 16px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

    .mtflash__product-item:hover {
        border: 1px solid var(--mt-theme-1);
    }

        .mtflash__product-item:hover .mtflash__product-title {
            color: var(--mt-theme-1);
        }

        .mtflash__product-item:hover .mtflash__product-img img {
            scale: 1.1;
        }

.mtflash__product-img img {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 0px 200px 200px 200px;
    border: 1px solid var(--mt-border-1);
    background: var(--mt-common-white);
}

.mtflash__product-cart {
    width: 40px;
    height: 48px;
    background-color: #17AF26;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    line-height: 48px;
    position: absolute;
    right: 8px;
    top: 19%;
}

.mtflash__product-title {
    font-size: 16px;
    font-weight: 600;
    color: #060121;
    font-family: var(--mt-ff-body);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtflash__product-ricon i {
    color: #e0b44d;
}

.mtflash__product-review-number {
    font-size: 12px;
    font-weight: 500;
    color: #060121;
}

.mtflash__product-countdown .countdown {
    justify-content: left;
    border-radius: 0px 100px 100px 0px;
    border: 1px solid #F5F8FB;
    background: linear-gradient(270deg, #F4F8FC 0%, #FDFBF4 50%, #F6FEF4 100%);
    padding-top: 2px;
    padding-bottom: 4px;
    max-width: max-content;
    gap: 14px;
    padding: 5px 20px 10px 10px;
    text-align: center;
}

.mtflash__product-countdown .countdown-separator {
    font-size: 30px;
    font-weight: 700;
    color: #060121;
}

.mtflash__product-countdown-item .countdown-value {
    font-size: 16px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: #060121;
    display: block;
}

.mtflash__product-countdown-item .countdown-label {
    font-size: 10px;
    font-weight: 700;
    color: #060121;
    font-family: "Quicksand", sans-serif;
    line-height: 5px;
    display: block;
}

.mtflash__product-price span {
    font-size: 18px;
    font-weight: 700;
    color: #17AF26;
    margin-right: 5px;
}

.mtflash__product-price del {
    font-size: 14px;
    font-weight: 500;
    color: #646373;
}

.mtflash__product-cate span {
    font-size: 12px;
    font-weight: 600;
    color: #646373;
    padding: 4px 8px;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
    margin-right: 5px;
}

.mtrecent__product-bg {
    background-repeat: no-repeat;
}

.mtrecent__product-watermark {
    position: absolute;
    right: -75px;
    top: 260px;
    rotate: 90deg;
}

.mtrecent__product-watermarktitle {
    -webkit-text-stroke: 1px rgba(234, 234, 239, 0.4);
    -webkit-text-fill-color: transparent;
    font-size: 300px;
    font-weight: 700;
    display: inline;
    position: absolute;
}

.mtrecent__product-item {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    background: #ffffff;
    padding: 16px 20px 16px 0px;
    border: 1px solid #EAEAEF;
    gap: 22px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtrecent__product-item::before {
        position: absolute;
        top: 0;
        left: -80%;
        z-index: 2;
        display: block;
        content: "";
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        -moz-transform: skewX(-25deg);
        -o-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
        z-index: 1;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtrecent__product-item::before {
        display: none;
    }
}

.mtrecent__product-item:hover {
    border: 1px solid var(--mt-theme-1);
}

    .mtrecent__product-item:hover::before {
        -webkit-animation: shine 1s;
        animation: shine 1s;
    }

    .mtrecent__product-item:hover .mtrecent__product-title {
        color: #17AF26;
    }

    .mtrecent__product-item:hover .mtrecent__product-img img {
        scale: 1.1;
    }

.mtrecent__product-content {
    width: 80%;
}

.mtrecent__product-img img {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtrecent__product-price span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Lora", serif;
    color: #17AF26;
}

.mtrecent__product-price i {
    font-size: 14px;
    font-weight: 600;
    color: #646373;
    font-family: "Lora", serif;
}

.mtrecent__product-wishlist a {
    color: #DADADA;
}

    .mtrecent__product-wishlist a:hover {
        color: #17AF26;
    }

.mtrecent__product-title {
    color: #060121;
    font-size: 18px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtrecent__product-rating a {
    color: #e0b44d;
}

.mtrecent__product-count {
    margin-right: 15px;
}

    .mtrecent__product-count input {
        width: 18px;
        text-align: center;
        border: none;
        font-size: 14px;
        font-weight: 600;
        margin: 0 10px;
        color: #646373;
        outline: none;
        height: 18px;
    }

    .mtrecent__product-count .counter-btns {
        width: 24px;
        height: 24px;
        line-height: 21px;
        text-align: center;
        border: 1px solid #17AF26;
        border-radius: 50%;
        background-color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        color: #17AF26;
        cursor: pointer;
    }

.mtrecent__product-offer {
    background-color: #ffffff;
    border: 1px solid #EAEAEF;
    border-radius: 16px;
    padding: 16px 16px 10px 16px;
}

.mtrecent__product-offertitle {
    position: absolute;
    top: 0;
    left: 0;
}

    .mtrecent__product-offertitle span {
        background-color: #17AF26;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 3px;
        display: inline-block;
        text-align: center;
    }

.mtrecent__product-offer-price {
    text-align: center;
}

    .mtrecent__product-offer-price span {
        font-size: 24px;
        font-weight: 700;
        color: #17AF26;
        font-family: "Lora", serif;
    }

.mtrecent__product-offer-title {
    font-size: 24px;
    font-weight: 700;
    color: #060121;
    font-family: "Quicksand", sans-serif;
}

.mtrecent__product-offer-review a {
    color: #e0b44d;
    font-size: 18px;
}

.mtrecent__product-offer-cate span {
    font-size: 16px;
    padding: 6px 11px;
    font-weight: 600;
    color: #646373;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
}

.mtrecent__product-offer-btn .offer-view, .mtrecent__product-offer-btn .offer-wishlist {
    width: 48px;
    height: 48px;
    background-color: #F5F5F5;
    border-radius: 100%;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    color: #060121;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtrecent__product-offer-btn .offer-view:hover, .mtrecent__product-offer-btn .offer-wishlist:hover {
        background-color: #17AF26;
        color: #fff;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtrecent__product-viewall {
        margin-bottom: 20px;
    }
}

.mttop__product-main .cols {
    width: 20%;
    border-radius: 16px;
    background: linear-gradient(180deg, #0c6015 0%, #149521 100%);
    box-shadow: 0px 0px 12px 0px #eae9e9;
    padding: 32px 24px;
    float: left;
    margin-right: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttop__product-main .cols {
        width: 100%;
        float: inherit;
        margin-bottom: 20px;
    }
}

.mttop__product-cattitle {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttop__product-categories-item ul {
        margin-bottom: 30px;
    }
}

.mttop__product-categories-item ul li {
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 16px;
    padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mttop__product-categories-item ul li {
        display: inline-block;
        margin-bottom: 0;
        padding: 0px 10px 0px 0px;
    }
}

.mttop__product-categories-item ul li.nav-link.active {
    color: #e0b44d;
    background-color: unset;
}

.mttop__product-categories-item ul li:hover {
    color: #ffffff;
}

.mttop__product-slider-left span, .mttop__product-slider-right span {
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ffffff;
    line-height: 20px;
    color: #ffffff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

    .mttop__product-slider-left span:hover, .mttop__product-slider-right span:hover {
        border-color: #e0b44d;
        color: #e0b44d;
        background-color: transparent;
    }

.mttop__product-slider-wrap {
    display: flex;
    gap: 15px;
}

.mtflashsale__product-slider-left span, .mtflashsale__product-slider-right span {
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ffffff;
    line-height: 20px;
    color: #ffffff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

    .mtflashsale__product-slider-left span:hover, .mtflashsale__product-slider-right span:hover {
        border-color: #e0b44d;
        color: #e0b44d;
        background-color: transparent;
    }

.mtflashsale__product-slider-wrap {
    display: flex;
    gap: 15px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px) {
    .mtweek__product-wrap {
        margin-right: 50px;
        margin-left: 50px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .mtweek__product-wrap {
        margin-right: 130px;
        margin-left: 130px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mtweek__product-wrap {
        margin-right: 80px;
        margin-left: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtweek__product-wrap {
        margin-right: 30px;
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtweek__product-wrap {
        margin-right: 30px;
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .mtweek__product-wrap {
        margin-right: 30px;
        margin-left: 30px;
    }
}

.mtweek__product-content {
    padding: 15px 10px 15px 100px;
    border: 1px solid #EAEAEF;
    border-radius: 10px;
    width: 360px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtweek__product-content {
        padding: 15px 10px 15px 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtweek__product-content {
        padding: 15px 10px 15px 75px;
    }
}

@media (max-width: 767px) {
    .mtweek__product-content {
        padding: 15px 10px 15px 95px;
    }
}

.mtweek__product-offer span {
    background-color: #e0b44d;
    color: #ffffff;
    padding: 3px 7px;
    font-size: 13px;
    font-weight: 600;
    width: max-content;
    position: absolute;
    border-radius: 100px;
    left: 50%;
    top: -15px;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mtweek__product-img {
    padding: 5px;
    border-radius: 10px;
    border: 2px solid #EAEAEF;
    background: #ffffff;
    box-shadow: 0px 0px 19px 0px #E8E5EF;
    position: absolute;
    left: -18%;
}

@media (max-width: 767px) {
    .mtweek__product-img {
        left: -8%;
    }
}

.mtweek__product-title {
    font-size: 20px;
    font-weight: 600;
    color: #060121;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mtweek__product-countdown .countdown {
    border-top: 1px dashed #EAEAEF;
    border-bottom: 1px dashed #EAEAEF;
    max-width: max-content;
    margin-top: 15px;
    margin-bottom: 15px;
}

.mtweek__product-countdown .countdown-value {
    font-size: 16px;
    font-weight: 700;
    color: #060121;
}

.mtweek__product-countdown .countdown-label {
    font-size: 14px;
    font-weight: 500;
    color: #646373;
    display: block;
}

.mtweek__product-countdown-item {
    text-align: center;
    margin: 0 10px;
}

.mtweek__product-price span {
    font-size: 20px;
    font-weight: 700;
    color: #060121;
}

.mtweek__product-cart a {
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: #17AF26;
    box-shadow: 0px 1px 12px 0px rgba(23, 175, 38, 0.11);
    width: 40px;
    height: 40px;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtweek__product-cart a:hover {
        background: var(--mt-theme-2);
        color: var(--mt-common-black);
    }

.mtproduct__table-area {
    background-repeat: no-repeat;
    background-position: bottom;
}

.mtproduct__table-wrapper {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.mtproduct__table-inner {
    position: relative;
}

    .mtproduct__table-inner::before {
        content: "";
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 31%;
        border: 1px dashed #EAEAEF;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtproduct__table-inner::before {
        display: none;
    }
}

.mtproduct__table-inner::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 34%;
    border: 1px dashed #EAEAEF;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtproduct__table-inner::after {
        display: none;
    }
}

.mtproduct__table-menu {
    border-radius: 8px 8px 0px 0px;
    background: linear-gradient(180deg, #17AF26 0%, #05700F 100%);
    padding: 5px 5px 0px 5px;
}

    .mtproduct__table-menu .nav-link {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        padding: 14px 27px 0px 52px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtproduct__table-menu .nav-link {
        font-size: 16px;
        padding: 11px 20px 0px 20px;
    }
}

@media (max-width: 767px) {
    .mtproduct__table-menu .nav-link {
        font-size: 16px;
        padding: 10px 15px 15px 20px;
    }
}

.mtproduct__table-menu .nav-link.active {
    background-image: url(../img/product/table-active.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    color: #060121;
    padding: 14px 52px;
}

@media (max-width: 767px) {
    .mtproduct__table-menu .nav-link.active {
        padding: 10px 10px;
    }
}

.mtproduct__table-item {
    gap: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: var(--White, #FFF);
    margin: 10px 40px 3px 20px;
    padding: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtproduct__table-item {
        margin: 5px 15px 3px 5px;
        gap: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mtproduct__table-item {
        margin: 5px 0px 3px 0px;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .mtproduct__table-item {
        margin: 5px 0px 3px 0px;
        gap: 10px;
    }
}

.mtproduct__table-item:hover {
    border-radius: 12px;
    box-shadow: 0px 1px 9px 0px rgba(216, 216, 216, 0.25);
}

    .mtproduct__table-item:hover .mtproduct__table-btn {
        opacity: 1;
        visibility: visible;
    }

    .mtproduct__table-item:hover .mtproduct__table-price {
        opacity: 0;
        visibility: hidden;
        display: none;
    }

.mtproduct__table-thumb {
    flex: 0 0 auto;
    border-radius: 7px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
    background: #F5F5F5;
}

.mtproduct__table-content {
    flex: 0 0 auto;
}

.mtproduct__table-category span {
    font-size: 12px;
    font-weight: 700;
    color: #646373;
}

.mtproduct__table-title {
    font-size: 18px;
    font-weight: 600;
    color: #060121;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtproduct__table-title {
        font-size: 15px;
    }
}

.mtproduct__table-price {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

    .mtproduct__table-price span {
        color: #17AF26;
        font-size: 16px;
        font-weight: 700;
    }

    .mtproduct__table-price del {
        color: #646373;
        font-size: 14px;
        font-weight: 700;
    }

.mtproduct__table-heart {
    width: 34px;
    height: 34px;
    border: 1px solid #EAEAEF;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 34px;
    color: #17AF26;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mtproduct__table-heart:hover {
        background-color: #17AF26;
        color: #ffffff;
    }

.mtproduct__table-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .mthot__product-btn {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 600px) {
    .mthot__product-btn {
        margin-top: -47px;
    }
}

@media (max-width: 767px) {
    .mtbanner {
        margin: 0;
    }
}

.mtbanner__item {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtbanner__item {
        align-items: center;
    }
}

@media (max-width: 767px) {
    .mtbanner__item {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtbanner__title br {
        display: none;
    }
}

.mtbanner__subtitle {
    padding: 7px;
    background: #f9e79f;
    display: inline-block;
    line-height: 15px;
}

    .mtbanner__subtitle span {
        font-size: 16px;
        font-weight: 500;
        color: var(--mt-common-dark);
        margin: 0 4px;
        line-height: 150%;
        font-family: var(--mt-ff-heading);
    }

.mtbanner__content {
    padding: 35px 0px 35px 20px;
}

    .mtbanner__content p {
        font-weight: 600;
    }

.mtbanner__shape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .mtbanner__shape {
        display: none;
    }
}

.mtbanner__2-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtbanner__2-bg {
        background-size: cover;
    }
}

.mtbanner__2 .mtbanner__discount {
    position: absolute;
    top: 0;
    right: 20%;
}

@media (max-width: 767px) {
    .mtbanner__2 .mtbanner__discount {
        top: -7px;
    }
}

.mtbanner__2 .mtbanner__img {
    border-radius: 50%;
    border: 2px dashed var(--mt-common-white);
    display: inline-block;
    padding: 20px;
}

    .mtbanner__2 .mtbanner__img img {
        border-radius: 50%;
        border: 3px solid var(--mt-text-body);
    }

.mtbanner__2 .mtbanner__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--mt-theme-3);
    background: transparent;
}

    .mtbanner__2 .mtbanner__subtitle span {
        font-size: 24px;
        font-weight: 600;
        color: var(--mt-common-white);
    }

.mtbanner__2 .mtbanner__title {
    color: var(--mt-common-white);
    font-size: 48px;
    font-weight: 600;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtbanner__2 .mtbanner__title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .mtbanner__2 .mtbanner__title {
        font-size: 35px;
    }
}

.mtbanner__2 .mtbanner__content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--mt-common-white);
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

.mtbanner__countdown {
    position: relative;
}

    .mtbanner__countdown .countdown {
        gap: 24px;
    }

@media (max-width: 767px) {
    .mtbanner__countdown .countdown {
        gap: 14px;
    }
}

.mtbanner__countdown::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 1px;
    border: 1px dashed var(--mt-theme-2);
}

.mtbanner__countdown .countdown-separator {
    font-size: 48px;
    font-weight: 600;
    color: var(--mt-theme-2);
    font-family: var(--mt-ff-heading);
}

.mtbanner__countdown-item .countdown-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--mt-common-white);
    font-family: "Lora", serif;
    line-height: 50px;
    display: block;
}

@media (max-width: 767px) {
    .mtbanner__countdown-item .countdown-value {
        font-size: 30px;
    }
}

.mtbanner__countdown-item .countdown-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-common-white);
    display: block;
}

.mtbanner__countdown-2 .countdown {
    border: 1px dashed var(--mt-border-1);
    padding: 12px 20px;
    border-radius: 16px;
    max-width: max-content;
}

.mtbanner__countdown-2::after {
    display: none;
}

.mtbanner__3 {
    background-repeat: no-repeat;
}

.mtbanner__3-bg {
    background-repeat: no-repeat;
}

.mtbanner__3 .mtbanner__wrapper {
    background-position: right bottom;
    background-repeat: no-repeat;
    box-shadow: 0px 1px 8px 0px rgba(219, 219, 219, 0.48);
    border-radius: 24px;
    background-color: var(--mt-common-white);
    overflow: hidden;
    padding: 30px 20px 350px 20px;
}

.mtbanner__3 .mtbanner__subtitle {
    color: var(--mt-theme-2);
    font-size: 40px;
    font-weight: 700;
    background: transparent;
}

.mtbanner__3 .mtbanner__title {
    color: var(--mt-common-dark);
    font-size: 30px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtbanner__3 .mtbanner__title {
        font-size: 25px;
    }
}

.mtbanner__3 .mtbanner__btn a {
    font-size: 18px;
    font-weight: 600;
    color: var(--mt-text-body);
}

    .mtbanner__3 .mtbanner__btn a span i {
        font-size: 11px;
    }

.mtbanner__titleslide-inner span {
    margin-right: 5px;
}

    .mtbanner__titleslide-inner span i {
        color: var(--mt-common-white);
    }

.mtbanner__titleslide-inner:hover {
    animation-play-state: paused;
}

.mtbanner__titleslide-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--mt-common-dark);
    white-space: nowrap;
    display: inline-block;
}

.mtbanner__4 .mtbanner__wrapper {
    background-repeat: no-repeat;
    padding: 30px 100px 40px 25px;
}

.mtbanner__4 .mtbanner__item p {
    color: var(--mt-common-white);
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    font-size: 16px;
    font-weight: 500;
}

.mtbanner__4 .mtbanner__subtitle {
    color: var(--mt-common-white);
    background-color: transparent;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.mtbanner__4 .mtbanner__title {
    color: var(--mt-common-white);
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0;
}

.mtbanner__4 .mtbanner__btn a {
    color: var(--mt-common-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

    .mtbanner__4 .mtbanner__btn a span i {
        color: var(--mt-common-white);
    }

.mtbanner__5 .mtbanner__box-item {
    margin-left: -35px;
}

@media (max-width: 767px) {
    .mtbanner__5 .mtbanner__box-item {
        margin: 0;
    }
}

.mtbanner__5 .mtbanner__wrapper {
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 2px solid var(--mt-common-dark);
    padding: 0px 25px 344px 30px;
    margin-right: 65px;
    background-size: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtbanner__5 .mtbanner__wrapper {
        padding: 32px 25px 245px 30px;
    }
}

@media (max-width: 767px) {
    .mtbanner__5 .mtbanner__wrapper {
        margin: 0;
        margin-bottom: 20px;
    }
}

.mtbanner__5 .mtbanner__wrapper-2 {
    margin-right: 0px;
    padding: 30px;
}

    .mtbanner__5 .mtbanner__wrapper-2 .mtbanner__subtitle.black {
        color: var(--mt-common-black);
    }

    .mtbanner__5 .mtbanner__wrapper-2 .mtbanner__title.black {
        color: var(--mt-common-black);
    }

    .mtbanner__5 .mtbanner__wrapper-2 .mtbanner__item p.black {
        color: var(--mt-common-black);
    }

.mtbanner__5 .mtbanner__subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--mt-common-white);
    background: transparent;
}

.mtbanner__5 .mtbanner__title {
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    font-size: 30px;
    font-weight: 700;
    color: var(--mt-common-white);
}

.mtbanner__5 .mtbanner__item p {
    color: var(--mt-common-white);
}

.mtbreadcrumb__titleslide-area {
    margin-top: -80px;
}

.mtbreadcrumb__titleslide-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(39, 154, 3, 0.16);
    -webkit-text-fill-color: transparent;
}

    .mtbreadcrumb__titleslide-title span i {
        -webkit-text-stroke: 1px rgba(39, 154, 3, 0.16);
        -webkit-text-fill-color: transparent;
        font-size: 40px;
        -moz-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

.mtbreadcrumb__titleslide-title-2 {
    -webkit-text-stroke: 1px #ffffff;
    -webkit-text-fill-color: transparent;
}

    .mtbreadcrumb__titleslide-title-2 span i {
        -webkit-text-stroke: 1px #ffffff;
        -webkit-text-fill-color: transparent;
    }

.mt__home-1-banner-2 .mt__home-1-banner-2-inner .countdown .countdown-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--mt-common-white);
    font-family: var(--mt-ff-heading);
    line-height: 50px;
}

.mtbanner__wrapper {
    position: relative;
}

    .mtbanner__wrapper.one::before {
        background: linear-gradient(180deg, rgba(39, 154, 3, 0.76) 0%, rgba(39, 154, 3, 0.62) 56.5%, rgba(39, 154, 3, 0) 100%);
        content: "";
        height: 100%;
        width: 100%;
        left: 0;
        right: auto;
        position: absolute;
        border-radius: 20px;
    }

    .mtbanner__wrapper.two {
        background: rgba(255, 255, 255, 0.4941176471);
        padding-right: 0;
        padding-bottom: 0;
    }

    .mtbanner__wrapper.three {
        background: linear-gradient(270deg, #FF7474 0%, #D81616 100%);
    }

.mtbanner__item-thumb img {
    border-radius: 0 0px 15px 0;
}

@media screen and (min-device-width: 481px) and (max-device-width: 768px) {
    .mthot__cols {
        width: 50%;
    }
}

.mthot__product-bg {
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.mthot__product-border {
    border-bottom: 1px dashed #DADADA;
}

.mthot__product-countdown .countdown-separator {
    color: var(--mt-common-dark);
    font-family: var(--mt-ff-heading);
    font-size: 30px;
    font-weight: 700;
}

.mthot__product-countdownitem {
    margin: 0px 15px;
    text-align: center;
}

    .mthot__product-countdownitem .countdown-value {
        display: block;
        font-size: 24px;
        font-weight: 700;
        color: #060121;
        font-family: "Lora", serif;
        display: block;
    }

    .mthot__product-countdownitem .countdown-label {
        font-size: 14px;
        font-weight: 500;
        color: #646373;
        display: block;
    }

    .mthot__product-countdownitem .countdown-separator {
        font-size: 25px;
        color: #000;
        font-weight: 600;
    }

.mthot__product-offer {
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 15px;
    background-position: center;
}

.mthot__product-offfercontent {
    padding: 30px;
    padding-bottom: 330px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mthot__product-offfercontent {
        padding-top: 220px;
    }
}

.mthot__product-offfersubtitle {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    color: #ffffff;
}

    .mthot__product-offfersubtitle::after {
        content: "";
        position: absolute;
        width: 60px;
        height: 2px;
        background: #e0b44d;
        bottom: -6px;
        left: 0;
    }

.mthot__product-offfertitle {
    font-size: 32px;
    font-weight: 600;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mthot__product-offfertitle br {
        display: none;
    }
}

.mthot__product-item {
    border-radius: 8px;
    border: 1px solid rgba(23, 175, 38, 0.1);
    background: linear-gradient(180deg, #efe 0%, #fff 31.5%);
    position: relative;
    padding: 0px 14px 7px 14px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mthot__product-item:hover .mthot__product-img img {
        scale: 1.1;
    }

    .mthot__product-item:hover .mthot__product-title {
        color: #17AF26;
    }

.mthot__product-img img {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mthot__product-wishlist a {
    width: 28px;
    height: 28px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(23, 175, 38, 0.06);
    color: var(--mt-theme-1);
    line-height: 28px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mthot__product-wishlist a:hover {
        background-color: var(--mt-theme-1);
        color: var(--mt-common-white);
    }

.mthot__product-cate span {
    font-size: 12px;
    font-weight: 600;
    color: #646373;
    padding: 4px 8px;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
}

.mthot__product-title {
    font-weight: 600;
    font-family: var(--mt-ff-body);
}

.mthot__product-price span {
    font-size: 18px;
    font-weight: 700;
    color: var(--mt-theme-1);
    display: block;
}

.mthot__product-pricedel {
    font-size: 14px;
    font-weight: 600;
    color: #646373;
}

.mthot__product-cart a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    background-color: var(--mt-theme-1);
    color: var(--mt-common-white);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mthot__product-cart a:hover {
        background-color: var(--mt-theme-2);
        color: var(--mt-common-black);
    }

.mtnewslatter__thumb {
    margin-right: -90px;
    z-index: 2;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtnewslatter__thumb {
        margin-right: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mtnewslatter__wrapper {
        padding: 50px 0px;
    }
}

.mtnewslatter__item {
    border-radius: 20px;
    background: #00801c;
    padding: 32px 32px 50px 32px;
    z-index: 2;
    position: relative;
}

    .mtnewslatter__item p {
        color: #ffffff;
        font-family: Quicksand;
        font-size: 18px;
        font-weight: 500;
        line-height: 150%;
    }

.mtnewslatter__title {
    color: #ffffff;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .mtnewslatter__title {
        font-size: 38px;
    }
}

.mtnewslatter__subscribe input {
    border-radius: 50px;
    color: var(--mt-common-white);
    height: 64px;
    line-height: 64px;
}

    .mtnewslatter__subscribe input:focus {
        border-color: #fff;
    }

    .mtnewslatter__subscribe input::-webkit-input-placeholder {
        color: #fff;
    }

    .mtnewslatter__subscribe input:-moz-placeholder {
        color: #fff;
    }

    .mtnewslatter__subscribe input::-moz-placeholder {
        color: #fff;
    }

    .mtnewslatter__subscribe input:-ms-input-placeholder {
        color: #fff;
    }

.mtnewslatter__subscribe button {
    position: absolute;
    right: 10px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mtnewslatter__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    animation: mttranslateY2 3s infinite alternate;
}

.mtnewslatter__shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: mttranslateY2 3s infinite alternate;
}

.mtnewslatter__mainwrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .mtnewslatter__mainwrapper .mtnewslatter__item {
        background: transparent;
        padding: 60px;
    }

@media (max-width: 767px) {
    .mtnewslatter__mainwrapper .mtnewslatter__item {
        padding: 15px;
    }
}

.mtnewslatter__mainwrapper .mtnewslatter__title span img {
    position: absolute;
    bottom: -15px;
    left: 0;
}

.mtnewslatter__mainwrapper .mtnewslatter__shape {
    position: absolute;
    top: -33%;
    left: -11%;
}

.mtcounter__bg {
    background: linear-gradient(91deg, rgba(252, 205, 236, 0.2) -0.36%, rgba(231, 254, 208, 0.2) 46.41%, rgba(209, 202, 255, 0.2) 100%);
}

.mtcounter__border {
    border-right: 1px solid #DADADA;
}

@media only screen and (max-width: 574px) {
    .mtcounter__border {
        border: 0;
    }
}

.mtcounter__space {
    margin: 35px 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mtcounter__space {
        margin: 35px 5px;
    }
}

.mtcounter__number {
    font-size: 60px;
}

@media (max-width: 767px) {
    .mtcounter__number {
        font-size: 40px;
    }
}

.mtcounter__icon span {
    font-size: 40px;
}

.mtcounter__content p {
    font-size: 16px;
    font-weight: 500;
    color: #646373;
    text-transform: uppercase;
    margin-bottom: 0;
}

.mt-shop-widget-title {
    color: #060121;
    font-size: 20px;
    text-transform: capitalize;
    padding-bottom: 18px;
    border-bottom: 1px dashed #EAEAEF;
}

.mt-shop-widget-filter {
    position: relative;
    margin-top: 30px;
}

    .mt-shop-widget-filter .ui-widget.ui-widget-content {
        height: 3px;
        background-color: #EDEDED;
        border: 0;
    }

    .mt-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
        background-color: var(--mt-theme-1);
        position: absolute;
    }

    .mt-shop-widget-filter .ui-slider .ui-slider-handle {
        top: -7px;
        width: 5px;
        height: 17px;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background-color: var(--mt-theme-1);
        position: absolute;
    }

.mt-shop-widget-filter-info .input-range input {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--mt-common-black);
    padding: 0;
    border: 0;
    font-weight: 500;
    font-size: 14px;
}

.mt-shop-widget-filter-info .mt-shop-widget-filter-btn {
    font-weight: 500;
    font-size: 16px;
    color: var(--mt-common-white);
    background-color: var(--mt-theme-1);
    padding: 8px 20px;
    border-radius: 12px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-shop-widget-filter-info .mt-shop-widget-filter-btn:hover {
        color: var(--mt-common-black);
        background-color: var(--mt-theme-2);
    }

.mt-shop-widget-categories ul li {
    list-style: none;
    width: 100%;
}

    .mt-shop-widget-categories ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .mt-shop-widget-categories ul li a {
        color: var(--Gray, #646373);
        font-size: 16px;
        text-transform: capitalize;
    }

        .mt-shop-widget-categories ul li a:hover {
            color: var(--mt-theme-1);
        }

            .mt-shop-widget-categories ul li a:hover span {
                color: var(--mt-theme-1);
            }

        .mt-shop-widget-categories ul li a span {
            font-size: 16px;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            float: right;
        }

        .mt-shop-widget-categories ul li a img {
            margin-right: 10px;
        }

.mt-shop-widget-rating-item label i {
    color: #e0b44d;
}

.mt-shop-widget-rating span {
    margin-left: 5px;
}

.mt-shop-widget-countdown {
    border-bottom: 1px dashed #ddd;
    border-top: 1px dashed #ddd;
    padding: 5px 0;
}

.mt-shop-widget-countdown-item .countdown-value {
    font-size: 24px;
    font-weight: 700;
    color: #060121;
    font-family: "Lora", serif;
    display: block;
}

.mt-shop-widget-countdown-item .countdown-label {
    font-size: 14px;
    font-weight: 500;
    color: #646373;
    display: block;
}

.mt-shop-top-filtar a {
    color: #646373;
    font-size: 16px;
    font-weight: 500;
    margin: 4px 4px;
    display: inline-block;
}

    .mt-shop-top-filtar a.active {
        padding: 4px 15px;
        border-radius: 100px;
        border: 1px solid #EAEAEF;
        background: #F5F5F5;
        color: #060121;
        font-size: 16px;
        font-weight: 500;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

.mt-shop-header {
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #EAEAEF;
    flex-wrap: wrap;
}

.mt-shop-header-title {
    color: #646373;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .mt-shop-header-title {
        margin-bottom: 20px;
    }
}

.mt-shop-header ul li button {
    color: #060121;
    border-radius: 6px;
    background: var(--Border-Color, #EAEAEF);
    margin-right: 8px;
}

@media (max-width: 767px) {
    .mt-shop-header ul li button {
        margin-bottom: 20px;
    }
}

.mt-shop-header ul li button.nav-link.active {
    background: var(--Primary, #17AF26);
}

.mt-shop-grid-item:hover .mt-shop-grid-img img {
    scale: 1.1;
}

.mt-shop-grid-item:hover .mt-shop-grid-content .mtfeature__product-title {
    color: var(--mt-theme-1);
}

.mt-shop-grid-img {
    border-radius: 500px;
    border: 1px solid #D7FFD9;
    background-color: #fff;
    margin: 0 12px;
    margin-bottom: -56px;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

    .mt-shop-grid-img img {
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
    }

.mt-shop-grid-content {
    border-radius: 16px;
    border: 1px solid #E8FFEB;
    background: linear-gradient(180deg, #F3FFF4 0%, #FFF 48.1%);
    padding: 85px 16px 16px 16px;
    position: relative;
}

    .mt-shop-grid-content .mtfeature__product-price span {
        font-family: var(--mt-ff-body);
        font-size: 16px;
        font-weight: 700;
        color: #17AF26;
    }

    .mt-shop-grid-content .mtfeature__product-price del {
        font-size: 12px;
        font-weight: 500;
        color: #646373;
    }

    .mt-shop-grid-content .mtfeature__product-title {
        color: var(--mt-common-dark);
        font-size: 16px;
        font-weight: 600;
        font-family: var(--mt-ff-body);
    }

    .mt-shop-grid-content .mtfeature__product-cate span {
        font-size: 12px;
        font-weight: 600;
        color: var(--mt-text-body);
        padding: 3px 8px;
        border: 1px solid var(--mt-border-1);
        border-radius: 4px;
    }

    .mt-shop-grid-content .mtfeature__product-cart a {
        width: 32px;
        height: 32px;
        line-height: 30px;
        display: inline-block;
        text-align: center;
        background-color: var(--mt-theme-1);
        color: var(--mt-common-white);
        box-shadow: -3px 6px 10px 0px rgba(23, 175, 38, 0.14);
        border-radius: 8px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

        .mt-shop-grid-content .mtfeature__product-cart a:hover {
            background-color: var(--mt-theme-2);
        }

.mt-shop-list-item {
    border-radius: 10px;
    border: 1px solid #EAEAEF;
    background: linear-gradient(90deg, #FCFFFC 0%, #FFFAFE 100%);
    box-shadow: 0px 0px 12px 0px #EAEAEA;
    padding: 20px 24px;
    gap: 5px;
}

@media only screen and (max-width: 500px) {
    .mt-shop-list-item {
        flex-wrap: wrap;
    }
}

.mt-shop-list-item:hover .mt-shop-list-img img {
    scale: 1.1;
}

.mt-shop-list-item:hover .mt-shop-list-title {
    color: var(--mt-theme-1);
}

.mt-shop-list-img {
    width: 20%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-shop-list-img {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .mt-shop-list-img {
        width: 40%;
    }
}

@media only screen and (max-width: 500px) {
    .mt-shop-list-img {
        width: 100%;
    }
}

.mt-shop-list-img img {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 7px;
}

.mt-shop-list-content-wrap {
    width: 80%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-shop-list-content-wrap {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .mt-shop-list-content-wrap {
        width: 60%;
    }
}

@media only screen and (max-width: 500px) {
    .mt-shop-list-content-wrap {
        width: 100%;
    }
}

.mt-shop-list-title {
    font-size: 20px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mt-shop-list-cate span {
    font-size: 12px;
    font-weight: 600;
    color: #646373;
    padding: 3px 8px;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
}

.mt-shop-list-rating span {
    color: #e0b44d;
}

.mt-shop-list-price {
    font-size: 16px;
    font-weight: 700;
    color: #17AF26;
}

.mt-shop-list-price-wrap {
    border-top: 1px dashed #DADADA;
    padding-top: 15px;
}

.mt-shop-list-price del {
    margin-right: 4px;
    color: #646373;
}

.mt-shop-list-btn a {
    padding: 10px 13px;
    border-radius: 50%;
    border: 1px solid #EAEAEF;
    color: #646373;
    display: inline-block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-shop-list-btn a:hover {
        background-color: #17AF26;
        color: #ffffff;
    }

.mt-shop-list-offer span {
    color: var(--mt-common-black);
    background-color: var(--mt-theme-2);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.mt-shop-details__wrapper {
    margin-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-shop-details__wrapper {
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-shop-details__tab-big-img img {
        width: 100%;
    }
}

.mt-shop-details__tab-big-img {
    border: 1px solid #EAEAEF;
    border-radius: 16px;
    margin-right: 30px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-shop-details__tab-big-img {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-shop-details__tab-content-box {
        margin-left: -40px;
    }
}

.mt-shop-details__tab-btn-box .nav.nav-tab {
    justify-content: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-shop-details__tab-btn-box .nav.nav-tab {
        justify-content: start;
    }
}

.mt-shop-details__tab-btn-box button {
    display: inline-block;
    border: 1px solid #EAEAEF;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .mt-shop-details__tab-btn-box button {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

.mt-shop-details__tab-btn-box button img {
    background-color: #ffffff;
    width: 100px;
    height: 95px;
    object-fit: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-shop-details__tab-btn-box button img {
        height: 70px;
    }
}

.mt-shop-details__tab-btn-box button.active {
    border: 1px solid #EDE7E7;
}

.mt-shop-details__ratting span {
    color: #e0b44d;
}

    .mt-shop-details__ratting span svg {
        color: #FFB41B;
    }

.mt-shop-details__price span {
    color: var(--mt-common-black);
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .mt-shop-details__quantity-wrap {
        flex-wrap: wrap;
    }
}

.mt-shop-details__quantity {
    background-color: #ffffff;
    position: relative;
    margin-right: 15px;
    border-radius: 100px;
    border: 1px solid #eaeaef;
    padding: 8px;
    width: 150px;
    height: 50px;
}

@media (max-width: 767px) {
    .mt-shop-details__quantity {
        margin-bottom: 20px;
    }
}

.mt-shop-details__quantity input {
    border: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--mt-common-black);
}

.mt-shop-details__quantity .mt-cart-minus {
    z-index: 3;
}

.mt-shop-details__quantity .mt-cart-min-plus {
    position: absolute;
    font-weight: 700;
    color: #060121;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    background-color: #EAEAEF;
    bottom: 7px;
    cursor: pointer;
}

.mt-shop-details__quantity .mt-cart-plus {
    right: 5px;
}

.mt-shop-details__quantity.proquantity {
    padding: 8px;
    width: 110px;
    height: 30px;
    border: 0;
    border-radius: 0;
}

    .mt-shop-details__quantity.proquantity input {
        bottom: 9px;
    }

    .mt-shop-details__quantity.proquantity .mt-cart-min-plus {
        width: 24px;
        height: 24px;
        line-height: 23px;
        text-align: center;
        border: 1px solid #17AF26;
        border-radius: 50%;
        background-color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        color: #17AF26;
    }

.mt-shop-details__btn {
    line-height: 0;
}

@media (max-width: 767px) {
    .mt-shop-details__btn {
        margin-bottom: 20px;
    }
}

.mt-shop-details__offer .red-color {
    display: inline-block;
    background-color: #e0b44d;
    color: #060121;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
}

.mt-shop-details__title-sm {
    color: var(--mt-common-black);
    font-size: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-shop-details__title-sm br {
        display: none;
    }
}

.mt-shop-details__text {
    border-bottom: 1px dashed #EAEAEF;
    padding-bottom: 5px;
}

.mt-shop-details__price span {
    color: #17AF26;
    font-size: 24px;
}

.mt-shop-details__price del {
    margin-right: 5px;
    color: #646373;
    font-size: 18px;
    font-weight: 500;
}

.mt-shop-details__product-info {
    overflow: hidden;
    clear: both;
}

.mt-shop-details__product-info-2 ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: 600;
    color: #060121;
}

    .mt-shop-details__product-info-2 ul li > span {
        margin-left: 5px;
        font-size: 14px;
        font-weight: 500;
        color: #646373;
        border: 1px solid #DADADA;
        border-radius: 4px;
        padding: 4px 8px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

        .mt-shop-details__product-info-2 ul li > span:hover {
            border: 1px solid var(--mt-theme-2);
            color: var(--mt-theme-2);
        }

.mt-shop-details__product-info ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: 600;
    color: #060121;
    margin-bottom: 12px;
    float: right;
    width: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mt-shop-details__product-info ul li {
        font-size: 17px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-shop-details__product-info ul li {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .mt-shop-details__product-info ul li {
        font-size: 16px;
    }
}

.mt-shop-details__product-info ul li:last-child {
    margin-bottom: 0;
}

.mt-shop-details__product-info ul li > span {
    margin-left: 5px;
    font-size: 17px;
    font-weight: 500;
    color: #646373;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-shop-details__product-info ul li > span:hover {
        color: var(--mt-theme-2);
    }

.mt-shop-details__product-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #EAEAEF;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .mt-shop-details__product-box {
        grid-template-columns: 1fr;
    }
}

.mt-shop-details__product-box-item {
    padding: 20px 28px;
}

    .mt-shop-details__product-box-item span {
        padding: 10px 15px;
        border-radius: 4px;
        background-color: #EAEAEF;
        margin-right: 10px;
    }

.mt-shop-details__product-box-text p {
    font-size: 14px;
    font-weight: 500;
    color: #646373;
    margin-bottom: 0;
}

.mt-shop-details__social span {
    color: #121416;
    font-family: var(--mt-ff-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    display: inline-block;
    margin-right: 10px;
}

.mt-shop-details__social a {
    display: inline-block;
    font-size: 16px;
    color: var(--mt-common-black);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-right: 11px;
}

    .mt-shop-details__social a:hover {
        color: var(--mt-theme-1);
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-product-img {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .mt-product-img img {
        max-width: 100%;
    }
}

.mt-product-quantity .cart-minus, .mt-product-quantity .cart-plus {
    cursor: pointer;
    color: #8D8884;
}

    .mt-product-quantity .cart-minus:hover, .mt-product-quantity .cart-plus:hover {
        color: var(--mt-theme-primary);
    }

.mt-product-quantity input {
    height: 30px;
    width: 32px;
    font-size: 14px;
    border: none;
    font-weight: 700;
    text-align: center;
}

.product-rating {
    margin-right: 20px;
}

    .product-rating a {
        font-size: 16px;
        color: #FFDC60;
    }

.product-dinfo {
    display: flex;
}

.product-dprice del {
    font-size: 20px;
    color: #B9B9B9;
}

.pro-details-nav {
    border: 1px solid #EAEAEF;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 100px;
    position: relative;
    display: inline-block;
}

@media (max-width: 767px) {
    .pro-details-nav {
        border-radius: 10px;
    }
}

.pro-details-nav::after {
    content: "";
    position: absolute;
    width: 205%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px dashed #EAEAEF;
    left: 100%;
}

.pro-details-nav-btn {
    border: none;
}

    .pro-details-nav-btn li {
        font-weight: 500;
        font-size: 18px;
        color: var(--mt-text-body);
        position: relative;
    }

        .pro-details-nav-btn li button span {
            position: relative;
            z-index: 9;
        }

@media (max-width: 767px) {
    .pro-details-nav-btn li {
        font-size: 16px;
    }
}

.pro-details-nav-btn li .nav-links {
    font-size: 16px;
    color: #646373;
    font-weight: 500;
    padding: 12px 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pro-details-nav-btn li .nav-links {
        padding: 12px 20px;
    }
}

@media (max-width: 767px) {
    .pro-details-nav-btn li .nav-links {
        padding: 12px 15px;
    }
}

.pro-details-nav-btn li .nav-links.active {
    background-color: #17AF26;
    border-radius: 100px;
    color: #ffffff;
    padding: 12px 16px;
}

@media (max-width: 767px) {
    .mt-review-box {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.tab-para p {
    font-size: 16px;
    line-height: 30px;
}

@media (max-width: 767px) {
    .tab-para p {
        font-size: 14px;
    }
}

.comments-box {
    margin-bottom: 35px;
    padding-top: 35px;
    border-top: 1px solid #EAEAEF;
}

.user-rating ul li {
    display: inline-block;
    color: #e0b44d;
}

.comments-text span {
    font-size: 14px;
    color: #777777;
    line-height: 26px;
}

.comment-title p {
    color: #777777;
    font-size: 16px;
}

.comment-rating span {
    font-weight: 500;
    margin-right: 5px;
}

.comment-rating ul li {
    display: inline-block;
    color: #e0b44d;
}

.comment-input textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    padding: 20px;
    resize: none;
}

    .comment-input textarea:focus {
        outline: 0;
        border: 1px solid var(--mt-theme-1);
    }

.comment-input input {
    width: 100%;
    height: 50px;
    resize: none;
    outline: 0;
    border: 1px solid #e7e7e7;
    padding: 8px 20px;
    margin-bottom: 30px;
}

    .comment-input input:focus {
        border: 1px solid var(--mt-theme-1);
    }

.comments-avatar {
    flex: 0 0 auto;
}

.table .add-info {
    font-size: 18px;
    font-weight: 500;
}

.table td {
    padding: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .shop-left-right {
        margin-left: 0;
        margin-right: 0;
    }
}

.mt-comments-title {
    font-size: 24px;
    color: var(--mt-common-black);
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .mt-comments-title {
        font-size: 18px;
    }
}

.avatar-name b {
    font-size: 16px;
    font-weight: 600;
    color: #060121;
    margin-bottom: 0;
    margin-right: 15px;
}

.comments-text p {
    font-size: 16px;
    font-weight: 500;
    color: #646373;
}

.comments-top-like-wrap a {
    color: #646373;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .comments-top-like-wrap a:hover {
        color: var(--mt-theme-2);
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-button a {
        margin-bottom: 10px;
    }
}

.latest-comments ul li {
    list-style-type: none;
}

.comment-title {
    font-size: 24px;
    color: var(--mt-common-black);
    font-weight: 700;
    text-transform: capitalize;
}

.mt-product-slider-title {
    color: var(--mt-common-black);
    font-size: 30px;
    font-weight: 500;
}

.product-details-list-box > span {
    color: var(--mt-common-black);
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.product-details-list-box ul li {
    color: #445658;
    font-size: 16px;
    padding-bottom: 10px;
    margin-left: 13px;
}

.mt-content-tab-title {
    font-size: 23px;
    font-weight: 600;
    color: #060121;
    font-family: var(--mt-ff-body);
}

.mt-product-details-range-wrap {
    gap: 60px;
}

@media (max-width: 767px) {
    .mt-product-details-range-wrap {
        flex-wrap: wrap;
    }
}

.mt-product-details-range-count {
    font-size: 60px;
    color: #060121;
    margin-right: 20px;
}

.mt-product-details-range-review span {
    font-size: 14px;
    font-weight: 500;
    color: #060121;
    background-color: #e0b44d;
    padding: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

    .mt-product-details-range-review span i {
        color: #fff;
    }

.mt-product-details-range-review p {
    font-size: 14px;
    font-weight: 500;
    color: #646373;
    margin-bottom: 7px;
}

.mt-product-details-range-review ul li {
    color: #e0b44d;
    display: inline-block;
}

.mt-product-details-range-bar ul li {
    display: inline-block;
    color: #e0b44d;
}

    .mt-product-details-range-bar ul li span {
        display: inline-block;
        -moz-transform: translateY(-3px);
        -o-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
        width: 180px;
        height: 4px;
        border-radius: 16px;
        background-color: #DADADA;
        margin: 0 4px;
        position: relative;
    }

.mt-reviews-box {
    gap: 10px;
}

@media (max-width: 767px) {
    .mt-reviews-box {
        flex-wrap: wrap;
    }
}

.mt-reviews-box span {
    font-size: 20px;
    font-weight: 500;
    color: #646373;
    margin-right: 10px;
}

.mt-reviews-box-number a {
    font-size: 16px;
    font-weight: 500;
    color: #646373;
    padding: 5px 14px;
    border: 1px solid #DADADA;
    border-radius: 4px;
    margin: 0 4px;
}

    .mt-reviews-box-number a i {
        color: #e0b44d;
    }

.mt__select-box {
    display: flex;
    align-items: center;
    gap: 11px;
}

.mt__select-box-title {
    font-weight: 500;
}

.mt__select-box .nice-select::after {
    right: 8px;
}

.mt-whislist {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.mt-whislist-space {
    margin-left: 7%;
    margin-right: 7%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-whislist-space {
        margin: 0;
    }
}

.mt-whislist-bg {
    padding-bottom: 270px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mt-whislist table {
    margin-bottom: 0;
    border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-whislist table {
        width: 840px;
    }
}

.mt-whislist-header tr th {
    padding: 15px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #060121;
    background-color: #e0b44d;
    border-bottom: 1px solid #e0b44d;
}

    .mt-whislist-header tr th.product-remove {
        text-align: end;
    }

.mt-whislist tbody tr {
    border-bottom: 1px dashed #EAEAEF;
}

    .mt-whislist tbody tr td {
        padding: 15px;
        font-size: 16px;
        font-weight: 500;
        color: #060121;
        vertical-align: middle;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-whislist tbody tr td {
        padding: 15px 5px 15px 5px;
    }
}

@media (max-width: 767px) {
    .mt-whislist tbody tr td {
        padding: 8px;
    }
}

.mt-whislist tbody tr td img {
    width: 120px;
}

.mt-whislist-title {
    font-size: 16px;
    font-weight: 600;
    color: #060121;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .mt-whislist-title:hover {
        color: var(--mt-theme-2);
    }

.mt-whislist-info span {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #EAEAEF;
    color: #646373;
}

.mt-whislist-pricedel {
    font-size: 16px;
    font-weight: 600;
    color: #646373;
}

.mt-whislist-price span {
    color: #17AF26;
    font-weight: 600;
    font-size: 16px;
}

.mt-whislist-remove {
    text-align: center;
}

    .mt-whislist-remove button {
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 50%;
        padding: 8px 13px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

        .mt-whislist-remove button:hover {
            background-color: var(--mt-theme-2);
        }

.mt-whislist-action-btn {
    text-align: end;
}

.mt-whislist-cart .mt-whislist-header tr th {
    border-bottom: none;
    background-color: #F5F5F5;
}

.mt-whislist-cart td.mt-whislist-remove {
    text-align: end;
}

.mt-whislist-cart td.mt-whislist-total-price span {
    margin-left: 20px;
}

.mt-whislist-cart .mt-whislist-header tr th.product-quantity {
    padding-left: 30px;
}

button.mt-btn-3.mt-btn-apply-coupon {
    position: absolute;
    right: 10px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mt-coupon-all .mt-coupon input {
    border-radius: 100px;
    padding: 20px 8px 20px 24px;
    background-color: transparent;
    color: #060121;
    width: 415px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    border: 1px solid #EAEAEF;
}

@media (max-width: 767px) {
    .mt-coupon-all .mt-coupon input {
        width: 335px;
    }
}

.mt-coupon-all {
    flex-wrap: wrap;
    gap: 15px;
}

.mt-cart-page-total {
    position: relative;
    border-radius: 16px;
    border: 1px solid #EAEAEF;
    background: linear-gradient(137deg, #FFFFF2 0%, #F1F0FF 100%);
    padding: 30px 32px 37px 32px;
}

.mt-cart-subtotal-price {
    font-size: 18px;
    font-weight: 600;
    color: #060121;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 11px;
    margin-bottom: 32px;
    border-bottom: 1px dashed #DADADA;
}

.mt-cart-shipping-cart-box {
    font-size: 18px;
    font-weight: 600;
    color: #060121;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mt-cart-shipping-list label {
    font-size: 16px;
    color: #060121;
    margin-bottom: 8px;
}

    .mt-cart-shipping-list label .radio-input {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 16px;
        height: 16px;
        border: 1px solid #646373;
        border-radius: 50%;
        display: inline-block;
        margin-right: 8px;
        position: relative;
    }

        .mt-cart-shipping-list label .radio-input:checked {
            background-color: green;
            border-color: green;
        }

.mt-cart-change {
    font-size: 16px;
    font-weight: 500;
    color: #17AF26;
    margin-top: 8px;
    display: inline-block;
}

.mt-cart-total {
    margin-top: 55px;
    padding-top: 14px;
    border-top: 1px dashed #DADADA;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .mt-cart-total span {
        font-size: 18px;
        font-weight: 600;
        color: #060121;
    }

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: dashed;
    border-width: 0;
}

/*----------------------------------------*/
/*  7.5 checkout css start
/*----------------------------------------*/
.mt-checkout-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--mt-common-white);
    background-color: var(--mt-theme-2);
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    text-align: center;
}

    .mt-checkout-btn:hover {
        background-color: var(--mt-common-black);
        color: var(--mt-common-white);
    }

.mt-checkout-input {
    margin-bottom: 33px;
}

    .mt-checkout-input label {
        padding-bottom: 8px;
        color: #060121;
        font-family: var(--mt-ff-body);
        font-size: 16px;
        font-weight: 600;
    }

        .mt-checkout-input label span {
            color: #060121;
        }

    .mt-checkout-input textarea {
        height: 200px;
        resize: none;
        padding: 25px;
        font-size: 14px;
    }

    .mt-checkout-input .nice-select {
        height: 64px;
        line-height: 63px;
        border-radius: 0;
        border: 0;
        float: none;
        padding: 0 25px;
        font-size: 14px;
    }

        .mt-checkout-input .nice-select::after {
            right: 26px;
        }

        .mt-checkout-input .nice-select.open .list {
            -moz-transform: scale(1) translateY(0px);
            -o-transform: scale(1) translateY(0px);
            -ms-transform: scale(1) translateY(0px);
            -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
        }

        .mt-checkout-input .nice-select .list {
            margin-top: 0;
            border-radius: 0;
            transform-origin: center center;
            -moz-transform: scale(0.9) translateY(0px);
            -o-transform: scale(0.9) translateY(0px);
            -ms-transform: scale(0.9) translateY(0px);
            -webkit-transform: scale(0.9) translateY(0px);
            transform: scale(0.9) translateY(0px);
            width: 100%;
            padding: 12px 0;
        }

            .mt-checkout-input .nice-select .list .option {
                line-height: 1.2;
                min-height: inherit;
                padding-top: 5px;
                padding-bottom: 5px;
            }

                .mt-checkout-input .nice-select .list .option:hover {
                    color: var(--mt-theme-2);
                }

.mt-checkout-option {
    margin-bottom: 4px;
}

.mt-checkout-option-wrapper {
    margin-top: -10px;
    margin-bottom: 17px;
}

.mt-checkout-option input {
    display: none;
}

    .mt-checkout-option input:checked ~ label::after {
        background-color: var(--mt-theme-1);
        border-color: var(--mt-theme-1);
    }

    .mt-checkout-option input:checked ~ label::before {
        visibility: visible;
        opacity: 1;
    }

.mt-checkout-option label {
    position: relative;
    padding-left: 26px;
    z-index: 1;
    color: var(--Dark, #060121);
    font-family: var(--mt-ff-body);
    font-weight: 500;
}

    .mt-checkout-option label::after {
        position: absolute;
        content: "";
        top: 5px;
        left: 0;
        width: 18px;
        height: 18px;
        line-height: 16px;
        text-align: center;
        border: 1px solid rgba(6, 7, 40, 0.2);
        z-index: -1;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        border-radius: 4px;
    }

    .mt-checkout-option label::before {
        position: absolute;
        content: "\f00c";
        top: 2px;
        left: 4px;
        font-size: 12px;
        text-align: center;
        visibility: hidden;
        opacity: 0;
        color: var(--mt-common-white);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        font-family: "Font Awesome 5 Pro";
    }

    .mt-checkout-option label a:hover {
        color: var(--mt-theme-2);
    }

    .mt-checkout-option label:hover {
        cursor: pointer;
    }

.mt-checkout-bill-title {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 35px;
}

.mt-checkout-payment {
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid #EAEAEF;
    padding: 20px;
}

.mt-checkout-payment-title {
    font-size: 20px;
    font-weight: 600;
    color: #060121;
    font-family: var(--mt-ff-body);
}

.mt-checkout-payment-item:not(:last-child) {
    margin-bottom: 10px;
}

.mt-checkout-payment-item.paypal-payment label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.mt-checkout-payment-item input {
    display: none;
}

    .mt-checkout-payment-item input:checked ~ label::before {
        opacity: 1;
        visibility: visible;
    }

.mt-checkout-payment-item label {
    font-size: 14px;
    position: relative;
    padding-left: 27px;
    font-weight: 500;
    color: var(--mt-common-black);
}

    .mt-checkout-payment-item label:hover {
        cursor: pointer;
    }

    .mt-checkout-payment-item label::after {
        position: absolute;
        content: "";
        left: 0;
        top: 3px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid var(--mt-theme-1);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .mt-checkout-payment-item label::before {
        position: absolute;
        content: "";
        left: 3px;
        top: 6px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--mt-theme-1);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .mt-checkout-payment-item label img {
        margin-left: 14px;
        -moz-transform: translateY(1px);
        -o-transform: translateY(1px);
        -ms-transform: translateY(1px);
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    .mt-checkout-payment-item label a {
        margin-left: 20px;
        position: relative;
    }

.mt-checkout-payment-desc {
    position: relative;
    padding-top: 10px;
    display: none;
}

    .mt-checkout-payment-desc::after {
        position: absolute;
        content: "";
        left: 57px;
        top: 0;
        width: 16px;
        height: 16px;
        background-color: #fff;
        -moz-transform: translateY(3px) rotate(45deg);
        -o-transform: translateY(3px) rotate(45deg);
        -ms-transform: translateY(3px) rotate(45deg);
        -webkit-transform: translateY(3px) rotate(45deg);
        transform: translateY(3px) rotate(45deg);
    }

    .mt-checkout-payment-desc p {
        background-color: #fff;
        padding: 19px 30px;
        margin-left: 27px;
        font-size: 14px;
        line-height: 1.57;
        color: #55585B;
        margin-bottom: 0;
    }

.mt-checkout-agree {
    margin-bottom: 24px;
}

.mt-return-customer {
    display: none;
    margin-top: 14px;
    padding: 40px 40px;
    background-color: var(--mt-grey-1);
}

.mt-return-customer-input {
    margin-bottom: 20px;
}

    .mt-return-customer-input label {
        font-weight: 500;
        color: var(--mt-common-black);
        padding-bottom: 10px;
    }

        .mt-return-customer-input label span {
            color: red;
        }

    .mt-return-customer-input input {
        width: 100%;
        background: #fff;
        border: 0;
        color: var(--mt-common-black);
        height: 64px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        border: 1px solid transparent;
    }

        .mt-return-customer-input input:focus {
            border: 1px solid var(--mt-theme-1);
        }

.mt-return-customer-remeber input {
    display: none;
}

    .mt-return-customer-remeber input:checked ~ label::after {
        background-color: var(--mt-theme-1);
        border-color: var(--mt-theme-1);
    }

    .mt-return-customer-remeber input:checked ~ label::before {
        visibility: visible;
        opacity: 1;
    }

.mt-return-customer-remeber label {
    font-size: 15px;
    color: #55585B;
    position: relative;
    padding-left: 26px;
    z-index: 1;
}

    .mt-return-customer-remeber label::after {
        position: absolute;
        content: "";
        top: 3px;
        left: 0;
        width: 18px;
        height: 18px;
        line-height: 16px;
        text-align: center;
        border: 1px solid rgba(6, 7, 40, 0.2);
        z-index: -1;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .mt-return-customer-remeber label::before {
        position: absolute;
        content: "\f00c";
        top: 0px;
        left: 5px;
        font-size: 10px;
        text-align: center;
        visibility: hidden;
        opacity: 0;
        color: var(--mt-common-white);
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        font-family: "Font Awesome 5 Pro";
    }

    .mt-return-customer-remeber label a:hover {
        color: var(--mt-common-orange);
    }

    .mt-return-customer-remeber label:hover {
        cursor: pointer;
    }

.mt-return-customer-forgot a {
    font-weight: 400;
    font-size: 15px;
    color: var(--mt-theme-2);
    position: relative;
    display: inline-block;
}

    .mt-return-customer-forgot a::after {
        position: absolute;
        content: "";
        left: auto;
        right: 0;
        bottom: 4px;
        width: 0%;
        height: 1px;
        background-color: var(--mt-theme-primary);
    }

    .mt-return-customer-forgot a:hover::after {
        left: 0;
        right: auto;
        width: 100%;
    }

.mt-order-details {
    padding: 70px 100px 55px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mt-order-details {
        padding: 70px 70px 55px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-order-details {
        padding: 70px 30px 55px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .mt-order-details {
        padding: 70px 50px 55px;
    }
}

@media (max-width: 767px) {
    .mt-order-details {
        padding: 40px 30px 45px;
    }
}

.mt-order-details-icon {
    margin-bottom: 22px;
}

    .mt-order-details-icon span {
        display: inline-block;
        width: 120px;
        height: 120px;
        line-height: 118px;
        text-align: center;
        font-size: 55px;
        color: var(--mt-common-white);
        border: 1px solid rgba rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

.mt-order-details-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--mt-common-white);
    margin-bottom: 7px;
}

.mt-order-details-content p {
    font-size: 16px;
    color: var(--mt-common-white);
    line-height: 1.38;
}

.mt-order-details-item {
    margin-bottom: 38px;
}

.mt-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .mt-order-details-item {
    padding-left: 40px;
}

@media (max-width: 767px) {
    .mt-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .mt-order-details-item {
        padding-left: 0;
    }
}

.mt-order-details-item h4 {
    font-size: 18px;
    color: var(--mt-common-white);
    margin-bottom: 0;
    font-weight: 400;
}

.mt-order-details-item p {
    font-weight: 700;
    font-size: 18px;
    color: var(--mt-common-white);
    margin-bottom: 0;
}

.mt-order-info-wrapper {
    padding: 42px 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-order-info-wrapper {
        padding: 42px 40px;
    }
}

@media (max-width: 767px) {
    .mt-order-info-wrapper {
        padding: 42px 30px;
    }
}

.mt-order-info-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.mt-order-info-list-img {
    border-radius: 4px;
    background: #EAEAEF;
    text-align: center;
    margin-right: 10px;
}

    .mt-order-info-list-img img {
        width: 90px;
        height: 85px;
        object-fit: contain;
    }

.mt-order-info-list-title {
    color: var(--Dark, #060121);
    font-family: var(--mt-ff-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.mt-order-info-list-content span {
    font-size: 14px;
    font-weight: 500;
    color: #646373;
    border-radius: 4px;
    padding: 2px 5px;
    border: 1px solid #EAEAEF;
    margin-right: 8px;
}

.mt-order-info-list-content p {
    font-size: 14px;
    font-weight: 600;
    color: #646373;
    display: inline-block;
}

.mt-order-info-list-price span {
    font-size: 20px;
    font-weight: 600;
    color: #060121;
}

.mt-order-info-list-subtotal {
    padding: 28px 0 !important;
}

    .mt-order-info-list-subtotal span {
        font-size: 16px;
        font-weight: 600;
        color: #060121;
    }

        .mt-order-info-list-subtotal span.price {
            font-size: 20px;
        }

.mt-order-info-list-shipping {
    padding: 28px 0 !important;
}

    .mt-order-info-list-shipping span {
        font-size: 16px;
        font-weight: 600;
        color: #060121;
    }

        .mt-order-info-list-shipping span.price {
            font-size: 20px;
        }

.mt-order-info-list ul li {
    list-style: none;
    padding: 15px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E0E2E3;
}

    .mt-order-info-list ul li.mt-order-info-list-header {
        padding-top: 0;
        padding-bottom: 12px;
    }

        .mt-order-info-list ul li.mt-order-info-list-header h4 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 0;
        }

    .mt-order-info-list ul li.mt-order-info-list-desc p {
        font-size: 15px;
        margin-bottom: 0;
    }

        .mt-order-info-list ul li.mt-order-info-list-desc p span {
            font-size: 15px;
            font-weight: 500;
        }

    .mt-order-info-list ul li.mt-order-info-list-total {
        padding: 14px 0;
    }

        .mt-order-info-list ul li.mt-order-info-list-total span {
            font-size: 16px;
            font-weight: 500;
        }

.mt-order-inner {
    background-color: var(--mt-common-white);
    box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
}

.mt-checkout-area .offset-1 {
    margin: 0;
}

.mt-contact-wrapper {
    border-radius: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.17);
    padding: 20px;
    z-index: 2;
}

.mt-contact-border {
    padding: 40px;
    border: 1px dashed #DADADA;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .mt-contact-border {
        padding: 40px 20px;
    }
}

.mt-contact-input textarea {
    width: 100%;
    height: 158px;
}

.mt-contact-thumb {
    position: absolute;
    left: -10px;
    top: 20%;
    z-index: 1;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .mt-contact-thumb {
        left: -160px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .mt-contact-thumb {
        left: -230px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .mt-contact-thumb {
        position: static;
        margin-bottom: 30px;
        text-align: center;
    }
}

.mt-contact-info {
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #EAEAEF;
}

.mt-contact-info-icon span {
    color: #EAEAEF;
    font-size: 60px;
}

.mt-contact-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #060121;
    margin-bottom: 10px;
    display: inline-block;
}

.mt-contact-info-text {
    text-align: left;
}

    .mt-contact-info-text span {
        font-size: 20px;
        font-weight: 600;
        color: #060121;
        margin-bottom: 10px;
        display: inline-block;
    }

    .mt-contact-info-text p {
        font-size: 20px;
        font-weight: 500;
        color: #646373;
        transition: 0.3s;
        margin-bottom: 5px;
    }

        .mt-contact-info-text p:hover {
            color: var(--mt-theme-1);
        }

.mt-map-area iframe {
    height: 700px;
    width: 100%;
}

.mt-login-wrapper {
    border-radius: 20px;
    border: 3px solid #ffffff;
    background: linear-gradient(241deg, #fff 0%, #fbfbfb 99.32%);
    box-shadow: 0px 0px 19px 0px #e8e5ef;
    width: 80%;
    margin: auto;
    padding: 70px 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-login-wrapper {
        width: 100%;
        padding: 40px 50px;
    }
}

@media (max-width: 767px) {
    .mt-login-wrapper {
        width: 100%;
        padding: 20px 30px;
    }

    .mt-contact-info {
        padding: 40px 20px;
    }

    .mt-contact-info-icon span {
        font-size: 24px;
    }
}

.mt-login-title {
    font-size: 36px;
}

.mt-login-mail p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #646373;
    position: relative;
    background: #fff;
    z-index: 2;
    display: inline-block;
    margin-bottom: 3px;
}

.mt-login-mail::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 12px;
    width: 100%;
    height: 1px;
    background-color: #e0e2e3;
}

.mt-login-option-item a {
    padding: 22px 35px;
    border: 1px solid #EAEAEF;
    border-radius: 16px;
    background-color: #ffffff;
    display: inline-block;
    margin: 0 5px;
}

    .mt-login-option-item a span {
        margin-left: 5px;
    }

.mt-login-account p a {
    color: #060121;
    text-decoration: underline;
    transition: 0.3s;
}

    .mt-login-account p a:hover {
        color: var(--mt-theme-1);
    }

.mt-login-forgot a {
    transition: 0.3s;
}

    .mt-login-forgot a:hover {
        color: var(--mt-theme-1);
    }

@media (max-width: 767px) {
    .mt-login-wrap {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .mt-login-forgot {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .mt-login-option-item {
        margin-bottom: 20px;
    }
}

.mt-login-input-wrapper .mt-checkout-input {
    margin-bottom: 20px;
}

    .mt-login-input-wrapper .mt-checkout-input span {
        position: absolute;
        right: 12px;
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        color: #64748b;
    }

/*----------------------------------------*/
/*  7.4 cart css start
/*----------------------------------------*/
.mtcartmini__area {
    position: fixed;
    right: 0;
    top: 0;
    width: 360px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    background: var(--mt-common-white) none repeat scroll 0 0;
    transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999;
    scrollbar-width: none;
}

@media only screen and (max-width: 400px) {
    .mtcartmini__area {
        width: 100%;
    }
}

.mtcartmini__wrapper {
    position: relative;
    min-height: 100%;
    padding-left: 25px;
    padding-right: 25px;
}

.mtcartmini__top-title {
    padding: 20px 0;
    border-bottom: 1px dashed var(--mt-border-1);
}

    .mtcartmini__top-title h4 {
        font-size: 16px;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 0;
    }

.mtcartmini__close {
    position: absolute;
    top: 17px;
    right: 0;
}

.mtcartmini__close-btn {
    background: transparent;
    color: var(--mt-common-black);
    font-size: 22px;
}

.mtcartmini__shipping {
    padding: 15px 0;
    border-bottom: 1px dashed var(--mt-border-1);
}

    .mtcartmini__shipping p {
        margin-bottom: 5px;
        font-size: 13px;
        color: gray;
        font-weight: 500;
    }

        .mtcartmini__shipping p span {
            color: var(--mt-theme-1);
            font-weight: 600;
        }

    .mtcartmini__shipping .progress {
        height: 10px;
        border-radius: 0;
    }

    .mtcartmini__shipping .progress-bar {
        background-color: var(--mt-theme-1);
    }

.mtcartmini__widget {
    height: calc(100vh - 380px);
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.mtcartmini__widget-item {
    position: relative;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px dashed var(--mt-border-1);
    align-items: center;
}

    .mtcartmini__widget-item:last-child {
        border-bottom: 0;
    }

.mtcartmini__thumb {
    border: 1px dashed var(--mt-border-1);
    margin-right: 15px;
    flex: 0 0 auto;
}

    .mtcartmini__thumb img {
        width: 70px;
        height: auto;
    }

.mtcartmini__content {
    padding-right: 15px;
}

.mtcartmini__title {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 500;
}

.mtcartmini__prmte {
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-theme-1);
}

.mtcartmini__quantity {
    font-size: 12px;
    font-weight: 500;
}

.mtcartmini__del {
    position: absolute;
    top: 15px;
    right: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: var(--mt-common-black);
    font-size: 14px;
}

.mtcartmini__empty {
    margin-top: 150px;
}

    .mtcartmini__empty img {
        margin-bottom: 30px;
    }

    .mtcartmini__empty p {
        font-size: 16px;
        color: var(--mt-common-black);
        margin-bottom: 15px;
    }

.mtcartmini__checkout {
    padding-top: 15px;
    padding-bottom: 85px;
    width: 100%;
    background: var(--mt-common-white);
    border-top: 2px dashed var(--mt-border-1);
}

.mtcartmini__checkout-title h4 {
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
}

.mtcartmini__checkout-title span {
    float: right;
    font-size: 15px;
    color: var(--mt-common-black);
    font-weight: 500;
}

.mtcartmini__area.mtcartmini-opened {
    transform: translateX(0);
    right: 0;
}

.mtheader__area .mtborder__top-wrapper {
    height: 42px;
}

.mthero__2-bg {
    height: 600px;
}

@media only screen and (max-width: 575px) {
    .mthero__2-bg {
        height: 400px;
    }
}
