body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;

}


img {
    max-width: 100%;
    height: auto;
}

a {
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    transition: 0.3s ease-in;
    display: inline-block;
}

p,
.tradition-list li,
ul.caviar-list li {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.18px;
    margin: 0;
    padding-bottom: 10px;
}

input,
textarea {
    width: 100%;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: navajowhite;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
}

select {
    width: 100%;
}

:root {
    --color-black: #000;
    --color-white: #fff;
    --color-transaprent: #0000;
    --color-6C6D70: #6C6D70;
    --color-333: #333;
    --color-1A1A1A: #1A1A1A;
    --color-golden: #C5A441;
    --color-F8F5EF: #F8F5EF;
    --fs-80: 80px;
    --lh-90: 90px;
    --fs-25: 25px;
    --fs-35: 35px;
    --lh-42: 42px;
    --fs-70: 70px;
    --lh-75: 75px;
    --fs-30: 30px;
    --lh-44: 44px;
    --fs-40: 40px;
    --fs-20: 20px;
    --lh-24: 24px;
}

/* CUSTOM HEADER  */

/* MENU ICON ANIMATED  */

.bars {
    width: 60px;
    cursor: pointer;
}

.bars .line {
    fill: none;
    stroke: var(--color-white);
    stroke-width: 4;
    stroke-linecap: square;
    transition: stroke-dasharray 400ms, stroke-dashoffset 1s;
}

.bars .line.top {
    stroke-dasharray: 40 172;
}

.bars .line.middle {
    stroke-dasharray: 40 111;
}

.bars .line.bottom {
    stroke-dasharray: 40 172;
}

.bars.active .top {
    stroke-dashoffset: -132px;

}

.bars.active .middle {
    stroke-dashoffset: -71px;
}

.bars.active .bottom {
    stroke-dashoffset: -132px;
}

.menu-icon {
    max-width: fit-content;
    width: 100%;
    display: none;
}

/* MENU ICON ANIMATED END */

header.custom-header {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    padding: 10px 0px;
    transition: 1s linear;
}

header.custom-header.scrolled {
    top: -100%;
}

header.custom-header.shownav {
    backdrop-filter: blur(6px) saturate(48%);
    -webkit-backdrop-filter: blur(6px) saturate(48%);
    background-color: rgb(206 179 87);
}

header.custom-header .main-logo img {
    transition: 0.3s ease-in;
}

header.custom-header.shownav ul.mainnav-links li a {
    color: var(--color-white);
}

header.custom-header.shownav .current-menu-items a {
    color: var(--color-white) !important;
}

header.custom-header.shownav .main-logo {
    max-width: 90px;
}

header.custom-header.shownav .main-logo img {
    filter: invert(21) brightness(50.5);
}

.main-logo {
    max-width: 131px;
    width: 100%;
    margin: 0 auto;
    transition: 0.3s ease-in;
}

ul.mainnav-links {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 15px;
}

ul.mainnav-links li {
    list-style: none;
    padding-bottom: 5px;
}

.margin-top.home {
    display: none;
}

ul.mainnav-links li a {
    color: var(--color-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    position: relative;
}

ul.mainnav-links li a::after {
    position: absolute;
    content: "";
    height: 2px;
    background: var(--color-golden);
    width: 0%;
    bottom: -2px;
    left: 0;
    transition: 0.3s ease-in;
}

header.custom-header.shownav ul.mainnav-links li a::after {
    background: var(--color-white);
}

ul.mainnav-links li.current-menu-items a::after {
    width: 100%;
}

ul.mainnav-links li a:hover::after {
    width: 100%;
}

ul.mainnav-links li a:hover {
    color: var(--color-golden);
}

.top-header {
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 10px;
}


li.menu-item-has-children {
    position: relative;
    padding-right: 15px;
    list-style: none;
}

li.menu-item-has-children>a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: 0.2s linear;
    display: inline-block;
}

li.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    cursor: pointer;
}

ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 300px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 10px 0;
    animation: submenu 0.3s linear;
    z-index: 10;
}

li.menu-item-has-children:hover>.sub-menu {
    display: block;
}

ul.sub-menu li {
    list-style: none;
    padding: 5px 10px;
}

ul.sub-menu li a {
    display: block;
    color: #000;
    text-decoration: none;
}

@keyframes submenu {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}


.current-menu-items a {
    color: var(--color-golden) !important;
    font-weight: 400 !important;
}


header.custom-header.shownav ul.sub-menu {
    background: var(--color-golden);
}



/* CUSTOM HEADER END */


/* HOMW SLIDER SECTION MAIN  */
.slider-images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.slider-images img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: right;
}

.fs-80 {
    font-size: var(--fs-80);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-90);
    padding-bottom: 20px;
}

.universal-btn a {
    color: var(--color-white);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--color-333);
    padding: 14px 54px;
    box-shadow: initial;
}

.universal-btn a:hover {
    background: var(--color-golden);
    color: var(--color-white);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
}

.slider-grid {
    position: relative;
    height: 929px;
    width: 100%;
    overflow: hidden;
}

.slider-conten {
    position: absolute;
    top: 28%;
    width: 100%;
}

.inside-data {
    max-width: 585px;
    width: 100%;
    margin-left: auto;
    color: var(--color-1A1A1A);
    transform: translateX(160%);
    transition: transform 0.8s linear, opacity 0.8s linear;
}

/* Active slide animation */
.swiper-slide-active .inside-data {
    transform: translateX(0%);
}


.mySwiperhomeslider .swiper-wrapper .swiper-slide:nth-child(even) .inside-data {
    color: var(--color-white);
}

.mySwiperhomeslider .swiper-wrapper .swiper-slide:nth-child(even) .universal-btn a {
    background: var(--color-white);
    color: var(--color-333);
}

.mySwiperhomeslider .swiper-wrapper .swiper-slide:nth-child(even) .universal-btn a:hover {
    background: var(--color-golden);
    color: var(--color-white);
}

.inside-data .universal-btn {
    padding-top: 30px;
}

/* HOMW SLIDER SECTION MAIN END */


/* HOME ABOUT MAIN SEC  */

.universal-btn.white-btn a {
    background: var(--color-white);
    color: var(--color-333);
}

.universal-btn.white-btn a:hover {
    background: var(--color-golden);
    color: var(--color-white);
}

.isnide-ab {
    background: var(--color-black);
    padding: 70px 80px;
    color: var(--color-white);
    max-width: 718px;
    width: 100%;
    border: 7px solid var(--color-transaprent);
    transition: 0.3s ease-in-out;
}

.about-content .fs-80 {
    color: var(--color-6C6D70);
    text-align: center;
    margin-left: 10%;
}

.about-holders {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-images {
    max-width: 887px;
    width: 100%;
    transition: 0.3s ease-in-out;
    border: 7px solid var(--color-transaprent);
}

.about-content {
    position: absolute;
    top: 45%;
    max-width: 780px;
    width: 100%;
    right: 0;
    transform: translate(8%, -50%);
}

section.homeabout-sec {
    padding: 135px 0px;
    position: relative;

}

.about-holders:hover .about-images,
.about-holders:hover .isnide-ab {
    border-color: var(--color-golden);
}

img.homeabout-overlays {
    position: absolute;
    right: 0;
    top: 0;
}

.about-content .universal-btn {
    padding-top: 30px;
    position: relative;
}


.fs-35 {
    font-size: var(--fs-35);
    font-style: normal;
    font-weight: 600;
    line-height: var(--lh-42);
    padding-bottom: 20px;
}

/* HOME ABOUT MAIN SEC END */

/* COLLECTONS SEC  */

section.homecollections-sec {
    background: var(--color-F8F5EF);
    padding: 65px 0px 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.products-holderss {
    max-width: 223px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.fs-25 {
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 20px;
}

.collection-holders a {
    color: var(--color-1A1A1A);
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
    display: block;
}

.center-titles {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 75px;
}

.collection-holders {
    max-width: 957px;
    width: 100%;
    margin: 0 auto;
}

.universal-btn.black a {
    background: var(--color-333);
    color: var(--color-white);
}

.universal-btn.black a:hover {
    background: var(--color-golden);

}

.grid-btnss .swiper-button-next:after,
.grid-btnss .swiper-button-prev:after {
    color: var(--color-333);
    font-size: 12px;
    font-weight: 900;
}

.grid-btnss .swiper-button-next,
.grid-btnss .swiper-button-prev {
    height: 40px;
    width: 40px;
    border: 1px solid var(--color-333);
    border-radius: 50%;
}

.collection-holders .universal-btn {
    padding-top: 50px;
}

.mySwipercollections {
    padding: 0px 55px;
}

img.overalys-img {
    position: absolute;
    z-index: -1;
    max-width: fit-content;
}

img.overalys-img.seeds {
    top: 0;
    right: 0;
}

img.overalys-img.fish {
    top: 0;
    left: -5%;
    animation: fish 20s linear infinite;
}

@keyframes fish {
    0% {
        left: -50%;
        transform: rotate(45deg);
    }

    100% {
        left: 121%;
        transform: rotate(0deg);

    }
}

img.overalys-img.gift {
    bottom: -9%;
    left: 0;
    animation: gift 4s ease-in infinite alternate;
}

@keyframes gift {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(10deg);

    }
}

/* COLLECTONS SEC END */


/* PERALES SLIDER MAIN SEC  */
.pearls-slider-holders {
    position: relative;
}

.peralsslider-images {
    height: 759px;
    overflow: hidden;
}

.peralsslider-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right;
}

.pearels-contents {
    width: 100%;
    position: absolute;
    top: 52%;
    left: 0%;
    transform: translate(0%, -50%);
    z-index: 11;
}

.inside-pearls {
    padding: 20px;
    min-height: 679px;
    max-width: 769px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

img.perals-overlays {
    position: absolute;
    initial-letter: 0;
    inset: 0;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
}

.fs-70 {
    font-size: var(--fs-70);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-75);
    padding-bottom: 20px;
}

.all-pearls {
    max-width: 500px;
    margin: 0 auto;
    width: 1000%;
    color: var(--color-white);
}

.pearels-contents .universal-btn {
    padding-top: 20px;
}

.boldpearls-sec {
    position: relative;
    overflow: hidden;
}

/* PERALES SLIDER MAIN SEC END */


/* SHOP  BY CATEGORIES SEC  */
.tab-holdress .tabs ul li a {
    color: var(--color-333);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.tab-holdress .tabs ul li a::after {
    position: absolute;
    content: "";
    height: 4px;
    background: var(--color-golden);
    left: 0;
    width: 0%;
    bottom: -5px;
    transition: 0.3s linear;
}

.tab-holdress .tabs ul li a:hover::after {
    width: 100%;
}

.tab-holdress .tabs ul li {
    list-style: none;
}

.tab-holdress .tabs ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.gridtabs-contnets a {
    display: block;
    max-width: fit-content;
    margin: 0 auto;
    color: var(--color-1A1A1A);
}

.gridtabs-contnets {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 65px;
}

.tab-holdress .tabs ul li.active a::after {
    width: 100%;
}

.tab-holdress .tabs ul li.active a {
    font-weight: 600;
    color: var(--color-333);
}

.tab-holdress .universal-btn {
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 80px;
}

section.slectbycat-sec {
    padding: 80px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* img.overalys-img.goldenfish {
    top: -10%;
    left: 50%;
} */

img.overalys-img.goldenfish {
    /* top: -38%; */
    top: 18%;
    /* left: 35%; */
    animation: goldefish 20s linear infinite;
}

@keyframes goldefish {
    0% {

        right: -40%;
        transform: rotate(-43deg);

    }


    100% {
        right: 100%;
        transform: rotate(0deg);

    }
}

img.overalys-img.spoon {
    bottom: -5%;
    right: 0;
    animation: spoon 10s linear infinite alternate;
}

@keyframes spoon {
    0% {
        bottom: 4%;

    }

    100% {
        bottom: 40%;

    }
}

.center-titles .fs-35 {
    font-weight: 700;
}

.tab-holdress .center-titles {
    padding-bottom: 20px;
}

/* SHOP  BY CATEGORIES SEC END */


/* PAIRING SUGGESTION MAIN SEC  */

section.pairingsuggestion-sec {
    background: var(--color-black);
    color: var(--color-white);
    padding: 85px 0px;
}

.paring-holders {
    max-width: 682px;
    width: 100%;
    height: 660px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.grid-suggestion {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1399px;
    margin: 0 auto;
    width: 100%;
}

.fs-30 {
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-44);
    padding-bottom: 20px;
}

.paring-content .fs-30 {
    padding-bottom: 0px;
    color: var(--color-white);
}

.paring-content {
    padding: 40px 20px;
    text-align: center;
    background: #000000a3;
    position: absolute;
    width: 100%;
    bottom: -50%;
    transition: 0.4s ease-in-out;
}

.paring-holders:hover .paring-content {
    bottom: 0;
}

/* PAIRING SUGGESTION MAIN SEC END */

/* TESTIMONIAL SEC MAIN HERE  */
.fs-40 {
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-44);
    padding-bottom: 20px;
}

.testmonial-data {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-left: 35px;
    font-style: italic;
}

img.testimonial-symbols {
    position: absolute;
    top: 0;
    left: 0;
}

.fs-20 {
    font-size: var(--fs-20);
    font-weight: 600;
    line-height: var(--lh-24);
    letter-spacing: -0.2px;
    padding-bottom: 10px;
}

.testmonial-data .fs-20 {
    font-family: "DM Sans", sans-serif;
    color: var(--color-golden);
    padding-bottom: 0;
    font-weight: 400;
}


.testimonial-container {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
}

section.testimonial-sec {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-holders .universal-btn {
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 80px;
}

img.overalys-img.flesh {
    max-width: 309px;
    bottom: 0;
    left: 0;
}

img.overalys-img.goldenfishtesti {
    max-width: 775px;
    right: -24%;
    top: 3%;
    animation: testifish 10s linear infinite alternate;
}

@keyframes testifish {
    0% {
        top: 3%;
    }

    100% {
        top: 40%;
    }
}

/* TESTIMONIAL SEC MAIN HERE END */


/* BOOK YOUR EXPERIENCE MAIN SEC  */
.grid-book {
    display: flex;
    align-items: center;
    gap: 105px;
    width: 100%;
}

.form-holders {
    max-width: 748px;
    width: 100%;
    padding: 65px 0px 20px 0px;
}

.cheif-image {
    max-width: 608px;
    width: 100%;
}

img.book-bgimage {
    position: absolute;
    top: 11%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

section.bookslot-sec {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    overflow: hidden;
}


.universal-input input,
.universal-input select,
.submit-btn input {
    height: 48px;
    padding: 10px 15px;
}

.universal-input input,
.universal-input select,
.form-holders label,
.submit-btn input {
    color: var(--color-6C6D70);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.form-holders label {
    transition: 0.3s ease-in;
}

.grid-checkbox {
    margin-bottom: 15px;
}

.checkbox-holders {
    background: var(--color-white);
    padding: 15px;
}

.universal-input,
.checkbox-holders {
    margin-bottom: 30px;
}

.submit-btn input {
    max-width: 170px;
    width: 100%;
}

.submit-btn input {
    transition: 0.3s ease-in;
    color: var(--color-333);
    border: none;
    background: var(--color-white);
}

.submit-btn input:hover {
    background: var(--color-golden);
    color: var(--color-white);
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
}

.form-holders .fs-35 {
    text-align: center;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.grid-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.universal-input select {
    border-radius: 0px !important;
    border: none !important;
}

.universal-input input {
    border-radius: 0px !important;
}

.universal-input input:focus-visible {
    border-color: #ceb357;
    box-shadow: 0 0 0 .25rem rgb(206 179 87 / 58%);
}


.universal-input select:focus {
    border-color: #ceb357;
    box-shadow: 0 0 0 .25rem rgb(206 179 87 / 58%);
}

.grid-checkbox input[type="radio"]:checked+label {
    color: var(--color-golden);
    accent-color: var(--color-golden);
}

/* Hide the default radio appearance */
.grid-checkbox input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-6C6D70);
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

/* Custom checked state */
.grid-checkbox input[type="radio"]:checked {
    border-color: var(--color-golden);
    background-color: var(--color-golden);
}

/* Inner dot for checked state */
.grid-checkbox input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: var(--color-white);
    border-radius: 50%;
}

/* Label turns red when selected */
.grid-checkbox input[type="radio"]:checked+label {
    color: var(--color-golden);
}




/* BOOK YOUR EXPERIENCE MAIN SEC END */


/* INSTGRAM SEC MAIN HERE  */

.instgram-link {
    font-family: "Playfair Display", serif;
    color: var(--color-333);
}

.instgram-link:hover {
    color: var(--color-golden);
}

.instgram-feedss {
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
}

section.instrgram-sec {
    padding: 120px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

img.instagram-overlay {
    position: absolute;
    top: 2%;
    left: 0;
    z-index: -1;
}

/* INSTGRAM SEC MAIN HERE END */


/* FOOTER  */
footer.custom-footer {
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    z-index: 1;
    overflow: hidden;

}

footer.custom-footer ul {
    padding: 0;
    margin: 0;
}

footer.custom-footer ul li {
    list-style: none;
}

.grid-footer {
    display: flex;
    justify-content: space-between;
    gap: 140px;

}

.explore-links {
    max-width: 230px;
    width: 100%;
}

.footer-logoholders {
    max-width: 388px;
    width: 100%;
}

.footer-logo {
    max-width: 175px;
    width: 100%;
    margin-bottom: 30px;
}

.grid-footer a {
    color: var(--color-white);
}

ul.footer-link li a {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    position: relative;
}

ul.footer-link li a::after {
    position: absolute;
    content: "";
    height: 1px;
    background: var(--color-golden);
    bottom: 0;
    left: 0;
    width: 0%;
    transition: 0.3s ease-in;
}

ul.footer-link li a:hover {
    color: var(--color-golden);
}

ul.footer-link li a:hover::after {
    width: 100%;
}

ul.footer-link {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.explore-links li.current-menu-items a {
    color: var(--color-golden) !important;
}

.explore-links li.current-menu-items a::after {
    width: 100%;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: fit-content;
    margin-left: auto;
    margin-top: -5%;
}

.explore-links .fs-20 {
    color: var(--color-golden);
    font-weight: 600;
}

.explore-links a:hover {
    color: var(--color-golden);
}

.gridcopyrights {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.copy-rights {
    border-top: 1px solid var(--color-white);
    padding: 17px 0px;
}

.copy-rights p {
    padding: 0;
}

.top-footer {
    padding: 100px 0px;
}

.footer-logoholders .universal-input {
    margin-bottom: 15px;
}

.universal-input.submit-btns input {
    background: transparent;
    border: 1px solid var(--color-golden);
    color: var(--color-golden);
    transition: 0.3s ease-in;
}

.universal-input.submit-btns input:hover {
    background: var(--color-golden);
    color: var(--color-white);
}

.universal-input.only-inputs input {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.universal-input.only-inputs input::-webkit-input-placeholder {
    color: var(--color-white);
}

.social-media img {
    transition: 0.3s ease-in;
}

.social-media a:hover img {
    filter: invert(1) brightness(5);
}

img.footer-fish {
    position: absolute;
    bottom: -40%;
    right: 7%;
    z-index: -1;
    /* animation: footerfish 20s linear infinite; */
}

@keyframes footerfish {
    0% {
        bottom: -70%;
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-20deg);
    }

    100% {
        bottom: 100%;
        transform: rotate(20deg);

    }
}

/* FOOTER EEND */


/* BANNER BELUGA MAIN SEC  */
section.banner-sec {
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

/* section.banner-sec::after{
    position: absolute;
    content: "";
    inset: 0;
    background:#0000008a;
} */

.about-banner {
    max-width: 50%;
    width: 100%;
    padding: 20px;
    background: #0000008a;
    border-radius: 5px;
}

/* BANNER BELUGA MAIN SEC END */


/* COLLECTION  */

a.collections-links {
    display: block;
    color: var(--color-1A1A1A);
}


.mySwipercollectionsinside .swiper-wrapper {
    align-items: center;
}

.product-collec {
    max-width: 245px;
    width: 100%;
    border: 1.5px solid #b5b5b5;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.3s ease-in;
    margin: 0 auto;
    margin-bottom: 20px;
}

.product-collec:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-color: var(--color-golden);
}

.image-prod {
    max-width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.image-prod img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.mySwipercollectionsinside .swiper-button-next:after,
.mySwipercollectionsinside .swiper-button-prev:after {
    position: static;
    font-size: 22px;
    font-weight: 500;
}

.mySwipercollectionsinside .swiper-button-next,
.mySwipercollectionsinside .swiper-button-prev {
    position: static;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--color-golden);
    color: var(--color-golden);
    transition: 0.3s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mySwipercollectionsinside .swiper-button-next:hover,
.mySwipercollectionsinside .swiper-button-prev:hover {
    background: var(--color-golden);
    color: var(--color-white);
}

.sliders-btns {
    display: flex;
    margin-bottom: 42px;
    flex-direction: row-reverse;
    gap: 30px;
    max-width: fit-content;
    margin-left: auto;
    margin-top: 25px;
}

.title-main {
    max-width: 70%;
    position: relative;
    top: 65px;
}

section.collection-sec {
    padding: 10px 0px 70px 0px;
}

/* COLLECTION END */


/* PRODUCTS SEC  */
.filter-holdres {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    background: var(--color-golden);
    color: var(--color-white);
    padding: 10px 20px;
}

.filter-holdres .fs-25 {
    padding-bottom: 0;
}

.grid-checkeddd {
    background: #b3b3b342;
    display: none;
    flex-direction: column;
    padding: 10px;
}

.checjed-holders {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.icon-acredan img {
    filter: invert(1);
    transition: 0.3s ease-in;
}

.icon-acredan img.rotate {
    transform: rotate(270deg);
}

.products-here {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    /* border: 1.5px solid #cfcfcf; */
    padding: 20px;
    /* border-radius: 10px; */
    /* background: var(--color-white); */
    transition: 0.3s ease-in;
}

/* .products-here:hover{
    border-color: var(--color-golden);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} */

.products-linkss {
    display: block;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: var(--color-1A1A1A);
}

.produts-imagee {
    max-width: 100%;
    height: 258px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    /* background: rgb(194, 194, 194); */
}

.produts-imagee img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transition: 0.3s ease-in;
}

.products-here:hover img {
    scale: 1.1;
}

.all-details {
    padding-top: 20px;
}

.all-details .fs-25 {
    padding-bottom: 10px;
}

.grid-productssmain {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.filter-gridss {
    max-width: 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.allproducts-holders {
    max-width: 80%;
    width: 100%;
}

.insideproducts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: fit-content;
    margin: 0 auto;
}

.productss-sec {
    /* background: var(--color-F8F5EF); */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-padding {
    padding: 80px 0px;
}



/* PRODUCTS SEC END */


/* ABOUT SEC  */
.grid-abouts {
    display: flex;
    /* align-items: center;
    gap: 50px; */
}

.about-imagess,
.allabout-caviar {
    max-width: 50%;
    width: 100%;
}

.about-imagess img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inside-holdersabout {
    max-width: 80%;
    margin: 0 auto;
}

.allabout-caviar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oddeven-grid .grid-abouts:nth-child(even) {
    flex-direction: row-reverse;
}

/* .oddeven-grid .grid-abouts:nth-child(even) .allabout-caviar{
    background: var(--color-black);
    color: var(--color-white);
} */

.paring-content p {
    color: var(--color-white);
}

section.pairingsuggestion-sec.forninner .paring-content {
    bottom: 0;
}


/* ABOUT SEC END */






.sliding-sec {
    overflow: hidden;
}


.marquee-track {
    display: flex;
    align-items: center;
    gap: 30px;
}

.marquee-track {
    white-space: nowrap;
}

.marquee-heading {
    padding-bottom: 0;
}



section.sliding-sec {
    background: var(--color-golden);
    color: var(--color-white);
    padding: 20px 0px;
}

/* TRADITION  */
.tradition-holder {
    display: flex;
    align-items: center;
    gap: 50px;
}


.image-tradtion,
.about-tradition {
    max-width: 50%;
    width: 100%;
}

section.tradition-sec {
    background: var(--color-F8F5EF);
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* TRADITION END */

/* FOUNDERS  */
.row-holders {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

section.founders-sec {
    position: relative;
    z-index: 1;
}

.about-foubders {
    max-width: 700px;
    width: 100%;
}

.founders-images img {
    border-radius: 10px;
}


/* FOUNDERS END */

.box {
    border-radius: 150px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 275px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    border-radius: 150px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.30);
    transition: all 0.3s ease;
    background-image: linear-gradient(to right, #C5A441 0%, #ffb625 100%);
}

.box:hover:before {
    width: 100%;
}

.box:hover .image-wrapper {
    padding: 0;
}

.box:hover .box-desc {
    color: var(--color-white);
}

.box:hover .social li a {
    background: var(--color-white);
    background-image: none;
    color: var(--color-1A1A1A);
}

.box:hover .social li a:hover {
    background: var(--color-1A1A1A);
    color: var(--color-white);
}

.image-wrapper {
    position: relative;
    max-width: 210px;
    max-height: 210px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    padding: 15px;
    transition: all 0.5s ease;
    box-shadow: inset 0px 0px 20px rgb(0 0 0 / 35%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 500ms ease;
}

.box-desc {
    position: relative;
}

ul.social {
    padding: 0;
}

ul.social li {
    display: inline-block;
    list-style-type: none;
}

ul.social li img {
    transition: 0.3s ease-in;
}

ul.social li:hover img {
    filter: invert(1);
}

ul.social li a {
    position: relative;
    width: 36px;
    height: 36px;
    background-image: linear-gradient(to right, #C5A441 0%, #ffd98c 100%);
    display: inline-block;
    line-height: 36px;
    border-radius: 50%;
    color: var(--color-white);
    transition: all .5s ease;
}

.our-teamsec {
    background: var(--color-F8F5EF);
}

.teamrow-holders {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.box-desc .fs-25 {
    padding-bottom: 10px;
}


/* HOW TO SERVE CAVIAR SEC  */
.caviear-sec h1,
.caviear-sec h2,
.caviear-sec h3,
.caviear-sec h4,
.caviear-sec h5,
.caviear-sec h6 {
    margin: revert;
    padding: revert;
}

.caviar-serve img {
    border-radius: 10px;
}

.table-holders th.fs-20.bg-yellow {
    background: linear-gradient(to right, #C5A441 0%, #ffd98c 100%) !important;
    color: var(--color-white) !important;
}

section.caviear-sec {
    background: var(--color-F8F5EF);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fit-imagess {
    max-width: fit-content;
    margin: 0 auto;
}

.fit-imagess img {
    border-radius: 10px;
}

.caviar-serve {
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
}

.caviar-serve {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

ul.caviar-list li a {
    color: var(--color-golden);
    font-weight: 500;
}

section.caviear-sec a {
    color: var(--color-golden);
}

/* HOW TO SERVE CAVIAR SEC END */


