@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --colorOne: #7A1414;
    --colorTwo: #e79248;
}

.my-section {
    padding: 50px 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

p {
    margin: 0;
    font-weight: 500;
}

a {
    text-decoration: none;
}

.para {
    color: var(--colorOne);
    font-weight: 600 !important;
    font-size: 18px !important;
}

.heading {
    font-size: 28px;
    font-weight: 600;
    color: #2B265C;
}

@media (max-width:768px) {

    .my-section {
        padding: 25px 0;
    }

    .para {
        color: var(--colorOne);
        font-weight: 600 !important;
        font-size: 18px !important;
    }

    .heading {
        font-size: 24px;
        font-weight: 600;
        color: #2B265C;
    }
}

/***** Hero Slider Section *****/

.heroSection {
    overflow: hidden;

    .heroSwiper {
        overflow: hidden;

        .heroBanner {

            img {
                width: 100%;
            }
        }

        .swiper-pagination-bullet-active {
            background-color: var(--colorOne);
            width: 20px;
            border-radius: 3px !important;
            -webkit-border-radius: 3px !important;
            -moz-border-radius: 3px !important;
            -ms-border-radius: 3px !important;
            -o-border-radius: 3px !important;
        }

        .swiper-button-next {
            position: absolute;
            width: 41px !important;
            z-index: 10;
            background: white;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
        }

        .swiper-button-prev {
            position: absolute;
            width: 41px;
            z-index: 10;
            background: white;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
        }

        .swiper-button-prev {
            width: 40px;
            height: 40px;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;

            &:hover:after {
                transform: translateX(-5px);
                -webkit-transform: translateX(-5px);
                -moz-transform: translateX(-5px);
                -ms-transform: translateX(-5px);
                -o-transform: translateX(-5px);
            }
        }

        .swiper-button-next {
            right: 10px;
            left: auto;
            width: 40px;
            height: 40px;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;

            &:hover:after {
                transform: translateX(5px);
                -webkit-transform: translateX(5px);
                -moz-transform: translateX(5px);
                -ms-transform: translateX(5px);
                -o-transform: translateX(5px);
            }
        }

        .swiper-button-prev::after {
            content: "\f104";
            font-family: FontAwesome;
            font-size: 20px;
            color: black;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
        }

        .swiper-button-next::after {
            content: "\f105";
            font-family: FontAwesome;
            font-size: 20px;
            color: black;
            z-index: 99;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
        }
    }

    .heroRight {
        height: 100%;

        img {
            height: 100%;
        }
    }
}

@media (max-width:992px) {
    .heroRight {
        height: 100%;

        img {
            display: none;
        }
    }
}

@media (max-width:768px) {

    .heroNav {
        display: none;
    }
}

/***** End Hero Slider Section *****/

/***** Contact Us Section *****/

.contactSection {

    .contactContent {
        margin-bottom: 30px;
        text-align: center;

        h2 {
            margin-bottom: 10px;
            text-align: center;
        }

        p {
            max-width: 900px;
            margin: auto;
        }
    }

    .contactLeft {

        h3 {
            font-size: 22px;
            color: var(--colorOne);
            font-weight: 600;
            margin-bottom: 15px;
        }

        form {

            p {
                margin-bottom: 3px;
                color: black;
            }

            input {
                width: 100%;
                line-height: 40px;
                padding: 0 10px;
                outline: none;
                font-weight: 500;
                border: 1px solid rgba(0, 0, 0, 0.6);
                border-radius: 2px;
                -webkit-border-radius: 2px;
                -moz-border-radius: 2px;
                -ms-border-radius: 2px;
                -o-border-radius: 2px;
            }

            textarea {
                width: 100%;
                padding: 5px 10px;
                border: 1px solid rgba(0, 0, 0, 0.6);
                outline: none;
                border-radius: 2px;
                -webkit-border-radius: 2px;
                -moz-border-radius: 2px;
                -ms-border-radius: 2px;
                -o-border-radius: 2px;
            }

            button {
                background-color: var(--colorOne);
                color: white;
                margin-top: 15px;
                border: none;
                outline: none;
                padding: 6px 15px;
                font-weight: 500;
                border-radius: 2px;
                -webkit-border-radius: 2px;
                -moz-border-radius: 2px;
                -ms-border-radius: 2px;
                -o-border-radius: 2px;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;

                &:hover {
                    scale: 0.9;
                }
            }
        }
    }

    .contactRight {
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        border-radius: 3px;
        padding: 20px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        height: 100%;

        iframe {
            width: 100%;
            height: 100%;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            margin-bottom: -6px;
        }
    }
}

@media (max-width:768px) {

    .contactSection {

        .contactRight {
            box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
            border-radius: 3px;
            padding: 10px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
            height: 100%;

            iframe {
                width: 100%;
                height: 100%;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
                margin-bottom: -6px;
            }
        }
    }

}

/***** End Contact Us Section *****/


/***** Testimoinal Section *****/

.testimoinalSection {
    position: relative;

    &::before {
        position: absolute;
        content: "";
        background-color: #9DC41A;
        width: 100%;
        height: 50%;
        top: 0px;
        z-index: -1;
    }

    .swiper-pagination-bullet {
        background-color: #9cc41a84;
        opacity: 1;
        width: 15px;
        border-radius: 0px !important;
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        -ms-border-radius: 0px !important;
        -o-border-radius: 0px !important;
    }

    .swiper-pagination-bullet-active {
        background-color: #9DC41A;
        width: 25px;
        border-radius: 0px !important;
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        -ms-border-radius: 0px !important;
        -o-border-radius: 0px !important;
    }

    .testimoinalContent {
        margin-bottom: 30px;
        text-align: center;
    }

    .testimoinalSwiper {
        margin-left: 25px;
        background-color: white;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        padding: 50px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;

        .swiper-slide {
            height: auto;
            margin: 25px 0 0 0;

            .testimoinalCard {
                background-color: rgb(255, 255, 255);
                color: rgb(0, 0, 0);
                padding: 40px 25px 20px 25px;
                height: 100%;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
                position: relative;
                box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
                z-index: 1;
                border: 1px solid #9DC41A;
                position: relative;
                text-align: center;

                img {
                    border: 1px solid #9DC41A;
                    position: absolute;
                    top: -25px;
                    width: 50px;
                    height: 50px;
                    left: 50%;
                    transform: translateX(-50%);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                    -webkit-transform: translateX(-50%);
                    -moz-transform: translateX(-50%);
                    -ms-transform: translateX(-50%);
                    -o-transform: translateX(-50%);
                }

                p {
                    font-size: 16px;
                    font-weight: 500;
                }

                h4 {
                    margin-top: 10px;
                    font-size: 20px;
                    font-weight: 600;
                }
            }
        }
    }
}

@media (max-width:768px) {
    .testimoinalSection {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            background-color: #9DC41A;
            width: 100%;
            height: 50%;
            top: 0px;
            z-index: -1;
        }

        .swiper-pagination-bullet {
            background-color: #9cc41a84;
            opacity: 1;
            width: 15px;
            border-radius: 0px !important;
            -webkit-border-radius: 0px !important;
            -moz-border-radius: 0px !important;
            -ms-border-radius: 0px !important;
            -o-border-radius: 0px !important;
        }

        .swiper-pagination-bullet-active {
            background-color: #9DC41A;
            width: 25px;
            border-radius: 0px !important;
            -webkit-border-radius: 0px !important;
            -moz-border-radius: 0px !important;
            -ms-border-radius: 0px !important;
            -o-border-radius: 0px !important;
        }

        .testimoinalContent {
            margin-bottom: 30px;
            text-align: center;
        }

        .testimoinalSwiper {
            margin-left: 0px;
            background-color: white;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
            padding: 35px 25px;
            border-radius: 25px;
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            -o-border-radius: 25px;

            .swiper-slide {
                height: auto;
                margin: 25px 0 0 0;

                .testimoinalCard {
                    background-color: rgb(255, 255, 255);
                    color: rgb(0, 0, 0);
                    padding: 40px 25px 20px 25px;
                    height: 100%;
                    border-radius: 5px;
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    -ms-border-radius: 5px;
                    -o-border-radius: 5px;
                    position: relative;
                    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
                    z-index: 1;
                    border: 1px solid #9DC41A;
                    position: relative;
                    text-align: center;

                    img {
                        border: 1px solid #9DC41A;
                        position: absolute;
                        top: -25px;
                        width: 50px;
                        height: 50px;
                        left: 50%;
                        transform: translateX(-50%);
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                        -webkit-transform: translateX(-50%);
                        -moz-transform: translateX(-50%);
                        -ms-transform: translateX(-50%);
                        -o-transform: translateX(-50%);
                    }

                    p {
                        font-size: 16px;
                        font-weight: 500;
                    }

                    h4 {
                        margin-top: 10px;
                        font-size: 20px;
                        font-weight: 600;
                    }
                }
            }
        }
    }
}

/***** End Testimoinal Section *****/

/***** Counter Section *****/

.counter-bg {
    background-image: url(../img/counter-bg.webp);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding: 75px 0;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        top: 0;
        left: 0;
        z-index: -1;
    }
}

.counter {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(110, 110, 110, 0.1);
    backdrop-filter: blur(2.2px);
    -webkit-backdrop-filter: blur(2.2px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.counter .counter-icon {
    color: white;
    margin: auto;
    width: 60px;
    line-height: 60px;
    font-size: 25px;
    background-color: var(--colorOne);
    border-radius: 75px;
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    -ms-border-radius: 75px;
    -o-border-radius: 75px;
}

.counter .counter-value {
    margin-top: 15px;
    display: block;
    font-size: 28px;
    color: white;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;

    &::after {
        position: absolute;
        content: "\2b";
        font-weight: FontAwesome;
        margin-left: 5px;
    }
}

.counter p {
    color: #fff;
}

/***** End Counter Section *****/

/***** Our Product Section *****/

.prodcutSection {

    .productContent {
        text-align: center;
        margin-bottom: 30px;

        .para {
            margin-top: 5px;
        }

        h2 {
            margin-bottom: 10px;
        }

        p {
            max-width: 875px;
            font-size: 15px;
            margin: auto;
        }
    }

    .productCard {
        text-align: center;

        img {
            margin-bottom: 15px;
            width: 100px;
            height: 100px;
        }

        h3 {
            color: #2B265C;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        p {
            font-size: 15px;

            a {
                color: var(--colorOne);
                font-weight: 600;
            }
        }
    }
}

@media (max-width:768px) {

    .prodcutSection {

        .productContent {
            text-align: center;
            margin-bottom: 20px;

            .para {
                margin-top: 5px;
                font-weight: 600 !important;
            }

            h2 {
                margin-bottom: 5px;
            }

        }

        .productCard {
            text-align: center;

            img {
                margin-bottom: 15px;
                width: 100px;
                height: 100px;
            }

            h3 {
                color: #2B265C;
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 10px;
            }

            p {
                font-size: 15px;
            }

            a {
                display: inline-block;
                margin-top: 10px;
                font-weight: 500;
                color: var(--colorOne);

                i {
                    font-size: 15px;
                }
            }
        }
    }
}

/***** End Our Product Section *****/

.marketSection {

    .marketContent {
        text-align: center;
        margin-bottom: 30px;

        .para {
            margin-top: 5px;
        }

        h2 {
            margin-bottom: 10px;
        }

        p {
            max-width: 875px;
            font-size: 15px;
            margin: auto;
        }
    }

    .marketCard {

        .marketCardImg {
            position: relative;
            overflow: hidden;

            &:hover .overlay {
                opacity: 1;
            }

            &:hover img {
                scale: 1.1;
            }

            img {
                width: 100%;
                transition: all 0.7s linear;
                -webkit-transition: all 0.7s linear;
                -moz-transition: all 0.7s linear;
                -ms-transition: all 0.7s linear;
                -o-transition: all 0.7s linear;
            }

            .overlay {
                position: absolute;
                background-color: rgba(0, 0, 0, 0.5);
                color: white;
                opacity: 0;
                top: 0;
                left: 0%;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 20px;
                transition: all 0.5s linear;
                -webkit-transition: all 0.5s linear;
                -moz-transition: all 0.5s linear;
                -ms-transition: all 0.5s linear;
                -o-transition: all 0.5s linear;

                a {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    flex-direction: column;


                    p {
                        font-size: 18px;
                        color: white;

                        i {
                            color: white;
                        }
                    }

                    h3 {
                        font-size: 24px;
                        font-weight: 600;
                        color: white;
                        margin-bottom: 5px;
                    }
                }
            }
        }

        a {
            font-size: 20px;
            color: black;
            display: inline-block;
            margin-top: 10px;
            font-weight: 600;

            i {
                font-size: 18px;
                color: var(--colorOne);
            }
        }
    }
}


/***** Section *****/

.talkSection {

    .talkContent {
        margin-bottom: 30px;
    }

    .talkLeft {

        img {
            width: 100%;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }
    }

    .tallRight {

        .top {
            color: var(--colorOne);
            font-size: 18px;
            font-weight: 600;
        }

        h2 {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 28px;
            color: #2B265C;
            line-height: 1;
        }

        p {
            margin-bottom: 10px;

            a {
                color: var(--colorOne);
                font-weight: 500;
            }
        }

        .talkLink {
            display: flex;
            gap: 25px;

            a {
                color: var(--colorOne);
                font-weight: 500;
            }
        }

        .talkBtn {
            margin-top: 10px;
            color: #7A1414;
            font-size: 18px;
            font-weight: 500;
            display: inline-block;

            i {
                margin-top: 5px;
            }
        }
    }
}

/***** End Section *****/

.aboutSection {
    background-color: #ffecf5;

    .aboutSectionIn {
        position: relative;

        .aboutLeft {

            img {
                width: 100%;
            }
        }

        .aboutRight {
            background-color: #C1126A;
            padding: 50px;
            margin-left: -100px;
            margin-top: 100px;

            p {
                color: white;
            }

            h2 {
                color: white;
                margin-bottom: 10px;
            }

            a {
                background-color: #CD4188;
                color: white;
                padding: 6px 15px;
                display: inline-block;
                margin-top: 15px;
                font-weight: 500;
                border-radius: 3px;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                -o-border-radius: 3px;

                i {
                    font-size: 14px;
                }
            }
        }
    }
}

@media (max-width:992px) {

    .aboutSection {
        background-color: #ffecf5;

        .aboutSectionIn {
            position: relative;

            .aboutLeft {

                img {
                    width: 100%;
                }
            }

            .aboutRight {
                background-color: #C1126A;
                padding: 25px;
                margin: -25px auto 0;
                width: 90%;

                p {
                    color: white;
                }

                h2 {
                    color: white;
                    margin-bottom: 10px;
                }

                a {
                    background-color: #CD4188;
                    color: white;
                    padding: 6px 15px;
                    display: inline-block;
                    margin-top: 15px;
                    font-weight: 500;
                    border-radius: 3px;
                    -webkit-border-radius: 3px;
                    -moz-border-radius: 3px;
                    -ms-border-radius: 3px;
                    -o-border-radius: 3px;

                    i {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

/***** About Page Section *****/

.aboutPage {

    .aboutPageContent {
        text-align: left !important;
        margin-bottom: 30px;


        h2 {
            margin-bottom: 5px;
        }

        p {
            font-size: 15px;
        }
    }

    .aboutpOne {

        img {
            width: 100%;
        }
    }

    .aboutpTwo {

        h2 {
            font-size: 26px;
            margin-bottom: 5px;
        }
    }
}

.pageTwo {
    background-image: url(../img/about/2.jpg);
    width: 100%;
    height: 100%;
    padding: 100px;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    z-index: 1;

    &::before {
        position: absolute;
        content: "";
        width: 30%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: rgba(158, 0, 0, 0.221);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(2.7px);
        -webkit-backdrop-filter: blur(2.7px);
    }

    h2 {
        color: white;
        font-weight: 600;
    }

    ul {
        padding-left: 16px;

        li {
            font-weight: 500;
            color: white;
            font-size: 18px;
            margin-top: 5px;
            list-style: circle;
        }
    }
}

@media (max-width:768px) {

    .pageTwo {
        padding: 50px 10px;

        &::before {
            height: 00%;
        }
    }
}

/***** End About Page Section *****/

.missionBg {
    /* background-color: #ffc9e4; */

    .mission {
        background-color: #88fafe;
        padding: 25px;
        height: 100%;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;

        h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        ul {
            padding: 0;

            li {
                list-style: none;
                font-weight: 500;
                margin-top: 5px;

                b {
                    font-weight: 600;
                }
            }
        }
    }

    .two {
        background-color: #f4ffa5;
    }

    .three {
        background-color: #ffcfa5;
    }
}

/***** Blog Section *****/

.blog-section {

    .blog-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .blogCard {

        &:hover img {
            scale: 1.1;
        }

        .blogCardImg {
            overflow: hidden;

            img {
                width: 100%;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
            }
        }

        .blogCardContent {
            margin-top: 15px;

            h3 {
                font-size: 20px;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .top {
                font-size: 14px;
                margin-bottom: 5px;
            }

            a {
                display: inline-block;
                margin-top: 10px;
                font-weight: 500;
                color: var(--colorOne);
                position: relative;

                &:hover::after {
                    right: -23px;
                }

                &::after {
                    position: absolute;
                    content: "\f061";
                    font-family: FontAwesome;
                    right: -20px;
                    top: 1px;
                    transition: all 0.3s linear;
                    -webkit-transition: all 0.3s linear;
                    -moz-transition: all 0.3s linear;
                    -ms-transition: all 0.3s linear;
                    -o-transition: all 0.3s linear;
                }
            }
        }
    }

    .blogLink {
        text-align: center;
        margin-top: 20px;

        a {
            display: inline-block;
            background-color: var(--colorOne);
            color: white;
            padding: 6px 20px;
            font-size: 17px;
            font-weight: 500;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
        }
    }
}

/***** End Blog Section *****/

/***** Career Section *****/

.careerSection {

    .careerLeft {

        input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid rgb(94, 94, 94);
            font-weight: 500;
        }

        textarea {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid rgb(94, 94, 94);
            font-weight: 500;
            min-height: 95px
        }

        button {
            color: white;
            background-color: var(--colorOne);
            max-width: 150px;
            border: none;
            font-weight: 500;
            padding: 6px 20px;
            margin-left: 12px;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;

            &:hover {
                scale: 0.9;
            }
        }
    }

    .careerRight {

        img {
            width: 100%;
        }
    }
}

/***** End Career Section *****/


/***** Blog Page Section *****/

.bpageSection {
    background-color: rgb(252, 244, 244);

    .bpageLeft {

        h2 {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 15px 0 6px 0;
        }

        ul {
            margin-top: 6px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-left: 16px;

            li {
                font-weight: 500;

                b {
                    font-weight: 600;
                }
            }
        }
    }

    .bpageRight {
        position: sticky;
        top: 150px;

        img {
            width: 100%;
        }
    }
}

/***** End Blog Page Section *****/


/***** Gallery Section *****/

.project-block-one {
    position: relative;
    overflow: hidden;

    & :hover img {
        scale: 1.1;
    }
}

.image-box img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.view-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure {
    margin: 0;
}

/***** End Gallery Section *****/

/***** Product Page Section *****/

.pDetailsPage {

    .pageContent {
        text-align: center;

        h2 {
            margin-bottom: 5px;
        }

        p {
            font-size: 15px;
        }

        ul {
            padding: 0;

            li {
                list-style: none;
                font-weight: 500;
            }
        }

        h3 {
            margin: 20px 0;
            color: #2B265C;
            font-size: 24px;
            font-weight: 600;
        }
    }

    .detailsCard {

        &:hover img {
            scale: 1.1;
        }

        &:hover .overlay {
            opacity: 1;
        }

        .detailsCardImg {
            overflow: hidden;
            position: relative;

            img {
                width: 100%;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
            }
        }

        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
            opacity: 0;

            a {
                width: 100%;
                height: 100%;
                display: inline-block;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: rgba(0, 0, 0, 0.486);
                margin: 0;
                color: white;
                transition: all 0.5s linear;
                -webkit-transition: all 0.5s linear;
                -moz-transition: all 0.5s linear;
                -ms-transition: all 0.5s linear;
                -o-transition: all 0.5s linear;
            }
        }

        a {
            display: inline-block;
            font-size: 20px;
            color: black;
            font-weight: 600;
            margin-top: 7px;

        }
    }
}

/***** End Product Page Section *****/

/***** Bakery Section *****/

.bakerySection {

    .bakeryContent {
        text-align: center;
        margin-bottom: 40px;

        h2 {
            margin-bottom: 5px;
        }
    }

    .bakeryLeft {

        .imgOne {
            width: 50%;
            float: left;
            padding: 10px 40px 20px 0;
        }

        .imgTwo {
            width: 50%;
            float: right;
            padding: 10px 0 20px 40px;
        }

        h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2B265C;
            margin: 5px;
        }

        h4 {
            font-size: 22px;
            color: #2B265C;
            font-weight: 600;
            margin: 10px 0 5px 0;
        }

        h5 {
            font-size: 20px;
            color: #2B265C;
            font-weight: 600;
            margin: 10px 0 5px 0;
        }

        p {
            text-align: justify;
        }

        ul {
            margin-top: 10px;
            padding-left: 16px;

            li {
                font-weight: 500;
                margin-top: 5px;
                text-align: justify;

                b {
                    font-weight: 600;
                    color: #2B265C;
                }
            }

        }
    }
}

@media (max-width:768px) {
    .bakerySection {

        .bakeryContent {
            text-align: center;
            margin-bottom: 20px;

            h2 {
                margin-bottom: 5px;
            }
        }

        .bakeryLeft {

            .imgOne {
                width: 100%;
                float: left;
                padding: 0px;
                margin: 10px 0;
            }

            .imgTwo {
                width: 100%;
                float: right;
                padding: 0;
                margin: 10px 0;
            }

            h3 {
                font-size: 24px;
                font-weight: 600;
                color: #2B265C;
                margin: 5px;
            }

            h4 {
                font-size: 22px;
                color: #2B265C;
                font-weight: 600;
                margin: 10px 0 5px 0;
            }

            h5 {
                font-size: 20px;
                color: #2B265C;
                font-weight: 600;
                margin: 10px 0 5px 0;
            }

            p {
                text-align: left;
            }

            ul {
                margin-top: 10px;
                padding-left: 16px;

                li {
                    font-weight: 500;
                    margin-top: 5px;
                    text-align: left;

                    b {
                        font-weight: 600;
                        color: #2B265C;
                    }
                }

            }
        }
    }

}

/***** End Bakery Section *****/


/***** Pipe Section *****/

.pipeSection {

    .pipeContent {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;

        h2 {
            margin-bottom: 5px;
        }

    }

    .pipeCardImg {
        position: sticky;
        top: 200px;

        img {
            width: 100%;
        }
    }

    .pipeCardRight {

        h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2B265C;
            margin-bottom: 5px;
        }

        h4 {
            font-size: 22px;
            font-weight: 600;
            color: #2B265C;
            margin: 12px 0 5px 0;
        }

        h5 {
            font-size: 18px;
            font-weight: 600;
            color: #2B265C;
            margin: 12px 0 5px 0;
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-top: 10px;
            padding-left: 16px;

            li {
                font-weight: 500;

                b {
                    font-weight: 600;
                    color: #2B265C;
                }
            }
        }
    }
}

/***** End Pipe Section *****/

/***** Gallery Tabs Section *****/

.galleryTab {

    .tab {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;

        button {
            background-color: var(--colorOne);
            color: white;
            font-weight: 500;
            border: none;
            padding: 6px 15px;
            transition: all 0.2s ease-in;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -ms-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;

            &:hover {
                background-color: black;
            }

            &.active {
                background-color: rgb(0, 0, 0);
            }
        }
    }

    .tabcontent {
        display: none;
        border-top: none;
    }
}


/***** End Gallery Tabs Section *****/


/***** Update Section Section *****/

.updateSection {
    background-color: #F5BA2B;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/mountain.svg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100px;
        bottom: 0;
        left: 0;
    }

    .upForm {
        padding: 25px 15px 50px 15px;

        .upRight {
            display: flex;
            flex-direction: column;

            label {
                font-weight: 500;
                margin-bottom: 10px;
            }

            .in {
                display: flex;
                gap: 15px;


                input {
                    width: 50%;
                    padding: 8px 12px;
                    font-weight: 500;
                    border: none;
                    outline: none;
                    border-radius: 3px;
                    -webkit-border-radius: 3px;
                    -moz-border-radius: 3px;
                    -ms-border-radius: 3px;
                    -o-border-radius: 3px;
                }

                button {
                    width: 20%;
                    border: none;
                    background-color: #F7C855;
                    color: black;
                    font-weight: 500;
                    border-radius: 3px;
                    -webkit-border-radius: 3px;
                    -moz-border-radius: 3px;
                    -ms-border-radius: 3px;
                    -o-border-radius: 3px;
                }
            }
        }
    }
}

@media (max-width:768px) {

    .updateSection {
        margin-bottom: 25px;

        .upForm {
            padding: 0px 15px 25px 15px;

            .upRight {

                label {
                    font-weight: 500;
                    margin-bottom: 7px;
                }

                .in {
                    display: flex;
                    gap: 15px;


                    input {
                        width: 70%;
                        padding: 8px 12px;
                        font-weight: 500;
                        border: none;
                        outline: none;
                        border-radius: 3px;
                        -webkit-border-radius: 3px;
                        -moz-border-radius: 3px;
                        -ms-border-radius: 3px;
                        -o-border-radius: 3px;
                    }

                    button {
                        width: 30%;
                        height: inherit;
                        border: none;
                        background-color: #F7C855;
                        color: black;
                        font-weight: 500;
                        border-radius: 3px;
                        -webkit-border-radius: 3px;
                        -moz-border-radius: 3px;
                        -ms-border-radius: 3px;
                        -o-border-radius: 3px;
                    }
                }
            }
        }
    }
}

/***** End Update Section Section *****/



/***** Footer Section *****/

.footer-section {
    padding: 50px 0 0 0;
    background-color: var(--colorOne);

    .footer-hero {

        img {
            width: 180px;
            margin-bottom: 15px;
        }

        p {
            color: white;
            opacity: 0.9;
            font-weight: 500;
        }
    }

    .footer-link {

        h3 {
            color: white;
            font-weight: 600;
            font-size: 25px;
            margin-bottom: 15px;
        }

        ul {
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;

            li {
                list-style: none;
                position: relative;

                &::after {
                    position: absolute;
                    content: "\f04b";
                    font-size: 13px;
                    font-family: FontAwesome;
                    top: 3px;
                    left: -5px;
                    color: white;
                    opacity: 0;
                    transition: all 0.5s linear;
                    -webkit-transition: all 0.5s linear;
                    -moz-transition: all 0.5s linear;
                    -ms-transition: all 0.5s linear;
                    -o-transition: all 0.5s linear;
                }

                a {
                    text-decoration: none;
                    color: white;
                    padding-left: 0px;
                    font-weight: 500;
                    transition: 0.3s linear;
                    -webkit-transition: 0.3s linear;
                    -moz-transition: 0.3s linear;
                    -ms-transition: 0.3s linear;
                    -o-transition: 0.3s linear;
                }

                &:hover::after {
                    opacity: 1;
                }

                &:hover a {
                    padding-left: 12px;
                }
            }
        }

        address {
            display: flex;
            flex-direction: column;
            gap: 10px;

            .address-in {
                display: flex;
                align-items: center;
                gap: 10px;

                i {
                    width: 30px;
                    line-height: 30px;
                    background-color: white;
                    font-size: 14px;
                    text-align: center;
                    color: var(--colorOne);
                    border-radius: 3px;
                    -webkit-border-radius: 3px;
                    -moz-border-radius: 3px;
                    -ms-border-radius: 3px;
                    -o-border-radius: 3px;
                }

                p {
                    color: white;
                    font-weight: 500;
                }

                a {
                    color: white;
                    font-weight: 500;
                }
            }
        }
    }

    .copyRight {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        background-color: black;
        padding: 15px 100px;

        p {
            color: white;
            font-size: 14px;

            a {
                color: white;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;

                &:hover {
                    color: var(--colorOne);
                }
            }
        }
    }
}

@media (max-width:768px) {

    .footer-section {
        padding: 25px 0 0 0;

        address {
            margin-bottom: 0;
        }

        .copyRight {
            margin-top: 25px;
            display: flex;
            gap: 5px;
            justify-content: space-between;
            text-align: center;
            flex-direction: column;
            background-color: black;
            padding: 15px 10px;
        }
    }
}

/***** End Footer Section *****/

/***** Top to Bottom Button Section *****/

.my_bttn {
    line-height: 40px;
    width: 40px;
    background-color: var(--colorOne);
    border: none;
    color: white;
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 18px;
    border-radius: 150px;
    cursor: pointer;
    outline: none;
    display: none;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    z-index: 99;

    i {
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
    }

    &:hover i {
        font-size: 20px;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }
}

/***** End Top to Bottom Button Section *****/

/***** Our Expertise Section *****/

.expertSection {
    background-color: #ffd1ab;

    .expertContent {
        margin-bottom: 30px;
        text-align: center;
    }

    .expertCard {
        background-color: rgb(255, 255, 255);
        height: 100%;
        text-align: center;
        padding: 30px 20px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;

        .exImg {
            width: 75px;
            aspect-ratio: 1;
            padding: 5px;
            background-color: #C1126A;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 100px;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            -ms-border-radius: 100px;
            -o-border-radius: 100px;

            img {
                width: 45px;
            }
        }

        .two {
            background-color: #00B1B6;
        }

        .three {
            background-color: #F5BA2B;
        }

        .four {
            background-color: #9DC41A;
        }


        h3 {
            font-size: 22px;
            margin-top: 10px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #2B265C;
        }
    }
}

/***** End Our Expertise Section *****/

/***** Service Section *****/

.serviceSection {
    background-color: #e6feff;

    .serviceContent {
        text-align: center;
        margin-bottom: 30px;
    }

    .serviceCard {
        display: flex;
        align-items: center;
        gap: 15px;

        .serviceImg {
            width: 65px;
            aspect-ratio: 1;
            background-color: #C1126A;
            border-radius: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            -ms-border-radius: 100px;
            -o-border-radius: 100px;

            img {
                width: 40px;
            }
        }

        .two {
            background-color: #00B1B6;
        }

        .three {
            background-color: #F5BA2B;
        }

        .four {
            background-color: #9DC41A;
        }


        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #2B265C;
            margin-bottom: 3px;
        }
    }
}

/***** End Service Section *****/



/***** Breadcrumb Section *****/

.felicityBc {
    position: relative;

    img {
        width: 100%;
    }

    h1 {
        position: absolute;
        color: white;
        font-weight: 600;
        left: 100px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
}

@media (max-width:768px) {
    .felicityBc {

        h1 {
            left: 16px;
            font-size: 22px;
        }
    }
}

/***** End Breadcrumb Section *****/

@media screen and (max-width:1000px) {
    .container {
        width: 1000px;
        max-width: 100%;
        margin: 0 auto;
    }
}