/* ------------------------------------------------------------------ */
/* -------------------------------Fonts------------------------------ */
/* ------------------------------------------------------------------ */

@font-face {
    font-family: "marcellus";
    font-style: normal;
    font-weight: 100;
    src: url("../Fonts/Marcellus-Regular.ttf") format("ttf"),
}

/* ------------------------------------------------------------------ */
/* -------------------------- Template CSS -------------------------- */
/* ------------------------------------------------------------------ */

:root {
    --primary: #039be5;
    --secondary: #67e600;
    --light: #ffffff;
    --light-dark: #e1e1e1;
}

.text-primary {
    color: var(--primary) !important;
}

.text-scondary {
    color: var(--secondary) !important;
}

.font-marcellus {
    font-family: marcellus !important;
}

.text-justify {
    text-align: justify !important;
}

.border-rounde-fif {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}

.btn-primary {
    background-color: var(--primary) !important;
}

section .container-md {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}

.breakLine::after {
    content: "";
    display: block;
    width: 100px;
    height: 8px;
    margin: auto;
    background-color: var(--primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.limited-text {
    display: block;
    max-width: 70ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* --------------------------------------------- */
/* ------------------- Header ------------------ */
/* --------------------------------------------- */

header #menu {
    width: 98%;
    position: absolute;
    top: 10px;
    right: 50%;
    z-index: 100;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: rgba(93, 129, 108, 0.8);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}

    header #menu.sticky {
        width: 100%;
        padding: 8px;
        background-color: rgba( 225, 237, 255, 0.7);
        position: fixed;
        top: 0;
        z-index: 999;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

        header #menu.sticky #mainNavbar nav #navbarWrapper li a {
            color: #000;
        }

        header #menu.sticky:hover {
            background-color: rgba( 225, 237, 255, 1);
        }

        header #menu.sticky #mainNavbar nav ul li a,
        header #menu.sticky #mainNavbar nav ul li a svg {
            transition: color 0.3s ease-in-out;
            color: #000;
            -webkit-transition: color 0.3s ease-in-out;
            -moz-transition: color 0.3s ease-in-out;
            -ms-transition: color 0.3s ease-in-out;
            -o-transition: color 0.3s ease-in-out;
        }

        header #menu.sticky #mainNavbar nav ul li.active a svg {
            color: #fff;
        }

    header #menu #mainNavbar nav #navbarWrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: inherit;
    }

        header #menu #mainNavbar nav #navbarWrapper li {
            list-style: none;
            /* margin: 5px 10px; */
            margin: 0 10px;
            padding: 5px 12px;
            cursor: pointer;
        }

            header #menu #mainNavbar nav #navbarWrapper li.active {
                background-color: #039be5;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
                transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
            }

                header #menu #mainNavbar nav #navbarWrapper li.active:hover {
                    background-color: #fff;
                    transform: scale(1.05);
                    border-radius: 5px;
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    -ms-border-radius: 5px;
                    -o-border-radius: 5px;
                    -webkit-transform: scale(1.05);
                    -moz-transform: scale(1.05);
                    -ms-transform: scale(1.05);
                    -o-transform: scale(1.05);
                }

            header #menu #mainNavbar nav #navbarWrapper li a {
                text-decoration: none;
                font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
                font-weight: 500;
                color: #fff;
                font-size: 16px;
            }

                header #menu #mainNavbar nav #navbarWrapper li a:hover {
                    color: #337068;
                    transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                }

                header #menu #mainNavbar nav #navbarWrapper li a svg {
                    margin-left: 8px;
                    font-size: 15px;
                    color: #fff;
                    transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                }

        header #menu #mainNavbar nav #navbarWrapper l#navbarWrapperi a:hover svg {
            color: #337068;
        }

        header #menu #mainNavbar nav #navbarWrapper li.active a,
        header #menu #mainNavbar nav #navbarWrapper li.active svg {
            color: #fff;
        }

        header #menu #mainNavbar nav #navbarWrapper li.active:hover a,
        header #menu #mainNavbar nav #navbarWrapper li.active:hover svg {
            color: #337068;
        }

    header #menu #mainNavbar .whatWeDoDropdown {
        display: none;
        flex-direction: column;
        position: absolute;
        left: 0;
        top: 100%;
        color: #000 !important;
        background-color: rgba( 225, 237, 255, 0.7);
        width: 150px;
        overflow: visible;
        border-radius: 5px;
        z-index: 999;
        /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
    }

    header #menu #mainNavbar .whatWeDoLink:hover > .whatWeDoDropdown {
        display: flex;
    }

    header #menu #mainNavbar .whatWeDoDropdown li {
        position: relative;
        width: 103%;
        margin: 0 !important;
    }


        header #menu #mainNavbar .whatWeDoDropdown li:hover > .whatWeDoDropdown {
            display: flex;
        }

            header #menu #mainNavbar .whatWeDoDropdown li:hover > .whatWeDoDropdown li a {
                color: #000 !important;
            }

                header #menu #mainNavbar .whatWeDoDropdown li:hover > .whatWeDoDropdown li a:hover {
                    color: var(--primary) !important;
                }

        header #menu #mainNavbar .whatWeDoDropdown li a {
            color: #000 !important;
            padding: 10px;
            display: block;
            text-decoration: none;
        }


        header #menu #mainNavbar .whatWeDoDropdown li:hover a {
            color: var(--primary) !important;
        }

        header #menu #mainNavbar .whatWeDoDropdown li .whatWeDoDropdown {
            top: 0;
            left: 100%;
        }

#responsiveMenu {
    width: 100%;
    background-color: red;
}

    #responsiveMenu .userBtn {
        display: none;
        position: absolute;
        z-index: 1000;
        top: 27px;
        left: 15px;
        border: none;
        font-family: "yekanBakh";
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        background-color: #337068;
        border: 1px solid #337068;
        padding: 4px 8px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        #responsiveMenu #Subscription:hover {
            color: #337068;
            background-color: #fff;
            transform: scale(1.03);
            -webkit-transform: scale(1.03);
            -moz-transform: scale(1.03);
            -ms-transform: scale(1.03);
            -o-transform: scale(1.03);
        }

        #responsiveMenu #Subscription svg {
            margin-left: 5px;
        }

.toggleMenu {
    display: none;
    position: fixed;
    z-index: 1001;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

    .toggleMenu svg {
        font-size: 40px;
        color: #d8258b;
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }

    .toggleMenu.active {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }

.responsiveMenu {
    position: fixed;
    /*right: 0;*/
    width: 0;
    height: 100%;
    z-index: 1000;
    background-color: rgba( 225, 237, 255, 0.9);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    overflow-y: auto;
}

    .responsiveMenu.active {
        width: 60%;
        opacity: 1;
        visibility: visible;
    }

    .responsiveMenu .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .responsiveMenu .logo h2 {
            font-size: 20px;
            color: #b6b6b6;
            font-family: "yekanBakh";
        }

        .responsiveMenu .logo img {
            width: 120px;
            padding-top: 30px;
        }

    .responsiveMenu nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /*margin-top: 35px;*/
    }

        .responsiveMenu nav ul {
            text-align: center;
            width: 100%;
        }

            .responsiveMenu nav ul li {
                display: flex;
                align-items: center;
                text-align: start;
                list-style: none;
                padding: 8px 0;
                transition: all 0.3s ease-in-out;
                border-radius: 10px;
                width: 50%;
                margin: 10px auto;
                cursor: pointer;
                transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                /* background-color: #d8258b; */
            }


                .responsiveMenu nav ul li .menu-icon {
                    width: 25px;
                    height: 25px;
                    border-radius: 5px;
                    background-color: var(--primary);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 14px;
                    color: #fff !important;
                }

                    .responsiveMenu nav ul li .menu-icon svg {
                        font-size: 14px;
                        color: #fff !important;
                    }

                .responsiveMenu nav ul li h3 {
                    font-weight: 700;
                    margin-bottom: 10px;
                }

                .responsiveMenu nav ul li a {
                    font-size: 18px;
                    line-height: 20px;
                    font-weight: 600;
                    text-decoration: none;
                    color: #000;
                    transition: all 0.1s ease-in-out;
                    -webkit-transition: all 0.1s ease-in-out;
                    -moz-transition: all 0.1s ease-in-out;
                    -ms-transition: all 0.1s ease-in-out;
                    -o-transition: all 0.1s ease-in-out;
                }

                .responsiveMenu nav ul li:hover a {
                    color: #0A2647;
                }


    .responsiveMenu .header-btn {
        text-align: center;
        height: 10%;
    }

        .responsiveMenu .header-btn button {
            font-family: "yekanBakh";
            font-weight: 600;
            font-size: 18px;
            width: 80px;
            padding: 5px 8px;
            cursor: pointer;
            outline: none;
            border: none;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

            .responsiveMenu .header-btn button:nth-child(1) {
                border-radius: 5px;
                color: #f1834e;
                background-color: transparent;
                border: 1px solid #f1834e;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
            }

            .responsiveMenu .header-btn button:hover:nth-child(1) {
                color: #f1834e;
                background-color: #fff;
                /* border: 1px solid #adc6c3; */
                transform: scale(1.06);
                -webkit-transform: scale(1.06);
                -moz-transform: scale(1.06);
                -ms-transform: scale(1.06);
                -o-transform: scale(1.06);
            }

            .responsiveMenu .header-btn button:nth-child(2) {
                color: #fff;
                background-color: #d8258b;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
            }

            .responsiveMenu .header-btn button:hover:nth-child(2) {
                color: #d8258b;
                background-color: #fff;
                border: 1px solid #d8258b;
                transform: scale(1.06);
                -webkit-transform: scale(1.06);
                -moz-transform: scale(1.06);
                -ms-transform: scale(1.06);
                -o-transform: scale(1.06);
            }

.userBtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

    .userBtn a {
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        width: 70px;
        padding: 8px 10px;
        cursor: pointer;
        outline: none;
        border: none;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        color: #fff;
        background-color: #337068;
        border-radius: 10px;
    }

        .userBtn a:hover {
            color: #337068;
            background-color: #fff;
            border: 1px solid #337068;
            border-radius: 5px 5px 5px 5px;
            -webkit-border-radius: 5px 5px 5px 5px;
            -moz-border-radius: 5px 5px 5px 5px;
            -ms-border-radius: 5px 5px 5px 5px;
            -o-border-radius: 5px 5px 5px 5px;
            transform: scale(1.06);
            -webkit-transform: scale(1.06);
            -moz-transform: scale(1.06);
            -ms-transform: scale(1.06);
            -o-transform: scale(1.06);
        }


@media screen and (min-width: 992px) {
    .responsiveMenu {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    header #menu {
        display: none;
    }

    .toggleMenu {
        display: block;
    }

    #responsiveMenu .userBtn {
        display: table;
    }
}

@media screen and (max-width: 576px) {
    .responsiveMenu nav ul li {
        width: 80%;
    }
}



/* --------------------------------------------- */
/* ----------- Page Header Background----------- */
/* --------------------------------------------- */

.header-background-wrapper {
    /* background: url(../images/Default/Contact-us.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    background-position: center;
}

    .header-background-wrapper img {
        width: 100%;
        height: 100%;
    }

@media screen and (max-width: 768px) {
    .header-background-wrapper {
        background-size: 100%;
        height: 300px;
    }
}

.bntxt h1, .bntxtbg {
    color: var(--light);
    font-size: 60px;
    background: url(../images/Default/bntxtbg.png) no-repeat left center;
    background-size: auto;
    padding: 20px;
    background-size: auto 100%;
}

.slide-inner .header-text {
    right: 0;
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
}

/* --------------------------------------------- */
/* ------------ socialMedia Buttons ------------ */
/* --------------------------------------------- */

.socialMedia {
    position: fixed;
    z-index: 99;
    left: -10%;
    top: 40%;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

    .socialMedia.active {
        opacity: 1;
        left: 5px;
    }

    .socialMedia a {
        background-color: #000;
        padding: 5px;
        margin: 3px 0;
        width: 35px;
        height: 35px;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light) !important;
    }

        .socialMedia a svg {
            color: var(--light) !important;
            font-size: 18px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

        .socialMedia a:hover:nth-child(1) svg {
            color: rgb(255, 68, 0);
            font-size: 18px;
        }

        .socialMedia a:hover:nth-child(2) svg {
            color: rgb(0, 64, 255);
            font-size: 18px;
        }

        .socialMedia a:hover:nth-child(3) svg {
            color: rgb(0, 195, 255);
            font-size: 18px;
        }

        .socialMedia a:hover:nth-child(4) svg {
            color: rgb(255, 0, 0);
            font-size: 18px;
        }


/* --------------------------------------------- */
/* ------------ Page breadcrumb----------------- */
/* --------------------------------------------- */

.breadcrumb {
    padding: 20px 15px;
    /*padding-top: 90px !important;*/
}

    .breadcrumb a {
        font-size: 18px;
    }

        .breadcrumb a:nth-child(1)::after {
            content: " > ";
            margin-right: 5px;
        }

    .breadcrumb .center-breadcrumb::after {
        content: " > ";
        margin-right: 5px;
    }


/* ------------------------------------------------------------------ */
/* ----------------------- Contact Us Page Style--------------------- */
/* ------------------------------------------------------------------ */

#contact-us {
    width: 100%;
    margin-top: 50px !important;
}

    #contact-us .contact-information-wrapper p {
        font-size: 18px;
        line-height: 35px;
    }

    #contact-us .form-group input {
        width: 100%;
        height: 60px !important;
        border: 1px solid #000;
        padding: 0 15px !important;
        font-size: 18px;
        width: 100%;
        resize: none;
        color: #666;
        box-shadow: none;
        outline: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    #contact-us .form-group textarea {
        width: 100%;
        border: 1px solid #000;
        padding: 0 15px !important;
        font-size: 18px;
        width: 100%;
        resize: none;
        color: #666;
        box-shadow: none;
        outline: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

        #contact-us .form-group textarea:focus {
            border: 1px solid #D0111B;
            background: #fff5f6;
        }

    #contact-us .form-group input:focus {
        border: 1px solid var(--primary);
        background: #fff5f6;
    }

    #contact-us .contact-validation img {
        width: 100%;
    }

    #contact-us .contact-validation input {
        border: none;
        border-bottom: 1px solid var(--secondary);
        width: 100%;
        height: 100%;
        box-shadow: none;
        outline: none;
    }

    #contact-us .contact-validation button {
        width: 100%;
        height: 35px;
        cursor: pointer;
        position: relative;
        transition: .25s;
        filter: grayscale(1) !important;
        -webkit-transition: .25s;
        -moz-transition: .25s;
        -ms-transition: .25s;
        -o-transition: .25s;
        -webkit-filter: grayscale(1) !important;
        background-color: var(--primary);
        color: var(--light);
        border: none;
    }

        #contact-us .contact-validation button:hover {
            filter: grayscale(0) !important;
            -webkit-filter: grayscale(0) !important;
        }

/* ------------------------------------------------------------------ */
/* ----------------------- Product Page Style------------------------ */
/* ------------------------------------------------------------------ */

#product-card-wrapper {
    width: 100%;
    padding: 20px 0 60px 0;
}

    #product-card-wrapper .product-card-item {
        width: 100%;
        padding: 25px;
        border-radius: 15px;
        background-color: var(--light-dark);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        #product-card-wrapper .product-card-item:hover {
            transform: scale(1.03);
            -webkit-transform: scale(1.03);
            -moz-transform: scale(1.03);
            -ms-transform: scale(1.03);
            -o-transform: scale(1.03);
        }


        #product-card-wrapper .product-card-item .product-card-item-img {
            width: 100%;
            text-align: center;
        }

            #product-card-wrapper .product-card-item .product-card-item-img img {
                width: 180px;
                height: 180px;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
            }

        #product-card-wrapper .product-card-item:hover .product-card-item-img img {
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
        }

        #product-card-wrapper .product-card-item .learnMoreBtn {
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

            #product-card-wrapper .product-card-item .learnMoreBtn:hover {
                color: var(--secondary) !important;
            }

            #product-card-wrapper .product-card-item .learnMoreBtn svg {
                font-size: 12px;
            }

@media screen and (max-width: 768px) {
    #product-card-wrapper .product-card-item .product-card-item-img img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }
}

.page-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-pagination .page-link {
        box-shadow: none !important;
    }

/* ------------------------------------------------------------------ */
/* ------------------- Single Product Page Style--------------------- */
/* ------------------------------------------------------------------ */

#singleProduct-wrapper {
    width: 100%;
    padding: 20px 0 60px 0;
}

/* استایل کلی برای گالری */
.gallery-container {
    max-width: 600px;
    margin: 20px auto;
}

/* تصاویر گالری اصلی */
.main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* تصاویر گالری کوچک */
.thumbnail-swiper .swiper-slide {
    width: 80px;
    height: 80px;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* وقتی یک تصویر کوچک فعال باشد */
.thumbnail-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

#productDetail-wrapper {
    padding-bottom: 60px;
}

#relatedCases-wrapper {
    padding-bottom: 60px;
}

#getPrice-wrapper {
    padding-bottom: 60px;
}

/* ------------------------------------------------------------------ */
/* -------------------------- Logistic Page ------------------------- */
/* ------------------------------------------------------------------ */

#delivery {
    padding-bottom: 60px;
}

    #delivery .delivery-content {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    #delivery .delivery-Weight {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

#LogisticDetails {
    padding-bottom: 60px;
}

    #LogisticDetails .delivary-card img {
        width: 130px;
    }

.deliveryMarkets .markets-card-item {
    overflow: hidden;
    cursor: pointer;
}

.markets-card-item img {
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.markets-card-item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


/* ------------------------------------------------------------------ */
/* ------------------------- Company Details ------------------------ */
/* ------------------------------------------------------------------ */

#company-details {
    padding-top: 150px !important;
}

    #company-details .card-A {
        background: url(../images/Default/127f8866698d12632bed6bc578096d9e.jpg);
        height: 453.329px;
    }

    #company-details .card-B {
        background: url(../images/Default/34e60d228605a4c919924eef6d633f19.jpg);
        height: 453.329px;
    }

    #company-details .card-C {
        background: url(../images/Default/495e63ef38b01bdc733f3493fcea7e89.jpg);
        height: 453.329px;
    }

    #company-details .card-D {
        background: url(../images/Default/877d2e868c59524a132143bde4ce6fa4.jpg);
        height: 453.329px;
    }

.card-details-wrapper {
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
}

.card-content {
    width: 100%;
    color: var(--light) !important;
    font-family: var(--font-marcellus);
    text-align: center;
    position: absolute;
    z-index: 100;
    bottom: -130px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

    .card-content p {
        color: var(--light) !important;
    }

.background-hover {
    width: 100%;
    height: 550px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.card-details-wrapper:hover {
    overflow: visible;
}

    .card-details-wrapper:hover .card-content {
        bottom: 10px;
    }

    .card-details-wrapper:hover .background-hover {
        display: block;
    }

#company-details .card-details-wrapper .card-content h2 {
    color: var(--light) !important;
    font-size: 45px;
    text-align: center;
    padding-bottom: 30px;
}

#company-details .card-details-wrapper .card-content p {
    font-size: 14px !important;
    width: 360px;
}


#company-details .card-details-wrapper .card-content .bannerSiteLinkBtn {
    display: block;
    width: 51%;
    background: #595757;
    line-height: 25px;
    color: #fff;
    padding: 2px;
    margin: 20px auto 0 auto;
}

    #company-details .card-details-wrapper .card-content .bannerSiteLinkBtn:hover {
        transition: 0.5s;
        background: #fff;
        color: #595757;
    }

/* ------------------------------------------------------------------ */
/* ------------------------------ Fashion---------------------------- */
/* ------------------------------------------------------------------ */

#fashion h1 {
    font-size: 45px;
}

#fashion p {
    font-size: 20px;
}

#fashion .fashion-wrapper-part-a {
    position: relative;
    z-index: 2;
}

#fashion .fashion-wrapper-part-b {
    position: relative;
    top: -70px;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    #fashion .fashion-wrapper-part-b {
        padding-top: 80px;
        bottom: 0;
    }
}

/* ------------------------------------------------------------------ */
/* ---------------------- Room Style Wrapper ------------------------ */
/* ------------------------------------------------------------------ */

#room-style-wrapper h1 {
    font-size: 45px;
}

#room-style-wrapper p {
    font-size: 20px;
}

/* ------------------------------------------------------------------ */
/* ----------------------- More Room Wrapper ------------------------ */
/* ------------------------------------------------------------------ */

#moreRoom-wrapper {
    background: url(../images/Default/graph.PNG);
    background-size: 160%;
    background-repeat: no-repeat;
}

    #moreRoom-wrapper p {
        font-size: 20px;
    }

    #moreRoom-wrapper .more-stone-wrapper {
        background: url(../images/Default/i4b_bg.png) no-repeat bottom left;
        padding-top: 50px;
        padding-bottom: 100px;
        background-position: 12px;
    }

        #moreRoom-wrapper .more-stone-wrapper .more-stone-img-container {
            overflow: hidden;
        }

        #moreRoom-wrapper .more-stone-wrapper img {
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
        }

            #moreRoom-wrapper .more-stone-wrapper img:hover {
                transform: scale(1.1);
                -webkit-transform: scale(1.1);
                -moz-transform: scale(1.1);
                -ms-transform: scale(1.1);
                -o-transform: scale(1.1);
            }

/* ------------------------------------------------------------------ */
/* ---------------------------- Footer ------------------------------ */
/* ------------------------------------------------------------------ */

footer .social-media a {
    font-size: 30px;
    margin: 0 10px;
    color: var(--light);
}

.swiper-container {
    background-color: #eaeaec !important;
}



.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.field-validation-error {
    color: red
}
