/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #d94196;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #d94196;
    border-color: #d94196;
}

.page-header1 {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../newimages/head1.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header2 {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../newimages/head2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header3 {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../newimages/head4.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header4 {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../newimages/header6.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #389442;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #389442;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #389442 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #389442;
    border-color: #389442;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f9c43;
    background-color: white;
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: white;
    background-color: #d94196;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: #d94196;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.content-box {
    background-color: rgba(133, 127, 127, 0.425);
    /* White background with slight transparency */
    border: 1px solid #ddd;
    /* Light border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    padding: 20px;
    border-radius: 10px;
    /* Rounded corners */
}

/* products starts */
:root {
    --card-width: 320px;
    --card-height: 460px;
    --gap: 24px;
    --transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.cont {
    position: relative;
    background-color: rgb(227, 229, 231);

}


.slider-container {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0;
    margin-right: 2rem;
}

.slider-wrapper {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 5px;
    padding-bottom: 10px;
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--gap);
    padding: 2rem;
}



.card:hover {
    transform: translateY(-5px);
}

.buttons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 50;
}

.buttons button {
    background: #06bbcc;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.buttons button:hover {
    background: #2c2bd4;
}

.buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.para {
    text-align: center;
    /* Centers the text */
    max-width: 800px;
    /* Sets a maximum width for better readability */
    margin: 0 auto;
    /* Centers the paragraph horizontally */
    padding: 5px 20px;
    /* Adds padding on the left and right */
    line-height: 1.6;
    /* Improves readability */
}

@media screen and (min-width: 680px) and (max-width: 979.98px) {
    .slider-wrapper {
        max-width: 100%;
    }

    .card {
        flex: 0 0 calc(50% - var(--gap)/2);
    }

}

@media screen and (max-width: 679.98px) {
    .slider-wrapper {
        max-width: min(var(--card-width), 100%);
    }

    .card {
        width: calc(100% - 2rem);
        min-width: auto;
    }
}

@media screen and (max-width: 368px) {
    :root {
        --card-width: 280px;
    }

    .slider-wrapper {
        max-width: 100%;
    }

    .card {
        width: calc(100% - 2rem);
        min-width: auto;
    }
}

@media screen and (min-width: 980px) {

    .slider-wrapper {
        max-width: 100%;
    }

    .card {
        flex: 0 0 calc((100% - var(--gap) * 2) / 3);
    }


}

.card-img1 {
    background-image: url(../newimages/DERIOZ-D\ \ \ \ \ \(SHAEVA-04\)\ CAPS\ CARTON.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img2 {
    background-image: url(../newimages/DERIOZ-D\ \ \ \ \ \(SHAEVA-04\)\ CAPS\ FOIL.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img3 {
    background-image: url(../newimages/ESTRONINE-2\ \ \ \(SHAEVA-02\)\ \ INNER\ TABS\ CARTON.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img4 {
    background-image: url(../newimages/ESTRONINE-2\ \ \ \(SHAEVA-02\)\ Tablet\ foil.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img5 {
    background-image: url(../newimages/ESTRONINE-2\ \ \ \(SHAEVA-02\)\ TABS\ OUTER\ CARTON.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img6 {
    background-image: url(../newimages/EVASIZ-5\ \ \ \(SHAEVA-01\)-TABLET\ CARTON.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img7 {
    background-image: url(../newimages/EVASIZ-M\ \ \ \ \(SHAEVA-03\)\ \ TABS\ CARTON.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img8 {
    background-image: url(../newimages/EVASIZ-M\ \ \ \ \(SHAEVA-03\)\ TABS\ FOIL.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card-img9 {
    background-image: url(../newimages/ITRAQUIL-200\ \ \ \(SHAEVA-05\)\ \ Capsules-FOIL.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

.card {
    position: relative;
    width: 200px;
    /* Set width of card */
    height: 350px;
    background-color: #f4f4f4;
    /* Set default background */
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* Add smooth transition for transform */
}

/* Overlay style */
.card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 136, 214, 0.4);
    /* Dark overlay with transparency */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* On hover, show the overlay */
.card:hover .overlay {
    opacity: 1;
    /* Display the overlay */
}

/* Add some zoom effect on hover */
.card:hover {
    transform: scale(1.1);
    /* Slightly zoom the card on hover */
}

/* Optional: Adjust the appearance of the text on hover */
.card:hover h5,
.card:hover p {
    color: white;
    transition: color 0.3s ease;
}

@media (max-width: 600px) {
    .slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .slider-wrapper {
        display: flex;
        transition: transform 0.3s ease-in-out;
    }

    .slider {
        display: flex;
        gap: 10px;
    }

    .card {
        max-width: 100%;
        /* Ensures cards take up most of the screen width */
        height: 250px;
        /* Adjust as needed */
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        position: relative;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }

    .buttons button {
        background: none;
        border: none;
        cursor: pointer;
    }
}

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

body {
    font-family: Arial, sans-serif;
}

.slider-container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-top: 5rem;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}

.slide {
    min-width: 104%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d94096;
    padding: 20px;

}

/* .content {
    width: 50%;
    padding: 20px;
    height: 300px;
} */

.content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    color: white;
}

/* .image {
    width: 50%;
    height: 320px;
} */

.image img {
    width: 100%;
    height: auto;
    display: block;
    height: 321px;
}

.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background-color: gray;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dot:hover {
    background-color: #181d38;
}

@media screen and (max-width: 768px) {
    .slider-container {
        width: 90%;
        margin: auto;
        overflow: hidden;
        position: relative;
        margin-top: 3rem;
    }

    .slider-wrapper {
        padding: 0 1rem;
    }

    .slider {
        flex-direction: row;
        gap: 15px;
    }

    .card {
        flex: 0 0 calc(50% - 15px);
        width: 100%;
        height: 300px;
    }

    .content {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .slide {
        @media screen and (max-width: 768px) {
            .slider-container {
                width: 90%;
                margin: auto;
                overflow: hidden;
                position: relative;
                margin-top: 3rem;
            }

            .slider-wrapper {
                padding: 0 1rem;
            }

            .slider {
                flex-direction: row;
                gap: 15px;
            }

            .card {
                flex: 0 0 calc(50% - 15px);
                width: 100%;
                height: 300px;
            }

            .content {
                width: 100%;
                text-align: center;
                padding: 15px;
            }

            .content h2 {
                font-size: 20px;
            }

            .content p {
                font-size: 14px;
            }

            .image {
                width: 100%;
                height: auto;
                display: flex;
                justify-content: center;
            }

            .image img {
                width: 90%;
                height: auto;
            }

            .buttons button {
                width: 35px;
                height: 35px;
            }

            .dots-container {
                margin-top: 5px;
            }

            .dot {
                height: 10px;
                width: 10px;
            }
        }

    }

    .content h2 {
        font-size: 20px;
    }

    .content p {
        font-size: 14px;
    }

    .image {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .image img {
        width: 90%;
        height: auto;
    }

    .buttons button {
        width: 35px;
        height: 35px;
    }

    .dots-container {
        margin-top: 5px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}


/* product ends */


.course-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    /* Add space at the bottom */
}

.course-item .btn {
    display: block;
    margin: 0 auto;
    /* Centers the button */
}


/* button color */

.btn-primary:hover {
    color: #f7f5f5;
    background-color: #d94196;
    border-color: #d94196;
}



/* service overlay */
/* Overlay styles */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(233 187 213 / 34%);
    /* Semi-transparent overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.image-container:hover img {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}



.img-fluid {
    width: 100%;
    height: auto;
}


/* contact form */
.custom-image-section {
    padding-right: 15px;
    /* Adjust the right padding of the image section */
}

.custom-image {
    width: 100%;
    /* Make sure the image takes full width */
    height: auto;
}

.custom-form-section {
    padding-left: 15px;
    /* Adjust the left padding of the form section */
}

.contact-form {
    padding: 15px;
    /* Reduce padding for a more compact form */
}

.custom-input {
    border-radius: 10px;
    /* Round the edges of the inputs */
    height: 30px;
    /* Set a fixed height for inputs to reduce the form's height */
}

.form-control {
    padding: 10px 15px;
    /* Reduce padding inside form elements */
}

.custom-btn {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
    padding: 8px 16px;
}

.custom-input1 {
    height: 80px;
    /* Adjust height as needed */
}


/* whatsapp integration starts */
.whatsapp-float img {
    width: 70px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

/* whatsapp integration ends */


/* mission vision starts */
.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: #df97c0;
}

.flip-card {
    background-color: transparent;
    width: 350px;
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    background: #fff;
    padding: 20px;
}

.flip-card-front img {
    width: 325px;
    height: 400px;
    margin-bottom: 10px;
}

.flip-card-back {
    background: #389442;
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
}

.flip-card h3 {
    margin-top: 10px;
    font-size: 20px;
    color: black;
}

.flip-card p {
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
    }

    .flip-card {
        width: 280px;
        height: 350px;
    }

    .flip-card-front img {
        width: 260px;
        height: 350px;
    }

    .flip-card h3 {
        font-size: 18px;
    }

    .flip-card p {
        font-size: 14px;
        padding: 10px;
    }

    .flip-card-back {
        padding: 15px;
    }
}


/* mission vision ends */


/* choode us starts */
.new11 .item span,
.new11 .item  a,
.new11 .item  a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h4 {
    position: relative;
    padding: 0;
    color: #f91942;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.section-head h4:before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f
}

p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.section-head p,
p.awesome_line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.extra-text span {
    font-weight: 700;
    color: #f91942;
}

.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover {
    background: #d94096;
    box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
    color: #fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #f91942;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.20);
    color: #f91942
}

.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #f91942
}

.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #f91942
}

.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #f91942
}

.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #f91942
}

.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #f91942
}

.item p {
    font-size: 15px;
    line-height: 26px;
}

.item h6 {
    margin-bottom: 20px;
    color: #2f2f2f;
}

.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.skills {
    padding-top: 0px;
}

.skills .prog-item {
    margin-bottom: 25px;
}

.skills .prog-item:last-child {
    margin-bottom: 0;
}

.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
}

.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}

.imgs {
    height: 300px;
    width: 300px;
}

.fav1 {
    height: 80px;
    width: 80px;
}

/* chooseus ends */

/* services starts */
.container3 {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.section3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}

.content3 {
    width: 48%;
    height: 200px;
}

.content3 h2,
h3 {
    color: #d94196;
    ;
}

.image3 {
    width: 48%;
    height: 300px;
}

.image3 img {
    width: 90%;
    border-radius: 8px;
    height: 300px;
}

.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .section3 {
        flex-direction: column;
        text-align: center;
        
    }

    .content3,
    .image3 {
        width: 100%;
    }
}



.section3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    
}

.content3 {
    width: 48%;
}

.image3 {
    width: 48%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image3 img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(231 170 204 / 26%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
}

.image3:hover .overlay {
    opacity: 1;
}

.image3:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .section3 {
        flex-direction: column;
        text-align: center;
    }

    .content3,
    .image3 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section3 {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: auto;
    }

    .content3, .image3 {
        width: 100%;
        height: auto;
    }

    .content3 {
        padding: 20px;
        
    }

    .image3 {
        height: auto;
        display: flex;
        justify-content: center;
    }

    .image3 img {
        width: 90%;
        height: auto;
    }

    .overlay {
        font-size: 16px;
        padding: 10px;
    }
}

/* services ends */


.logoheader {
    height: 120px;
    width: 180px;
}

.logofooter {
    height: 150px;
    width: 190px;
}


element.style {}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.btn-lg,
.btn-group-lg>.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem;
}

.btn-primary {
    color: white;
    background-color: #389442;
    border-color: #389442;
}

.text-primary {
    color: #389442 !important;
}

.bg-primary {
    background-color: #389442 !important;
}

.bg-light {
    background-color: #aee3bb7d !important;
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 2.5rem;
        color: #d94196;
    }
}

.mb-0 {
    margin-bottom: 0 !important;
    color: #db3f98;
}


/* NEW */

.productnew.owl-carousel .owl-item img.i11 {
   height: 400px !important;
}

.productnew.owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.productnew .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.productnew .owl-dot.active {
    background: #d94096;
    border-color: #d94096;
}

.productnew  .owl-dots {
    margin-top: 24px;
    display: flex
;
    align-items: flex-end;
    justify-content: center;
}

@media(max-width:768px){
    .productnew.owl-carousel .owl-item img.i11 {
        height: 563px !important;
    }
    .image img {
        width: 90%;
        height: 230px;
        object-fit: cover;
    }
}
