@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

:root {
    --primary: #00c4b3;
    --secondary: #382f2d;
    --tertiary: #8f7333;
    --quaternary: #007672;
    --white: #FFFFFF;
    --gray: #e5e5e5;
    --dark-gray: #585858;
    --danger: #eb473f;
    --rounded: 0.5em;
    --placeholder: #666666;
    --tertiary-hover: #046bbe;
    --quaternary-hover: #01b6f5;
    --danger-hover: #ff0000;
    --brown: #180303;
    --light-gray: #f7f7f7;
}


/* ---- preset style START ---- */

select.form-control {
    -webkit-appearance: menulist;
}

.container-fluid {
    width: 100%;
    max-width: 1280px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control::placeholder {
    color: var(--placeholder);
}

html,
body {
    -webkit-text-size-adjust: none;
    margin: 0px;
    padding: 0px;
    /*height: 100%;*/
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    color: var(--dark-gray);
}

.rounded {
    border-radius: var(--rounded) !important;
    overflow: hidden;
}

img {
    border: none;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
a:link,
a:visited,
a:focus,
input:focus,
textarea:focus {
    outline: none;
    text-decoration: none;
    color: var(--primary);
}

select:focus {
    outline: none;
}

textarea {
    resize: none;
}

form,
input,
select,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

iframe {
    display: block;
}

p+p {
    margin-top: 1.5em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time {
    display: block;
    margin: 0;
    padding: 0;
}

::selection {
    background: #1C1C1C;
    color: #FFFFFF;
}

::-moz-selection {
    background: #1C1C1C;
    color: #FFFFFF;
}

ul {
    list-style: none;
}

li {
    padding: 0;
    margin: 0;
}

label {
    font-weight: normal !important;
}

.fa-ul>li:not(:last-child) {
    margin-bottom: 15px;
}

.lead {
    font-size: 1.2em;
    line-height: 1.5em;
}

h1 {
    font-size: 2.25em;
    font-family: 'Playfair Display', serif;
    position: relative;
}

h2 {
    font-size: 2em;
    font-family: 'Playfair Display', serif;
}

h3 {
    font-size: 1.75em;
    font-family: 'Playfair Display', serif;
}

h4 {
    font-size: 1.50em;
    font-family: 'Playfair Display', serif;
}

h5 {
    font-size: 1.25em;
    font-family: 'Playfair Display', serif;
}

h6 {
    font-size: 1em;
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 2.0em;
    }

    h2 {
        font-size: 1.770em;
    }

    h3 {
        font-size: 1.540em;
    }

    h4 {
        font-size: 1.310em;
    }

    h5 {
        font-size: 1.1em;
    }

    h6 {
        font-size: 1em;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 1.750em;
    }

    h2 {
        font-size: 1.570em;
    }

    h3 {
        font-size: 1.390em;
    }

    h4 {
        font-size: 1.210em;
    }

    h5 {
        font-size: 1.075em;
    }

    h6 {
        font-size: 1em;
    }
}

@media only screen and (min-width: 1601px) {
    section>.minHeight {
        min-height: 250px;
    }
}

.underlined {
    padding-bottom: .75em;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.underlined:after {
    content: "";
    width: 150px;
    height: 5px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: var(--danger);
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-size: 0.8em;
    display: block;
    line-height: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

.stretched {
    letter-spacing: 1px;
}

.text-default:focus,
.text-default:active,
.text-default {
    color: var(--primary) !important;
}

.text-secondary:focus,
.text-secondary:active,
.text-secondary {
    color: var(--secondary) !important;
}

.text-tertiary:focus,
.text-tertiary:active,
.text-tertiary {
    color: var(--tertiary) !important;
}

.text-quaternary:focus,
.text-quaternary:active,
.text-quaternary {
    color: var(--quaternary) !important;
}

.text-white:focus,
.text-white:active,
.text-white {
    color: var(--white);
}

.text-danger:focus,
.text-danger:active,
.text-danger {
    color: var(--danger) !important;
}

.tooltip-inner {
    font-size: 0.875em;
}

.bgGradient::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(60%, rgba(153, 153, 153, 0)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#333333', GradientType=0);
}

.hoverIcon,
.bgOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bg-white {
    background: var(--white) !important;
}

.bg-dark {
    background: var(--secondary) !important;
}

.bg-gray {
    background: var(--gray) !important;
}

.bg-lgray {
    background: var(--light-gray) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-tertiary {
    background: var(--primary) !important;
}

.bg-cover {
    background-size: cover !important;
}


/* ---- preset style END ---- */

body {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    line-height: 1.71429;
    overflow-x: hidden;
    /* padding-top: 150px; */
}


/* 
@media (min-width: 1200px) {
body.condensed-nav {
padding-top: 120px;
}
body.condensed-nav #primaryNav {
min-height: 80px;
}
}

@media (max-width: 1199px) {
body {
padding-top: 105px;
}
} */

.main {
    overflow: hidden;
    width: 100%;
}

.navbar-brand {
    text-align: left;
}

.navbar-brand img {
    width: 280px;
    margin: 1.2rem 0;
}


/* #primaryNav {
min-height: 110px
} */

#topNav {
    min-height: 40px
}

#topNav a {
    font-size: 1.2em;
    color: var(--gray);
}


/* #topNav a span {
    font-size: .9em;
} */

#topNav .infoLinks a {
    font-size: .9em;
    color: var(--gray);
    margin-right: 1rem;
}

#topNav i>.count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    color: var(--primary);
    font-family: "RobotoLight", Arial, Helvetica, sans-serif;
}

#topNav .dropdown-item,
#primaryNav .nav-link,
#primaryNav .dropdown-item,
#primaryNav .dropdown-submenu {
    position: relative;
    color: var(--primary);
    letter-spacing: unset;
}

#primaryNav .nav-link {
    letter-spacing: 1px;
}

#primaryNav .nav-link[aria-expanded="true"],
#primaryNav .nav-link:focus,
#primaryNav .nav-link:active,
#primaryNav .nav-link:hover {
    color: var(--danger);
}

#primaryNav .dropdown-menu>li.dropdown-submenu a.nav-link,
#topNav .dropdown-item,
#primaryNav .dropdown-item {
    padding-top: 0.8750em;
    padding-bottom: 0.8750em;
}

#primaryNav .dropdown-menu li:not(:last-child) .dropdown-item,
#primaryNav .dropdown-menu li.dropdown-submenu:not(:last-child) {
    border-bottom: 1px solid var(--gray);
}

#topNav .dropdown-item:active,
#topNav .dropdown-item:focus,
#topNav .dropdown-item:hover,
#primaryNav .dropdown-item:active,
#primaryNav .dropdown-item:focus,
#primaryNav .dropdown-item:hover {
    background: var(--gray) !important;
}

#topNav .dropdown-menu,
#primaryNav .dropdown-menu {
    font-size: 1em;
    background: var(--white);
    padding: 0;
    border-radius: 0;
}

#topNav .badge {
    position: absolute;
    top: 0px;
    right: 2px;
    padding: 2px;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    line-height: 84%;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#primaryNav .dropdown-submenu>a:after {
    content: "\f105";
    position: absolute;
    border: none;
    right: 20px;
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    text-transform: none;
}

#primaryNav .dropdown-submenu>a.dropdown-item {
    width: auto !important;
}


/* .dropdown-toggle::after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    border: none;
    vertical-align: unset;
    font-size: 1em;
    color: var(--white);
    text-transform: none;
} */

@media (min-width: 1200px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

.nav-link+.dropdown-toggle {
    position: absolute !important;
    padding: 5px 10px !important;
    right: 10px;
    top: 6px;
    border: none !important;
}

#primaryNav .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
}

#primaryNav .dropdown-submenu>a.nav-link {
    padding-left: 1.5em;
}

#primaryNav .dropdown-submenu>a.nav-link {
    padding-left: 1.5em;
}

@media (max-width: 1199px) {
    #primaryNav .dropdown-submenu>a.nav-link::after {
        content: none;
    }

    #primaryNav {
        min-height: 60px;
    }

    #primaryNav .navbar-nav {
        overflow-y: auto;
        max-height: 400px;
    }

    #primaryNav .dropdown-submenu>a:after {
        content: "\f107";
        position: unset;
    }

    #primaryNav .dropdown-item+.dropdown-menu li a.dropdown-item {
        padding-left: 50px;
    }

    #primaryNav .dropdown-item+.dropdown-menu {
        background: var(--gray);
    }

    #primaryNav .navbar-nav>li:not(:last-child) {
        border-bottom: 1px solid var(--gray);
    }

    #primaryNav .nav-link {
        padding: 1em;
    }

    /* #primaryNav .nav-item > .dropdown-toggle {
background: rgba(255,255,255,0.5);
} */
    #primaryNav .dropdown-toggle::after {
        font-size: 1.2em;
    }

    #primaryNav .dropdown-item:active,
    #primaryNav .dropdown-item:focus,
    #primaryNav .dropdown-item:hover {
        background: none !important;
    }
}


/*END OF PRIMARY NAVIGATION */


/* hamburger nav */

.sticky {
    z-index: 99;
    position: fixed;
    top: 0;
    width: 100%;
    transition: .5s;
    background: var(--white);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.sticky .navbar-brand img {
    max-width: 200px;
    margin: .75rem 0;
}

#navbar {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0%, -50%);
}

.slide-menu .fa-bars {
    font-size: 30px;
    /* margin-left: 28px; */
    float: right;
    color: var(--primary);
    margin-top: -7px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: var(--primary);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
    font-family: 'Playfair Display', serif;
}

.sidenav.hided {
    width: 0;
}

.menu-logo {
    max-width: 100px;
    margin: 1.2rem auto;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    display: block;
    transition: 0.3s;
}

.sidenav a:hover,
.sidenav .active {
    color: var(--secondary);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.slide-menu {
    cursor: pointer;
}

nav p {
    color: rgba(255, 255, 255, 0.71);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 0;
}

nav span {
    color: var(--primary);
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2rem;
}

nav .another {
    margin-top: 5px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
        z-index: 9999;
    }

    .sidenav a {
        font-size: 14px;
    }
}


/* end hamburger nav */

.form-control {
    border-radius: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-appearance: none;
    font-size: 1rem;
}

.btn {
    border-radius: 0;
    /* white-space: nowrap; */
    text-transform: uppercase;
    color: var(--white) !important;
    /* border: none; */
    font-size: unset;
    /* letter-spacing: 1px; */
    padding: .5rem 2rem;
}

.btn-xs {
    font-size: 0.7em;
    white-space: nowrap;
}

.btn-sm {
    padding: .5rem;
}

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

[class*="btn-theme"] {
    font-size: 12px;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--white) !important;
}

.btn-secondary {
    background: var(--secondary) !important;
}

.btn-tertiary:focus,
.btn-tertiary:active,
.btn-tertiary {
    background: var(--tertiary) !important;
}

.btn-quaternary {
    background: var(--quaternary) !important;
}

.btn-danger {
    background: var(--danger) !important;
}

.btn-tertiary:hover {
    background: var(--tertiary-hover) !important;
}

.btn-quaternary:hover {
    background: var(--quaternary-hover) !important;
}

.btn-danger:hover {
    background: var(--danger-hover) !important;
}

.btn-border {
    border: 1px solid var(--primary) !important;
    background: transparent !important;
    color: var(--primary) !important;
}

.btn-border:hover {
    border: 1px solid var(--primary);
    background: var(--primary) !important;
    color: var(--white) !important;
}

.btn-white {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
    padding: .5rem .5rem;
}

.prodListing .btn-white {
    padding: .5rem .6rem;
    font-size: .9rem;
}

.searchBox,
#topNav .btn {
    height: 35px;
    font-size: 0.875em;
    line-height: 35px;
    padding: 0 1em;
    box-shadow: none;
}

.searchBox {
    font-size: 0.875em;
    border: none;
    background: var(--gray);
    border-radius: 0;
}

.searchBox+.input-group-append {
    position: absolute;
    right: 0;
    height: 100%;
}

.searchBox+.input-group-append button {
    border: none;
    background: var(--gray);
    outline: none;
}

@media (max-width: 767px) {

    .input-group.w-auto,
    .searchBox {
        width: 100% !important;
    }

    #topNav .infoLinks {
        display: none;
    }
}


/*END TOP NAVIGATION*/


/*ANIMATED HUMBURGER ICON*/

#hamburgerButton {
    outline: none;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    margin: -5px 0 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger span {
    background: var(--primary);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--danger);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
    background: var(--danger);
}

.hamburger.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--danger);
}


/*END OF ANIMATED HUMBURGER ICON*/


/*SLIDER BANNER*/

.banner-bg {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--gray);
}


/* .banner-bg:before,
.banner-bg:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 360px;
    z-index: 3;
    background-size: cover !important;
    opacity: .4;
}

.banner-bg:before {
    background-image: url(../images/banner-before.png);
    left: 0;
    bottom: 2rem;
}

.banner-bg:after {
    background-image: url(../images/banner-after.png);
    right: 0;
    top: 0;
    bottom: auto;
    width: 150px;
    height: 200px;
} */

.bgHeader {
    position: absolute;
    background-color: var(--gray);
    height: 270px;
    width: 100%;
    top: 0;
    z-index: 0;
}

.bgHeader+.container {
    position: relative;
    z-index: 1;
}

.staticBanner,
.bgCover,
.slideElement {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: block !important;
}

.slideElement aside {
    position: relative;
    z-index: 1;
    top: 50px;
    width: 100%;
    padding: 2rem;
    background: var(--primary);
    color: #fff;
}

.slideElement aside h2,
.slideElement aside p {
    margin-bottom: 20px;
}

.slideElement aside h2 {
    color: var(--primary);
    font-size: 2.25em;
}

.slideElement aside h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--white);
    display: block;
    margin-top: .5rem;
}

.staticBanner300 aside h2 {
    margin: 0;
}

.overlaid .slideElement aside {
    top: 30%;
}

.staticBanner {
    padding-top: 6em;
    padding-bottom: 6em;
    color: var(--white);
}

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

.staticBanner .title,
.staticBanner p,
.staticBanner .heading {
    margin-bottom: 2em;
}

.staticBanner300 {
    height: 300px;
}

.slideH300 .slideElement {
    height: 300px;
    overflow: hidden;
}

.slideH400 .slideElement {
    height: 400px;
    overflow: hidden;
}

.slideH650 .slideElement {
    height: 650px;
    overflow: hidden;
}

.fullScreen .slideElement {
    height: calc(100vh - 150px);
}

@media only screen and (min-width: 578px) {
    .overflowing:not(.centered) .slick-list {
        overflow: visible !important;
        /* padding:0 5% 0 0;
width: 100% !important; */
    }
}

@media only screen and (max-width: 767px) {
    .staticBanner300 {
        height: 200px;
    }

    .slideH300 .slideElement {
        height: 200px;
    }

    .slideH400 .slideElement {
        height: 330px;
    }

    .slideH650 .slideElement {
        height: 400px;
    }

    .imageTextBelow.staticBanner,
    .imageTextBelow .slideElement {
        /* height: 400px; */
        padding: 0;
        height: auto;
        background-image: none !important;
    }

    .staticBanner .container,
    .imageTextBelow .slideElement aside {
        position: relative;
        transform: none;
        left: unset;
        top: unset;
        bottom: unset;
        padding-top: 2em;
        padding-bottom: 2em;
    }

    /* .imageTextBelow .slideElement aside {
        top: 180px;
    } */
    .banner-bg .slick-dots {
        bottom: -42px;
    }

    .imageTextBelow .slideElement aside h1 {
        font-size: 1.5em;
    }

    .banner-bg:before,
    .banner-bg:after {
        display: none;
    }
}

.slick-dots {
    position: absolute;
    z-index: 0;
    width: 100%;
    bottom: 20px;
    left: 0;
    text-align: center;
    padding: 0;
    padding-right: 20px;
    -webkit-appearance: none;
}

.slick-dots li {
    cursor: pointer;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    position: relative;
    width: 10px;
    height: 10px;
    -webkit-appearance: none;
}

.slick-dots li span {
    display: block;
    width: 10px;
    height: 10px;
    text-indent: 9999px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-appearance: none;
    border-radius: 50%;
}

.slick-dots li.slick-active span,
.slick-dots li.slick-active span:hover,
.slick-dots li span:hover {
    background: var(--primary) !important;
    position: relative;
    -webkit-appearance: none;
}

.btnNext,
.btnPrev,
.btnNext:active,
.btnPrev:active,
.btnNext:focus,
.btnPrev:focus {
    width: 35px;
    height: 35px;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    color: var(--white);
    z-index: 1;
    text-align: center;
    background: var(--primary);
    -webkit-appearance: none;
    border-radius: 50%;
}

.btnNext i,
.btnPrev i {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
    font-size: 20px;
    color: #fff;
}

.btnPrev {
    left: 20px;
}

.arrowOutside .btnPrev {
    left: -10px;
}

.arrowOutside .btnNext {
    right: -10px;
}

@media only screen and (min-width: 1300px) {
    .arrowOutside .btnPrev {
        left: -40px;
    }

    .arrowOutside .btnNext {
        right: -40px;
    }
}

.btnPrev.slick-disabled,
.btnNext.slick-disabled {
    opacity: 0.1;
    cursor: not-allowed;
}

.slideShow.overlaid .slick-dots {
    bottom: 130px;
}

@media only screen and (max-width: 991px) {
    .arrowOutside .btnPrev {
        left: 0;
    }

    .arrowOutside .btnNext {
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .slideShow.overlaid .slick-dots {
        bottom: 20px;
    }

    .slick-dots {
        bottom: auto;
    }
}

@media only screen and (max-width: 575px) {
    .arrowOutside .btnPrev {
        left: 0;
    }

    .arrowOutside .btnNext {
        right: 0;
    }
}

.btnNext:hover,
.btnPrev:hover {
    background: var(--primary);
    color: var(--white);
}

.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-grow-center:before {
    background: var(--tertiary) !important;
}

.hvr-grow-center,
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    z-index: 2;
}

.hvr-glow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.section {
    position: relative;
}


/* .section:before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url(../images/shadow.jpg);
    top: -150px;
    width: 100%;
    height: 150px;
    background-size: contain;
} */


/* quote section */

.quote-section {
    position: relative;
    padding: 4rem 0;
    color: var(--white);
}

.quote-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 300px;
    height: 439px;
    background: url(../images/quote-bg.png) no-repeat;
    background-size: contain !important;
}

.quote-section .container {
    max-width: 800px;
    position: relative;
    padding-bottom: 3rem;
}

.quote-section .quotePic {
    position: absolute;
    right: -150px;
    bottom: 0;
}

.quote-section .heading:after {
    background: var(--white);
}

.quote-section .sub-heading {
    color: var(--white);
}

.quote-section .form-group {
    margin-bottom: 2rem;
}

.quote-section label {
    color: var(--white);
    font-size: 1.2rem;
}

.quote-section .form-control {
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--white);
    border-radius: 0;
    font-size: 1.1rem;
}


/* blog section */

.blog-section {
    position: relative;
    margin-bottom: 3rem;
}


/* .blog-section .col-md-3 {
    padding: .25rem;
} */

.image-container {
    max-height: 329px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blogBtn {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, 0%);
    z-index: 2;
}

.blogBtn a {
    border: .35rem solid var(--white) !important;
}

.blog-section h5 {
    margin-bottom: 1.5rem;
}

.blog-section p {
    margin-right: 12%;
    font-size: .95rem;
}

.blog-section a {
    text-transform: uppercase;
    color: var(--primary);
}


/*NEWS ITEM*/

.timelineItem aside,
.newsItem aside {
    height: 225px;
}

.timelineItem aside {
    height: 180px;
}

.timelineItem aside .content,
.newsItem aside .content {
    height: 3em;
    overflow: hidden;
}

.newsItem aside .btn {
    width: 130px !important;
}


/*END OF NEWS ITEM*/

@media (max-width: 575px) {
    .videoItem aside {
        position: relative;
        bottom: unset;
        left: unset;
        right: unset;
        bottom: unset;
        background: var(--primary);
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
}


/*END OF EVENTS ITEM*/


/*FOOTER*/

footer,
footer a {
    color: var(--dark-gray);
}

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

footer .logo {
    margin-bottom: 1.286em;
}

footer h6 {
    margin-top: 1.5em;
    margin-bottom: 1.2em;
    color: var(--quaternary);
}

footer p+h6,
footer ul+h6 {
    margin-top: 1.5em;
}

footer p,
footer a,
footer li {
    font-size: 13px;
    color: var(--dark-gray) !important;
}

footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footerLogoLink {
    position: relative;
    display: block;
    /* overflow: hidden; */
    margin-bottom: 1.5em;
}


/* .footerLogoLink:after {
    content: "";
    background: url(../images/butterfly3.svg) no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin-left: 1em;
    position: absolute;
    top: -30px;
} */

.fAbt {
    max-width: 280px;
}

.socialMedia li a>i[class*="facebook"]:hover {
    color: #3E5B99;
}

.socialMedia li a>i[class*="twitter"]:hover {
    color: #1DA1F2;
}

.socialMedia li a>i[class*="instagram"]:hover {
    color: #0095F6;
}

.socialMedia li a>i[class*="linkedin"]:hover {
    color: #0077B5;
}

.socialMedia li a>i[class*="youtube"]:hover {
    color: #FF0000;
}

.socialMedia li a>i[class*="vk"]:hover {
    color: #2787F5;
}

.bottomFooter {
    padding: 1em;
    border-top: 1px solid var(--gray);
}

.bottomFooter .col-md-6:last-child {
    text-align: right;
}

.withSeparator li {
    position: relative;
    padding: 0 .5em;
}

.withSeparator li:not(:last-child):after {
    content: "";
    width: 1px;
    position: absolute;
    right: -.5em;
    height: .75em;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: var(--gray);
}

.floatingBtn {
    position: fixed;
    top: 60%;
    right: 0;
    z-index: 9;
}

.floatingBtn li {
    margin-bottom: 1rem;
}

.floatingBtn a {
    width: 50px;
    height: 50px;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
    background: var(--quaternary);
    color: #fff;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floatingBtn .whatsapp a {
    /* background: #25D366; */
    background: var(--secondary);
}

.floatingBtn a:hover {
    background: var(--secondary);
}

.subscribe {
    border-top: solid 1px var(--gray);
}

.subscribe .form-control {
    height: calc(1.75em + .75rem + 2px);
}

.mt-6 {
    margin-top: 4rem;
}

@media (max-width: 767px) {
    .section:before {
        top: -50px;
        height: 50px;
    }

    footer h6 {
        margin-top: 2em;
    }

    .floatingBtn {
        position: fixed;
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
        width: 100%;
        display: flex;
    }

    .floatingBtn li {
        width: 50%;
        margin-bottom: 0;
    }

    .floatingBtn a {
        width: 100%;
        border-radius: 0;
    }
}


/*END OF FOOTER*/


/*GENERAL*/

.bg-cover,
.bg-cover-absolute {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bg-cover-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #1c1c1c;
}

.rectangleBox {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: solid 1px var(--gray);
}

.newsBox:hover .grow,
.categoryBox:hover .grow,
.serviceBox:hover .grow,
.rectangleBox:hover>.grow {
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

@media only screen and (min-width: 992px) {
    .seeAllLink {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
}

.newsBox,
.categoryBox,
.serviceBox {
    position: relative;
    /* border-radius: var(--rounded); */
    overflow: hidden;
}

.serviceBox .rectangleBox {
    padding-top: 60%;
}

.serviceBox aside {
    color: var(--white);
    padding: 25px 30px;
    background: var(--dark-gray);
    overflow: hidden;
}

.categoryBox aside {
    position: absolute;
    bottom: 10%;
    left: 7%;
    right: 7%;
    color: var(--white);
    z-index: 2;
}

.categoryBox aside {
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.newsBox aside {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.newsBox aside .content {
    height: 50px;
    overflow: hidden;
    color: var(--primary);
    text-transform: uppercase;
}

.newsBox aside h4 {
    font-size: 1.1rem;
}

@media only screen and (max-width: 767px) {
    .categoryBox aside {
        position: relative;
        bottom: unset;
        left: unset;
        right: unset;
        color: var(--white);
        padding: 25px 30px;
        background: var(--dark-gray);
    }

    .categoryBox aside h6 {
        font-size: 1.075em;
    }

    .categoryBox aside .btn-xs {
        font-size: 1em;
    }

    .serviceBox aside .content {
        height: unset;
    }

    .serviceBox {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) {
    .serviceBox aside .title {
        white-space: nowrap;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

a.blockLink {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.slick-dots li span,
#primaryNav,
.grow,
.btn,
.slick-slide,
.overflowing:not(.centered) .slick-list,
a {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/*BREADCRUMBS*/

.breadCrumbs {
    font-size: 0.8em;
    color: var(--primary);
    display: flex;
}

.breadCrumbs li {
    position: relative;
    padding: 0 .75em;
}

.breadCrumbs li:first-child {
    padding-left: 0;
}

.breadCrumbs li:not(:last-child):after {
    content: "/\00a0";
    position: absolute;
    right: -4px;
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    color: var(--primary);
    text-transform: none;
}

.breadCrumbs li a {
    color: var(--primary)
}

.breadCrumbs li a:hover,
.breadCrumbs li a.active {
    color: var(--danger);
}


/*END OF BREADCRUMBS*/


/*CAREER CARD SLIDER*/

.content ul:not(.nav-tabs) li {
    list-style: disc;
    padding-left: 1em;
    margin-left: 1em;
}

.content ul:not(.nav-tabs) {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.lineRight {
    position: relative;
    overflow: hidden;
}

.lineRight:after {
    content: "";
    margin-left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: var(--gray);
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .lineRight {
        padding-bottom: .75em;
        margin-bottom: 1em;
        text-align: center;
        text-transform: uppercase;
        position: relative;
    }

    .lineRight:after {
        content: "";
        width: 150px;
        height: 5px;
        position: absolute;
        left: 50%;
        bottom: 0;
        top: unset;
        margin: 0;
        transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        background-color: var(--gray);
    }
}

.signupOffset {
    position: absolute;
    top: 0;
    left: 15px;
    right: 0;
    width: 3000px;
    height: 100%;
    z-index: 0;
}

.signupOffset+.content {
    position: relative;
    z-index: 1;
}

.signupOffset+.content ul li {
    padding: 0;
    margin: 0;
}

.signupOffset+.content img {
    width: 100px;
}

@media only screen and (max-width: 1199px) {
    .signupOffset {
        left: -1000px;
    }
}

.slideElement [data-animation] {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

[data-animation]:not('.slideElement') {
    opacity: 1 !important;
}

.delay-1 {
    animation-delay: .25s;
}

.delay-2 {
    animation-delay: .5s;
}

.delay-3 {
    animation-delay: .75s;
}

.delay-4 {
    animation-delay: 1s;
}

.delay-5 {
    animation-delay: 1.25s;
}

i.infinite {
    -webkit-animation-duration: 1s !important;
    animation-duration: 1s !important;
}

.about-section {
    padding: 5rem 0 5rem;
    position: relative;
}

.about-section:before {
    content: '';
    background: var(--white);
    width: 61%;
    position: absolute;
    height: 100%;
    z-index: 1;
    right: 0;
    top: 0;
}

.about-section .container {
    position: relative;
    /* padding-bottom: 5rem; */
    z-index: 1;
}


/* .about-section .container:after {
    content: '';
    position: absolute;
    background: url(../images/about-bg.jpg) no-repeat;
    background-position: top right;
    width: 250px;
    height: 250px;
    margin-top: -70px;
    background-size: contain;
    right: 50px;
    z-index: -1;
} */

.aboutHeading {
    position: absolute;
    width: 47%;
    font-size: 27px;
    z-index: 2;
    text-align: right;
    left: 0;
    top: 100px;
}

.aboutHeading h2:before {
    content: '';
    position: absolute;
    border-bottom: solid .5px #fff;
    width: calc(100% - 290px);
    left: 0;
    bottom: 10px;
}

.aboutSection .lead {
    font-size: 1.4em;
    line-height: 1.2em;
    margin-top: 150px;
}

.product-section {
    position: relative;
    padding: 5rem 0;
    /* margin-top: 100px; */
}

.product-section:before,
.product-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 170px;
    background-size: contain !important;
    top: 50px;
    z-index: -1;
    opacity: .2;
}


/* .product-section::before {
    background: url(../images/product-before.jpg) no-repeat;
    height: 204px;
}

.product-section::after {
    background: url(../images/product-after.jpg) no-repeat;
    right: 0;
} */

.moments-section {
    margin-top: 80px;
    position: relative;
}


/* .moments-section:before,
.moments-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 390px;
    background-size: contain !important;
    top: 50px;
    opacity: .3;
} */


/* .moments-section::before {
    background: url(../images/moments-before.png) no-repeat;
    height: 390px;
}

.moments-section::after {
    background: url(../images/moments-after.png) no-repeat;
    right: 0;
} */

.servicesSingle {
    position: relative;
    width: 100%;
    display: flex;
    top: -60px;
}

.servicesSingle aside {
    position: relative;
    width: 60%;
}

.serviceContent {
    background: rgba(0, 0, 0, .5);
    padding: 3rem 2rem;
    max-height: 260px;
    color: var(--white);
    position: absolute;
    bottom: 2rem;
    width: 80%;
    right: 0;
    border-top-left-radius: var(--rounded);
    border-bottom-left-radius: var(--rounded);
}

.servicesSingle:nth-child(odd) {
    top: 0;
}

.servicesSingle:nth-child(odd) .serviceContent {
    bottom: auto;
    top: 2rem;
    left: 0;
    right: auto;
    border-top-right-radius: var(--rounded);
    border-bottom-right-radius: var(--rounded);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.serviceImg {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.servicesSingle:hover .serviceImg img {
    transform: scale(1.1);
}

.big-heading {
    font-size: 27px;
}

@media (max-width: 1199px) {
    .servicesSingle {
        top: 0;
    }
}

@media only screen and (max-width: 991px) {
    .aboutHeading h2::before {
        width: calc(100% - 260px);
    }

    .servicesSingle {
        margin-bottom: .75rem;
    }

    .servicesSingle aside {
        background: rgba(0, 0, 0, .5);
        border-top-left-radius: var(--rounded);
        border-bottom-left-radius: var(--rounded);
    }

    .servicesSingle:nth-child(2n+1) aside {
        border-top-right-radius: var(--rounded);
        border-bottom-right-radius: var(--rounded);
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .serviceContent {
        width: 100%;
        position: relative;
        top: 0;
        background: transparent;
        padding: 2rem;
    }

    .servicesSingle .serviceImg.rounded {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .servicesSingle:nth-child(2n+1) .serviceContent {
        top: 0;
    }

    .servicesSingle:nth-child(2n+1) .serviceImg.rounded {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-top-left-radius: var(--rounded) !important;
        border-bottom-left-radius: var(--rounded) !important;
    }
}

@media only screen and (max-width: 767px) {
    .about-section {
        padding-bottom: 4rem;
        padding-top: 250px;
        overflow: hidden;
    }

    .about-section:before {
        width: 100%;
        top: 250px;
    }

    .aboutHeading {
        position: relative;
        width: 100%;
        text-align: left;
        left: 0;
        top: auto;
    }

    .aboutHeading h2::before {
        width: calc(100% - 220px);
        display: none;
    }

    .servicesSingle {
        display: grid;
    }

    .serviceImg {
        max-height: 300px;
        overflow: hidden;
    }

    .serviceImg,
    .servicesSingle aside {
        width: 100%;
    }

    .serviceImg.rounded {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .servicesSingle aside {
        background: var(--dark-gray);
        border-bottom-left-radius: var(--rounded);
        border-bottom-right-radius: var(--rounded);
    }

    .servicesSingle:nth-child(2) aside {
        order: 2;
    }

    .big-heading,
    .aboutHeading {
        font-size: 20px;
    }

    .aboutSection .lead {
        margin-top: 20px;
    }

    .product-section {
        margin-top: 0;
        padding-bottom: 2rem;
    }

    .product-section:before,
    .product-section::after,
    .moments-section:before,
    .moments-section::after {
        display: none;
    }
}


/* about us */

.inner-banner {
    background-size: cover;
    padding: 9rem 0 9rem;
    position: relative;
    background-color: var(--light-gray);
    min-height: 360px;
    background-position: center;
}

.banner-sm {
    padding: 1rem 0;
    background-color: var(--gray);
    color: var(--dark-gray);
    min-height: auto;
}


/* .inner-banner:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
z-index: 9;
background: rgba(0, 160, 142, 0.5);
} */

.inner-banner .container {
    z-index: 10;
    position: relative;
}

.inner-banner .bannerTxt {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 340px; */
}

.aboutContent {
    margin: 4rem 0;
}

.aboutContent p {
    max-width: 85%;
}

.aboutFeatures {
    margin: 3rem 0;
}

.aboutFeatures ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.aboutFeatures ul li {
    display: inline-block;
    list-style: none;
    width: 16%;
    margin: 10px 1.6%;
    vertical-align: top;
}

.aboutFeatures ul li:first-child {
    margin-left: 0;
}

.aboutFeatures ul li:last-child {
    margin-right: 0;
}

.feature-single {
    width: 100%;
    border: solid 1px var(--gray);
    padding: 2rem .2%;
    border-radius: var(--rounded);
}

.feature-single .feat-img {
    width: 65px;
    height: 90px;
    margin: auto;
}

.feature-single .feat-img img {
    transition: 0.50s;
    -webkit-transition: 0.50s;
    -moz-transition: 0.50s;
    -ms-transition: 0.50s;
    -o-transition: 0.50s;
}

.feature-single h5 {
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
}

.feature-single:hover {
    background: var(--gray);
}

.feature-single:hover .feat-img img {
    transform: scale(1.1);
}

@media only screen and (max-width: 991px) {
    .aboutContent {
        margin: 2rem 0;
    }

    .aboutContent p {
        max-width: 100%;
    }

    .feature-single .feat-img {
        width: 60px;
        height: 80px;
        margin: auto;
    }

    .feature-single h5 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .aboutFeatures ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .aboutFeatures ul li {
        width: 45%;
    }

    .feature-single h5 {
        font-size: 14px;
    }

    .feature-single .feat-img {
        width: 55px;
        height: 80px;
        margin: auto;
    }

    .feature-single {
        padding: 1rem .3%;
    }

    .aboutContent p {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}


/* product slider section */

.prodSlider {
    margin-bottom: 30px;
}

.grey-bg {
    background: var(--light-gray);
}

.prodBox {
    background: var(--white);
    padding: 0 0 1rem;
    /* height: 390px; */
    /* box-shadow: 0 0 10px #e2e2e2; */
    text-align: center;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.prodBox .prodImg {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 170px;
    overflow: hidden;
}

.prodImg img {
    max-height: 170px;
}

.prodName h4 {
    /* font-size: 1.25rem; */
    font-size: 1.05rem;
    color: var(--dark);
    margin: 1rem 0 .5rem;
    font-family: 'Lato', sans-serif;
}

.prodName h6 {
    font-size: 12px;
}

.prodName h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
}

.catName h5,
.catName h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

.prodBox p {
    font-size: 14px;
    line-height: 1rem;
}

.prodBox .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 196, 179, .9);
    transition: 0.2s;
    opacity: 0;
    text-align: left;
}

.prodBox:hover .overlay {
    z-index: 9;
    opacity: 1;
}

.overlay-content {
    color: rgb(255, 255, 255) !important;
    position: absolute;
    width: 100%;
    padding: 2rem;
}

.overlay-content p {
    line-height: 1.5rem;
    color: #fff !important;
}

.overlay-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 1.5rem 0;
}

.btn-askprice {
    background: var(--primary);
    padding: 5px 10px;
    margin: 1.5rem auto;
    font-size: 12px;
}

.prodName del {
    color: var(--dark-gray);
}

.prodBox .btn-group .btn {
    border: solid 1px #b9b9b9;
}

.prodBox .btn-light {
    color: var(--dark-gray) !important;
    text-transform: capitalize;
    font-size: 14px;
}

.prodBox .price {
    margin: 1.5rem auto;
    font-size: 20px;
    font-family: 'BentonSansBold';
    height: 30px;
}

.prodBox .price span {
    font-size: 14px;
    vertical-align: top;
}

.prodBox .price:before {
    content: '\f153';
    font-family: 'FontAwesome';
    margin-right: 5px;
    font-size: 14px;
}

.prodSlider .btnPrev {
    left: -30px;
}

.prodSlider .btnNext {
    right: -30px;
}

.search-grp .input-group-prepend .input-group-text {
    background: var(--white);
    padding: 1rem .5rem 1rem 2rem;
    border-right: 0;
}

.search-grp .form-control {
    padding: 1rem;
    height: auto;
    border-right: 0;
    border-left: 0;
}

.search-grp .input-group-append .input-group-text {
    border-left: 0;
    padding: 1rem;
    background: var(--white);
}

.filter-button {
    font-size: 16px;
    text-align: center;
    color: var(--primary) !important;
    margin-bottom: 30px;
    border-radius: 0 !important;
}

.filter-button:hover {
    border-bottom: 2px solid var(--dark-gray);
    text-align: center;
    color: var(--primary) !important;
}

.filter-button.active {
    border-bottom: 2px solid var(--dark-gray);
    color: var(--primary) !important;
}

.port-image {
    width: 100%;
}

.gallery_product {
    margin-bottom: 30px;
}

.small-text {
    font-size: 14px;
}

.collectionBx {
    position: relative;
}

.collectionBx aside {
    position: absolute;
    width: 60%;
    height: 60%;
    background: rgba(143, 115, 51, .8);
    padding: 2rem 1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.collectionBx aside h3 {
    color: var(--white);
    margin: 0;
    position: relative;
}

.collectionBx aside h3:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 50px;
    background: var(--white);
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -10px;
}


/* product gallery */

.show-pic {
    /* max-width: 550px; */
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.show-pic2 {
    max-width: 390px;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-img {
    /* width: 350px; */
    /* height: 70px; */
    margin-top: 10px;
    position: relative;
    left: 25px;
}

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

.small-img .icon-left,
.small-img .icon-right,
.prod-carousel .icon-left,
.prod-carousel .icon-right {
    width: 32px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 2;
    padding: 0 10px;
}

.prod-carousel .icon-left,
.small-img .icon-left {
    transform: rotate(180deg);
    left: 10px;
}

.prod-carousel .icon-right,
.small-img .icon-right {
    right: 10px;
}

.prod-carousel .icon-right:hover,
.prod-carousel .icon-left:hover,
.small-img .icon-left:hover,
.small-img .icon-right:hover {
    opacity: .5;
}

.small-container {
    /* width: 310px; */
    height: auto;
    overflow: hidden;
    /* position: absolute; */
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-bottom: 5px;
}

.small-container div {
    width: 800%;
    position: relative;
}

.small-container .show-small-img {
    width: 70px;
    height: 70px;
    margin-right: 6px;
    cursor: pointer;
    float: left;
    margin-bottom: 5px;
}

.small-container .show-small-img:last-of-type {
    margin-right: 0;
}

.prodQdet p {
    font-size: 14px;
}

.heading {
    color: var(--primary);
    font-weight: 400;
    position: relative;
    font-size: 2.25em;
}

.heading:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--primary);
    display: block;
    margin-top: .5rem;
    left: 50%;
    transform: translate(-50%, 0);
}

.heading2 {
    color: var(--primary);
    font-weight: 400;
    position: relative;
}

.borderLeft:after {
    left: 0 !important;
    transform: none;
}

.sub-heading {
    font-size: 1.2em;
    color: #484848;
    text-transform: uppercase;
    font-weight: 400;
}

.headingImg {
    position: relative;
    margin-bottom: 2rem;
}

.headingImg:after {
    content: '';
    position: absolute;
    background: url(../images/butterfly.png) no-repeat;
    background-position: top right;
    height: 100px;
    width: 100px;
    background-size: contain;
    top: -75px;
    margin-left: 30px;
}

.headingImg2 {
    position: relative;
    margin-bottom: 2rem;
}

.headingImg2:before {
    content: '';
    position: absolute;
    background: url(../images/butterfly2.png) no-repeat;
    background-position: top right;
    height: 100px;
    width: 100px;
    background-size: contain;
    top: -50px;
    margin-left: -150px;
}

button.close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px #e2e2e2;
    position: absolute;
    right: 10px;
    margin-top: 10px;
    z-index: 1;
}

.favs .far.fa-heart {
    color: red;
    font-weight: 900;
}

@media only screen and (max-width: 1330px) {
    .prodSlider .btnPrev {
        left: 0;
    }

    .prodSlider .btnNext {
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .search-grp .input-group-prepend .input-group-text {
        display: none;
    }

    .search-grp .form-control {
        padding: 1rem;
        height: auto;
        border-left: 1px solid #ced4da;
        border-top-left-radius: .25rem !important;
        border-bottom-left-radius: .25rem !important;
    }

    .prodSlider .btnPrev {
        left: 0;
    }

    .prodSlider .btnNext {
        right: 0;
    }

    .show-pic,
    .show-pic2 {
        max-width: 390px;
        height: 390px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .small-img {
        max-width: 100%;
        height: auto;
        left: auto;
    }

    .small-container {
        /* max-width: 280px; */
        height: auto;
        left: 10px;
        right: 10px;
    }

    .small-container .show-small-img {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }

    .prodQdet {
        margin-top: 2rem;
    }

    .prodBox {
        height: auto;
    }

    .headingImg2,
    .headingImg {
        margin-bottom: .5rem;
    }
}

#contact-form,
#contact-form .form-control {
    font-size: 14px;
}

.form-control {
    border-radius: .25rem;
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Upload Resume";
}

.btn-send {
    text-transform: capitalize;
    font-size: 14px;
    border: solid 1px var(--primary);
}

.bold-heading {
    font-size: 24px;
}

.btn-share {
    background: transparent;
    color: var(--primary) !important;
    font-size: .8em;
    text-transform: none;
    border: none;
}

.careerThead {
    font-weight: 600;
}

.tbold {
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .careerThead {
        display: none;
    }

    .careerDesc {
        margin-top: 1rem;
    }
}


/* product details */

.prodDet-container {
    font-size: .9em;
}


/* .listDet li {
font-size: .9em;
} */

.listDet li span {
    width: 25%;
    min-width: 83px;
    display: inline-block;
}

.prDet-desc .nav-link {
    color: var(--gray-dark);
    border: 0;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: 0;
    color: var(--primary);
}

.prDet-desc .nav-link.active {
    border: 0;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.qty-container {
    max-width: 110px;
}

.qty-container .input-number {
    height: calc(1.35em + .5rem + 2px) !important;
    font-size: 1em;
}

.btn-number {
    background: var(--gray);
    color: var(--dark-gray) !important;
    border-radius: 0;
    border-color: #C9BEBE;
    font-size: .8em;
    padding: .32rem .75rem;
}

.prdDet-btns button {
    /* font-size: .9em; */
    color: var(--primary) !important;
    padding: .5rem 1.3rem;
    border: solid 1px var(--dark-gray);
}

.prdDet-btns .btn-primary {
    color: var(--white) !important;
    background: var(--primary);
}

.qty-container .quantity-left-minus {
    border-top-left-radius: .35em;
    border-bottom-left-radius: .35em;
}

.qty-container .quantity-right-plus {
    border-top-right-radius: .35em;
    border-bottom-right-radius: .35em;
}


/* .cartCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

@media only screen and (max-width: 767px) {
    .prodDet-container {
        margin-top: 2rem;
    }

    .prDet-desc {
        justify-content: center;
    }

    .show-pic {
        height: 340px;
    }

    .cartCont {
        display: block;
        justify-content: space-between;
    }
}

.clientList {
    margin: 0;
    padding: 0;
}

.clientList li {
    display: inline-block;
    width: 17.5%;
    margin-right: 2%;
    margin-bottom: 2%;
}

.client-bx {
    border: solid 1px var(--gray);
    border-radius: .5rem;
    text-align: center;
}

.client-bx img {
    max-width: 150px;
    margin: auto;
}

.client-bx:hover {
    background: rgba(0, 0, 0, 0.8);
}

.client-bx:hover img {
    filter: brightness(0) invert(1);
}

@media only screen and (max-width: 991px) {
    .clientList li {
        display: inline-block;
        width: 22.5%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
}

@media only screen and (max-width: 767px) {

    /* .inner-banner {
padding: 225px 0 2rem;
} */
    .clientList {
        text-align: center;
    }

    .clientList li {
        display: inline-block;
        width: 43.5%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .client-bx img {
        max-width: 100px;
        margin: auto;
    }
}


/* contact page */

.contact .social i {
    color: var(--dark-gray);
}

.address a {
    color: #212529;
}

@media only screen and (max-width: 767px) {

    .contact .social,
    .address {
        margin-bottom: 2rem;
    }

    .contact .card-body {
        padding: 0;
    }
}


/* faq page */

.search-box {
    background-size: cover;
    padding: 2rem 1rem 1rem;
}

.faqCard .accordion .card-header:before {
    font-family: 'FontAwesome';
    content: "\f068";
    float: left;
    margin-right: 10px;
    border: solid 2px #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.faqCard .accordion .card-header.collapsed:before {
    /* symbol for "collapsed" panels */
    content: "\f067";
}

.faqCard {
    box-shadow: 0 7px 5px rgba(0, 0, 0, .3);
    margin-bottom: .5rem;
}

.faqCard .card-header {
    cursor: pointer;
}

.faqCard .card-header h5 {
    font-size: 1.1em;
}

.faqCard .accordion .card-body {
    padding-left: 2.3rem;
}


/* category listing page */

.hidden-mob {
    display: block;
}

.mobFilter {
    display: none;
}

.collapse-filter ul li a,
.filMaterial label {
    color: var(--dark-gray);
}

.collapse-filter ul li a:hover {
    color: var(--primary);
}

.collapse-filter .card-header {
    cursor: pointer;
}

.filtColor .custom-checkbox {
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.filtColor .custom-control-label::before,
.filtColor .custom-control-label::after {
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: 350ms ease 0s;
}

.filtColor .custom-control-label::before {
    background-color: var(--bg-color);
    border-color: transparent;
}

.filtColor .custom-control-label::after {
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: 350ms ease 0s;
    z-index: 10;
}

.filtColor .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--bg-color);
}

.prodTags ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.prodTags ul li {
    padding: .25rem .5rem;
    background: var(--white);
    border: solid 1px var(--dark-gray);
    border-radius: .5rem;
    margin: .5rem .25rem;
    font-size: .9rem;
    position: relative;
}

.prodTags ul li a {
    color: var(--dark-gray);
}

.prodTags ul li.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.prodTags ul li.active a {
    color: var(--white);
}

.prodTags ul li.active:after {
    font-family: 'Font Awesome 5 Free';
    font-size: 12px;
    /* position: absolute; */
    right: 7px;
    content: '\f00d';
    color: var(--white);
    font-weight: 900;
    margin-left: 5px;
}

.recent-single {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.rec-img {
    background: var(--white);
    border: solid 1px var(--dark-gray);
    height: 70px;
    width: 70px;
    min-width: 70px;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recent-single h4 {
    font-size: .8em;
}

.catPage-main .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary);
    border-color: var(--primary);
    z-index: 2;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media only screen and (max-width: 991px) {
    .hidden-mob {
        display: none;
    }

    .catPage-main {
        margin-bottom: 40px;
    }

    .mobFilter {
        display: block;
        background: var(--primary);
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: .5rem;
        text-align: center;
        z-index: 2;
        color: var(--white) !important;
        border-top: 1px solid var(--white);
    }

    #filterModal .modal-dialog {
        width: 100% !important;
        max-width: none;
        margin: 0;
        border-radius: 0 !important;
        background: var(--white);
    }

    #filterModal .modal-content {
        max-width: 500px;
        margin: auto;
        border: 0;
    }
}

.custom-file-input.docAttach:lang(en)~.custom-file-label::after {
    content: "Upload";
    background: var(--primary);
    color: var(--white);
}


/* admin pages styles */

.admin-menu .nav-link {
    color: var(--primary);
}

.admin-menu .nav-link:hover {
    color: var(--danger);
}

.admin-menu .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.admin-menu .nav-item {
    border-bottom: 1px solid var(--gray);
    margin-top: .5rem;
}

.admin-menu .nav-item:last-child {
    border: none;
}

.profile label {
    font-size: .9em;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--green);
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.picture-container {
    position: relative;
    cursor: pointer;
    /* text-align: center; */
    width: 106px;
}

.picture {
    width: 106px;
    height: 106px;
    background-color: var(--white);
    border: 4px solid var(--gray);
    color: #FFFFFF;
    margin: 0px auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture:hover {
    border-color: var(--dark-gray);
}

.picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.picture-src {
    width: 100%;
}

.editPic i {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: .9em;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prof-status {
    font-size: .9em;
    text-align: right;
}

.prooduct-details-box .media {
    border: 1px solid #d7e2e9;
    padding: 15px;
    width: 100%;
    position: relative;
    font-size: 14px;
}

.img-80 {
    width: 80px !important;
}

.media .media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.prooduct-details-box .btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.prooduct-details-box .del {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 16px;
    cursor: pointer;
    color: var(--danger);
    opacity: .5;
    padding: 2px 8px;
}

.prooduct-details-box .del:hover {
    opacity: 1;
}

.prodName a {
    color: var(--primary);
}

.pass_show {
    position: relative
}

.pass_show .ptxt {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    color: var(--quaternary);
    margin-top: -10px;
    cursor: pointer;
    transition: .3s ease all;
}

.pass_show .ptxt:hover {
    color: var(--primary);
}

.btn-tble {
    color: var(--primary) !important;
    padding: 2px 10px;
}

.btn-tble:hover {
    color: var(--quaternary) !important;
}

.latest-posts li {
    list-style: none;
    clear: both;
    margin-bottom: 35px;
    display: flex;
}

.latest-posts .post-thumb {
    width: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.latest-posts .post-details {
    margin-left: 10px;
}

.latest-posts .description a {
    color: var(--primary);
}

.adl-serv {
    max-height: 140px;
    overflow: hidden;
    margin-bottom: 1rem;
}


/* price range slider */

.price-range-slider {
    width: 100%;
    float: left;
    padding: 0;
}

.price-range-slider .range-value {
    margin: 0;
}

.price-range-slider .range-value input {
    width: 70%;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: initial;
    box-shadow: none;
    border: none;
    margin: 0px 0 40px 0;
}

.price-range-slider .range-bar {
    border: none;
    background: #000;
    height: 3px;
    width: 96%;
    margin-left: 8px;
}

.price-range-slider .range-bar .ui-slider-range {
    background: var(--primary);
}

.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #fff;
    border: 2px solid var(--primary);
    height: 17px;
    width: 17px;
    top: -0.52em;
    cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle+span {
    background: var(--primary);
}


/* price range slider ends */


/* login styles */

#myTabContent.tab-content {
    background: #fff;
    border: 1px solid var(--gray);
    padding: 1rem 2rem;
}

#myTabContent .nav-tabs .nav-link {
    border-bottom: none;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: 1px solid var(--gray);
    border-bottom: 1px solid #fff;
}


/* menu */

#menu-container .menu-list .menu-submenu {
    padding-bottom: 20px;
}

#menu-container .menu-list {
    padding-left: 0;
    display: block;
    position: absolute;
    width: 100%;
    max-width: 450px;
    background: white;
    box-shadow: rgba(100, 100, 100, 0.2) 6px 2px 10px;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    left: -100%;
}

#menu-container .menu-list li.accordion-toggle,
#menu-container .menu-list .menu-login {
    font-size: 16px;
    padding: 20px;
    text-transform: uppercase;
    border-top: 1px solid #dbdcd2;
}

#menu-container .menu-list li:first-of-type {
    border-top: 0;
}

.accordion-toggle,
.accordion-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}

.accordion-content {
    display: none;
}

.accordion-toggle span[class^='icon-'] {
    position: absolute;
    right: 10px;
    font-size: 25px;
    top: calc(50% - 16px);
}

.accordion-toggle span.icon-plus,
.accordion-toggle span.icon-minus {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--white);
}

.accordion-toggle span.icon-plus {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.icon-minus:before {
    content: "\2013"
}

.icon-plus:before {
    content: "+"
}

.head {
    margin-left: 15px;
    font-size: .8em !important;
}

.text-sm {
    font-size: .7em !important;
}

.collections-section {
    padding: 1rem 0 .5rem;
}


/* about new design */

.abtSec {
    display: flex;
}

.abtImg,
.abtCont {
    width: 50%;
}

.abtCont {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abtOverlay {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #000;
    background: rgba(0, 196, 179, .9);
    color: var(--white);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
}

.momSec {
    width: 70%;
}

.momSec-cont {
    background: var(--primary);
    width: 30%;
    color: var(--white);
    position: relative;
}

.momSec-cont:before {
    content: '';
    position: absolute;
    background: transparent;
    border: solid 2px var(--white);
    width: 90%;
    height: 90%;
}


/* prod gallery new */

.bzoom,
.bzoom_thumb,
.bzoom_thumb_image,
.bzoom_big_image,
.bzoom_zoom_preview,
.bzoom_icon,
.bzoom_hint {
    display: none
}

.bzoom .bzoom_thumb {
    background: #fff url(./img/loading.gif) center no-repeat;
}

.bzoom,
.bzoom ul,
.bzoom li,
.bzoom img,
.bzoom_hint,
.bzoom_icon,
.bzoom_description {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none
}

.bzoom,
.bzoom_magnifier div,
.bzoom_magnifier div img,
.bzoom_small_thumbs ul,
ul .bzoom_small_thumbs li,
.bzoom_zoom_area div,
.bzoom_zoom_img {
    position: relative
}

.bzoom img,
.bzoom li {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    user-drag: none
}

.bzoom,
.bzoom_small_thumbs li {
    float: left
}

.bzoom_right {
    float: right
}

.bzoom li {
    position: absolute
}

.bzoom img {
    vertical-align: bottom;
    width: 50px;
    height: 70px
}


/* .bzoom .bzoom_zoom_area,
.bzoom_zoom_area {
    background: #fff url(./img/loading.gif) center no-repeat;
    border: 1px solid #ddd;
    padding: 6px;
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
    display: none;
    z-index: 20;
} */

.bzoom_zoom_area div {
    overflow: hidden;
}

.bzoom_zoom_area .bzoom_zoom_img {
    position: absolute;
}

.bzoom_wrap .bzoom_magnifier {
    background: #fff;
    /* outline: #bbb solid 1px; */
    display: none;
    /* cursor: move; */
}

.bzoom_magnifier div {
    overflow: hidden;
}

.bzoom_wrap .bzoom_small_thumbs {
    overflow: hidden;
}

.bzoom_wrap .bzoom_small_thumbs li {
    border: 1px solid #FFF;
    margin: 0px 10px 0px 0px;
    position: relative;
    width: 100px !important;
    height: 100px !important;
    overflow: hidden;
}

.bzoom_wrap ul li.bzoom_smallthumb_active {
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
    border: 3px solid var(--primary);
}

.bzoom_wrap .bzoom_small_thumbs img {
    max-width: 100% !important;
    height: 100% !important;
}


/* cart page */

.cart-table {
    padding: 1rem 0 .5rem;
    border-bottom: solid 1px var(--gray);
}

.cart-table h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.cart-table p {
    line-height: 1.4em;
    margin-top: 5px;
    color: var(--dark-gray);
}

.cart-table img {
    max-width: 50px;
    margin-right: 10px;
    flex-shrink: 1;
}

.cartQty .form-control {
    max-width: 60px;
    font-size: .98em;
    background: var(--light-gray);
    border: 0;
    height: 35px !important;
    text-align: center;
}

.cartQty .btn-number {
    padding: .52rem .75rem;
    border: 0;
    color: var(--white);
    background: var(--light-gray);
    font-size: .75em;
}

.totPrice {
    width: 100px;
    display: inline-block;
}

.prodImage {
    max-width: 290px;
    max-height: 290px;
    overflow: hidden;
    margin: 3rem auto 1rem;
}

.specialDays .spcl-img {
    text-align: center;
}


/* Blog section */

.news-container ul {
    margin: 0;
    padding: 0;
}

.news-container ul li {
    display: inline-block;
    max-width: 31%;
    margin: 1.5rem 1%;
    vertical-align: top;
}

.news-container ul li a {
    text-decoration: none;
}

.news-box {
    text-align: left;
}

.news-box .news-img {
    margin-bottom: 1.7rem;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    max-height: 300px;
}

.news-box h5 {
    font-size: 1rem;
    color: var(--primary);
}

.BlogDate {
    /* text-transform: uppercase; */
    color: var(--dark-gray);
}

.nlisting {
    margin: 1.5rem 0 0;
    padding: 0;
}

.nlisting li {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #e1e1e1;
    list-style: none;
    padding-bottom: .5rem;
}

.nlisting li::before {
    content: '\f101';
    margin-right: 15px;
    color: var(--primary);
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}

.nlisting li a {
    color: #484848;
}

@media (max-width: 557px) {
    .news-container ul li {
        max-width: 100%;
        margin: 1rem 0;
    }

    .news-box .news-img {
        max-height: 250px;
    }
}

#onLoadModal .modal-dialog {
    max-width: 600px;
}

#onLoadModal .modal-content {
    border: solid 1px #fff;
    border-radius: 0;
}

#onLoadModal .form-control {
    border-radius: 0;
}

#onLoadModal button.close {
    box-shadow: none;
}


/*** //FMH-22092021// ***/

.alert-primary {
    background: var(--primary);
    color: #fff;
}

.dropdown-toggle::after {
    top: 4px;
    position: relative;
}

.bannerTxt h1 {
    font-size: 60px;
}


/* .inner-banner {
    padding: 9rem 0 9rem;
} */

.momentsNew .contents a.btn {
    z-index: 999;
    position: relative;
}

body {
    padding-top: 150px;
}

#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
}

#mainNav.sticky {
    z-index: 999;
}

.img-zoom-wrap .show {
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.img-zoom-wrap .show #show-img~div[style="position: absolute;overflow: hidden;"] {
    z-index: 99;
}

.img-zoom-wrap #show-img {
    /* width: 400px;
    height: 400px; */
    width: 100%;
    height: 100%;
    object-fit: cover
}

.img-zoom-wrap .small-img {
    /* width: 350px; */
    height: 70px;
    /* margin-top: 10px; */
    position: relative;
    left: 0px;
    margin: 10px auto 0;
}

.img-zoom-wrap .small-img .icon-left,
.small-img .icon-right {
    width: 12px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.img-zoom-wrap .small-img .icon-left {
    transform: rotate(180deg)
}

.img-zoom-wrap .small-img .icon-right {
    right: 0;
}

.img-zoom-wrap .small-img .icon-left:hover,
.img-zoom-wrap .small-img .icon-right:hover {
    opacity: .5;
}

.img-zoom-wrap .small-container {
    width: 310px;
    height: 70px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.img-zoom-wrap .small-container div {
    width: 800%;
    position: relative;
}

.img-zoom-wrap .small-container .show-small-img {
    width: 70px;
    height: 70px;
    margin-right: 6px;
    cursor: pointer;
    float: left;
}

.img-zoom-wrap .small-container .show-small-img:last-of-type {
    margin-right: 0;
}

.small-img .icon-left,
.small-img .icon-right,
.prod-carousel .icon-left,
.prod-carousel .icon-right {
    top: -80px;
    z-index: 0;
}

.bg-tertiary .form-group button {
    background: var(--tertiary) !important;
    border: none;
}

.cart-img {
    display: flex;
    /* align-items: center; */
    flex-direction: row;
}

.cartDel {
    margin-left: 1rem;
}

.prod-carousel .service-pic {
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.v-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    #topNav {
        padding: 0 20px;
    }
}

@media (max-width: 1100px) {
    .about-coj .abtCont {
        padding: 1.3rem;
    }

    .about-coj .abtOverlay {
        width: 75%;
    }
}

@media (max-width: 1024px) {
    .about-coj .abtCont {
        padding: 0.5rem;
    }

    .about-coj .abtOverlay {
        width: 75%;
    }
}

@media (max-width: 991px) {
    .img-zoom-wrap .show {
        width: 300px;
        height: 300px;
    }

    .about-coj .abtCont p {
        line-height: 19px;
        font-size: 15px;
    }

    .about-coj .abtOverlay {
        width: 80%;
        padding: 2rem 0rem;
    }

    .aboutSec-section .abtOverlay .stretched,
    .contents .stretched {
        margin-bottom: 5px !important;
    }

    .about-coj .contents a.btn {
        margin-top: 10px !important;
    }

    .momentsNew .momSec-cont {
        width: 33%;
    }
}

@media only screen and (max-width: 767px) {
    .img-zoom-wrap .show {
        width: 400px;
        height: 400px;
    }

    .about-coj .abtSec,
    .momentsNew .abtSec {
        flex-wrap: wrap;
        overflow: hidden;
        margin-bottom: 15px;
    }

    /* .about-coj .abtSec .abtImg {
        height: 300px;
    } */
    .momentsNew .abtSec .abtImg {
        height: 200px;
    }

    .about-coj .abtSec .abtImg,
    .about-coj .abtSec .abtCont,
    .momentsNew .abtSec .abtImg,
    .momentsNew .abtSec .abtCont {
        flex: 0 0 100%;
    }

    .about-coj .abtCont {
        padding: 2rem;
    }

    .aboutSec-section .abtOverlay .stretched,
    .contents .stretched {
        margin-bottom: 1.5rem !important;
    }

    .aboutSec-section .abtOverlay {
        height: auto;
        height: auto;
        padding: 2rem 1rem;
        width: 50%;
    }

    .footer .footerLogoLink,
    .footer .fAbt {
        margin: 0 auto 10px;
        width: 280px;
        padding-top: 15px;
    }

    .footerLogoLink:after {
        top: -4px;
    }

    .slideElement aside h1:after {
        left: 0;
        right: 0;
        text-align: center;
        margin: .5rem auto 0;
    }

    .slick-dots {
        padding-right: 0;
    }

    .px-0 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* .pr-0 {
        padding-right: 15px !important;
    } */
    .bottomFooter {
        padding-bottom: 4.5em;
    }

    .bottomFooter .col-md-6:first-child {
        flex: 0 0 65%;
    }

    .bottomFooter .col-md-6:last-child {
        flex: 0 0 35%;
    }

    .moments-section .col-md-6.pl-0.pl-md-5 {
        padding-left: 15px !important;
    }

    .bannerTxt h1 {
        font-size: 40px;
    }

    .inner-banner {
        padding: 3rem 0 3em;
        min-height: 150px;
        background-position: center;
    }

    .inner-banner.banner-sm {
        padding: 1rem 0;
    }

    #topNav .badge {
        top: -3px;
        right: 17px;
    }

    .cartQty .form-control {
        height: 32px !important;
    }

    .login-btns {
        text-align: center;
    }

    .mob-hidden {
        display: none;
    }

    .cart-img {
        flex-direction: column;
        align-items: center;
    }

    .cart-table img {
        max-width: 100px;
        margin-bottom: 1rem;
    }

    .cartQty .input-group {
        justify-content: center;
    }

    .cartDel {
        display: block;
        text-align: center;
        max-width: 40px;
        margin: .5rem auto 0;
    }

    .slideElement aside h2::after {
        left: 50%;
        transform: translate(-50%);
    }
}

@media (max-width: 575px) {
    .header-search-wrapper .search-form-main {
        right: 0;
        left: -92px;
    }
}

@media (max-width: 480px) {
    .img-zoom-wrap .show {
        width: 300px;
        height: 300px;
    }

    .newsSlider.arrowOutside .col {
        padding: 0 10px !important;
    }
}


/**** //search// ****/

.header-search-wrapper {
    float: right;
    position: relative;
}

.search-main {
    display: block;
    padding: 2px 15px 3px 4px;
    cursor: pointer;
    color: #fff;
}

.header-search-wrapper .search-form-main {
    padding: 0;
    position: absolute;
    right: 10px;
    top: 38px;
    width: 300px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.search-form-main.active-search {
    opacity: 1;
    visibility: visible;
}

.header-search-wrapper .search-form-main .search-field {
    border-radius: 0;
    padding: 4px 10px;
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 27px;
    border: 2px solid var(--primary);
    background: #fff !important;
}

.header-search-wrapper input:focus {
    color: var(--secondary);
}

.header-search-wrapper .search-form-main .search-submit {
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    float: right;
    padding: 10px 0 10px;
    width: auto;
    height: 36px;
    text-indent: -9999px;
    background: var(--primary) url(../images/search.png) no-repeat center center / 22px 22px;
    width: 35px;
    height: 38px;
    position: absolute;
    right: 1px;
}

.search-form label {
    float: left;
    width: 100%;
}

#topNav .dropdown-menu {
    background: var(--primary);
    top: 9px !important;
    border: 2px solid var(--primary);
}

#topNav .dropdown-menu .dropdown-item {
    color: var(--white);
    font-size: 14px !important;
    padding: 5px 10px 6px;
}

#topNav .dropdown:hover .dropdown-menu {
    top: 36px !important;
}

#topNav .dropdown:hover .dropdown-menu.show {
    top: 9px !important;
}

#topNav .dropdown-item:hover {
    background: var(--white) !important;
    color: var(--secondary);
}

.abtSec .contents .btn:hover,
.slideElement.bg-cover .btn:hover,
.bg-tertiary .form-group button:hover,
.input-group-append .btn:hover {
    color: #fff;
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

#mainNav,
.sticky {
    z-index: 99;
}

#onLoadModal,
#prodModal {
    z-index: 99999;
}

.prodDet-container ul li {
    display: flex;
    margin-bottom: .75rem;
}

.prodDet-container li .form-control {
    height: 25px;
    font-size: .9rem;
    padding: .275rem .5rem;
    line-height: .5;
}

.prodDet-container ul li {
    display: flex;
    margin-bottom: .75rem;
}

.prodDet-container li .form-control {
    height: 25px;
    font-size: .9rem;
    padding: 0 .5rem;
    line-height: 1.5;
}

.successMsg {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.successMsg i {
    font-size: 3rem;
    /* color: var(--danger); */
    background: -webkit-linear-gradient(#cc4e00, #411900);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pagination {
    justify-content: center;
}

nav span.page-link {
    font-size: 1rem;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

#shpCart,
#ScrolBan {
    position: relative;
    height: 120px;
    margin-top: -120px;
    visibility: hidden;
}


/* COD option radio btn */

.payOption form {
    max-width: 250px;
    position: relative;
    margin: 20px 0 0;
    font-size: 15px;
}

.radiobtn {
    position: relative;
    display: block;
}

.radiobtn label {
    display: block;
    background: rgba(102, 167, 152, .1);
    ;
    color: #444;
    border-radius: 5px;
    padding: 10px 20px;
    border: 2px solid #bde0d7;
    margin-bottom: 5px;
    cursor: pointer;
}

.radiobtn label:after,
.radiobtn label:before {
    content: "";
    position: absolute;
    right: 11px;
    top: 11px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: rgba(102, 167, 152, .5);
}

.radiobtn label:before {
    background: transparent;
    transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    width: 0;
    height: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}

.radiobtn input[type=radio] {
    display: none;
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.radiobtn input[type=radio]:checked+label {
    background: rgba(102, 167, 152, .5);
    -webkit-animation-name: blink;
    animation-name: blink;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    border-color: var(--primary);
}

.radiobtn input[type=radio]:checked+label:after {
    background: var(--primary);
}

.radiobtn input[type=radio]:checked+label:before {
    width: 20px;
    height: 20px;
}

@-webkit-keyframes blink {
    0% {
        background-color: #bde0d7;
    }

    10% {
        background-color: #9ed4c7;
    }

    11% {
        background-color: #78ada0;
    }

    29% {
        background-color: #5c8d81;
    }

    30% {
        background-color: #6bb6a3;
    }

    50% {
        background-color: #6bb6a3;
    }

    45% {
        background-color: #a2cec3;
    }

    50% {
        background-color: #98d4c5;
    }

    100% {
        background-color: #b2d3cb;
    }
}

@keyframes blink {
    0% {
        background-color: #bde0d7;
    }

    10% {
        background-color: #9ed4c7;
    }

    11% {
        background-color: #78ada0;
    }

    29% {
        background-color: #5c8d81;
    }

    30% {
        background-color: #6bb6a3;
    }

    50% {
        background-color: #6bb6a3;
    }

    45% {
        background-color: #a2cec3;
    }

    50% {
        background-color: #98d4c5;
    }

    100% {
        background-color: #b2d3cb;
    }
}


/* spinner */

.spinning-loader {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid rgba(223, 231, 236, 0.5);
    border-left-color: var(--quaternary);
    background: transparent;
    animation: rotate-s-loader 1s linear infinite;
    margin: 0;
}

@keyframes rotate-s-loader {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-register {
    border-color: var(--primary) !important;
    padding: .36rem 2rem;
}

.search-listing {
    list-style: none;
}

.search-listing li {
    border-bottom: 1px solid #e2e2e2;
    padding: 1rem 0;
}

.search-listing li img {
    max-width: 100px !important;
    max-height: 100px !important;
}

.searchResults {
    display: flex;
}

.prod-Det {
    margin-left: 2rem
}


/* cookies */

div.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
}

div.cookies .container {
    position: relative;
    text-align: center;
}


/* @media only screen and (min-width: 1025px) {
    div.cookies .container {
        height: 40px;
    }
} */


/* div.cookies .container div {
    padding-left: 60px;
    padding-right: 10px;
} */

div.cookies a {
    color: #fff;
    text-decoration: none;
    border: none;
}

div.cookies a.close-cookie-warning {
    position: absolute;
    left: 15px;
    top: 0;
    display: block;
    /* background-color: #004a97; */
    color: #fff;
    padding: 9px 5px;
    cursor: pointer;
    font-size: 3rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

div.cookies a.close-cookie-warning:hover {
    background-color: #fff;
    color: #2f99cd;
    border-bottom: none;
}

.font-normal {
    font-family: 'Lato', sans-serif;
}

@media only screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }

    .prodDet-container li .form-control {
        font-size: .8rem;
        text-align: center;
    }

    .cartQty .form-control {
        text-align: center;
        max-width: 40px;
    }
}


/* add promo code */

.promo-box {
    display: none;
}

.sideBar {
    background: var(--light-gray) !important;
    padding: 1.5rem 1rem;
    font-size: .9rem;
}

.sideBar p {
    font-size: .8rem;
}

.checkoutImg {
    width: 120px;
    height: auto;
    margin-right: 10px;
}

.checkoutImg img {
    max-width: 100px;
}

.cartSpec {
    margin: 0;
    padding: 0;
}

.cartSpec li {
    display: inline-block;
    list-style: none;
    margin-right: 15px;
}

.cartSpec li:last-child {
    margin-right: 0;
}

.panel.panel-default {
    border: solid 1px #e2e2e2;
    margin-bottom: 1rem;
}

.panel.panel-default h4.panel-title {
    font-size: 1rem;
    text-transform: uppercase;
}

.panel-title label {
    width: 100%;
    padding: 1rem;
    cursor: pointer;
}

.panel-body {
    padding: 1rem 2rem;
}

.qty-container .form-control[readonly] {
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .form-control.sizes {
        max-width: 100px;
    }

    #quantity {
        font-size: .8rem;
        text-align: center;
    }
}

.bxSlider .btn-white {
    font-size: .9rem
}

.menCont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-right: 3rem;
}


/* ramadan catalogue */

.menCont .btn-primary {
    font-size: .8rem;
    padding: .5rem 1rem;
}


/* pre book */

.preBook {
    position: absolute;
    top: 1.2rem;
    z-index: 9;
    width: 150px;
    background: var(--primary);
    transform: rotate(-45deg);
    left: -40px;
    color: #fff;
    font-size: .8rem;
    text-transform: uppercase;
}


/**** //search// ****/

.header-search-wrapper {
    float: right;
    position: relative;
}

.search-main {
    display: block;
    padding: 2px 15px 3px 4px;
    cursor: pointer;
    color: #fff;
}

.header-search-wrapper .search-form-main {
    padding: 0;
    position: absolute;
    right: 10px;
    top: 38px;
    width: 300px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.search-form-main.active-search {
    opacity: 1;
    visibility: visible;
}

.header-search-wrapper .search-form-main .search-field {
    border-radius: 0;
    padding: 4px 10px;
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 27px;
    border: 2px solid var(--primary);
    background: #fff !important;
}

.header-search-wrapper input:focus {
    color: var(--secondary);
}

.header-search-wrapper .search-form-main .search-submit {
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    float: right;
    padding: 10px 0 10px;
    width: auto;
    height: 36px;
    text-indent: -9999px;
    background: var(--primary) url(../images/search.png) no-repeat center center / 22px 22px;
    width: 35px;
    height: 38px;
    position: absolute;
    right: 1px;
}

.search-form label {
    float: left;
    width: 100%;
}

.emirati-banner {
    min-height: 560px;
}

@media only screen and (max-width: 540px) {
    .emirati-banner {
        min-height: 150px;
    }
    .navbar-brand img {
        max-width: 167px;
    }
    .slideElement aside{
        min-height: 250px;
    }
}

.free-gift {
    background: var(--primary);
    padding: 6px 14px;
    color: #fff;
    border-radius: 3px;
    margin-top: 1rem;
    text-align: center;
    position: relative;
  }
  .free-gift img {
    max-width: 60px;
    position: absolute;
    top: -30px;
    left: 0;
  }