@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Saira", sans-serif;
}




/* varialbe creation */

:root {
    --primarycolor: #23262f;
    --secondarycolor: #ffffff;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}


img {
    object-fit: cover;
    height: auto;
    width: 100%;
}




html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #286f6c;
}

/* commmon part */
.d_flex {
    display: flex;
}

.jc_space_btwn {
    justify-content: space-between;
}

.jc_cntn_cntr {
    justify-content: center;
}

.item_center {
    align-items: center;
}

/* Container */

.container {
    max-width: 1270px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}



h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    color: var(--primarycolor);
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 170%;
}



.upper-up-btn-wrapper {
    position: fixed;
    bottom: 100px;
    right: 30px;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
}

.upper-up-btn-wrapper a {
    color: #fff;
    background-color: #286F6C;
    padding: 13px 20px;
    border-radius: 50px;
}

/* Navbar */
.nav_bar {
    width: 100%;
    position: absolute;
    left: 0;
    top: 28px;
    z-index: 9999;
}

.nav_wrapper .nav_left img {
    object-fit: cover;
}

.nav_right {
    margin-right: 50px;
}

.nav_right ul {
    gap: 61px;
}

.nav_right ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondarycolor);
    transition: all 0.4s;
}

.nav_right ul li a:hover {
    color: #3d8884;
    transition: all 0.4s;
}

.nav_right .activee {
    color: #99e7e3 !important;
}

.nav_right ul li a:active {
    color: blue;
}

.nav_left figure img {
    max-height: 57px;
    max-width: 174px;
    object-fit: contain;
}

/* banner */

.banner {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;

}

.banner_wrapper {
    width: 70%;
    padding-top: 245px;
    padding-bottom: 313px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner .container .banner_wrapper h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 120%;
    color: var(--secondarycolor);
    margin-bottom: 36px;
    text-align: center;
}

.banner .container .banner_wrapper p {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: var(--secondarycolor);
    margin-bottom: 90px;
    /* margin-left: 30px; */
    width: 72%;
    text-align: center;
}

.container .banner_wrapper .banner-btn a {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1%;
    color: var(--secondarycolor);
    padding: 14px 80px;
    text-transform: capitalize;
    border-radius: 10px;
    background-color: rgba(226, 226, 226, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* for shine effect */
    display: inline-block;
}

/* Shine effect */
.container .banner_wrapper .banner-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-25deg);
}

/* Hover Effect */
.container .banner_wrapper .banner-btn a:hover {
    background-color: rgb(61, 136, 132, 0.7);
    transform: scale(1.05);
    /* slight zoom */
}

.container .banner_wrapper .banner-btn a:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}




.frame_wrapper {
    position: relative;
}

.frame_wrapper .frame {
    width: 100%;
    position: absolute;
    top: -116px;
    justify-content: space-between;
    background-color: #286f6c;
    border-radius: 20px;
    padding: 72px 111px;
}

.frame_wrapper .frame .box {
    text-align: center;
    position: relative;
}

.frame_wrapper .frame .box h2 {
    color: var(--secondarycolor);
    line-height: 120%;
    margin-bottom: 5px;
}

.frame_wrapper .frame .box p {
    line-height: 130%;
    letter-spacing: 1%;
    color: var(--secondarycolor);
}

.frame_wrapper .frame .after_box::after {
    content: "";
    width: 1px;
    height: 100px;
    position: absolute;
    background-color: var(--secondarycolor);
    top: 6px;
}

.container .frame .first_box::after {
    left: 200px;
}

.container .frame .second_box::after {
    left: 241px;
}

.container .frame .third_box::after {
    left: 185px;
}



.features {
    padding-top: 140px;
}

.features-wrapper {
    padding: 74px 0;
    gap: 100px;
    align-items: flex-start;
}


.features-wrapper .left-part {
    width: 50%;
}

.features-wrapper .left-part img {
    border-radius: 5px;
}

/* .features-wrapper figure img {
    height: 443px;
    width: 554px;
    object-fit: cover;
    border-radius: 5px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));

} */

.features-wrapper .features-content {
    width: 50%;
}

.features-wrapper .features-content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    color: var(--primarycolor);
    text-transform: capitalize;
    margin-top: 9px;
}

.features-wrapper .features-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 170%;
    color: var(--primarycolor);
    margin-bottom: 35px;
}


.features-content ul li span {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.features-content ul li p {
    margin-left: 32px;
}


.features-wrapper .features-content ul li .fa-solid {
    margin-right: 10px;
}


/* home-sec-two */
.home-sec-two {
    padding-top: 20px;
}

.home-sec-two-container {
    display: flex;
    padding-left: 100px;
    position: relative;
    gap: 80PX;
}

.home-sec-two .first-box-content {
    width: 25%;
    padding-top: 40px;
}

.home-sec-two .card-wrapper {
    max-width: 1026px;
}

.home-sec-two .card-wrapper .card {
    width: 265px;
    height: 400px;
}

.home-sec-two .owl-carousel .owl-nav.disabled {
    display: block;
}

.home-sec-two .owl-carousel .owl-nav button.owl-prev {
    display: none;
}

.home-sec-two .owl-carousel .owl-nav button.owl-next {
    border-bottom: 1px solid black;
    position: absolute;
    top: 80%;
    left: 7%;
}

.home-sec-two .first-box-content p {
    margin-top: 75px;
}


.home-sec-two .owl-carousel,
.home-sec-two .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: static;
}



.home-sec-two .first-box-content p {
    font-size: 16px;
}

.home-sec-two .card-wrapper .card img {
    height: 400px;
    border-radius: 5px;
}

.home-sec-two .card-wrapper .card figure {
    position: relative;
}

.home-sec-two .card-wrapper .card figure figcaption {
    font-size: 28px;
    color: #fff;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    text-transform: capitalize;
}

/* product */

.product_container {
    padding-left: 100px !important;
    /* max-width: calc(100% - 100px);
    width: 100%; */
    padding: 70px 0px;
}

.product_container .product_card .product_content {
    color: var(--primarycolor);
}

.product_container .product_card .product_content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 50px;
}


/*manufacture*/

.manufacture {
    padding: 133px 0;
}


.manufacture-content {
    width: 50%;
}

.manufacture-wrapper {
    gap: 50px;
}

.manufacture-wrapper .manufacture-content {
    margin-top: 55px;
}

.manufacture-wrapper .manufacture-content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    color: var(--primarycolor);
    margin-bottom: 30px;
}

.manufacture-wrapper .manufacture-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 170%;
    color: var(--primarycolor);
    margin-top: 35px;
}

.manufacture-wrapper .right-part {
    width: 50%;
}

.manufacture-wrapper .right-part img {
    object-fit: cover;
}



/* product part */
.productt {
    margin-top: -20px;
    padding-bottom: 140px;
}

.productt .product_top_part {
    text-align: center;
    width: 46%;
    padding-bottom: 35px;
}

.productt_top_part h2 {
    line-height: 55%;
    margin-bottom: 16px;
}

.productt_top_part p {
    font-size: 16px;
    line-height: 165%;
}

.productt1-top-wrapper .card {
    width: 285px;
    padding: 30PX 0;
}

.productt1-top-wrapper .card figure img {
    height: 292px;
    width: 285px;
}

.productt1-top-wrapper .card {
    transition: all 0.4s;
}

.productt1-top-wrapper .card:hover {
    transform: scale(1.001);
    transition: all 0.4s;
}

.productt1-top-wrapper .card figure {
    border: 1px solid rgba(16, 38, 55, 0.1);
    border-radius: 20px;
}



.productt1-top-wrapper .card h4 {
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
}

.productt1-top-wrapper .card .ongoingprice {
    font-size: 16px;
    line-height: 130%;
    font-weight: 600;
}

.productt1-top-wrapper .card .oldprice {
    font-size: 14px;
    font-weight: 400;
    line-height: 165%;
    color: var(--primarycolor);
    margin-left: 20px;
    text-decoration: line-through;
}

.productt1-wrapper-main .card-text {
    margin-top: 10px;
}





/* testimonial */

.testimonial {
    padding-top: 45px;
    padding-bottom: 100px;
}

.testimonial_wrapper {
    gap: 42px;
    position: relative;
}

.testimonial_wrapper .coustomer_wrapper {
    gap: 15px;
    margin-top: 36px;
    margin-bottom: 29px;
}



.testimonial_left h2 {
    padding-top: 35px;
}

.testimonial_left {
    width: 52%;
}

.testimonial_left p {
    margin-right: 28px;
}

.testimonial_right {
    width: 48%;
}

.testimonial_right figure {
    padding: 70px 0;
}

.testimonial_arrow_wrapper {
    margin-top: 31px;
    margin-bottom: 68px;
}

.testimonial_arrow_wrapper .fa-solid {
    font-size: 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    padding: 13px 14px;
    cursor: pointer;
}

.testimonial_arrow_wrapper .fa-arrow-left {
    margin-right: 24px;
    color: var(--primarycolor);
}

.testimonial_arrow_wrapper .fa-arrow-right {
    color: var(--secondarycolor);
    background-color: #286f6c;
}


.testimonial .coustomer_img_wrapper img {
    height: 80px;
    width: 80px;
}

.testimonial-right-wrapper {
    width: 47%;
}



.testimonial-right-wrapper figure img {
    height: 340px;
    width: 562px;
    border-radius: 6px;
}

.testimonial .owl-nav {
    display: block;
}

.testimonial .owl-carousel .owl-nav {
    position: absolute;
    top: 0;
}

.testimonial .owl-carousel .owl-nav button.owl-prev {
    font-size: 20px;
    background-color: #ffffff;
    padding: 10px 17px !important;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(15, 27, 51, 0.05);
}

.testimonial .owl-carousel .owl-nav button.owl-next {
    font-size: 20px;
    background-color: #286F6C;
    padding: 10px 17px !important;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(15, 27, 51, 0.05);
    color: #ffffff;
    margin-left: 24px;
}

.testimonial .owl-carousel,
.testimonial .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: static;
}

.testimonial .owl-carousel .owl-nav {
    position: absolute;
    left: 2px;
    top: 100%;
}

.coustomer_wrapper .coustomer_details h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 12px;
}

.coustomer_wrapper .coustomer_details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

/* cta */

.cta {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta_content_wrapper {
    justify-content: flex-end;
}

.cta_content {
    padding-top: 100px;
    padding-bottom: 142px;
    width: 50%;
}

.cta_content h2 {
    color: var(--secondarycolor);
    line-height: 135%;
    margin-right: 215px;
}

.cta_content p {
    color: var(--secondarycolor);
    line-height: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

.cta_content input {
    width: 0%;
    border-radius: 8px;
    border: 0;
    outline: 0;
}

.cta_content input::placeholder {
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
}

.cta_content input[type="submit"] {
    text-transform: capitalize;
    color: var(--secondarycolor);
    background-color: var(--primarycolor);
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    padding: 21px 29px;
    margin-left: 22px;
    transition: all 0.4s;
    cursor: pointer;
}

.cta_content input[type="email"] {
    transition: all 0.4s;
}

.cta_content input[type="email"]:hover {
    background-color: #8cbacacb;
    transition: all 0.4s;
}

.cta_content input[type="submit"]:hover {
    background-color: #286f6c;
    transition: all 0.4s;
}

.cta .cnt-wrapper input[type="email"] {
    width: 50%;
    padding: 20px 20px;
}

.cta .cnt-wrapper input[type="submit"] {
    width: 25%;
}

.cta .cnt-wrapper #emailMsg {
    color: red;
    display: none;
    text-align: start;
}

/* footer */

footer {
    background-color: var(--primarycolor);
}

footer .container {
    max-width: 1172px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

footer .container .footer_wrapper_main {
    color: var(--secondarycolor);
}

.footer_wrapper_main ul li a {
    color: var(--secondarycolor);
}

/* .footer_wrapper_main ul li a:hover {
    color: #286f6c;
    transition: all 0.4s ease;
} */

.social_icon {
    gap: 50px;
}

.social_icon_wrapper ul li a {
    transition: all 0.4s ease;
}

.social_icon_wrapper ul li a:hover {
    color: #286f6c;
    transition: all 0.4s ease;
}



.social_icon_wrapper {
    padding-right: 19px;
}

.social_icon .fa-brands {
    width: 14px;
    height: 16px;
}

.footer_top_part {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer_top_part h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.08px;
    font-family: "Raleway", sans-serif;
}

.footer_bottom_part {
    position: relative;
}

.footer_bottom_part::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #eaeef3;
    left: 1px;
    top: 0;
}

.footer_bottom_part {
    gap: 112px;
    padding-top: 102px;
    padding-bottom: 100px;
}

.footer_bottom_part .footer_box {
    width: 20%;
}

.footer_bottom_part .footer_box ul h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: "Raleway", sans-serif;
}

.footer_bottom_part .footer_box ul li a {
    font-size: 14px;
    font-size: 400;
    line-height: 20%;
    font-family: "Raleway", sans-serif;
}

.footer_bottom_part .footer_box li a:active {
    color: blue !important;
}

.footer_bottom_part .footer_box ul li a {
    transition: all 0.4s;
}

.footer_bottom_part .footer_box ul li a:hover {
    color: #286f6c;
    transition: all 0.4s;
}

.footer_bottom_part .footer_box ul li {
    margin-bottom: 20px;
}

.copyright p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20%;
    text-align: center;
    font-family: "Inter", sans-serif;
    padding: 20px 0;
}


.productt .owl-carousel .owl-nav button.owl-prev,
.productt .owl-carousel .owl-nav button.owl-next {
    padding: 13px 18px !important;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.productt .owl-carousel .owl-nav button.owl-prev {
    transition: all 0.4s;
}

.productt .owl-carousel .owl-nav button.owl-prev:hover {
    color: #23262f46;
    transition: all 0.4s;
}

.productt .owl-carousel .owl-nav button.owl-next {
    transition: all 0.4s;
}

.productt .owl-carousel .owl-nav button.owl-next:hover {
    color: #23262f46;
    transition: all 0.4s;
}

.productt .owl-carousel .owl-nav button.owl-next {
    margin-left: 30px;
}

.productt .owl-carousel .owl-nav {
    position: absolute;
    left: 50%;
    bottom: -81px;
    transform: translateX(-50%);
}

.productt1-top-wrapper .card figure {
    position: relative;
}

.productt1-top-wrapper .card figure .fa-plus {
    font-size: 15px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 8px 8px;
    background-color: #9696973f;
    border-radius: 50px;
    cursor: pointer;
}

.productt1-top-wrapper .card figure .msg {
    display: none;
    color: green;
    font-weight: bold;
    position: absolute;
    bottom: 15px;
    left: 10px;
    font-size: 12px;
}



/* responsive */
/* responsive */
/* responsive */
/* responsive */


.toggler {
    display: none;
}

.productt1-wrapper-main .owl-dots .owl-dot span {

    height: 10px;
    width: 10px;
    display: inline-block;
    border: 1px solid black;
    border-radius: 50px;
}

.productt1-wrapper-main .owl-dots .owl-dot.active span {

    height: 10px;
    width: 10px;
    display: inline-block;
    background-color: black;
    border-radius: 50px;
}

.productt1-top-wrapper .owl-dots {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* transform: rotateX(45deg); */
}



@media screen and (max-width:1399px) {

    .home-sec-two-container {
        display: flex;
        flex-direction: column;
        padding-left: 0;
    }

    .home-sec-two-container {
        max-width: 1270px;
        width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }

    .home-sec-two .card-wrapper {
        max-width: 100%;
        padding-top: 70px;
    }


    .home-sec-two .card-wrapper .card {
        width: 100%;
    }

    .home-sec-two-container .first-box-content {
        width: 100%;
    }

    .home-sec-two .owl-carousel .owl-nav button.owl-next {
        border-bottom: 1px solid black;
        position: absolute;
        top: 138px;
        left: 18px;
    }

    .home-sec-two .first-box-content p {
        margin-top: 10px;
        font-size: 16px;
    }

    .home-sec-two .card-wrapper {
        max-width: 100%;
        padding-top: 56px;
    }

    .home-sec-two-container {
        gap: 6PX;
    }

    .productt1-top-wrapper .card {
        width: 285px;
        padding: 30PX 0;
        width: 100%;
    }



}


@media screen and (max-width:1199px) {

    /* banner */
    .banner .container .banner_wrapper h1 {
        font-size: 50px;
        margin-bottom: 17px;
    }

    .banner .container .banner_wrapper p {
        margin-bottom: 47px;
    }

    .container .banner_wrapper .banner-btn a {
        padding: 14px 60px;
    }

    .frame_wrapper .frame {
        padding: 64px 57px;
    }

    .features-wrapper {
        align-items: center;
    }

    .product_container {
        padding-left: 15px !important;
        padding: 70px 0px;
    }

    .manufacture-wrapper {
        gap: 50px;
        align-items: center;
    }


    .cta_content {
        width: 100%;
    }

    .cta_content {
        text-align: center;
    }

    .cta_content h2 {
        margin-right: 0px;
    }

    .footer_bottom_part {
        flex-wrap: wrap;
        justify-content: normal;
    }

    .footer_bottom_part {
        gap: 0px;
    }

    .features-wrapper {
        padding: 35px 0;
    }

    .product_container {
        padding: 28px 0px;
    }

    .manufacture {
        padding-top: 40px;
    }

    .manufacture {
        padding-top: 125px;
    }

    .productt {
        padding-top: 50px;
        margin-top: -50px;
    }


    .cta .cnt-wrapper input[type="submit"] {
        width: 24%;
    }

    .cta .cnt-wrapper #emailMsg {
        color: red;
        display: none;
        text-align: center;
    }
}





@media screen and (max-width:991px) {


    /* navabar */
    .nav_bar {
        background-color: #286f6c;
        top: 0;
        padding: 15px 0;
    }

    .nav_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav_right ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .toggler {
        display: block;
        color: var(--secondarycolor);
        font-size: 25px;
    }

    .nav_left {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav_right {
        display: none;
    }

    .d-menu {
        display: block;
    }

    .nav_left figure img {
        height: 35px;
    }

    .sticky {
        position: fixed !important;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }


    /* banner */

    .banner_wrapper {
        width: 80%;
    }

    .banner .container .banner_wrapper h1 {
        font-size: 48px;
    }

    .banner .container .banner_wrapper p {
        width: 100%;
    }

    .frame_wrapper .frame {
        flex-wrap: wrap;
        gap: 50px;
    }

    .frame_wrapper .frame .box {
        width: 40%;

    }

    .frame_wrapper.frame.after_box::after {
        display: none;
    }

    .frame_wrapper .frame {
        top: -168px;
    }

    .frame_wrapper .frame {
        padding: 49px 57px;
    }

    .frame_wrapper .second_box::after {
        display: none;
    }

    .container .frame .first_box::after {
        left: 123%;
    }

    .container .frame .third_box::after {
        left: 123%;
    }

    /* features */
    .features-wrapper {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .features-wrapper .left-part {
        width: 100%;
    }

    .features-wrapper .features-content {
        width: 100%;
    }

    .features-wrapper .features-content h2 {
        font-size: 38px;
        margin-bottom: 5px;
    }

    .features-wrapper {
        gap: 40px;
    }

    .product_wrapper {
        flex-wrap: wrap;
        /* justify-content: center; */
        justify-content: space-between;
    }

    .product_card {
        width: 22%;
    }

    .product_container .product_card .product_content h2 {
        font-size: 38px;
        margin-bottom: 8px;
    }

    .product_btn {
        margin-top: 31px;
    }

    .manufacture-wrapper {
        flex-direction: column;

    }

    .manufacture-content {
        width: 100%;
    }

    .manufacture-wrapper .right-part {
        width: 100%;
    }

    .manufacture-wrapper .manufacture-content h2 {
        font-size: 38px;
        margin-bottom: 0;
    }

    .manufacture-wrapper .manufacture-content p {
        margin-top: 6px;
    }

    .productt1-wrapper .card h4 {
        font-size: 22px;
    }

    .product_top_part h2 {
        font-size: 38px;
    }

    .testimonial_wrapper {
        flex-direction: column;
    }

    .testimonial_left {
        width: 100%;
    }



    .cta_content h2 {
        font-size: 38px;
    }

    .footer_bottom_part {
        gap: 46px;
    }

    .footer_bottom_part {
        padding-top: 55px;
        padding-bottom: 40px;
    }

    .manufacture {
        padding-top: 5px;
        padding-bottom: 15px;
    }

    .product_container {
        padding: 7px 0px;
    }

    .features {
        padding-bottom: 41px;
    }

    .testimonial_left h2 {
        padding-top: 15px;
    }

    .productt .bottom_wrapper {
        margin-bottom: 55px;
    }


    .section-four .card-wrapper .card {
        height: 400px;
        width: 100%;
    }

    /* tetstimonial */
    .testimonial-right-wrapper {
        width: 100%;
    }

    .testimonial_left h2 {
        font-size: 38px;
    }

    .testimonial_wrapper .coustomer_wrapper {
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .testimonial_wrapper {
        gap: 30px;
        position: relative;
    }

    .testimonial .owl-carousel .owl-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 103%;
    }

    .testimonial_left p {
        margin-right: 0;
    }

    .productt {
        padding-top: 70px;
        padding-bottom: 120px;
    }

    .productt .product_top_part {
        padding-bottom: 20px;
    }

    .home-sec-two .first-box-content {
        width: 100%;
        padding-top: 10px;
    }

    .features {
        padding-bottom: 20px;
    }

    .features-wrapper {
        gap: 15px;
    }

    .features-wrapper {
        padding: 55px 0;
    }

    .home-sec-two .owl-carousel .owl-nav button.owl-next {
        border-bottom: 1px solid black;
        position: absolute;
        top: 110px;
        left: 18px;
    }

    .home-sec-two {
        margin-top: -40px;
    }

    .productt {
        padding-top: 111px;
    }

    .testimonial {
        padding-top: 11px;
        /* padding-bottom: 100px; */
    }

    .testimonial .owl-carousel .owl-nav {
        top: 105%;
    }

    .home-sec-two .card-wrapper .card figure figcaption {
        font-size: 25px;
    }
}



@media screen and (max-width:768px) {



    /* banner */
    .banner_wrapper {
        width: 100%;
    }

    .banner .container .banner_wrapper h1 {
        font-size: 40px;
    }

    .banner .container .banner_wrapper p {
        margin-left: 0px;
    }

    .frame_wrapper .frame .box h2 {
        font-size: 35px;
    }

    .frame_wrapper .frame {
        padding: 37px 86px;
    }

    .frame_wrapper .frame {
        top: -155px;
    }

    .frame_wrapper .frame .after_box::after {

        height: 80px;
    }

    .features-wrapper .features-content h2 {
        font-size: 33px;
    }

    .features-wrapper {
        gap: 15px;
    }

    .product_card {
        width: 48%;
    }

    .product_wrapper {
        flex-wrap: wrap;
        /* justify-content: center; */
        justify-content: flex-start;
    }

    .product_container .product_card .product_content h2 {
        font-size: 33px;
        margin-bottom: 8px;
    }

    .product_card figcaption {
        font-size: 25px;
    }

    .product_btn {
        margin-top: 23px;
    }

    .manufacture-wrapper .manufacture-content h2 {
        font-size: 33px;
    }

    .manufacture-wrapper {
        gap: 40px;
    }


    .productt1-wrapper .card {
        width: 45%;
        justify-content: center;
    }

    .productt1-wrapper-main .productt1-wrapper {
        justify-content: center;
    }

    .productt .product_top_part {
        text-align: center;
        width: 100%;
    }

    .product_top_part h2 {
        font-size: 33px;
    }

    .productt .product_top_part {
        padding-bottom: 11px;
    }

    .productt .bottom_wrapper {
        margin-top: 45px;
    }

    .productt1-top-wrapper .card {
        padding: 20PX 0;
    }

    .cta_content h2 {
        font-size: 33px;
    }

    .cta_content input {
        padding: 21px 135px 20px 24px;
    }

    .cta_content input[type="submit"] {
        padding: 21px 20px;
    }

    .footer_bottom_part .footer_box {
        width: 28%;
    }

    .footer_bottom_part {
        gap: 38px;
    }

    .footer_top_part {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer_bottom_part {
        padding-bottom: 19px;
    }

    .features-wrapper {
        padding: 12px 0;
    }

    .manufacture {
        margin-top: -31px;
    }

    .productt {
        padding-top: 30px;
    }


    .section-four .card-wrapper .card {
        height: 400px;
        width: 100%;
    }

    .home-sec-two h2 {
        font-size: 38PX;
    }

    /* testimonial */
    .testimonial_left h2 {
        font-size: 38px;
    }

    .testimonial_left h2 {
        font-size: 33px;
    }

    /* testimonial */

    .testimonial .coustomer_img_wrapper img {
        height: 70px;
        width: 70px;
    }

    .productt1-top-wrapper .card h4 {
        font-size: 22px;
        line-height: 130%;
        font-weight: 600;
    }

    .cta .cnt-wrapper input[type="email"] {
        width: 50%;
        padding: 17px 10px;
    }

    .cta_content input[type="submit"] {
        padding: 17px 20px;
    }

    .cta_content input[type="submit"] {
        margin-left: 11px;
    }

    /*  */
    .home-sec-two {
        margin-top: -20px;
    }

    .manufacture {
        margin-top: -6px;
    }

    .productt {
        padding-top: 80px;
    }

    .testimonial {
        padding-top: 10px;
        padding-bottom: 100px;
    }

    .testimonial .owl-carousel .owl-nav {
        top: 104%;
    }

    .home-sec-two .card-wrapper .card figure figcaption {
        font-size: 24px;
    }

}


@media screen and (max-width:575px) {

    /* navbar */
    .nav_left figure img {
        height: 30px;
    }

    .toggler {
        font-size: 24px;
    }

    .banner .container .banner_wrapper h1 {
        font-size: 38px;
    }

    .container .banner_wrapper .banner-btn a {
        padding: 13px 45px;
    }

    .nav_right ul li a {

        font-weight: 500;
    }

    .banner {
        background-position: right;
    }

    .overlay {
        background-color: #286f6c36;
    }

    .frame_wrapper .frame {
        padding: 40px 39px;
    }

    .features-wrapper .features-content h2 {
        font-size: 31px;
    }

    .features-content ul li p {
        margin-left: 0px;
    }

    .product_card {
        width: 100%;
    }

    .product_container .product_card .product_content h2 {
        font-size: 31px;
    }

    .product_btn {
        margin-top: 18px;
    }

    .manufacture-wrapper .manufacture-content h2 {
        font-size: 31px;
    }

    .productt1-wrapper .card {
        width: 100%;
        justify-content: center;
    }

    .productt1-wrapper-main .productt1-wrapper {
        justify-content: center;
    }

    .product_top_part h2 {
        font-size: 31px;
    }


    .productt .bottom_wrapper .arrow_wrapper .fa-solid {
        font-size: 20px;
    }



    .features-wrapper figure img {
        height: 400px;
    }

    .testimonial_right figure img {
        height: 400px;
    }

    .cta_content h2 {
        font-size: 31px;
    }

    .cta_content input {
        padding: 15px 135px 20px 24px;
    }

    .cta_content input[type="submit"] {
        padding: 18px 20px;
    }

    .cta_content p {
        margin-bottom: 34px;
    }

    .cta-inp-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cta-inp-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer_bottom_part .footer_box {
        width: 46%;
    }

    .footer_bottom_part {
        gap: 25px;
    }

    .footer_wrapper_main .footer_top_part {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .social_icon {
        gap: 35px;
    }

    .footer_bottom_part {
        padding-bottom: 19px;
    }

    .features {
        padding-top: 169px;
        padding-bottom: 20px;
    }



    .section-four .card-wrapper .card {
        height: 400px;
        width: 100%;
    }


    .home-sec-two .owl-carousel .owl-nav button.owl-next {
        border-bottom: 1px solid black;
        position: absolute;
        top: 95px;
        left: 18px;
    }

    .home-sec-two h2 {
        font-size: 31PX;
    }


    .testimonial_left h2 {
        font-size: 31px;
    }

    .productt .owl-carousel .owl-nav {
        bottom: -64px;
    }

    .productt {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .productt .owl-carousel .owl-nav button.owl-next {
        margin-left: 17px;
    }

    .productt {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .testimonial .coustomer_img_wrapper img {
        height: 60px;
        width: 60px;
    }

    .cta .cnt-wrapper {
        display: flex;
        /* justify-content: center; */
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .cta .cnt-wrapper input[type="email"] {
        width: 80%;
        padding: 17px 10px;
    }

    .cta .cnt-wrapper input[type="submit"] {
        width: 40%;
    }

    .productt {
        padding-top: 77px;
    }

    .productt1-top-wrapper .card figure img {
        height: 287px;
        width: 250px;
    }

    .cta .cnt-wrapper input[type="email"] {
        width: 80%;
        padding: 17px 20px;
    }

    .upper-up-btn-wrapper a {
        padding: 11px 18px;
    }
}

@media screen and (max-width:480px) {
    .frame_wrapper .frame {
        padding: 30px 19px;
    }

    .frame_wrapper .frame .box p {
        font-size: 18px;
    }

    .product_card figcaption {
        font-size: 23px;
    }

    .features {
        padding-top: 145px;
    }

    .home-sec-two .owl-carousel .owl-nav button.owl-prev {
        border-bottom: 1px solid black;
        position: absolute;
    }

    .productt {
        padding-top: 77px;
    }

}

@media screen and (max-width:394px) {
    .home-sec-two .owl-carousel .owl-nav button.owl-next {
        border-bottom: 1px solid black;
        position: absolute;
        top: 124px;
        left: 18px;
    }

    .home-sec-two .card-wrapper {
        max-width: 100%;
        padding-top: 65px;
    }

    .cta_content input[type="submit"] {
        font-size: 18px;
    }

}

@media screen and (max-width:420px) {
    .features-wrapper {
        padding-top: 29px;
    }
}


@media screen and (max-width:361px) {
    .features-wrapper {
        padding-top: 30px;
    }
}