@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

* {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

/* Start shortcut styles */
a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    transition: all .5s ease-in-out;
}

button,
button:focus,
button:active,
button:hover {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.page-wrapper {
    overflow: hidden;
}

.main-button {
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    padding: 12px 25px;
    font-size: 13px;
    position: relative;
    transition: all ease 0.5s;
    z-index: 1;
    overflow: hidden;
    min-width: 120px;
}

.main-button span {
    font-size: 13px;
}

.main-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(transparent), to(transparent));
    width: 100%;
    height: 2px;
}

.main-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(transparent));
    width: 100%;
    height: 2px;
}

.main-button span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    width: 2px;
    height: 100%;
}

.main-button span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(transparent));
    width: 2px;
    height: 100%;
}


.main-button:hover {
    background-color: #074540;
    color: #f7ebd5;
}

.main-button:hover::before {
    -webkit-animation: right 2s linear infinite;
    animation: right 2s linear infinite;
    background: -webkit-gradient(linear, right top, left top, from(#f7ebd5), to(transparent));
}

.main-button:hover span::before {
    -webkit-animation: top 2s linear infinite;
    animation: top 2s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    background: -webkit-gradient(linear, left top, left bottom, from(#f7ebd5), to(transparent));
}

.main-button:hover span::after {
    -webkit-animation: bottom 2s linear infinite;
    animation: bottom 2s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    background: -webkit-gradient(linear, left bottom, left top, from(#f7ebd5), to(transparent));
}

.main-button:hover::after {
    -webkit-animation: left 2s linear infinite;
    animation: left 2s linear infinite;
    background: -webkit-gradient(linear, left top, right top, from(#f7ebd5), to(transparent));
}

@keyframes left {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes right {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes bottom {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

/* End shortcut styles */

/* Start Main Header */
.main-header .top-bar {
    background: #074540;
    padding: 5px 0;
}

.main-header .top-bar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .top-bar .links a {
    color: white;
    text-transform: capitalize;
    font-size: 12px;
    margin: 0 5px;
}

.main-header .top-bar .links a:first-of-type {
    margin-left: 0;
}

.main-header .top-bar .links a:last-of-type {
    margin-right: 0;
}

.main-header .top-bar .lang a {
    text-transform: uppercase;
    color: #fff;
    font-size: 11.5px;
}

.main-header .top-bar .lang a img {
    margin-right: 5px;
}

.main-header .top-bar .social a {
    margin: 0 10px;
    color: #fff;
}

.main-header .top-bar .social a i {
    font-size: 12px;
}

.main-header .top-bar .social a:first-of-type {
    margin-left: 0;
}

.main-header .top-bar .social a:last-of-type {
    margin-right: 0;
}

.main-header .top-bar .social a:hover {
    color: #f7ebd5;
}

.main-header .top-bar a:hover {
    color: #f7ebd5;
}

.main-header .navbar {
    background: #f7ebd5;
    padding: 5px 0 6px;
}

.main-header .navbar-collapse {
    /*    flex-grow: unset;*/
    margin-left: 50px;
    justify-content: space-between;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item {
    margin: 0 15px;
    position: relative;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item::after {
    content: " ";
    position: absolute;
    width: 0%;
    height: 2px;
    display: inline-block;
    background: #074540;
    transition: all .4s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    opacity: 0;
    visibility: hidden;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item.active::after,
.main-header .navbar-expand-lg .navbar-nav .nav-item:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item:first-of-type {
    margin-left: 0;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link,
.main-header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
    {
    color: #074540;
}

.main-header .call {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.main-header .call .icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #074540;
    color: #074540;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 10px;
}

.main-header .call .num h6 {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.main-header .call .num a {
    color: #000;
    font-weight: 400;
}

.main-header .call .num a:hover {
    color: #074540;
}

.navbar-light .navbar-toggler {
    border-radius: 0;
    color: #074540;
    border-color: #074540;
    transition: all .3s ease-in-out;
}

.navbar-light .navbar-toggler:focus {
    outline: none;
    box-shadow: none;

}

.navbar-light .navbar-toggler:hover {
    background: #074540;
    color: white;
}

/* End Main Header */

/* Start Main Banner */
.main-banner {
    background: #f7ebd5;
}

.box-banner {
    background: #111b25;
    height: 280px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
}

.box-banner.center {
    height: 580px;
}

.box-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.box-banner:hover img {
    transform: scale(1.2);
}

.box-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    background-color: #074540;
    -webkit-transition: all .7s cubic-bezier(.4, 0, .2, 1);
    transition: all .7s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    z-index: 2;
    -ms-filter: "alpha(opacity=0)";
}

.box-banner:hover .overlay {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .4;
}

.box-banner .main-button {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

/* End Main Banner */

/* Start Our Brands */
.our-brands {
    padding: 40px 0;
}

.our-brands .title {
    text-align: center;
}

.our-brands .title h3 {
    color: #000;
    font-size: 20.5px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.our-brands .title h3::before,
.our-brands .title h3::after {
    content: " ";
    position: absolute;
    left: -60px;
    width: 35px;
    height: 1px;
    background: #074540;
    top: 50%;
    transform: translateY(-50%);
}

.our-brands .title h3::after {
    left: auto;
    right: -60px;
}

.our-brands .list-mix {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 30px;
}

.our-brands .list-mix li {
    margin: 0 15px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    position: relative;
    text-align: center;
}

.our-brands .list-mix li span {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.our-brands .list-mix li .image {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    border: 2px solid #f7ebd5;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.our-brands .list-mix li .image img {
    height: 100%;
    object-fit: contain;
}

.our-brands .list-mix li:first-of-type {
    margin-left: 0;
}

.our-brands .list-mix li:last-of-type {
    margin-right: 0;
}


.our-brands .list-mix li.active span,
.our-brands .list-mix li:hover span {
    color: #074540;
}

.our-brands .list-mix li.active .image,
.our-brands .list-mix li:hover .image {
    border-color: #074540;
}

.our-brands .owl-carousel:last-of-type {
    margin-bottom: 0;
}

.our-brands .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.our-brands .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    font-size: 25px;
    color: #cecece;
    transition: all .3s ease-in-out;
}

.our-brands .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    font-size: 25px;
    color: #cecece;
    transition: all .3s ease-in-out;
}

.our-brands .owl-carousel .owl-nav button.owl-prev:hover,
.our-brands .owl-carousel .owl-nav button.owl-next:hover {
    color: #074540;
}

.our-brands .owl-carousel .owl-nav button.owl-prev i,
.our-brands .owl-carousel .owl-nav button.owl-next i {
    font-size: 20px;
}

.box-brand {
    background: white;
    transition: all .5s ease-in-out;
    margin-top: 40px;
}

.box-brand:hover {
    background: #f7ebd5;
}

.box-brand .image {
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-brand .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-brand .details {
    padding: 30px;
}

.our-brands .owl-item.active ~ .owl-item.active .box-brand {
    border-left: 1px solid #e8e8e8;
}

.box-brand .details a {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 10px;
    min-height: 42px;
    color: #000;
}

.box-brand .details a:hover {
    color: #074540;
}

.box-brand .details p {
    color: #333333;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
}

.box-brand .details:hover a,
.box-brand .details:hover p {
    color: #074540;
}

#content-mix .mix {
    display: none;
}

#content-mix {
    min-height: 1064px;
}

.our-brands .button {
    text-align: center;
    padding-top: 30px;
}

.our-brands .main-button {
    background: #074540;
    color: #f7ebd5;
}

/* End Our Brands */

/* Start Footer */
.main-footer {
    background: #f7ebd5;
}

.main-footer .content {
    padding: 40px 0 20px;
}

.main-footer .title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.main-footer .links-footer {
    padding-left: 20px;
    margin-bottom: 20px;
}

.main-footer .links-footer li {
    margin: 10px 0;
}

.main-footer .links-footer li:first-of-type {
    margin-top: 0;
}

.main-footer .links-footer li:last-of-type {
    margin-bottom: 0;
}

.main-footer .links-footer li a {
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 13px;
}

.main-footer .links-footer li a:hover {
    color: #074540;
}

.main-footer .links-footer.contact-list li,
.main-footer .links-footer.contact-list li a {
    color: #000;
    font-weight: 400;
    font-size: 13px;
}

.main-footer .links-footer.contact-list li span {
    margin-right: 12px;
    color: #5a9134;
    font-size: 13px;
}

.main-footer .copyright {
    background: #074540;
    padding: 15px 0;
}

.main-footer .copyright p {
    color: #f7ebd5;
    font-size: 12.5px;
    letter-spacing: .5px;
}

.main-footer .copyright p a {
    color: #b27927;
}

.main-footer .copyright ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.main-footer .copyright ul li {
    margin: 0 10px;
}

.main-footer .copyright ul li a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    transition: all .3s ease-in-out;
    font-size: 14px;
    color: white;
}

.main-footer .copyright ul li a i {
    font-size: 12px;
}

.main-footer .copyright ul li a:hover {
    color: #b27927;
    border-color: #b27927;
}

.main-footer .copyright ul li:first-of-type {
    margin-left: 0;
}

.main-footer .copyright ul li:last-of-type {
    margin-right: 0;
}

.main-footer .copyright .d-flex {
    justify-content: flex-end;
}

.main-footer .copyright .d-flex a {
    text-transform: uppercase;
    font-size: 12.5px;
}

/* End Footer */

/* Start Contact */
.contact-us {
    padding: 40px 0 20px;
}

.contact-us .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact-us .top h4 {
    color: #599136;
    font-size: 21px;
    font-weight: 700;
    text-transform: capitalize;
}

.contact-us .top ul {
    display: flex;
    align-items: center;
}

.contact-us .top ul li {
    margin: 0 5px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    color: #599136;
}

.contact-us .top ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.contact-us .top ul li i,
.contact-us .top ul li svg {
    color: #000;
    font-size: 12px;
}

.contact-us .top ul li:first-of-type {
    margin-left: 0;
}

.contact-us .top ul li:last-of-type {
    margin-right: 0;
}

.contact-us .box-form {
    background: white;
    padding: 50px 60px 0;
    box-shadow: 0px 0 10px 5px #f7f7f7;
    margin-bottom: 30px;
    border-radius: 4px;
    margin-right: 10px;
}

.contact-us .box-form .form-label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.contact-us .box-form .form-control {
    border-color: #e5e5e5;
    padding: 8px 15px;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.contact-us .box-form .form-control::placeholder {
    color: #6b6b6b;
    font-size: 13px;
}

.contact-us .box-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #074540;
}

.contact-us .box-form textarea.form-control {
    height: 150px;
    padding-top: 15px;
    resize: vertical;
}

.contact-us .box-form button {
    border: 1px solid #074540;
    color: white;
    background: #074540;
    border-radius: 4px;
    padding: 8px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .4s ease-in-out;
}

.contact-us .box-form button:hover {
    color: #074540;
    background: #f7ebd5;
}

.contact-us .box-info {
    background: white;
    padding: 36px 35px;
    box-shadow: 0px 0 10px 5px #f7f7f7;
    margin-bottom: 30px;
    border-radius: 4px;
}

.contact-us .box-info ul li {
    margin: 12px 0;
    font-size: 14px;
    color: #000;
}

.contact-us .box-info ul li:first-of-type {
    margin-top: 0;
}

.contact-us .box-info ul li:last-of-type {
    margin-bottom: 0;
}

.contact-us .box-info ul li span {
    margin-right: 15px;
    font-size: 14px;
    color: #074540;
}

.contact-us .box-info ul li a {
    color: #000;
    font-size: 14px;
}

.contact-us .box-info ul li a:hover {
    color: #074540;
}

.contact-us .box-info h5 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 21px;
    color: #000;
    margin-bottom: 20px;
}

.contact-us .social-link a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #074540;
    transition: all .3s ease-in-out;
    font-size: 12px;
    color: #074540;
    margin: 0 2px;
}

.contact-us .social-link a:hover {
    border-color: #b27927;
    color: #b27927;
}

.contact-us .social-link a:last-of-type {
    margin-right: 0;
}

.contact-us .d-flex.align-items-center {
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-us .image {
    height: 150px;
}

.map-contact {
    height: 380px;
    overflow: hidden;
}

/* End Contact */

/* Start All Product */
.all-ptoducts {
    padding: 30px 0 0px;
}

.all-ptoducts .top-products {
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.all-ptoducts .container-fluid {
    padding: 0 40px;
}

.all-ptoducts .top-products .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.all-ptoducts .top-products .content h5 {
    font-size: 14px;
    color: #b27927;
    display: flex;
    align-items: center;
}

.all-ptoducts .top-products .content span:first-of-type {
    color: #000;
    margin-right: 5px;
    font-size: 14px;
}

.all-ptoducts .top-products .content span:nth-of-type(2) {
    display: inline-flex;
    padding: 3px 5px 3px 4px;
    background: #b27927;
    color: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 9.5px;
    margin-left: 5px;
    text-align: center;
}

.all-ptoducts .select-content {
    display: flex;
    align-items: center;
}

.all-ptoducts .select-content div {
    display: flex;
    align-items: center;
}

.all-ptoducts .select-content .form-label {
    margin: 0;
    color: #000;
    text-transform: capitalize;
    background: #f7ebd5;
    padding: 5px 10px;
    font-size: 13px;
}

.all-ptoducts .select-content div:first-of-type {
    margin-right: 10px;
}

.all-ptoducts .select-content div:first-of-type .form-label {
    min-width: 66px;
}

.all-ptoducts .select-content div:first-of-type .form-select {
    min-width: 130px;
}

.all-ptoducts .select-content .form-select {
    border-radius: 0;
    padding: 4px 2.25rem 4px .75rem;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    border: 1px solid #dddddd;
    font-size: 13px;
}

.all-ptoducts .select-content .form-select option {
    font-size: 13px;
    color: #000;
}

.all-ptoducts .select-content .form-select:focus {
    transition: all .4s ease-in-out;
    font-size: 13px;
    outline: none;
    box-shadow: none;
}

.all-ptoducts .list-items {
    padding: 20px 0 15px;
    border-bottom: 1px solid #e8e8e8;
}

.all-ptoducts .list-items h3 {
    padding-bottom: 12px;
    margin-bottom: 30px;
    font-size: 14.5px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.all-ptoducts .list-items h3::after {
    content: " ";
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 1px;
    left: 0;
    background: #b27927;
}

.all-ptoducts .list-items ul li .image {
    background: #fff;
    border: 3px solid #f7ebd5;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    transition: all .4s ease-in-out;
    overflow: hidden;
}

.all-ptoducts .list-items ul li .image img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}

.all-ptoducts .list-items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.all-ptoducts .list-items ul li {
    text-align: center;
    margin: 0 20px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.all-ptoducts .list-items ul li:first-of-type {
    margin-left: 0;
}

.all-ptoducts .list-items ul li:last-of-type {
    margin-right: 0;
}

.all-ptoducts .list-items ul li span {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    transition: all .5s ease-in-out;
}

.all-ptoducts .list-items ul li.active .image,
.all-ptoducts .list-items ul li:hover .image {
    border-color: #b27927;
}

.all-ptoducts .list-items ul li.active span,
.all-ptoducts .list-items ul li:hover span {
    color: #b27927;
}

.all-ptoducts .list-view .col-lg-3.col-md-6.px-0,
.all-ptoducts .list-view .col-lg-3.col-md-6 {
    width: 100%;
}

.all-ptoducts .list-view .col-lg-3.col-md-6.px-0 .box-brand,
.all-ptoducts .list-view .col-lg-3.col-md-6 .box-brand {
    display: flex;
    border-left: 0;
    align-items: center;
    border-bottom: 1px solid #e8e8e8 !important;
}

.all-ptoducts .list-view .col-lg-3.col-md-6 .box-brand {
    margin-bottom: 0;
    padding: 20px 0;
}

.all-ptoducts .list-view .col-lg-3.col-md-6.px-0 .image,
.all-ptoducts .list-view .col-lg-3.col-md-6 .image {
    width: 300px;
    height: 250px;
    background: #fff;
    padding: 5px 0;
}

.all-ptoducts .list-view .col-lg-3.col-md-6.px-0 .image img,
.all-ptoducts .list-view .col-lg-3.col-md-6 .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.all-ptoducts .list-view .col-lg-3.col-md-6 .image {
    background: #f2f2f4;
}

.all-ptoducts .list-grid ul {
    display: flex;
    align-items: center;
}

.all-ptoducts .list-grid ul li {
    padding: 5px 0;
    border: 1px solid #dddddd;
    text-align: center;
    margin-left: 5px;
    cursor: pointer;
    width: 33px;
    height: 33px;
    transition: all .4s ease-in-out;
}

.all-ptoducts .list-grid ul li.view,
.all-ptoducts .list-grid ul li:hover {
    background: #b27927;
    border-color: #b27927;
    color: #fff;
}

.all-ptoducts .list-grid ul li:first-of-type {
    margin-left: 0;
}

.all-ptoducts .list-grid ul li i {
    font-size: 12px;
}

.all-ptoducts .side-bar {
    padding: 30px 20px 30px 0;
    border-right: 1px solid #e8e8e8;
}

.all-ptoducts .side-bar .title-side {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 14.5px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.all-ptoducts .side-bar .title-side::before {
    content: " ";
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #b27927;
}

.all-ptoducts .side-bar .categories {
    margin-bottom: 30px;
}

.all-ptoducts .side-bar .categories ul li {
    margin: 11px 0;
}

.all-ptoducts .side-bar .categories ul li:first-of-type {
    margin-top: 0;
}

.all-ptoducts .side-bar .categories ul li:last-of-type {
    margin-bottom: 0;
}

.all-ptoducts .side-bar .categories ul li a {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 13px;
    color: #707f92;
}

.all-ptoducts .side-bar .categories ul li span i {
    font-size: 14px;
}

.all-ptoducts .side-bar .categories ul li a:hover {
    color: #b27927;
}

.all-ptoducts .side-bar .filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.all-ptoducts .side-bar .filter span {
    display: inline-flex;
    background: #303841;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
    padding: 4px 10px 4.5px;
    align-items: center;
}

.all-ptoducts .side-bar .filter span svg,
.all-ptoducts .side-bar .filter span i {
    margin-right: 3px;
    font-size: 12px;
    position: relative;
}

.all-ptoducts .side-bar .card-side .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-ptoducts .side-bar .card-side .title h4 {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

.all-ptoducts .side-bar .card-side .title span {
    color: #b27927;
    font-size: 13px;
    cursor: pointer !important;
}

.all-ptoducts .side-bar .card-side .card-body {
    border: none;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 20px 0;
}

.all-ptoducts .side-bar .card-side:last-of-type .card-body {
    border: none;
}

.all-ptoducts .side-bar .card-side {
    margin-bottom: 20px;
}

.all-ptoducts .side-bar .card-side .range {
    height: 1px;
    background: #7a8288;
    position: relative;
    margin: 10px 0;
}

.all-ptoducts .side-bar .card-side .range span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #b27927;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.all-ptoducts .side-bar .card-side .range span:nth-of-type(2) {
    left: auto;
    right: 0;
}

.all-ptoducts .side-bar .card-side .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 0;
}

.all-ptoducts .side-bar .card-side .price p {
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    font-weight: 700;
    display: inline;
}

.all-ptoducts .side-bar .card-side .price .first {
    padding-right: 5px;
}

.all-ptoducts .side-bar .card-side .price .first span,
.all-ptoducts .side-bar .card-side .price .last span {
    background: #f5f5f5;
    color: #000;
    font-weight: 400;
    font-size: 12.5px;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    min-width: 80px;
    margin-left: 5px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
}

.all-ptoducts .side-bar .card-side .form-check {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-check:last-of-type {
    margin-bottom: 0;
}

.all-ptoducts .side-bar .card-side .form-check-label {
    color: #807f91;
    font-size: 14px;
    margin-left: 7px;
}

.all-ptoducts .side-bar .card-side .form-check-label span.num {
    background: #b27927;
    margin-left: 5px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    font-size: 11px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.all-ptoducts .side-bar .card-side .form-check-input {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid #8f8f9d;
    cursor: pointer;
}

.all-ptoducts .side-bar .card-side .form-check-input:checked {
    background-color: #b27927;
    border-color: #b27927;
}

.all-ptoducts .side-bar .card-side .form-check-input:focus {
    box-shadow: none;
}

.all-ptoducts .side-bar .card-side .colors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.all-ptoducts .side-bar .card-side .colors div {
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 10px 0 0;
    margin-right: 15px;
}

.all-ptoducts .side-bar .card-side .colors .one {
    background: #bf3729;
}

.all-ptoducts .side-bar .card-side .colors .two {
    background: #33485d;
}

.all-ptoducts .side-bar .card-side .colors .three {
    background: #2e3638;
}

.all-ptoducts .side-bar .card-side .colors .four {
    background: #af9c65;
}

.all-ptoducts .side-bar .card-side .colors .five {
    background: #9db7f8;
}

.all-ptoducts .side-bar .card-side .colors .six {
    background: #e47d20;
}

.all-ptoducts .side-bar .card-side .colors .seven {
    background: #feb427;
}

.all-ptoducts .side-bar .card-side .colors .eight {
    background: #00c2cf;
}

.all-ptoducts .side-bar .card-side .colors .nine {
    background: #5b8aa4;
}

.all-ptoducts .side-bar .card-side .colors .ten {
    background: #e92c48;
}

.all-ptoducts .box-brand {
    border-left: 1px solid #e8e8e8;
    margin-top: 0;
    margin-bottom: 40px;
}

.all-ptoducts .col-lg-3.col-md-6.px-0:first-of-type .box-brand {
    border-left: none;
}

.all-ptoducts .box-brand:hover {
    background: white;
}

.all-ptoducts .box-brand .image img {
    width: auto;
    height: auto;
}

.all-ptoducts .box-brand .image.img-cover {
    background: #f2f2f4;
}

.all-ptoducts .box-brand .image.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* End All Product */

/* Start Mega Menu */
.mega-menu {
    background: #f7ebd5;
    padding: 40px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 117px;
    transition: all 0.4s ease-in-out;
    z-index: 99999;
    box-shadow: 0 4px 2px -2px #074540;
    opacity: 0;
    visibility: hidden;
}

.mega-menu ul {
    padding-left: 40px;
}

.mega-menu ul li {
    margin: 12px 0;
}

.mega-menu ul li:last-of-type {
    margin-bottom: 0;
}

.mega-menu ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.mega-menu ul li a:hover {
    color: #074540;
}

.mega-menu .image {
    height: 389px;
}

.mega-menu .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-header .navbar-expand-lg .navbar-nav .nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* End Mega Menu */

/* start Selct Custom */
.selects-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 310px;
    margin-right: 10px;
}

.selects-box > span {
    margin: 0;
    color: #000;
    text-transform: capitalize;
    background: #f7ebd5;
    padding: 5px 10px 6px;
    font-size: 13px;
    min-width: 66px;
}

.select {
    max-width: 140px;
    position: relative;
    width: 100%;
    margin-right: 10px;
}

.select:last-of-type {
    margin-right: 0;
}

.select__selected-item {
    padding: 2px 20px 4px;
    border: 1px solid #dddddd;
    color: #000;
    height: 33px;
    font-size: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease-in-out;
}

.select__selected-title {
    font-size: 14px;
}

.select__selected-item:hover {
    cursor: pointer;
    border-color: #b27927;
}

.select__arrow {
    transition: 0.3s;
    width: 17px;
    position: relative;
    top: 1.5px;
    left: 10px;

}

.select__arrow_rotate {
    transform: rotate(90deg);
}

.select__list {
    position: absolute;
    width: 100%;
    top: 33px;
    z-index: 1;
    box-sizing: border-box;
    transition: 0.3s;
    overflow: auto;
    max-height: 0;
    opacity: 0;
    box-shadow: rgb(58 58 58 / 9%) 0px 1px 5px;
}

.select__list_opened {
    max-height: 200px;
    border-color: #d8d8d8;
    opacity: 1;
}

.select__list-item {
    padding: 7px 20px;
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    transition: all .3s ease-in-out;

}

.select__list-item:hover {
    cursor: pointer;
    background: #b27927;
    color: white;
}

.select__list-item:first-child {
    border-radius: 2px 2px 0 0;
}

.select__list-item:last-child {
    border-bottom: none;
    border-radius: 0 0 2px 2px;
}

.select__input {
    display: none;
}

/* End Selct Custom */

/* Start Preloader */
.preloader {
    background-color: #f7ebd5;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999999;
    transition: all .6s ease-in-out;
}

.preloader .pre {
    width: 15rem;
    height: 15rem;
}

.preloader .load {
    position: absolute;
    width: 15rem;
    height: 15rem;
    border-right: 0.3rem solid #074540;
    border-radius: 50%;
    animation: pre 2s linear infinite;
}

.preloader .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fadeout {
    opacity: 0;
    filter: alpha(opacity=0);
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* End Preloader */

/* Start About US Page */
.about-us {
    padding: 40px 0 20px;
}

.about-us .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about-us .top h4 {
    color: #599136;
    font-size: 21px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-us .top ul {
    display: flex;
    align-items: center;
}

.about-us .top ul li {
    margin: 0 5px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    color: #599136;
}

.about-us .top ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.about-us .top ul li i,
.about-us .top ul li svg {
    color: #000;
    font-size: 11px;
}

.about-us .top ul li:first-of-type {
    margin-left: 0;
}

.about-us .top ul li:last-of-type {
    margin-right: 0;
}

.about-us .about-top-text {
    background: white;
    padding: 40px 60px 10px 60px;
    box-shadow: 0px 0 10px 5px #f7f7f7;
    margin-bottom: 30px;
    border-radius: 4px;
    margin-right: 10px;
}

.about-us .about-top-text .margin i {
    font-size: 35px;
    color: #074540;
}

.about-us .about-top-text .margin .icon {
    margin-right: 20px;
}

.about-us .about-top-text .margin .d-flex {
    margin-top: 30px;
}

.about-us .about-top-text .margin h3 {
    padding-bottom: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.about-us .about-top-text .margin h3::after {
    content: " ";
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 1px;
    left: 0;
    background: #b27927;
}

.about-us .about-top-text p {
    line-height: 1.7;
    color: #000;
    font-size: 14px;
}

.about-us .about-top-text .margin {
    margin-bottom: 30px;
}

.about-us .about-top-text .brand-box {
    text-align: center;
    margin-bottom: 20px;
}

.about-us .about-top-text .brand-box .image {
    border: 3px solid #f7ebd5;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    overflow: hidden;
}

.about-us .about-top-text .brand-box h4 {
    text-transform: capitalize;
    color: #000;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.about-us .image-about-top {
    background: #f7ebd5;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.mission-sec {
    padding: 40px 0;
}

.about-us .box-form .form-label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.about-us .box-form .form-control {
    border-color: #e5e5e5;
    padding: 8px 15px;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.about-us .box-form .form-control::placeholder {
    color: #6b6b6b;
    font-size: 13px;
}

.about-us .box-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #074540;
}

.about-us .box-form {
    margin-top: 30px;
}

.about-us .box-form textarea.form-control {
    height: 150px;
    padding-top: 15px;
    resize: vertical;
}

.about-us .box-form button {
    border: 1px solid #074540;
    color: white;
    background: #074540;
    border-radius: 4px;
    padding: 8px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .4s ease-in-out;
}

.about-us .box-form button:hover {
    color: #074540;
    background: #f7ebd5;
}

/* End About US Page */