@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Index Page Code */
header .header-bottom-bar {
    background-color: #ffffff;
    padding: 10px 0px 2px 0px;
}

header .header-bottom-bar .navbar .navbar-links .navbar-dropdown a {
    color: #000000;
	font-weight: 600;
}

header .header-bottom-bar .bottom-bar img {
    height: 80px;
}


/* slider  */
.slider_img {
    margin-top: 100px;
}

.slider_img .hero-slider-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider_img .hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
}

.slider_img .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slider_img .hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider_img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0.35) 100%
    );
    top: 0;
    left: 0;
}

.slider_img .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.slider_img .hero-left {
    width: 55%;
    color: #fff;
}

.slider_img .sub-title {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffcc00;
}

.slider_img .hero-left h1 {
    font-size: 58px;
    line-height: 68px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slider_img .hero-left p {
    font-size: 17px;
    line-height: 30px;
    width: 85%;
    margin-bottom: 30px;
    color: white;
}

.slider_img .buttons_hero {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.slider_img .hero-btn {
    display: inline-block;
    padding: 14px 25px;
    background: #028d4f;
    color: #fff;
    border-radius: 6px;
    transition: .3s;
    border: 2px solid #028d4f;
}

.slider_img .hero-btn1 {
    padding: 12px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
    transition: .3s;
    font-weight: 600;
}

.slider_img .hero-btn1:hover,
.slider_img .hero-btn:hover {
    background: #fff;
    color: #028d4f;
    border: 2px solid #028d4f;
}

.slider_img .hero-btn2 {
    color: #ffffff;
}

.slider_img .hero-right {
    width: 35%;
}

.slider_img .hero-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slider_img .hero-form-box h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.slider_img .hero-form-box input,
.slider_img .hero-form-box textarea {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.slider_img .hero-form-box textarea {
    height: 100px;
    resize: none;
}

.slider_img .hero-form-box button {
    width: 100%;
    padding: 14px;
    background: #028d4f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}



/* Products */
.products {
    padding: 80px 0px;
}

.header_section {
    text-align: center;
    margin-bottom: 40px;
}

.header_section .title {
    font-size: 20px;
    color: #028d4f;
    font-weight: 600;
    /* font-family: "Open Sans", sans-serif; */
}

.header_section .line {
    height: 4px;
    width: 80px;
    background: #028d4f;
    border-radius: 20px;
    margin: 0px auto;
    margin-bottom: 10px;
}

.header_section .subtitle {
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
    /* font-family: "Open Sans", sans-serif; */
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #0000003b;
}

.product-card img {
    width: 100%;
    height: 200px;
    border: none !important;
    object-fit: cover;
    padding: 10px;
    border-radius: 20px;
}

.product-card h5 {
    margin-bottom: 0px;
    font-family: "Open Sans", sans-serif;
    padding: 10px 10px 20px 10px;
    font-size: 16px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}







/* Trusted Logos */

.trustedby {
    padding: 80px 0px;
    /* background-color: #ebebeb; */
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7))
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;

    .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(250px * 14);
    }

    .slide {
        height: 100px;
        width: 250px;
    }
}


/* Testimonial Section Start */
.testimonial_section {
    padding: 80px 0px;
    background-color: #00000012;
}

.testimonial_section .card .bi {
    font-size: 60px;
    color: #028d4f;
}

.carousel img {
    width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.carousel-inner {
    padding: 1em;
}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.carousel .card {
    margin: 0 0.5em;
    border: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: #028d4f;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* Testimonial Section End */


/* Tools Section Start */

.tools {
    padding: 60px 0px 30px 0px;
}

.tools .tools_icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.tools .tools_icon i {
    height: 70px;
    width: 70px;
    background-color: #028d4e27;
    color: #028d4f;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools .card {
    border-radius: 15px;
}

.tools .card .card-title {
    font-size: 20px;
    color: #028d4f;
}

.tools .card .card-text {
    font-size: 16px;
    line-height: 1.2;
}

/* Tools Section End */

/* Contact Hero Section */
.hero_contact {
    padding: 0px 0px 40px 0px;
}

.hero_contact .hero_section {
    background-color: #028d4f;
    height: 100%;
    padding: 60px 40px;
    border-radius: 20px;
}

.hero_contact .hero_section h3 {
    font-size: 32px;
    color: #ffffff;
}

.hero_contact .hero_section p {
    font-size: 20px;
    color: #ffffff;
    padding-top: 10px;
}

.hero_contact .hero_btn {
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid #ffffff;
    color: #028d4f;
    transition: all 0.4s ease;
}

.hero_contact .hero_btn:hover {
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}





/* Xtra */

#xtra {
    padding: 80px 0;
    background: #f6f7f9;
}

.product-slider {
    position: relative;
}

.product-slide {
    display: none;
    /* background:#fff; */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #000000b0;
    /* box-shadow:0 10px 40px rgba(0,0,0,0.08); */
}

.product-slide.active {
    display: block;
}

.product-gallery {
    position: relative;
}

.main-product-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 5px;
    cursor: pointer;
    border-radius: 8px;
}

.product-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-content p {
    color: #555;
    line-height: 1.7;
}

.feature-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 10px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0b7d32;
}

.spec-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

.spec-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.cta-btns {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-btns a {
    padding: 12px 20px;
    background: #0b7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.slide-prev,
.slide-next,
.img-prev,
.img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b7d32;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.slide-prev {
    left: -15px;
}

.slide-next {
    right: -15px;
}

.img-prev {
    left: 10px;
}

.img-next {
    right: 10px;
}

@media(max-width:768px) {
    .product-content h2 {
        font-size: 24px;
    }

    .feature-box {
        grid-template-columns: 1fr;
    }
}




/* Responsive Design Start */

@media (min-width: 1200px) and (max-width: 1600px) {}

@media (min-width: 992px) and (max-width: 1199px) {
    header .header-bottom-bar {
        padding: 0px;
    }

    header .bottom-bar {
        padding-top: 20px;
    }

    header .header-bottom-bar .bottom-bar img {
        height: 55px;
        width: 100%;
    }

    #mobile-menu i {
        color: #ffffff;
        padding: 4px 10px;
        background-color: #028d4f;
    }
    
    .slider_img {
        margin-top: 80px;
    }

    .slider_img .hero-slider {
        height: auto;
        min-height: 650px;
    }

    .slider_img .hero-slide {
        padding: 40px 0;
        align-items: center;
        background-position: center center;
    }

    .slider_img .container {
        width: 100%;
        max-width: 800px;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
    }

    .slider_img .hero-left {
        width: 52%;
    }

    .slider_img .hero-right {
        width: 43%;
    }

    .slider_img .sub-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .slider_img .hero-left h1 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 14px;
    }

    .slider_img .hero-left p {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .slider_img .buttons_hero {
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }

    .slider_img .hero-btn,
    .slider_img .hero-btn1 {
        padding: 10px 18px;
        font-size: 13px;
    }

    .slider_img .hero-btn2 {
        font-size: 14px;
    }

    .slider_img .hero-form-box {
        padding: 22px 18px;
    }

    .slider_img .hero-form-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .slider_img .hero-form-box .col-lg-6,
    .slider_img .hero-form-box .col-lg-12 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .slider_img .hero-form-box input,
    .slider_img .hero-form-box textarea {
        padding: 11px 12px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .slider_img .hero-form-box textarea {
        height: 80px;
    }

    .slider_img .hero-form-box button {
        padding: 11px;
        font-size: 14px;
    }

    .testimonial_section .container{
        max-width: 900px;
    }

    .header_section .title {
        font-size: 18px;
    }

    .header_section .subtitle,
    .hero_contact .hero_section h3 {
        font-size: 30px;
        line-height: 1;
    }

    .hero_contact .hero_section p {
        line-height: 1;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero_contact .hero_btn {
        padding: 10px 20px;
    }

    .product-slide {
        padding: 20px;
    }

    .main-product-img {
        height: 250px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 1rem;
        width: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 2rem;
        height: 2rem;
    }

    .tools .col-md-4 {
        width: 30%;
    }
    .tools .tools_icon i{
        height: 50px;
        width: 50px;
        font-size: 20px;
    }
    .tools .card .card-title{
        font-size: 14px;
    }

    .tools .col-md-8 {
        width: 70%;
    }

    .thumbs img {
        height: 50px;
        width: 50px;
    }

    .tools .card {
        padding: 0px;
        height: 75px;
    }

    .hero_contact .justify-content-end {
        justify-content: center !important;
    }
    .product-card img{
        height: 150px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    header .header-bottom-bar {
        padding: 0px;
    }

    header .bottom-bar {
        padding-top: 20px;
    }

    header .header-bottom-bar .bottom-bar img {
        height: 55px;
        width: 100%;
    }

    #mobile-menu i {
        color: #ffffff;
        padding: 4px 10px;
        background-color: #028d4f;
    }

    .slider_img {
        margin-top: 80px;
    }

    .slider_img .hero-slider {
        height: auto;
        min-height: 650px;
    }

    .slider_img .hero-slide {
        padding: 40px 0;
        align-items: center;
        background-position: center center;
    }

    .slider_img .container {
        width: 100%;
        max-width: 800px;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
    }

    .slider_img .hero-left {
        width: 52%;
    }

    .slider_img .hero-right {
        width: 43%;
    }

    .slider_img .sub-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .slider_img .hero-left h1 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 14px;
    }

    .slider_img .hero-left p {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .slider_img .buttons_hero {
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }

    .slider_img .hero-btn,
    .slider_img .hero-btn1 {
        padding: 10px 18px;
        font-size: 13px;
    }

    .slider_img .hero-btn2 {
        font-size: 14px;
    }

    .slider_img .hero-form-box {
        padding: 22px 18px;
    }

    .slider_img .hero-form-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .slider_img .hero-form-box .col-lg-6,
    .slider_img .hero-form-box .col-lg-12 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .slider_img .hero-form-box input,
    .slider_img .hero-form-box textarea {
        padding: 11px 12px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .slider_img .hero-form-box textarea {
        height: 80px;
    }

    .slider_img .hero-form-box button {
        padding: 11px;
        font-size: 14px;
    }

    .testimonial_section .container{
        max-width: 900px;
    }

    .header_section .title {
        font-size: 18px;
    }

    .header_section .subtitle,
    .hero_contact .hero_section h3 {
        font-size: 30px;
        line-height: 1;
    }

    .hero_contact .hero_section p {
        line-height: 1;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero_contact .hero_btn {
        padding: 10px 20px;
    }

    .product-slide {
        padding: 20px;
    }

    .main-product-img {
        height: 250px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 1rem;
        width: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 2rem;
        height: 2rem;
    }

    .tools .col-md-4 {
        width: 30%;
    }

    .tools .col-md-8 {
        width: 70%;
    }

    .thumbs img {
        height: 50px;
        width: 50px;
    }

    .tools .card {
        padding: 10px;
    }

    .hero_contact .justify-content-end {
        justify-content: center !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    header .header-bottom-bar {
        padding: 0px;
    }

    header .bottom-bar {
        padding-top: 20px;
    }

    header .header-bottom-bar .bottom-bar img {
        height: 35px;
        width: 100%;
    }

    #mobile-menu i {
        color: #ffffff;
        padding: 4px 10px;
        background-color: #028d4f;
    }

    .slider_img {
        margin-top: 70px;
    }

    .slider_img .hero-slider {
        height: 150vh;
    }

    .slider_img .hero-slide {
        position: absolute;
        padding: 30px 0;
        align-items: flex-start;
        background-position: center center;
        background-size: cover;
    }

    .slider_img .container {
        width: 94%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
    }

    .slider_img .hero-left,
    .slider_img .hero-right {
        width: 100%;
    }

    .slider_img .hero-left {
        text-align: center;
    }

    .slider_img .sub-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .slider_img .hero-left h1 {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .slider_img .hero-left p {
        width: 100%;
        font-size: 17px;
        line-height: 23px;
        margin-bottom: 18px;
    }

    .slider_img .buttons_hero {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .slider_img .hero-btn,
    .slider_img .hero-btn1 {
        width: 100%;
        text-align: center;
        padding: 11px 15px;
        font-size: 13px;
    }

    .slider_img .hero-btn2 {
        display: inline-block;
        margin-top: 5px;
        font-size: 14px;
    }

    .slider_img .hero-form-box {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .slider_img .hero-form-box h3 {
        font-size: 21px;
        margin-bottom: 15px;
        text-align: center;
    }

    .slider_img .hero-form-box .row {
        margin: 0;
    }

    .slider_img .hero-form-box .col-lg-6,
    .slider_img .hero-form-box .col-lg-12 {
        padding: 0;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider_img .hero-form-box input,
    .slider_img .hero-form-box textarea {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .slider_img .hero-form-box textarea {
        height: 85px;
    }

    .slider_img .hero-form-box button {
        padding: 12px;
        font-size: 14px;
    }


    .header_section .title {
        font-size: 16px;
    }

    .header_section .subtitle,
    .hero_contact .hero_section h3 {
        font-size: 24px;
        line-height: 1;
    }

    .hero_contact .hero_section p {
        line-height: 1;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero_contact .hero_btn {
        padding: 10px 20px;
    }

    .product-slide {
        padding: 20px;
    }

    .main-product-img {
        height: 250px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 1rem;
        width: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 2rem;
        height: 2rem;
    }

    .tools .col-md-4 {
        width: 30%;
    }

    .tools .col-md-8 {
        width: 70%;
    }

    .thumbs img {
        height: 50px;
        width: 50px;
    }

    .tools .card {
        padding: 10px;
    }

    .hero_contact .justify-content-end {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 300px;
    }

    header .header-bottom-bar {
        padding: 0px;
    }

    header .bottom-bar {
        padding-top: 10px;
    }

    header .header-bottom-bar .bottom-bar img {
        width: 260px;
        height: 100%;
    }

    #mobile-menu i {
        color: #ffffff;
        padding: 4px 10px;
        background-color: #028d4f;
    }

    .slider_img {
        margin-top: 70px;
    }
	.slider_img .overlay{
		linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.75) 35%,
        rgba(0, 0, 0, 0.75) 70%,
        rgba(0, 0, 0, 0.75) 100%
    )
	}

    .slider_img .hero-slider {
        height: 350px;
    }

    .slider_img .hero-slide {
        position: absolute;
        padding: 30px 0;
        align-items: flex-start;
        background-position: center center;
        background-size: cover;
    }

    .slider_img .container {
        width: 94%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
    }

    .slider_img .hero-left,
    .slider_img .hero-right {
        width: 100%;
    }

    .slider_img .hero-left {
        text-align: center;
    }

    .slider_img .sub-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .slider_img .hero-left h1 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .slider_img .hero-left p {
        width: 100%;
        font-size: 14px;
        line-height: 23px;
        margin-bottom: 18px;
    }

    .slider_img .buttons_hero {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .slider_img .hero-btn,
    .slider_img .hero-btn1 {
        width: 100%;
        text-align: center;
        padding: 11px 15px;
        font-size: 13px;
    }

    .slider_img .hero-btn2 {
        display: inline-block;
        margin-top: 5px;
        font-size: 14px;
    }

    .slider_img .hero-form-box {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .slider_img .hero-form-box h3 {
        font-size: 21px;
        margin-bottom: 15px;
        text-align: center;
    }

    .slider_img .hero-form-box .row {
        margin: 0;
    }

    .slider_img .hero-form-box .col-lg-6,
    .slider_img .hero-form-box .col-lg-12 {
        padding: 0;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider_img .hero-form-box input,
    .slider_img .hero-form-box textarea {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .slider_img .hero-form-box textarea {
        height: 85px;
    }

    .slider_img .hero-form-box button {
        padding: 12px;
        font-size: 14px;
    }


    .header_section .title {
        font-size: 16px;
    }

    .header_section .subtitle,
    .hero_contact .hero_section h3 {
        font-size: 24px;
        line-height: 1;
    }

    .hero_contact .hero_section p {
        line-height: 1;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero_contact .hero_btn {
        padding: 10px 20px;
    }

    .product-slide {
        padding: 20px;
    }

    .main-product-img {
        height: 250px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 1rem;
        width: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 2rem;
        height: 2rem;
    }

    .tools .col-md-4 {
        width: 30%;
    }

    .tools .col-md-8 {
        width: 70%;
    }

    .thumbs img {
        height: 50px;
        width: 50px;
    }

    .tools .card {
        padding: 10px;
    }

    .hero_contact .justify-content-end {
        justify-content: center !important;
    }
}

/* Responsive Design End */













.xtra_btn{
 background-color: #028d4f;
 color: #ffffff;
 padding: 14px 30px;
 border-radius: 10px;
 transition: all 0.4s ease-in;
 border: 2px solid #028d4f;
}
.xtra_btn:hover{
border: 2px solid #01552f;
background-color: #ffffff;
color: #028d4f;
}
.xtra_light_btn{}