:root {
    --white: #fff;
    --gray: #f8f8f8;
    --lightGray: #f0f0f0;
    --black: #333333;
    --pink: #fce6e7;
    --darkPink: #ebb0af;
    --red: #e30613;
    --lightRed: #f0787f;
    --blue: #55c3f1;
    --lightBlue: #cde9f4;
    --yellow: #fab700;
    --lightYellow: #fef1cc;
    --purple: #41266a;
    --lightPurple: #d9d4e1;
    --green: #036634;
    --lightGreen: #b9d2c5;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    word-break: break-word;
    -webkit-text-size-adjust: 100%;
    line-height: 150%;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
}

html {
    font-size: 62.5%;
}

body {
    background-color: var(--white);
    font-size: 1.6rem;
}

body.loaded {
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

a,
a:visited {
    text-decoration: none;
}

h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-size: 96px;
    padding-bottom: 1rem;
    line-height: 125%;
}

h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-size: 48px;
    padding-bottom: 1rem;
    line-height: 125%;
}

h3 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-size: 32px;
    padding-bottom: 1rem;
    line-height: 125%;
}

h4 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-size: 24px;
    padding-bottom: 1rem;
    line-height: 125%;
}

h5 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-size: 18px;
    padding-bottom: 1rem;
    line-height: 125%;
}

span {
    font-size: inherit;
    line-height: inherit;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
    padding: 1rem 0;
}

a {
    color: var(--red);
}

a,
p,
label,
li,
button {
    font-size: 1.6rem;
}

span {
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    border: 1px solid var(--gray);
}

input:focus,
input:active,
textarea:focus,
textarea:active {
    border-bottom: 2px solid var(--gray) !important;
}

html,
body {
    width: 100%;
    height: 100%;
}

#content-wrapper {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main {
    width: 100%;
    transition: all 0.4s ease;
    flex-grow: 1;
    margin-top: -11rem;
    /*padding-bottom: 3rem;*/
}


header,
main,
footer {
    flex-shrink: 0;
}


/* Header */
#header-equalizer {
    position: relative;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
}

body.sticky-body #header-equalizer {
    height: 11rem;
}

header {
    position: relative;
    width: 100%;
    z-index: 100;
}

.hide {
    display: none;
}

.shadow {
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2), 0 5px 5px rgba(171, 171, 171, 0.2);
}

.app-menu {
    display: none;
    background-color: transparent;
    cursor: pointer;
}

.app-menu i {
    color: var(--red);
    font-size: 3.2rem;
}

#open-menu-button {
    display: none;
}

#open-menu-button.open {
    display: block;
}

#close-menu-button {
    display: none;
}

#close-menu-button.open {
    display: block;
}

/* ############### */
.header-holder {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 1800px;
    margin: 0 auto;
}

header.sticky {
    z-index: 1200 !important;
}

header.sticky {
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    background-color: rgba(255, 255, 255, .95);
}

header.sticky .app-menu {
    top: 20px;
}

header.sticky .header-holder {
    opacity: 0;
    height: 80px;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
}

header.sticky .mainmenu li>ul {
    top: 80px;
}

header.sticky .mainmenu li>ul>li>ul {
    top: 0;
}

header.sticky .mainmenu a {
    font-size: 1.4rem;
}

header.sticky .mainmenu>li .desktop-arrow {
    bottom: 13px;
}

header.sticky img {
    opacity: 0;
    max-width: 10rem;
    position: relative;
    left: 0;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

header img {
    width: 150px;
    padding: 0;
    z-index: 2;
    display: block;
}

header nav {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.mainmenu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
}

.mainmenu li {
    position: relative;
    padding: 0;
}

.mainmenu li>ul li {
    padding: 0;
}

.mainmenu li>ul {
    position: absolute;
    display: none;
    background-color: var(--gray);
    padding: 0;
    list-style-type: none;
    margin: 0;
    top: 110px;
    z-index: 200;
    min-width: 200px;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05), 0 5px 5px rgba(171, 171, 171, 0.05);
    border-top: 0;
    right: 0;
}

header.sticky .mainmenu li>ul {
    background-color: var(--white);
}

.mainmenu li>ul li a {
    padding: 20px;
    width: 100%;
    text-align: center;
    display: block;
}

.mainmenu li>ul>li>ul {
    display: none;
    right: calc(100% + -20px);
    top: 0;
    z-index: 300;
    right: 100%;
    background-color: var(--white);
}

header.sticky .mainmenu li>ul>li>ul {
    background-color: var(--white);
}

.mainmenu a.showsub {
    display: none;
}

.mainmenu a {
    color: var(--black);

    font-size: 1.6rem;
    display: flex;
    height: 100%;
    align-items: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    padding: 0 1.5rem;
}

.mainmenu a:hover {
    color: var(--red);
}

.mainmenu li.active .desktop-arrow i,
.mainmenu li.active .showsub i {
    color: var(--white) !important;
}

.mainmenu li a.active {
    font-weight: bold;
}

.menu-container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

header.sticky .menu-container {
    opacity: 0;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
}

.mainmenu>li .desktop-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 400;
    color: var(--black);
}

.mainmenu .desktop-arrow i {
    position: absolute;
    font-size: 11px;
}

.mainmenu>li>ul>li>.desktop-arrow {
    transform: rotate(90deg);
    left: 0;
    top: 24px;
}

.flex-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

footer {
    position: relative;
    width: 100%;
    transition: all 0.4s ease;
    background-color: var(--purple);
    color: var(--darkPink);
    font-size: 1.6rem;
}


/****************************************************************************/
/****************************************************************************/
/* wave in the footer */
/* footer:before {
    width: 100%;
    height: 4rem;
    background-position: top center;
    background-image: url(../images/wave-purple-top.svg);
    background-repeat: repeat-x;
    content: '';
    position: absolute;
    top: -3rem;
    left: auto;
} */
/* new 2025-05-19 */
footer::before {
    width: 100%;
    height: 4rem;
    background-image: url(../images/wave-purple-top.svg);
    background-repeat: repeat-x;
    background-position: var(--wave-x, 0px) top;
    content: '';
    position: absolute;
    top: -3rem;
    left: auto;
    z-index: 999;
}

/****************************************************************************/
/****************************************************************************/




.footer-main {
    width: 100%;
    padding: 5rem 5rem 0 5rem;
    margin: 0 auto;
}

.footer-main a {
    color: var(--darkPink);
}

.social-link {
    font-size: 3.5rem;
    line-height: 3.5rem;
}

.footer-menu {
    width: 100%;
    padding: 10rem 0 0 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: left;
}

.footer-menu li {
    width: auto;
    margin-right: 5rem;
}

.footer-copy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 0;
    opacity: .3;
}

.footer-copy p,
.footer-copy a {
    color: var(--darkPink);
    font-size: 1.2rem;
}

.sigill {
    position: absolute;
    overflow: hidden;
    right: 0;
    bottom: 0;
    height: 30rem;
    width: 30rem;
}

.sigill img {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    height: 100%;
    width: 100%;
}


.center {
    text-align: center;
}

.fat {
    font-weight: bold;
    padding-bottom: 2.5px;
}

.bold {
    font-weight: bold;
}

.tiny {
    font-size: 4px;
    line-height: 100%;
}

.loader {
    align-items: center;
    justify-content: center;
    display: none;
    padding-top: 25px;
}

.circle {
    background-color: var(--black);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 4px;
    animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
    animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.loader-wrapper {
    width: 100%;
    display: none;
}

#message-confirm {
    display: flex;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner>div {
    background-color: var(--black);
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}


.form-wrapper {
    max-width: 1000px;
    width: 100%;
    /* width: calc(100% - 3rem); */
    /* margin: 10rem 1.5rem; */
    display: flex;
    flex-flow: column-reverse;
    /* border-radius: 5px; */
    border-radius: 1.5rem;
}

.contact-form {
    background-color: var(--red);
    color: var(--black);
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 4rem;
    width: 100%;
    /* border-radius: 0 0 5px 5px; */
    border-radius: 1.5rem;
}

.contact-form-100 {
    width: 100%;
    border-radius: 0;
}

.contact-form h2 {
    padding-bottom: 10px;
}

.contact-info {
    color: var(--white);
    width: 100%;
    background-image: url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px;
    min-height: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.contact-info::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px 5px 0 0;
}

.contact-info-content {
    z-index: 1;
    text-align: center;
}

.contact-form label {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    background-color: var(--lightRed);
    padding: 16px;
    display: block;
    border: none;
    min-width: 200px;
    margin-bottom: 10px;
    /* border-bottom: 1px solid var(--black); */
    border-radius: 8px !important;
    font-size: 1.6rem;
}

.contact-form textarea {
    background-color: var(--lightRed);
    padding: 5px;
    display: block;
    border: none;
    min-width: 200px;
    min-height: 100px;
    margin-bottom: 20px;
    resize: vertical;
    /* border-bottom: 1px solid var(--black); */
    outline: 0;
    border-radius: 8px !important;
    font-size: 1.6rem;
}

textarea:focus,
input:focus,
button:focus {
    outline: none;
}

.contact-form #contact-form-title {
    padding-bottom: 25px;
    color: #4d4c50;
}





.miscellaneous-forms .submit-button:disabled {
    background-color: var(--darkPink);
    border-color: var(--darkPink);
    opacity: 0.7;
    color: var(--white);
    cursor: not-allowed;
}

.contact-form #submit-button {
    display: block;
    border: none;
    background-color: var(--pink);
    color: var(--white);
    margin-top: 25px;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 3px;
    width: fit-content;
    width: -moz-fit-content;
    display: table;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: relative;
    transition: all 0.4s ease;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form #submit-button:disabled {
    background-color: var(--black);
    opacity: 0.7;
    color: var(--white);
    cursor: not-allowed;
}

.contact-form #submit-button:hover {
    background-color: var(--pink);
    color: var(--white);
    -webkit-animation-name: hvr-wobble-top;
    animation-name: hvr-wobble-top;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.contact-form #submit-button:disabled:hover {
    background-color: var(--black);
    cursor: not-allowed;
    animation: none !important;
    -webkit-animation: none !important;
}

.contact-form #submit-button i {
    color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon {
    font-size: 100px;
    color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon i {
    animation: twiggle 5s 3s ease forwards infinite;
}

@keyframes twiggle {
    0% {
        transform: scale(1);
        transform: rotate(180deg);
    }

    10% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.25);
    }

    90% {
        transform: rotate(180deg);
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.error-message {
    font-size: 12px;
    color: var(--white);
    margin-bottom: 25px;
}


#message-box {
    height: 50px;
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    background-color: var(--pink);
    animation-name: popUp;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}

#message-box p {
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 120%;
    color: var(--white);
}

@keyframes popUp {
    0% {
        bottom: -50px;
        opacity: 1;
    }

    10% {
        bottom: -25px;
        opacity: 1;
    }

    20% {
        bottom: 0px;
        opacity: 1;
    }

    79% {
        bottom: 0px;
        opacity: 1;
    }

    90% {
        bottom: -25px;
        opacity: 1;
    }

    99% {
        bottom: -50px;
        opacity: 1;
    }

    100% {
        bottom: -50px;
        opacity: 0;
    }
}


/* News */

.box-50-news,
.box-50-news:visited {
    width: 50%;
    width: calc(50% - 3rem);
    margin: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    color: var(--black);
    border-radius: 0.3rem;
}

.box-50-news .box-date {
    background-color: var(--red);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-flow: column;
    padding: 2.5rem;
    color: var(--black);
    border-radius: 3px 3px 0 0;
}

.box-date-text-date {
    color: var(--black);
    font-weight: bold;
    font-size: 16px;
}

.box-date-text-year {
    color: var(--black);
    font-weight: bold;
    font-size: 14px;
}

.box-50-news .box-content {
    width: 100%;
    padding: 5rem;
    border-radius: 0 0 3px 3px;
}

.box-50-news .box-content h4 {
    color: var(--pink);
}

.box-50-news .box-content .box-content-date {
    font-size: 12px;
    padding-top: 10px;
    color: var(--gray);
}

.news-link {
    color: var(--black);
    font-weight: bold;
}

.single-news-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}

.single-news {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    margin: 50px auto;
    padding: 25px 50px;
}

.single-news h1 {
    position: relative;
    padding-bottom: 10px;
}

.single-news img {
    margin: 15px 0;
}

#news-wrapper {
    width: 100%;
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

.latest-news-wrapper {
    padding: 5rem 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.my-newsdesk-outer-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.my-newsdesk-outer-wrapper #my_newsdesk_news_container {
    padding: 5rem 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}




#more-news-wrapper {
    width: 100%;
    padding: 0 1.5rem;
}

#more-news {
    margin: 50px auto;
    display: table;
}

.news-loader-wrapper {
    width: 100%;
    position: relative;
}

.news-loader {
    align-items: center;
    justify-content: center;
    display: none;
    padding-top: 25px;
}


/* SLideshows */

.box-slider-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 75vh; */
    height: 60vh;
    min-height: 300px;
    width: 100%;
    position: relative;
}

.slider-text-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    width: calc(100% - 30px);
    max-width: 1100px;
}

.slider-text-holder h1 {
    color: var(--white);
    font-size: 44px;
    padding-bottom: 15px;
}

.slider-text-holder p {
    color: var(--white);
    font-size: 22px;
    line-height: 175%;
}

.slider-text {
    padding: 20px 50px;
}


/** Gallery **/

.gallery-modal-layer {
    transform: translateZ(0);
    transform: translateX(-200%);
    transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
    position: fixed;
    overflow: visible;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-modal {
    background-color: var(--white);
    width: 80%;
    height: 80%;
    margin: auto;
    padding: 25px;
    position: relative;
    box-shadow: 0 7px 14px rgba(87, 87, 87, 0.12), 0 5px 5px rgba(88, 88, 88, 0.12);
}

.close-gallery-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    padding: 15px;
    background-color: var(--pink);
}

.close-gallery-modal i {
    font-size: 25px;
    color: var(--white);
}

.gallery-modal-image {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-modal-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.gallery-modal-inner {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.gallery-modal-inner .prev,
.gallery-modal-inner .next {
    cursor: pointer;
}

.gallery-modal-inner .prev i,
.gallery-modal-inner .next i {
    color: var(--black);
    font-size: 50px;
}

.gallery-modal-content {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-flow: column;
    padding-top: 25px;
}

body.gallery-modal-open .gallery-modal-layer {
    transform: translateX(0);
    transform: translateY(0);
    position: fixed;
}

body.gallery-modal-open .gallery-modal {
    filter: drop-shadow(0 7px 14px rgba(87, 87, 87, 0.308));
}

.gallery-wrapper {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    margin: 1.5rem;
    width: 100%;
    width: calc(20% - 3rem);
    cursor: pointer;
    background-color: var(--white);
    border-radius: 0.3rem;
    /* padding: 2.5rem; */
    /* padding: .5rem; */
}

.gallery-item img {
    max-width: 100%;
}

.no-padding,
.no-padding * {
    padding: 0 !important;
}

.grecaptcha-badge {
    z-index: 9999;
}

.product_category {
    width: 100%;
    text-align: center; 
}
.product_category h3{
    padding: 10rem; 
}


@media all and (max-width: 1250px) {
    body.sticky-body #header-equalizer {
        height: 6rem;
    }

    body.menu-open main {
        margin-left: 300px;
        position: relative;
        overflow: hidden;
    }

    body.menu-open main::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        content: "";
        overflow: hidden;
        z-index: 2;
    }

    body.menu-open header {
        background-color: var(--pink)
    }

    .header-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 62px;
    }

    .mainmenu.open {}

    header.sticky img {
        max-width: 10rem;
        position: relative;
        left: 0;
        top: 0;
    }

    .header-content #logo {
        padding-bottom: 0;
    }

    header img {
        max-width: 10rem;
    }

    header.sticky .header-holder {
        height: 6rem;
        -moz-animation: fadeIn 0.4s ease-in forwards;
        -webkit-animation: fadeIn 0.4s ease-in forwards;
        -o-animation: fadeIn 0.4s ease-in forwards;
        animation: fadeIn 0.4s ease-in forwards;
    }

    header.sticky .mainmenu li>ul {
        top: 0;
    }

    header.sticky .mainmenu li>ul>li>ul {
        top: 10px;
    }

    .header-holder {
        height: 6rem;
        padding: 0;
    }

    header.sticky header-holder {
        height: 6rem;
    }

    .menu-open {
        overflow: hidden;
    }

    .app-menu {
        display: block;
        z-index: 600;
        padding: 2rem;
    }

    header.sticky .app-menu {
        position: relative;
        left: 0;
        top: 0;
    }

    .mainmenu.open {
        top: 6rem;
        left: 0;
        background-color: var(--pink);
    }

    .mainmenu>li {
        font-size: 20px;
        margin: 20px 0 !important;
        margin: 0 !important;
        padding: 0;
        /* border-bottom: 1px solid #f3f3f3; */
    }

    .mainmenu li>ul {
        background-color: var(--white);
    }

    .mainmenu li>ul>li>ul {
        background-color: var(--white);
    }

    .mainmenu>li>ul>li {
        font-size: 16px;
    }

    .mainmenu>li>ul>li a {
        font-weight: normal !important;
        padding: 1rem 2.5rem;
    }

    .mainmenu>li>ul>li>ul>li {
        font-size: 15px;
    }

    .mainmenu>li>ul>li>ul>li a {
        font-weight: normal;
        margin-bottom: 10px;
        margin-top: -10px;
        margin-left: 5px;
    }

    .mainmenu {
        display: block;
        position: fixed;
        top: 6rem;
        left: -100%;
        width: 30rem;
        max-width: 30rem;
        height: 100%;
        background-color: var(--white);
        z-index: 998;
        overflow: scroll;
        padding-bottom: 0;
        transition: all 0.4s ease;
        box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15), 0 5px 5px rgba(171, 171, 171, 0.15);
    }

    .mainmenu a {
        padding: 1.5rem 2rem;
    }

    .mainmenu li>ul li a {
        text-align: left;
    }

    .mainmenu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .mainmenu>li .desktop-arrow {
        display: none;
    }

    .mainmenu a:after {
        display: none;
    }

    .mainmenu li a.active:after {
        display: none;
    }

    .mainmenu a.showsub {
        position: absolute;
        bottom: 0;
        width: 40px;
        height: 40px;
        right: 10px;
        top: 6px;
        display: flex;
        justify-content: center;
    }

    .showsub:hover {
        text-decoration: none;
        background-color: transparent !important;
    }

    .mainmenu>li>ul>li>a.showsub {
        right: 10px;
        top: 4px;
    }

    .mainmenu a.showsub i {
        color: var(--black);
        font-size: 16px;
    }

    .mainmenu li.sub a.showsub i {
        color: var(--pink);
        font-size: 16px;
    }

    .mainmenu a.showsub i.hide {
        display: none;
    }

    .mainmenu li>ul {
        position: relative;
        top: 11px;
        box-shadow: none;
        border: none;
        background-color: var(--white);
        background-image: none;
        margin-top: -1.5rem;
    }

    .mainmenu li>ul>li>ul {
        top: 10px;
        right: 0;
        background-color: var(--white);
        background-image: none;
    }

    header.sticky .mainmenu li>ul>li>ul {
        background-color: var(--white);
        background-image: none;
    }

    .slider-text {
        padding: 20px;
    }

    .gallery-item {
        width: calc(25% - 3rem);
    }
}

@media all and (max-width: 960px) {
    .single-news-header {
        min-height: 500px;
    }

    .gallery-item {
        width: calc(33.33% - 3rem);
    }

    .single-news {
        padding: 25px 20px;
    }

    .box-50-news .box-content {
        padding: 3.5rem;
    }

    .form-wrapper {
        margin: 2rem 1.5rem;
    }


    .footer-main {
        width: 100%;
        padding: 5rem 3rem 0 3rem;
        margin: 0 auto;
    }

    .footer-menu {
        padding: 0rem 0 2rem 0;
        justify-content: space-around;
    }

    .footer-menu li {
        width: auto;
        margin-right: 0;
    }

    .sigill {
        position: relative;
        right: -3rem;
        height: 20rem;
        width: 100%;
        top: -4rem;
    }

    .sigill img {
        right: -2rem;
        bottom: 0;
        width: auto;
    }

}

@media all and (max-width: 768px) {

    h1,
    section.section-header>div .section-text-wrapper h1,
    section.section-header>div .section-text-wrapper h1>span {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    p,
    a,
    label,
    li {
        font-size: 14px;
    }

    .slider-text-holder h1 {
        font-size: 24px;
    }

    .slider-text-holder p {
        font-size: 16px;
        line-height: 150%;
    }

    .box-slider-image {
        height: 50vh;
    }

    .gallery-wrapper {
        columns: 2;
    }

    .single-news-header {
        min-height: 400px;
    }

    .form-wrapper {
        flex-flow: column-reverse;
        width: 100%;
        margin: 0;
        width: calc(100% - 3rem);
    }

    .contact-form {
        width: 100%;
        /* border-radius: 0; */
        /* padding: 50px; */
        padding: 2rem;
    }

    .contact-info {
        width: 100%;
        border-radius: 0;
        padding: 25px;
        background-attachment: unset !important;
    }

    .contact-info .big-icon-wrapper {
        padding: 25px;
    }

    .contact-info .big-icon-wrapper .big-icon {
        font-size: 50px;
        color: var(--white);
    }

    .contact-info .big-icon-wrapper .big-icon i {
        font-size: 50px;
        color: var(--white);
    }

    .gallery-item {
        width: calc(50% - 3rem);
    }

    .box-50-news {
        flex-flow: column;
        width: calc(100% - 4rem);
        margin: 1.5rem 2rem;
    }

    .box-50-news .box-date {
        width: 100%;
        padding: 25px 0;
    }

    .contact-info .big-icon-wrapper .big-icon {
        font-size: 50px;
        color: var(--white);
    }

    /* .contact-form {
        padding: 50px 20px;
        border-radius: 0;
    } */
    .form-wrapper,
    .contact-info,
    .contact-info::after {
        border-radius: 0;
    }
    .product_category h3{
        padding: 5rem; 
    }

}

@media all and (max-width: 550px) {

    p,
    a,
    label,
    li {
        font-size: 14px;
    }

    .gallery-wrapper {
        columns: 1;
    }

    .gallery-item {
        width: 100%;
        margin: 1rem 0;
        padding: 0 2rem;
    }

    .single-news-header {
        min-height: 350px;
    }

    .gallery-modal-inner {
        padding: 10px;
    }

    .gallery-modal-inner .next i,
    .gallery-modal-inner .prev i {
        font-size: 20px;
    }

    .gallery-modal {
        padding: 25px;
    }

    .close-gallery-modal {
        padding: 10px;
    }

    .close-gallery-modal i {
        font-size: 20px;
    }
}