@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

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

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;

}

a {
    text-decoration: none;
        color: #eec044;
}

:root {
    --primary-color: #4BAF47;
    --secondary-color: #EEC044;
}

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

.form-control:focus {
    box-shadow: none;
}
/****** Loader Start *******/
.loader-screen {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background: #21242D;
    z-index: 9999999;
    display: block;
    left: 0;
    right: 0;
}

#loader {
    -webkit-animation-name: spinner;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: center;
    margin: 0 auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 30%;
    max-width: 300px;
}

/****** Loader End *******/


/* common btn */

.common-btn {
    display: block;
    background-color: var(--primary-color);
    width: 180px;
    display: block;
    margin: 30px auto;
    padding: 15px 10px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

a.common-btn:hover {
    background: var(--secondary-color);
    color: #000;
}

/* common-heading */

.heading {
    margin-bottom: 30px;
}

.heading h6 {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.heading h4 {
    color: #000;
    font-size: 33px;
    font-weight: 800;
    margin-top: 10px;
    /*letter-spacing: -2px;*/
}

.heading h4 span {
    color: var(--primary-color);
}


/* top bar */

.top-bar {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.top-bar h4 {
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 800;
    padding: 7% 0 0 0;
}

.top-bar .logo img {
    width: 95px;
}

.menu-bar {
    padding: 0;
    height: 60px;
    background: url(assets/images/header-bg.png);
    width: 100%;
    height: 82px;
    margin: 0 0 -20px 0;
    position: relative;
    z-index: 9;
    background-repeat: no-repeat;
}

.menu-toggle {
    display: none;
}

.menu {
    text-align: center;
    margin: 0;
    padding: 0;
}

.menu.slide-right {
    right: 0;
}

.menu li {
    display: inline-block;
    position: relative;
}

ul.menu li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    display: block;
    padding: 26px 17px;
}

.menu li.active a,
.menu li a:hover,
.menu li a:focus,
.menu li.active a {
    color: #4baf47;
}


.header-contact ul {
    display: flex;
    justify-content: flex-end;
    margin: 26px 0px 0 0px;
}

.header-contact ul li {
    margin: 0 10px;
    list-style: none;
}

.header-contact a i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 12px;
}

.header-contact a:hover i,
.header-contact a:focus i {
    background: #000;
}

/****sticky****/
.sticky {
    position: fixed !important;
    width: 100%;
    top: 0px;
    z-index: 999;
    padding: 0;
    background: #fff;
    width: 100%;
    height: auto;
    margin: 0;
    background-repeat: no-repeat;
}
.sticky ul.menu li a {
    padding: 14px 17px;
}

/*********/

/* banner */

.main-banner {
    position: relative;
}
.banner-slider .item {
    position: relative;
    padding-bottom: 40%;
}
.banner-slider .item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-slider .owl-prev {
    background: url(assets/images/prev.png) !important;
    background-repeat: no-repeat !important;
    height: 60px;
    width: 60px;
    text-indent: 10000px !important;
    display: inline-block !important;
    position: absolute;
    left: 6%;
    top: 40%;
    background-size: 70% !important;
}

.banner-slider .owl-next {
    background-image: url(assets/images/nxt.png) !important;
    height: 60px;
    width: 60px;
    text-indent: 10000px !important;
    display: inline-block !important;
    position: absolute;
    right: 6%;
    top: 40%;
    background-repeat: no-repeat !important;
    background-size: 70% !important;
}

.img-overlay {
    position: absolute;
    content: '';
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    top: 0;
}

.site-btn {
    margin: 40px 0;
}

.banner-txt {
    position: absolute;
    top: 25%;
    z-index: 999;
    width: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-txt h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    text-align: center;
}

.banner-txt h1 span {
    color: var(--secondary-color);
}

img.banner-icon {
    width: 230px !important;
    float: right;
    margin-right: 17%;
    position: relative !important;
    object-fit: contain !important;
}

.banner-txt p {
    color: #fff;
    font-weight: 300;
    padding: 10px 0px 10px 0;
}

.main-banner .site-btn {
    text-align: center;
    clear: both;
    margin: 60px 0 0 0;
}

.site-btn a {
    background: #4baf47;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 5px;
}

.site-btn a:hover,
.common-btn a:focus {
    background: #000;
    color: #fff;
}

/* about us */

.about-us {
    padding: 80px 0;
}

.about-us .text-box .common-btn {
    display: inline-block;
    margin: 30px 0;
}

.about-us .img-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.about-us .img-box-1 {
    border-top-left-radius: 70px;
}

.about-us .img-box-2 {
    border-top-right-radius: 70px;
}

.about-us .img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.text-box p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

/* home cta */

.home-cta {
    max-width: 100%;
    /* min-height: 582px; */
    padding: 120px 0 80px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/images/home-cta.png);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-cta .text-box {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.home-cta .text-box h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}


/* solution */

.solution {
    padding: 80px 0;
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/images/solution-bg.png);
}


.accordion-button:not(.collapsed) {
    background-color: #F8F7F0;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.accordion-button {
    background-color: #F8F7F0;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.accordion-item .accordion-button {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 800;
}


.accordion-body {
    background-color: #FFF3D3;
    font-size: 13px;
    color: #000;
}

.blog-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 215px;
    object-fit: cover;
}

.accordion-item {
    margin-top: 10px;
}
.accordion-button:not(.collapsed),.accordion-button:focus {
    box-shadow: none;
}
.solution .img-box {
    max-width: 75%;
    display: block;
    margin-right: 0;
    overflow: hidden;
    float: right;
    border-radius: 20px;
    position: relative;
}

.solution .img-box .solution-call {
    background-color: #EEC044;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    display: flex;
    justify-self: center;
    align-items: center;
    padding: 10px;
    flex-direction: column;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.solution .img-box .solution-call a {
    color: #fff;
    font-size: 20px;
    margin-top: 5px;
    font-weight: bold;
}

.solution .img-box .solution-call h6 {
    color: #fff;
}

.solution .img-box img {
    width: 100%;
    object-fit: cover;
}


/* home product */

.home-product {
    max-width: 100%;
    padding: 80px 0 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* min-height: 680px; */
    background-image: url(assets/images/products-bg.png);
}

.home-product .product-box .img-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 10%) 0px 3px 8px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    cursor: pointer;
}

.home-product .product-box .img-box img {
    width: 130px;
    object-fit: contain;
    height: 190px;
    margin: 0 auto;
    display: block;
}

.home-product .product-box .text-box h5 {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 700;
}

.home-product .common-btn {
    margin-top: 40px;
    width: 200px;
}

/* hoeme blog */

.home-blog {
    padding: 80px 0;
    background-color: #FFF3D3;
}


.blog-container .publist-date h6 {
    margin-left: 25px;
}

.blog-container .text-box {
    padding: 20px;
    background-color: #fff;
}

.blog-container .img-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.blog-container .blog-date-box {
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.blog-container .blog-date-box .date {
    padding: 10px;
    background-color: var(--secondary-color);
}


.blog-container .blog-date-box .date h4 {
    font-size: 30px;
}

.blog-container .blog-date-box .month-year {
    padding: 10px 15px;
    background-color: var(--primary-color);
}

.blog-container .blog-date-box .month-year h5 {
    font-size: 12px;
}

.blog-container .img-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-link a {
    color: #000;
    font-weight: bold;
}


.blog-carousel .owl-next {
    font-size: 30px !important;
    width: 35px !important;
    height: 35px !important;
    background: var(--secondary-color) !important;
    display: inline-block !important;
    line-height: 0px !important;
    color: #fff !important;
    border-radius: 0 !important;
}

.blog-carousel .owl-prev {
    font-size: 30px !important;
    width: 35px !important;
    height: 35px !important;
    background: var(--secondary-color) !important;
    display: inline-block !important;
    line-height: 0px !important;
    color: #fff !important;
    border-radius: 0 !important;
}


.blog-carousel .owl-nav {
    position: absolute;
    top: -17%;
    right: -5px;
}

.video-container .video source {
    height: 100%;
}


/* contact */

.home-contact {
    padding: 80px 0;

}

.map-col {
    padding-right: 0;
}

.contact-col {
    padding-left: 0;
}

.home-contact .map-container {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.home-contact .map-container iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.home-contact .contact-box {
    padding: 50px 60px;
    background-color: #f4f4f4;
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    background-image: url(assets/images/contact-bg.png);
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    width: 100%;
    font-size: 13px;
    border: none;
    padding: 15px 10px;
    margin-bottom: 15px;
    resize: none;
}

.contact-form form input[type="submit"] {
    background-color: var(--primary-color);
    display: block;
    margin: 0px 0;
    padding: 12px 30px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

.contact-form form input[type="submit"]:hover,
.contact-form form input[type="submit"]:focus {
    background: var(--secondary-color);
    color: #000;
}



/* footer cta */

.footer-cta {
    padding: 40px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/images/footer-cta-bg.png);
}

.footer-cta .heading {
    text-align: center;
}

.footer-cta .heading h4 {
    color: #fff;
}

.footer-cta .common-btn {
    background-color: var(--secondary-color);
    margin-bottom: 0;
}


/* footer */

.footer-wrapper {
    padding: 40px 0 40px 0;
    background-color: #24231D;
}

footer .company-info p {
    margin-top: 20px;
    font-size: 12px;
    color: #a6a6a6;
    font-weight: 300;
    line-height: 21px;
}

footer .company-info h5 {
    color: #a6a6a6;
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
}

footer .footer-contact ul {
    padding: 10px 0 0;
    margin: 0;
}

footer .footer-contact ul li {
    list-style: none;
    margin-right: 6px;
    /* margin-top: 30px; */
    display: inline-block;
}

footer .footer-contact i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

footer .footer-col h6 {
    color: #fff;
    position: relative;
    margin-bottom: 30px;
}

footer .footer-col h6::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

footer .footer-col h6::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 40px;
    border-radius: 5px;
}


footer .footer-links ul {
    padding-left: 0;
}

footer .footer-links ul li {
    margin-bottom: 20px;
    line-height: 9px;
}

footer .footer-links ul li a {
    color: #fff;
    font-size: 13px;
    position: relative;
    color: #a6a6a6;
    line-height: 6px;
}

footer .footer-links ul li a:hover,
footer .footer-links ul li a:focus {
    color: var(--primary-color);
}


footer .footer-links ul li a::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f06c";
    margin-right: 8px;
}

.con-each {
    display: flex;
    margin-bottom: 10px;
}

.con-txt p,
.con-txt p a {
    color: #fff;
    font-size: 13px;
    position: relative;
    color: #a6a6a6;
    /* line-height: 6px; */
    line-height: 20px;
    margin: 0;
}

.con-icon i {
    color: var(--secondary-color);
    margin-right: 11px;
}


.subscription-form {
    position: relative;
}

.subscription-form {
    position: relative;
}

.subscription-form input[type="email"] {
    border-radius: 0;
    border-radius: 5px;
    font-size: 12px;
    padding: 14px 60px 14px 10px;
}

.subscription-form button[type="button"], .subscription-form input[type="submit"] {
    width: 50px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    padding: 0;
    border-radius: 0 5px 5px 0;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
}

.copyright {
    padding: 10px;
    background-color: #000;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    color: #fff;
    /* margin-top: 60px; */
    margin: 0;
}

.copyright p,
.copyright p a {
    font-size: 13px;
    color: #A5A49A;
    margin: 0;
}

/* inner opage design start */

/* blog page */

.inner-banner {
    max-width: 100%;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/images/blog-bg.png);
    position: relative;
    background-attachment: fixed;
}

.inner-banner .bg-overflow {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-banner .inner-banner-content h3 {
    color: #fff;
    font-size: 50px;
    text-align: center;
    position: relative;
}

.inner-banner .inner-banner-content h3::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.main-blog {
    padding: 80px 40px;
    background: #f2f2f2;
}

.main-blog .blog-container {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 30px;
}

.main-blog .blog-container .blog-date-box .month-year {
    padding: 10px 5px;
}

.main-blog .blog-container .blog-date-box .date h4 {
    font-size: 20px;
}

.main-blog .blog-container .blog-date-box .month-year h5 {
    font-size: 10px;
}

.main-blog .blog-container .blog-title h4 {
    font-size: 20px;
}

.blog-inner-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-inner-each {
    background: #fff;
    margin-bottom: 30px;
}

.blog-inner-txt {
    padding: 30px;
}

.blog-inner-txt h5 {
    font-size: 13px;
}

.blog-inner-img {
    position: relative;
}

.inner-blog-date {
    position: absolute;
    bottom: -8px;
}

.inner-blog-date h4 {
    background: #eec044;
    text-align: center;
    color: #000;
    padding: 11px;
    font-size: 39px;
    margin: 0;
}

.inner-blog-date h5 {
    background: #4bae46;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    padding: 10px;
}

.blog-inner-txt h5 span {
    float: right;
    font-weight: 700;
    color: #4bae46;
    font-size: 11px;
}

.blog-inner-txt h2 {
    font-weight: 800;
    font-size: 23px;
    padding: 10px 0;
    letter-spacing: -1px;
}

.blog-inner-txt a {
    color: #4bae46;
    font-weight: 800;
    font-size: 13px;
}

.blog-inner-txt a:hover,
.blog-inner-txt a:focus {
    color: #000;
}





/* pagination */

.pagination-outer {
    text-align: center;
    margin-top: 30px;
}

.pagination {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    position: relative;
}

.pagination li a.page-link {
    color: #666;
    background: #ddd;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    height: 35px;
    width: 35px;
    padding: 0;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease 0s;
}

.pagination li:first-child a.page-link,
.pagination li:last-child a.page-link {
    font-size: 30px;
    line-height: 32px;
    font-weight: 400;
}

.pagination li a.page-link:hover,
.pagination li a.page-link:focus,
.pagination li.active a.page-link:hover,
.pagination li.active a.page-link,
.pagination li.active span{
    color: #fff;
    background: var(--primary-color);
    box-shadow: 8px 0 15px rgba(0, 0, 0, 0.7) inset;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color:var(--primary-color);
    border-color: transparent;
     box-shadow: 8px 0 15px rgba(0, 0, 0, 0.7) inset;
     width: 35px;
     height: 35px;
     margin: 0 5px;
     border-radius: 5px;
}

.pagination li a.page-link:before {
    content: '';
    background-color: #ddd;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    transform: scaleX(0);
    position: absolute;
    left: 0;
    bottom: -7px;
    transition: all 0.3s ease 0s;
}

.pagination li a.page-link:hover:before,
.pagination li a.page-link:focus:before,
.pagination li.active a.page-link:hover:before,
.pagination li.active a.page-link:before {
    background-color: #9a8478;
    transform: scaleX(1);
}
.pagination li a.next.page-link, 
.pagination li a.prev.page-link {
    font-size: 30px;
    /* width: auto; */
    padding: 0;
    line-height: 30px;
}

/* blog details page */

.blog-details {
    margin: 80px 0 60px;
}

.blog-details .blog-main-img .img-box {
    width: 100%;
    display: block;
    margin: 0 auto 30px;
    overflow: hidden;
}

.blog-details .blog-main-img .img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog-details .author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}
.blog-details .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details .author-social-media ul {
    padding-left: 0;
    display: flex;
    margin-top: 15px;
}

.blog-details .author-social-media ul li {
    list-style: none;
    margin-right: 10px;
}

.blog-details .author-social-media ul li i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

.blog-details .blog-title h2 {
    font-size: 33px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.blog-details p {
    margin: 30px 0px;
    font-size: 13px;
    line-height: 22px;
}

.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 19px;
    margin: 0;
    padding: 0;
}

.blog-content .blog-details-list {
    margin: 30px 0;
    padding-left: 0;
}

.blog-content .blog-details-list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    font-size: 13px;
    line-height: 25px;
}

.blog-content .blog-details-list li::before {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f06c";
    left: 0;
    color: var(--primary-color);
}

.blog-content .img-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.blog-content .img-box img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}


/* main product page */

.main-products {
    padding: 80px 0;
}

.main-products .product-box {
    /* box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px; */
    padding: 0;
    border-radius: 0;
    position: relative;
    transition: 0.5s all;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.main-products .product-box .img-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.main-products .product-box .text-box {
    width: 100%;
    background: var(--primary-color);
    margin: 0 -10px;
    height: 100%;
}

.main-products .product-box .img-box img {
    width: 100%;
    object-fit: contain;
    height: 200px;
    margin: 0 auto;
    display: block;
    padding: 20px 0;
}

.main-products .product-box .text-box {
    width: 100%;
}

.text-box h1 {
    display: none;
}

.main-products .product-box .text-box h5 {
    text-align: left;
    color: #fff;
    padding: 61px 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* contact section */

.contact-section {
    padding: 80px 0 0px;
}

.contact-section .contact-info .contact-info-box {
    padding: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    height: 220px;
    text-align: center;
}

.contact-info-box img {
    width: 60px;
    margin-bottom: 18px;
}

.contact-info-box h4 {
    margin: 0;
    font-weight: 800;
    font-size: 21px;
}

.contact-info-box p,
.contact-info-box p a {
    font-size: 14px;
    padding: 10px 0;
    color: #000;
}

.contact-section .contact-info .contact-info-box i {
    color: var(--primary-color);
    font-size: 35px;
    margin-bottom: 20px;
}


.map-form-box {
    margin-top: 80px;
}

.map-form-box .map-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.map-form-box .map-box iframe {
    width: 100%;
    object-fit: cover;
}

.map-form-box .form-box {
    padding: 30px;
    margin-bottom: 60px;
    background: #f2f2f2;
}

.map-form-box .form-box input[type="text"],
.map-form-box .form-box input[type="email"],
.map-form-box .form-box input[type="tel"] {
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-size: 13px;
    color: #000;
    border-radius: 5px;
}

.map-form-box .form-box textarea {
    border: none;
    resize: none;
    border-radius: 5px;
    font-size: 13px;
    padding: 15px 20px;
}

.map-form-box input[type=submit] {
    display: block;
    background-color: var(--primary-color);
    /* width: 180px; */
    display: block;
    margin: 30px auto 0;
    padding: 16px 50px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
}

.map-form-box input[type=submit]:hover {
    background: #000;
    color: #fff;
}

section.map-container iframe {
    width: 100%;
    height: 350px;
    margin: 0 0 -7px 0;
}

/* main about page  */

.main-about {
    padding: 80px 0;
}


.main-img-box {
    position: relative;
}


.main-about .img-box-1 {
    max-width: 70%;
    display: block;
    overflow: hidden;

}

.main-about .img-box-1 img {
    width: 100%;
    object-fit: cover;
    object-fit: cover;
}

.main-about .img-box-2 {
    max-width: 60%;
    display: block;
    overflow: hidden;
    position: absolute;
    bottom: -8%;
    right: 10%;
}

.main-about .img-box-2 img {
    width: 100%;
    object-fit: cover;
    object-fit: cover;
}

.main-about .common-btn {
    margin-left: 0;
}

.main-about .text-box p {
    margin-bottom: 30px;
}

.main-about .text-box ul {
    padding-left: 0;
    margin-bottom: 30px;
}

.main-about .text-box ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.main-about .text-box ul li::before {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f06c";
    left: 0;
    color: var(--primary-color);
}

.our-work {
    padding: 100px 0 0px;
    position: relative;
}

.our-work .text-box-para {
    width: 80%;
    position: relative;
    margin-left: 50%;
    margin-bottom: 10%;
    margin-top: 5%;
}

.our-work::before {
    content: '';
    position: absolute;
    width: 33%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/images/main-about-img-4.jpg);
}

.our-work .img-sm-screen .img-box {
    display: none;
}

.our-work .img-box {
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.our-work .img-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.our-work .sm-text-box {
    width: 100%;
    height: 450px;
    background-color: #1F1E17;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.our-work .sm-text-box h5 {
    text-align: left;
}
.newsletter-container .input-group {
    display: block !important;
}
/*** products pagination (20-11-24) ***/
/*.pagination {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-top: 20px;*/
/*}*/

/*.pagination a, .pagination span {*/
/*    margin: 0 5px;*/
/*    padding: 10px 15px;*/
/*    border: 1px solid #ccc;*/
/*    color: #000;*/
/*    text-decoration: none;*/
/*}*/

/*.pagination a:hover {*/
/*    background-color: #f0f0f0;*/
/*}*/

/*.pagination .current {*/
/*    background-color: #000;*/
/*    color: #fff;*/
/*}*/
/*** products pagination ends ***/
.cat-products li {
    cursor: pointer;
}
.cat-products li:hover {
    color: #4bae46;
}
#prod_detail_modal .modal-dialog {
    max-width: 700px;
    width: 97%;
    border-radius: 2rem;
}
#prod_detail_modal .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid;
    z-index: 2;
}
#prod_detail_modal .modal-body {
    display: flex;
    gap: 20px;
    padding: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
#prod_detail_modal .product-info-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
#prod_detail_modal .product-info-each h6 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}
#prod_detail_modal .product-info-each p {
    font-size: 14px;
}
#prod_detail_modal .product-img-wrap {
    width: 220px;
    position: relative;
    padding-bottom: 50%;
    border: 1px solid #ccc;
    border-radius: 10px;
}
#prod_detail_modal .product-img-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}
#prod_detail_modal .product-info-wrap {
    width: calc(100% - 250px);
}

@media screen and (max-width: 575px) {
    #prod_detail_modal .product-img-wrap {
        width: 100%;
        margin: 0 auto;
    }
    #prod_detail_modal .product-info-wrap {
        width: 100%;
    }
    #prod_detail_modal .modal-body {        
        gap: 15px;
        padding: 1rem;
    }
}