@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Pacifico&family=Work+Sans:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth !important;
}
body {
    font-family: 'Lato', sans-serif !important;
}

input:hover,
input:focus {
    outline: none !important;
}

textarea:hover,
textarea:focus {
    outline: none !important;
}

button:hover,
button:focus {
    outline: none !important;
}

select:hover,
select:focus {
    outline: none !important;
}

a:hover,
a:focus {
    outline: none !important;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}


/*Header start*/

.header {
    background: #fff;
    width: 100%;
    position: sticky;
    color: #1e1e1e !important;
    z-index: 11111 !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
}

/*Top header start*/

.top-header {
    width: 100%;
    height: auto;
    padding: 12px 0;
    background: #232323;
}

.top-header-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.email-con {
    height: 25px;
    padding-right: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.email-icon {
    padding-top: 2px;
}

.email-icon i {
    color: #cda274;
    font-size: 20px;
    padding-right: 10px;
}

.emailid {
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
}

.emailid:hover {
    color: #cda274;
    transition: 0.3s;
}

.phone-con {
    height: 25px;
    padding-right: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.phone-icon i {
    color: #cda274;
    font-size: 20px;
    padding-right: 10px;
}

.phone-no {
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
}

.phone-no:hover {
    color: #cda274;
    transition: 0.3s;
}

.top-header-content .social_con .social_icons {
    margin-top: 0;
}

.social_con .social_icons {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social_con .social_icons .icons {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #cda274;
    border: 1px solid #cda274;
    background: transparent;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social_con .social_icons .icons i {
    font-size: 16px;
    transition: 0.3s;
}

.social_con .social_icons .icons i:first-child {
    margin-left: 0;
}

.social_con .social_icons .icons:hover {
    background: #cda274;
    transition: 0.3s;
}

.social_con .social_icons .icons:hover i {
    color: #fff;
}

/*Top header end*/


/*Main header start*/

.main-header {
    width: 100%;
    height: auto;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /*    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);*/
}

.toggle {
    display: none !important;
}

.navbar-brand {
    max-width: 350px;
    padding: 0 !important;
}

.navbar-brand img {
    width: 100%;
    height: auto;
}

.sticky {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    position: fixed;
    color: #1e1e1e !important;
    z-index: 11111 !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
}

.nav-link {
    margin: 0 !important;
    display: block;
    padding: 30px 10px !important;
    font-size: 16px;
    font-weight: 500;
    border-top: 3px solid transparent !important;
    border-bottom: 3px solid transparent !important;
    color: #1e1e1e !important;
}

.nav-item .nav-link {
    transition: 0.3s !important;
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link {
    color: #cda274 !important;
    border-top: 3px solid #cda274 !important;
    transition: 0.3s !important;
}

.navbar {
    padding: 0 !important;
    height: auto;
    width: 100%;
    z-index: 11111 !important;
    align-items: center !important;
}

.navbar-nav {
    padding: 0 !important;
}

.nav-item {
    margin: 0 2px;
}

.dropdown-menu {
    top: 96% !important;
    padding: 0 !important;
    background: #fff !important;
    transition: 0.5s !important;
    border-radius: 0px !important;
    border: 0 !important;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.dropdown-menu .dropdown-item {
    color: #1e1e1e !important;
    border-radius: 0px !important;
    line-height: 30px;
    /*    padding: 5px 15px;*/
    transition: 0.3s !important;
}

.dropdown-menu .dropdown-toggle:after {
    position: absolute;
    right: 5px;
    top: 12px;
}

.dropdown-menu .dropdown-item:hover {
    color: #fff !important;
    border-radius: 0px !important;
    transition: 0.3s !important;
    background: #cda274 !important;
}

.dropdown-menu .dropdown-item:focus {
    color: #fff !important;
    border-radius: 0px !important;
    background: #cda274 !important;
}

.dropdown-menu .dropdown-item.active {
    color: #fff !important;
    border-radius: 0px !important;
    background: #cda274 !important;
}

.dropdown-submenu i {
    margin-left: 5px;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    color: #1e1e1e;
    white-space: nowrap;
}

.toggle {
    position: absolute;
    top: 14px;
    right: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.toggle span {
    position: absolute;
    width: 30px;
    height: 4px;
    top: 25px;
    left: 10px;
    background: #1e1e1e;
    border-radius: 4px;
    transition: 0.5s;
}

.toggle span:nth-child(1) {
    transform: translateY(-12px);
    width: 20px;
    left: 10px;
}

.toggle.active span:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
    width: 30px;
    transition-delay: 0.125s;
}

.toggle span:nth-child(2) {
    transform: translateY(12px);
    width: 15px;
    left: 10px;
}

.toggle.active span:nth-child(2) {
    transform: translateY(0px) rotate(315deg);
    width: 30px;
    transition-delay: 0.25s;
}

.toggle.active span:nth-child(3) {
    transform: translateX(60px);
}




@media (min-width: 992px) {
    .dropdown-menu .dropdown-toggle:after {
        border-top: .3em solid transparent;
        border-right: 0;
        border-bottom: .3em solid transparent;
        border-left: .3em solid;
    }

    .dropdown-menu {
        margin-left: 0;
        margin-right: 0;
    }

    .dropdown-menu li {
        border-radius: 5px !important;
        position: relative;
    }

    .nav-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -2px !important;
    }

    .nav-item .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-menu > li:hover {
        background-color: #f1f1f1;
    }

    .dropdown-menu > li:hover > .submenu {
        display: block;
    }

}


@media (max-width: 991.98px) {
.top-header {
    display: none;
} 

/*Categories Products section start*/
.catego {
    height: auto !important;
}

.button1 {
    top: 70px !important;
}

.button2 {
    top: 140px !important;
}
/*Categories Products section start*/

    .toggle {
        display: block !important;
    }

    .navbar-nav {
        position: fixed;
        top: 132px;
        left: -100%;
        background: #fff;
        height: 100vh;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
        z-index: 11111 !important;
    }

    .toggle.active ~ .navbar-nav {
        left: 0;
        z-index: 1111 !important;
    }

    .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        width: 100%;
        margin-left: -100%;
        display: block;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .dropdown-menu {
        text-align: center !important;
    }

    /*
.dropdown-menu > li:hover > .submenu{
	display: block;
}    
*/

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 6px;
        top: .8em;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: .1rem;
        margin-right: .1rem;
    }



}


/*Header end*/

/*  Whatsapp Icon */
.phone-call {
    width: 50px;
    height: 50px;
    right: 13px;
    bottom: 18px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 115;
    display: block;
    line-height: 65px;
}

.phone-call img {
    vertical-align: baseline !important;
}

/*.phone-call:after {
    position: absolute;
    content: "Order On Whatsapp";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}*/

.phone-call::after {
    position: absolute;
    content: "Drop Your Message";
    z-index: -2;
    top: 11px;
    left: -153px;
    background-color: #fff;
    border-radius: 100%;
    line-height: 18px;
    color: #0c9212;
    font-size: 13px;
    font-weight: bolder;
    padding: 5px 14px 6px 14px;
    border-radius: 18px;
    box-shadow: 0px 5px 20px 0 rgb(80 80 80 / 20%);
    border: 1px solid #25d366;
    cursor: default;
}

.phone-call:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        -webkit-transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(0.3);
        opacity: 1;
    }

    50% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*  Whatsapp Icon */

/*Scrolltop*/

#scrolltop{
    background: #8CC34B;
/*    border: 2px solid #8CC34B;*/
    position: fixed;
    z-index: 111111;
    padding: 10px 15px;
    width: 40px;
    height: 40px;
    right: 40px;
    bottom: 20px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
    transition: all 0.5s ease;
}
#scrolltop i{
    color: #333;
}
#scrolltop:hover{
    transform: scale(1.1,1.1);
    transition:all 0.5s;
}
.hide{
    transform: scale(0,0);
}

.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 18px;
    bottom: 90px;
    background: #777;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
}
.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 6px;
    left: 12px;
}
.back-to-top:hover i {
    color: #fff;
}
/*Scrolltop*/


/*Banner start*/

.banner-section {
    position: relative;
    width: 100%;
    height: 650px;
}

.banner-image1 {
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-image2 {
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-image3 {
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-3.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-image4 {
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-4.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-contentbox {
    position: absolute;
    height: 650px;
    top: 0px;
    left: 6%;
    right: 6%;
    max-width: 650px;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-contentbox .banner-heading2 {
    color: #cda274;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}

.banner-contentbox .banner-heading3 {
    color: #fff;
    font-size: 60px;
    line-height: 64px;
    font-weight: bold;
    margin-top: 20px;
}

.banner-contentbox .banner-heading3 span {
    color: #cda274;
}

.banner-details {
    color: #fff;
    font-size: 16px;
}

.banner-section .owl-theme .owl-dots .owl-dot {
    display: none !important;
}

.banner-section .owl-prev {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0px;
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 !important;
}

.banner-section .owl-prev span {
    font-size: 70px;
    line-height: 70px;
    padding-left: 10px;
    color: #fff !important;
}

.banner-section .owl-next {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0px;
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 !important;
}

.banner-section .owl-next span {
    font-size: 70px;
    line-height: 70px;
    padding-right: 10px;
    color: #fff !important;
}

.banner-button {
    margin-top: 50px;
}

.btn1 {
    color: #cda274;
    font-size: 16px;
    padding: 10px 25px;
    background: transparent;
    transition: 0.3s;
    border: 1.5px solid #cda274;
}

.btn1:hover {
    color: #fff;
    transition: 0.3s;
    background: #cda274;
}


/*Banner end*/


/*Section1 start*/

.section1 {
    position: relative;
    z-index: 111;
    padding: 0;
    margin-top: -50px;
}

.shadhowbox {
    width: 100%;
    height: auto;
    padding: 60px 30px;
    background: #fff;
    transition: 0.5s;
    box-shadow: 0px 5px 20px 0 rgb(80 80 80 / 20%);
}
.shadhowbox:hover{
    background: #232323;
    transition: 0.5s;
}
.shadhow-iconbox {
    width: 56px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
}

.shadhow-iconbox img {
    width: 100%;
    height: auto;
}

.content-heading {
    color: #232323;
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 30px;
    transition: 0.5s;
}
.shadhowbox:hover .content-heading{
    color: #fff;
    transition: 0.5s;
}
.content-details {
    color: #232323;
    text-align: center;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.5s;
}
.shadhowbox:hover .content-details{
    color: #fff;
    transition: 0.5s;
}
/*Section1 end*/


/*About Us section start*/
.aboutus-section {
    padding: 80px 0;
}


.left-contentbox {
    width: 100%;
    height: auto;
    padding-left: 30px;
    padding-bottom: 50px;
}

.left-contentbox .content-heading {
    color: #cda274;
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    position: relative;
    padding-left: 75px;
}

.left-contentbox .content-heading::before {
    position: absolute;
    content: '';
    left: 0;
    top: 8px;
    bottom: 0px;
    width: 60px;
    border-top: 3px solid #cda274;
}

.left-contentbox .content-heading2 {
    color: #232323;
    text-align: left;
    font-size: 42px;
    line-height: 50px;
    font-weight: 800;
}

.left-contentbox-details {
    color: #1e1e1e;
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.list-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.list-column {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.check-iconbox {
    width: 18px;
    height: auto;
    margin-right: 15px;
}

.check-iconbox img {
    width: 100%;
    height: auto;
}

.list-content p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

.know-more-button {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 20px !important;
}

.contact-btn {
    margin-left: 15px;
    color: #fff;
    transition: 0.3s;
    background: #cda274;
}

.contact-btn:hover {
    color: #cda274;
    transition: 0.3s;
    background: transparent;
}

.desk-d-none {
    display: none;
}

/*About Us section end*/


/*Our service section start*/

.our-service-section {
    padding: 80px 0;
    background: #232323;
}

.servicebox-content {}

.servicebox-content .content-heading {
    color: #cda274;
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    position: relative;
    padding-left: 75px;
    margin-top: 0;
}

.servicebox-content .content-heading::before {
    position: absolute;
    content: '';
    left: 0;
    top: 8px;
    bottom: 0px;
    width: 60px;
    border-top: 3px solid #cda274;
}

.servicebox-content .content-heading2 {
    color: #fff;
    text-align: left;
    font-size: 42px;
    line-height: 50px;
    font-weight: 800;
}

.servicebox-content-details {
    color: #fff;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px !important;
}

.border-box {
    width: 100%;
    height: auto;
    padding: 40px;
    border: 2px solid #fff;
    transition: 0.3s;
}

.border-box:hover {
    background: #fff;
    transition: 0.3s;
}

.border-box-icon {
    width: 38px;
    height: 38px;
}

.border-box-icon img {
    width: 100%;
    height: auto;
}

.border-box-content-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.border-box:hover .border-box-content-title {
    color: #232323;
    transition: 0.3s;
}

.border-box-content-details {
    color: #d5d5d5;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 0;
    transition: 0.3s;
}

.border-box:hover .border-box-content-details {
    color: #232323;
    transition: 0.3s;
}

/*Our service section end*/


/*Section4 start*/

.section4 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.content-con {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flexbox-column {
    padding: 30px 15px;
    background: #ebebeb;
}

.flexbox-icon {
    width: 38px;
    height: 38px;
    margin-left: auto;
    margin-right: auto;
}

.flexbox-icon img {
    width: 100%;
    height: auto;
}

.flexbox-heading {
    color: #232323;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.mt-20 {
    margin-top: 20px !important;
}

.imagebox {
    width: 100%;
    height: auto;
}

.imagebox img {
    width: 100%;
    height: auto;
}

/*Section4 end*/

/*Contact form section start*/

.contactus-section {
    background: #232323;
    padding: 80px 0;
}

.contactus-section .info {
    width: 100%;
    padding: 30px;
}

.contact-form-heading {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.addressbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.iconbox {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    /*
    color: #4a4a4a;
    background: #ffdfa0;
*/
    /*    border-radius: 50%;*/
    margin-right: 20px;
    transition: 0.3s;
}

.iconbox i {
    font-size: 18px;
    color: #cda274;
}

/*
.iconbox:hover{
    color: #fff;
    background: #d48d04;
    transition: 0.3s;
}
*/

.emailbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.phonebox2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.contact-detailsbox h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact-detailsbox h4 a {
    color: #fff;
}

.contact-detailsbox h4 a:hover {
    color: #fff;
}

.contact-detailsbox p {
    color: #c9c9c9;
    font-size: 15px;
}

.contact-form {
    width: 100%;
}

.contact-form .form-control {
    color: #878787 !important;
    background-color: transparent !important;
    border: 1px solid #cba173 !important;
    border-radius: 0 !important;
    margin-bottom: 15px;
}

.submit-button {
    margin-top: 30px;
}

/*Contact form section end*/


/*Footer start*/

.footer-section {
    padding: 50px 0 0;
    background-color: #232323;
}

.footer-clmn1 {
    padding-left: 0px;
}

.footer-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.footer-logo {
    width: 100%;
    height: auto;
}

.footer-logo a img {
    width: 100%;
    height: auto;
}

.company-details {
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
}

.ft_hd {
    color: #fff;
    font-weight: 700;
    font-size: 18px !important;
    margin-top: 50px;
}

.quick-link {
    padding-left: 0;
    margin-bottom: 0;
}

.ql {
    list-style: none;
    padding: 2px 0;
}

.ql a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    font-size: 14px;
}

.ql a:hover {
    color: #cda274 !important;
    transition: 0.3s;
    text-decoration: none;
}

.social_con p {
    margin-bottom: 0;
    padding: 0;
    color: #fff;
    font-weight: 700;
}

.subs-content {
    padding-bottom: 30px;
}

.contact-no-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-no {
    color: #fff;
    font-size: 14px;
}

.contact-no:hover {
    color: #fff;
}

.address-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 15px;
}

.address {
    color: #fff;
    font-size: 14px;
}

.address:hover {
    color: #fff;
}

.location-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 15px;
}

.location {
    color: #fff;
    font-size: 14px;
}

.location:hover {
    color: #fff;
}

.footer_end {
    width: 100%;
    height: auto;
    background: transparent;
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid #cda274;
}

.ft_end_txt {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.ft_end_txt2 {
    text-align: right;
}

.ft_end_txt2 a {
    color: #fff;
}

.ft_end_txt2 a:hover {
    color: #fff;
}

/*Footer end*/



/*About page start*/

.banner-section {
    position: relative;
    width: 100%;
    height: auto;
}

.about-banner-image {
    width: 100%;
    height: 450px;
    background-color: #232323;
    padding: 100px 15px;
    position: relative;
    background-image: url(../images/banner-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-content{
    width: 100%;
        background-color: #232323;
    padding: 75px 15px;


   
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.about-content h1 {
    color: #fff;
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}
.about-content nav{
    width: 100% !important;
    margin-top: 14px;
}
.about-content .breadcrumb{
    padding: 0 !important;
    background-color: transparent !important;
    margin: 0;
}
.about-content .breadcrumb-item a {
    color: #c1996e  !important;
}
.about-content .breadcrumb-item.active {
    color: #c1996e  !important;
}
.about-content .breadcrumb-item.active a {
    color: #c1996e  !important;
}
.about-content .breadcrumb-item+.breadcrumb-item::before {
    color: #c1996e  !important;
}



/*About page end*/




.mt-80{
    margin-top: 80px !important;
}

.cat_list ul {
	margin:0 !important;
	padding:0 !important;
}
.cat_list li {
	list-style:none;
	width:100%;
	display:inline-block;
}
.cat_list li a {
	color:#001D38;
	padding:18px;
	display:block;
	background-color:#FFFFFF;
	border-bottom:1px solid #00742b3d;
}
.cat_list li a:hover {
	background-color:#cda274;
}


/*Categories Products section start*/
.catego {
  position: relative;
  margin-top: 50px;
  width: 100%;
  height: 300px;
  overflow:hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}

.catego:hover .overlay {
  display: block;
  background: rgba(0, 0, 0, .3);
}

/*.catego img {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
}*/

.title {
  position: absolute;
  width: 100%;
  left: 0;
  top: 120px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  z-index: 1;
  transition: top .5s ease;
}

.catego:hover .title {
  top: 90px;
}

.button1 {
  position: absolute;
  width: 100%;
  left:0;
  top: 180px;
  text-align: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.button1 a {
  width: 200px;
  padding: 12px 48px;
  text-align: center;
  color: #cda274;
  background-color:#FFFFFF;
  border: solid 2px white;
  z-index: 1;
}
.button1 a:hover {
  background-color:#cda274;
  border: solid 2px #cda274;
  color: #FFFFFF;

}

.button2 {
  position: absolute;
  width: 100%;
  left:0;
  top: 240px;
  text-align: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.button2 a {
  width: 200px;
  padding: 12px 48px;
  text-align: center;
  color: #cda274;
  background-color:#FFFFFF;
  border: solid 2px white;
  z-index: 1;
}
.button2 a:hover {
  background-color:#cda274;
  border: solid 2px #cda274;
  color: #FFFFFF;

}

.catego:hover .button1 {
  opacity: 1;
}

.catego:hover .button2 {
  opacity: 1;
}
/*Categories Products section start*/
