            body {
                font-family: "Open Sans", sans-serif;
                color: #444444;
            }
            
            a {
                color: #0678C2;
            }
            
            a:hover {
                color: #fff500;
                text-decoration: none;
            }
            
            h1,
            h2,
            h3,
            h4,
            h5,
            h6 {
                font-family: "Jost", sans-serif;
            }
            /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
            
            .back-to-top {
                position: fixed;
                display: none;
                right: 15px;
                bottom: 15px;
                z-index: 99999;
            }
            
            .back-to-top i {
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                width: 40px;
                height: 40px;
                border-radius: 50px;
                background: #fff500;
                color: #fff;
                transition: all 0.4s;
            }
            
            .back-to-top i:hover {
                background: #209dd8;
                color: #fff;
            }
            /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
            
            #header {
                transition: all 0.5s;
                z-index: 997;
                padding: 15px 0;
            }
            
            #header.header-scrolled,
            #header.header-inner-pages {
                background: rgba(57, 74, 214, 0.9);
            }
            
            #header .logo {
                font-size: 30px;
                margin: 0;
                padding: 0;
                line-height: 1;
                font-weight: 500;
                letter-spacing: 2px;
                text-transform: uppercase;
            }
            
            #header .logo img {
                max-height: 100px;
            }
            /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
            /* Desktop Navigation */
            
            .nav-menu ul {
                margin: 0;
                padding: 0;
                list-style: none;
            }
            
            .nav-menu>ul {
                display: flex;
            }
            
            .nav-menu>ul>li {
                position: relative;
                white-space: nowrap;
                padding: 10px 0 10px 28px;
            }
            
            .nav-menu a {
                display: block;
                position: relative;
                color: #fff;
                transition: 0.3s;
                font-size: 15px;
                letter-spacing: 0.5px;
                font-weight: 500;
                font-family: "Open Sans", sans-serif;
            }
            
            .nav-menu a:hover,
            .nav-menu .active>a,
            .nav-menu li:hover>a {
                color: #fff500;
            }
            
            .nav-menu .drop-down ul {
                border-radius: 8px;
                display: block;
                position: absolute;
                left: 14px;
                top: calc(100% + 30px);
                z-index: 99;
                opacity: 0;
                visibility: hidden;
                padding: 10px 0;
                background: #fff;
                box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
                transition: 0.3s;
            }
            
            .nav-menu .drop-down:hover>ul {
                opacity: 1;
                top: 100%;
                visibility: visible;
            }
            
            .nav-menu .drop-down li {
                min-width: 180px;
                position: relative;
            }
            
            .nav-menu .drop-down ul a {
                padding: 10px 20px;
                font-size: 14px;
                font-weight: 500;
                text-transform: none;
                color: #0c3c53;
            }
            
            .nav-menu .drop-down ul a:hover,
            .nav-menu .drop-down ul .active>a,
            .nav-menu .drop-down ul li:hover>a {
                color: #fff500;
            }
            
            .nav-menu .drop-down .drop-down ul {
                top: 0;
                left: calc(100% - 30px);
            }
            
            .nav-menu .drop-down .drop-down:hover>ul {
                opacity: 1;
                top: 0;
                left: 100%;
            }
            
            .nav-menu .drop-down .drop-down>a {
                padding-right: 35px;
            }
            
            @media (max-width: 1366px) {
                .nav-menu .drop-down .drop-down ul {
                    left: -90%;
                }
                .nav-menu .drop-down .drop-down:hover>ul {
                    left: -100%;
                }
                .nav-menu .drop-down .drop-down>a:after {
                    content: "\ea9d";
                }
            }
            /* Get Startet Button */
            
            .get-started-btn {
                margin-left: 25px;
                color: #fff;
                border-radius: 50px;
                padding: 6px 25px 7px 25px;
                white-space: nowrap;
                transition: 0.3s;
                font-size: 14px;
                display: inline-block;
                border: 2px solid #fff500;
                font-weight: 600;
            }
            
            .get-started-btn:hover {
                background: #31a9e1;
                color: #fff;
            }
            
            @media (max-width: 768px) {
                .get-started-btn {
                    margin: 0 48px 0 0;
                    padding: 6px 20px 7px 20px;
                }
                .shopping_menu {
                    margin-right: 40px;
                }
            }
            /* Mobile Navigation */
            
            .mobile-nav-toggle {
                position: fixed;
                color: #fff500;
                top: 50px;
                right: 15px;
                z-index: 9998;
                border: 0;
                background: none;
                font-size: 24px;
                transition: all 0.4s;
                outline: none !important;
                line-height: 1;
                cursor: pointer;
                text-align: right;
            }
            
            .mobile-nav-toggle i {
                color: #fff;
            }
            
            .mobile-nav {
                position: fixed;
                top: 85px;
                right: 15px;
                bottom: 15px;
                left: 15px;
                z-index: 9999;
                overflow-y: auto;
                background: #fff;
                transition: ease-in-out 0.2s;
                opacity: 0;
                visibility: hidden;
                border-radius: 10px;
                padding: 10px 0;
            }
            
            .mobile-nav * {
                margin: 0;
                padding: 0;
                list-style: none;
            }
            
            .mobile-nav a {
                display: block;
                position: relative;
                color: #37517e;
                padding: 10px 20px;
                font-weight: 500;
                outline: none;
            }
            
            .mobile-nav a:hover,
            .mobile-nav .active>a,
            .mobile-nav li:hover>a {
                color: #fff500;
                text-decoration: none;
            }
            
            .mobile-nav .drop-down>a {
                padding-right: 35px;
            }
            
            .mobile-nav .drop-down ul {
                display: none;
                overflow: hidden;
            }
            
            .mobile-nav .drop-down li {
                padding-left: 20px;
            }
            
            .mobile-nav-overly {
                width: 100%;
                height: 100%;
                z-index: 9997;
                top: 0;
                left: 0;
                position: fixed;
                background: rgba(40, 58, 90, 0.6);
                overflow: hidden;
                display: none;
                transition: ease-in-out 0.2s;
            }
            
            .mobile-nav-active {
                overflow: hidden;
            }
            
            .mobile-nav-active .mobile-nav {
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-nav-active .mobile-nav-toggle i {
                color: #fff;
            }
            /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
            
            #hero {
                width: 100%;
                height: 90vh;
                /* background: #0678C2; */
                background-image: url(../img/video-bg.jpg);
            }
            
            #hero .container {
                padding-top: 72px;
            }
            
            #hero h1 {
                margin: 0 0 10px 0;
                font-size: 48px;
                font-weight: 700;
                line-height: 56px;
                color: #fff;
            }
            
            #hero h2 {
                color: rgba(255, 255, 255, 0.6);
                margin-bottom: 50px;
                font-size: 24px;
            }
            
            #hero .btn-get-started {
                font-family: "Jost", sans-serif;
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 1px;
                display: inline-block;
                padding: 10px 28px 11px 28px;
                border-radius: 50px;
                transition: 0.5s;
                margin: 10px 0 0 0;
                color: #fff;
                background: #fff500;
            }
            
            #hero .btn-get-started:hover {
                background: #209dd8;
            }
            
            #hero .btn-watch-video {
                font-size: 16px;
                display: inline-block;
                padding: 10px 0 8px 40px;
                transition: 0.5s;
                margin: 10px 0 0 25px;
                color: #fff;
                position: relative;
            }
            
            #hero .btn-watch-video i {
                color: #fff;
                font-size: 32px;
                position: absolute;
                left: 0;
                top: 7px;
                transition: 0.3s;
            }
            
            #hero .btn-watch-video:hover i {
                color: #fff500;
            }
            
            #hero .animated {
                animation: up-down 2s ease-in-out infinite alternate-reverse both;
            }
            
            @media (max-width: 991px) {
                #hero {
                    height: 100vh;
                    text-align: center;
                }
                #hero .animated {
                    -webkit-animation: none;
                    animation: none;
                }
                #hero .hero-img {
                    text-align: center;
                }
                #hero .hero-img img {
                    width: 50%;
                }
            }
            
            @media (max-width: 768px) {
                #hero h1 {
                    font-size: 28px;
                    line-height: 36px;
                }
                #hero h2 {
                    font-size: 18px;
                    line-height: 24px;
                    margin-bottom: 30px;
                }
                #hero .hero-img img {
                    width: 70%;
                }
            }
            
            @media (max-width: 575px) {
                #hero .hero-img img {
                    width: 80%;
                }
                #hero .btn-get-started {
                    font-size: 16px;
                    padding: 10px 24px 11px 24px;
                }
                #hero .btn-watch-video {
                    font-size: 16px;
                    padding: 10px 0 8px 40px;
                    margin-left: 20px;
                }
                #hero .btn-watch-video i {
                    font-size: 32px;
                    top: 7px;
                }
            }
            
            @-webkit-keyframes up-down {
                0% {
                    transform: translateY(10px);
                }
                100% {
                    transform: translateY(-10px);
                }
            }
            
            @keyframes up-down {
                0% {
                    transform: translateY(10px);
                }
                100% {
                    transform: translateY(-10px);
                }
            }
            /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
            
            #footer {
                font-size: 14px;
                background: #3B46C1;
            }
            
            #footer .footer-newsletter {
                padding: 50px 0;
                background: #f3f5fa;
                text-align: center;
                font-size: 15px;
                clear: both;
                color: #444444;
            }
            
            #footer .footer-newsletter h4 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 0;
                line-height: 1;
                font-weight: 600;
                color: #37517e;
            }
            
            #footer .footer-newsletter form {
                margin-top: 30px;
                background: #fff;
                padding: 6px 10px;
                position: relative;
                border-radius: 50px;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
                text-align: left;
            }
            
            #footer .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }
            
            #footer .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #0678C2;
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }
            
            #footer .footer-newsletter form input[type="submit"]:hover {
                background: #fff500;
                color: #000;
            }
            
            #footer .footer-top {
                padding: 60px 0 30px 0;
                background: #fff;
            }
            
            .shopping_menu a.header_user {
                color: #fff;
            }
            
            #footer .footer-top .footer-contact {
                margin-bottom: 30px;
            }
            
            #footer .footer-top .footer-contact h3 {
                font-size: 28px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                text-transform: uppercase;
                font-weight: 600;
                color: #37517e;
            }
            
            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Jost", sans-serif;
                color: #5e5e5e;
            }
            
            #footer .footer-top h4 {
                font-size: 16px;
                font-weight: bold;
                color: #37517e;
                position: relative;
                padding-bottom: 12px;
            }
            
            #footer .footer-top .footer-links {
                margin-bottom: 30px;
            }
            
            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            #footer .footer-top .footer-links ul i {
                padding-right: 2px;
                color: #fff500;
                font-size: 18px;
                line-height: 1;
            }
            
            #footer .footer-top .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }
            
            #footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }
            
            #footer .footer-top .footer-links ul a {
                color: #777777;
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }
            
            #footer .footer-top .footer-links ul a:hover {
                text-decoration: none;
                color: #fff500;
            }
            
            #footer .footer-top .social-links a {
                font-size: 18px;
                display: inline-block;
                background: #0678C2;
                color: #fff;
                line-height: 1;
                padding: 8px 0;
                margin-right: 4px;
                border-radius: 50%;
                text-align: center;
                width: 36px;
                height: 36px;
                transition: 0.3s;
            }
            
            #footer .footer-top .social-links a:hover {
                background: #fff500;
                color: #000;
                text-decoration: none;
            }
            
            #footer .footer-bottom {
                padding-top: 30px;
                padding-bottom: 30px;
                color: #fff;
            }
            
            #footer .copyright {
                float: left;
            }
            
            #footer .credits {
                float: right;
                font-size: 13px;
            }
            
            #footer .credits a {
                transition: 0.3s;
            }
            
            @media (max-width: 768px) {
                #footer .footer-bottom {
                    padding-top: 20px;
                    padding-bottom: 20px;
                }
                #footer .copyright,
                #footer .credits {
                    text-align: center;
                    float: none;
                }
                #footer .credits {
                    padding-top: 4px;
                }
            }
            
            a.header_user {
                font-size: 20px;
                padding: 0 10px;
                position: relative;
            }
            
            .user_icon {
                font-size: 25px !important;
            }
            
            a.header_user span {
                background: #fff;
                color: #000;
                padding: 0px 7px;
                border-radius: 50px;
                position: absolute;
                top: -5px;
                left: 20px;
                font-size: 13px;
            }
            
            nav.nav-menu.d-none.d-lg-block {
                padding-right: 20px;
            }
            
            .foodtype_snack h2,
            .title_about h3 {
                font-size: 36px;
                padding-top: 40px;
            }
            
            .title_about.text-center {
                padding: 60px 0;
            }
            
            .pro_details h4 {
                color: #0678C2;
            }
            
            .pro_details img {
                width: 85%;
                border-style: solid;
                border-width: 10px 10px 10px 10px;
                border-color: #0678C2;
                border-radius: 50% 50% 50% 50%;
            }
            
            .foodtype_snack a:hover .pro_details h4 {
                color: #fff500;
            }
            
            .foodtype_snack a:hover .pro_details img {
                border-color: #fff500;
            }
            
            .about_page.choose-our-chips-content-area img {
                width: 100%;
                max-width: 220px;
            }
            
            .about_page.choose-our-chips-content-area .single-chips-item {
                margin-bottom: 50px;
            }
            
            .home_food_inner img {
                width: 100%;
                border-radius: 10px 10px 10px 10px;
            }
            
            .home_food_inner h3 {
                font-size: 40px;
                font-weight: 600;
                line-height: 1.2em;
                padding: 20px 0
            }
            
            .home_food_inner {
                padding: 0 10px;
            }
            
            #home_best_sellar .slick-slide img {
                width: 200px;
                height: 200px;
            }
            
            section#home_best_sellar {
                background: #F8F8F8;
                padding: 100px 0;
                margin-top: 60px;
            }
            
            #home_best_sellar h3,
            #home_our_story h3 {
                font-size: 36px;
                padding-bottom: 60px;
                color: #000;
                text-align: center;
            }
            
            .choose-our-chips-content-area h3 {
                /* font-weight: 700; */
            }
            
            .single-chips-item h3 {
                font-size: 24px !important;
                margin-top: 20px;
                margin-bottom: 10px;
                padding-bottom: 0 !important;
            }
            
            .choose-our-chips-content-area img {
                -moz-transition: all .9s;
                -webkit-transition: all .9s;
                max-width: 200px;
                padding: 6px;
                transition: all .9s;
            }
            
            .choose-our-chips-content-area .pricing {
                font-size: 17px;
            }
            
            .choose-our-chips-content-area .pricing span {
                font-weight: 700;
            }
            
            .single-chips-item:hover img {
                -moz-transform: scale(1.1);
                -webkit-transform: scale(1.1);
                transform: scale(1.1);
            }
            
            .chipsofic-small-btn {
                background: #0678C2;
                border: 1px solid #0678C2;
                color: #fff;
                font-weight: 700;
                margin-top: 10px;
                padding: 10px 20px;
                text-transform: uppercase;
            }
            
            .chipsofic-small-btn:hover,
            .chipsofic-small-btn:focus {
                color: #000;
                border-color: #fff500;
                background: #fff500;
            }
            
            span.elementor-icon-list-text {
                color: #000000;
                padding-left: 15px;
            }
            
            ul.icon-list-items {
                padding: 0;
            }
            
            ul.icon-list-items li {
                list-style: none;
            }
            
            .about-us-section h3 {
                font-size: 20px !important;
                font-weight: 400;
                padding-bottom: 0 !important;
                margin-bottom: 0;
                text-align: left !important;
            }
            
            .about-us-section h3 span {
                font-weight: 700;
                padding-left: 15px;
            }
            
            .about-us-section p {
                padding-top: 5px;
            }
            
            .about-us-section img {
                -moz-transition: all .9s;
                -webkit-transition: all .9s;
                display: block;
                margin: 0 auto;
                max-width: 380px;
                transition: all .9s;
            }
            
            .about-us-section img:hover {
                -moz-transform: scale(1.1);
                -webkit-transform: scale(1.1);
                transform: scale(1.1);
            }
            
            .about_us_banner {
                height: 50vh !important;
            }
            
            section#talk_now {
                background-image: url(../img/about_talk.jpg);
                background-repeat: no-repeat;
                padding: 100px 0;
                background-size: cover;
                position: relative;
                clear: both;
            }
            
            #talk_now h3 {
                margin-bottom: 0;
                color: #fff;
                font-size: 40px;
                font-weight: 400;
                line-height: 1.2em;
            }
            
            section#talk_now span {
                color: #fff;
            }
            
            .overlay {
                background-color: #000000;
                opacity: 0.5;
                height: 100%;
                width: 100%;
                top: 0;
                left: 0;
                position: absolute;
                z-index: 0;
            }
            
            .let_talk_main {
                z-index: 1;
                margin-right: auto;
                margin-left: auto;
                position: relative;
            }
            
            .let_talk_main a {
                font-size: 15px;
                fill: #000000;
                color: #000000;
                background-color: #FFFFFF;
                font-size: 16px;
                font-weight: 700;
                border-radius: 5px 5px 5px 5px;
                padding: 20px 40px 20px 40px;
                display: inline-block;
                margin-top: 30px;
                transition: all 0.2s;
                text-transform: uppercase;
            }
            
            .let_talk_main a:hover,
            .let_talk_main a:focus {
                color: #000;
                border-color: #fff500;
                background: #fff500;
            }
            
            .product_details p {
                margin-bottom: 0;
            }
            
            .number-input.number-input button.minus {
                padding-left: 10px;
            }
            
            .number-input.number-input {
                border: 1px solid #ced4da;
                /* width: 8.6rem; */
                border-radius: .25rem;
                width: 125px;
            }
            
            .rating {
                padding-left: 0;
            }
            
            .number-input button {
                -webkit-appearance: none;
                background-color: transparent;
                border: none;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                cursor: pointer;
                margin: 0;
                position: relative;
            }
            
            .number-input.number-input input[type=number] {
                max-width: 4rem;
                padding: .5rem;
                border: 1px solid #ced4da;
                border-width: 0 1px;
                font-size: 1rem;
                height: 2rem;
                color: #495057;
            }
            
            figure.view.rounded.z-depth-1.main-img {
                -webkit-box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important;
                box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important;
                margin: 80px 0;
                text-align: center;
            }
            
            .product_details {
                margin: 80px 0;
            }
            
            .product_details h5 {
                font-size: 32px;
            }
            
            .main-img img.img-fluid.z-depth-1 {
                /* padding: 40px 0; */
                max-width: 70%;
                margin: 0 auto;
                text-align: center;
            }
            
            .rating li {
                display: inline-block;
            }
            
            .classic-tabs .nav.tabs-primary {
                background-color: #fff !important;
            }
            
            .classic-tabs .nav.tabs-primary li.nav-item {
                border-bottom: 1px solid #dee2e6;
                font-weight: 600;
            }
            
            .classic-tabs .nav.tabs-primary li a.active {
                color: #0678C2 !important;
                border-color: #0678C2;
            }
            
            .classic-tabs .nav li a.active {
                color: #fff;
                border-bottom: 3px solid;
            }
            
            .classic-tabs .nav li a {
                display: block;
                padding: 20px 24px;
                font-size: 13px;
                color: rgba(255, 255, 255, .7);
                text-align: center;
                text-transform: uppercase;
                border-radius: 0;
            }
            
            .text-primary {
                color: #0678C2 !important;
            }
            
            .product_details .btn-primary {
                background: #0678C2 !important;
            }
            
            .classic-tabs .nav.tabs-primary li a {
                color: #6c757d;
                font-weight: 600;
            }
            
            .classic-tabs {
                width: 100%;
            }
            
            .classic-tabs .tab-content {
                padding: 1.5rem 0;
            }
            
            .md-form.md-outline {
                position: relative;
                margin-top: 1.5rem;
                margin-bottom: 1.5rem;
            }
            /* // login page css  */
            
            .login-block {
                background: #fff;
                float: left;
                width: 100%;
                padding: 50px 0;
            }
            
            .banner-sec {
                /* background: url(https://static.pexels.com/photos/33972/pexels-photo.jpg) no-repeat left bottom; */
                background-size: cover;
                min-height: 500px;
                border-radius: 0 10px 10px 0;
                padding: 0;
            }
            
            .login-block .container {
                /* background: #F8F8F8;
            border-radius: 10px; */
                /* box-shadow: 15px 20px 0px rgba(0, 0, 0, 0.1); */
            }
            
            .login-index #hero {
                height: 20vh !important;
            }
            
            .carousel-inner {
                border-radius: 0 10px 10px 0;
            }
            
            .carousel-caption {
                text-align: left;
                left: 5%;
            }
            
            .login-sec {
                padding: 50px 30px;
                position: relative;
                max-width: 90% !important;
                margin: 0 auto;
                background: #F8F8F8;
            }
            
            .login-sec .copy-text {
                font-size: 16px;
                text-align: center;
                float: left;
                width: 100%;
                margin-top: 40px;
                line-height: 2;
            }
            
            .login-sec .copy-text i {
                color: #FEB58A;
            }
            
            .login-sec .copy-text a {
                color: #37517e;
                text-decoration: underline;
            }
            
            .login-sec h2 {
                margin-bottom: 30px;
                font-weight: 800;
                font-size: 30px;
                color: #37517e;
            }
            
            .login-sec h2:after {
                content: " ";
                width: 100px;
                height: 5px;
                background: #0678C2;
                display: block;
                margin-top: 20px;
                border-radius: 3px;
                margin-left: auto;
                margin-right: auto
            }
            
            .btn-login {
                background: #DE6262;
                color: #fff;
                font-weight: 600;
            }
            
            .banner-text {
                width: 70%;
                position: absolute;
                bottom: 40px;
                padding-left: 20px;
            }
            
            .banner-text h2 {
                color: #fff;
                font-weight: 600;
            }
            
            .banner-text h2:after {
                content: " ";
                width: 100px;
                height: 5px;
                background: #FFF;
                display: block;
                margin-top: 20px;
                border-radius: 3px;
            }
            
            .banner-text p {
                color: #fff;
            }
            /* // cart page design  */
            
            section.cart--page,
            .about--section {
                padding: 80px 0;
            }
            
            .cart--page h3,
            .about--section h3,
            #contact-page h3 {
                text-align: center;
                padding: 0 0 30px 0;
                font-size: 38px;
            }
            
            .paras-cart .cart {
                font-weight: 300;
                -webkit-box-shadow: 0 10px 20px 0 rgb(0 0 0 / 5%);
                box-shadow: 0 10px 20px 0 rgb(0 0 0 / 5%);
                border-radius: .375rem;
            }
            
            .paras-cart p {
                margin-bottom: 0 !important;
            }
            
            .cart--page a:hover,
            .cart--page:focus {
                color: #37517e;
            }
            /* //aboutus css  */
            
            .about--img img {
                width: 90%;
                border-style: solid;
                border-width: 10px 10px 10px 10px;
                border-color: #0678C2;
                border-radius: 500px 500px 500px 500px;
            }
            
            div#about_main {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            
            .about--content h4 {
                font-size: 34px;
                color: #0678C2;
                padding-bottom: 20px;
            }
            /* //contact page  */
            
            .contact--details {
                transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
                margin: 0px 0 0px 0px;
                padding: 40px 20px 40px 20px;
                background: #F3F5FA;
                text-align: center;
                border-radius: 10px 10px 10px 10px;
            }
            
            .contact--details i {
                font-size: 30px;
                margin-bottom: 20px;
            }
            
            div#map--section {
                padding-top: 70px;
            }
            
            .contact-map iframe {
                height: 400px;
                width: 100%;
            }