body {
    margin: 0;
    padding: 0;
    font-family: "Karla", sans-serif;


}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kalnia", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease-in;
    color: inherit;
}

p,
.form-fileds label,
.form-fileds .form-fields,
.form-fileds .form-fields::-webkit-input-placeholder {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    padding-bottom: 10px;
}

input,
select,
textarea {
    width: 100%;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
}

::selection {
    background: var(--color-golden);
    color: var(--color-white);
}

:root {
    --color-white: #fff;
    --color-black: #000;
    --color-transparent: #0000;
    --color-golden: #D39128;
    --color-0B0B0B: #0B0B0B;
    --color-1E1E1E: #1E1E1E;
    --color-3B3B3B: #3B3B3B;
    --color-010101: #010101;
    --color-F2F2F7: #F2F2F7;
    --fs-180: 180px;
    --fs-50: 50px;
    --fs-40: 40px;
    --lh-50: 50px;
    --fs-30: 30px;
    --fs-120: 120px;
    --fs-22: 22px;
    --fs-18: 18px;
    --fs-60: 60px;
}



/* HEADER  */

.custom-header {
    position: fixed;
    background: var(--color-0B0B0B);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
    width: 100%;
    top: 0;
    z-index: 111;
    padding: 8px 0px;
    color: var(--color-white);
    transition: 0.5s linear;
}

header.custom-header.scrolled {
    background: #0b0b0be0;
}

.main-logo {
    max-width: 124px;
    width: 100%;
}


.grid-headers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

ul.nav-list {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

ul.account-lists {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
    max-width: fit-content;
}

.no-phone {
    max-width: fit-content;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

ul.nav-list li a,
ul.account-lists li a {
    color: var(--color-white);
    font-size: 20px;
    font-style: normal;
    line-height: 30px;
}

ul.nav-list li a {
    font-weight: 300;
}

ul.nav-list li a:hover {
    color: var(--color-golden);
}

ul.account-lists li a {
    color: var(--color-black);
    background: var(--color-white);
    padding: 10px 36px;
    border-radius: 6px;
    font-weight: 500;
}


ul.account-lists li a {
    color: var(--color-black);
    background: var(--color-white);
    padding: 10px 36px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Create gradient layer */
ul.account-lists li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #d39128 0%,
            #874e01 16.83%,
            #d39128 25.48%,
            #e7e175 34.62%,
            #d39128 73.08%,
            #e7e175 84.62%,
            #d39128 92.31%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 6px;
}

/* Smooth hover effect */
ul.account-lists li a:hover::before {
    opacity: 1;
}

ul.account-lists li a:hover {
    color: var(--color-black);
    /* optional, for contrast */
}


li.menu-item-has-children {
    position: relative;
    padding-right: 15px;
}

li.menu-item-has-children::after {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    right: 0px;
    top: 8px;
    border-bottom: 1px solid var(--color-black);
    border-right: 1px solid var(--color-black);
    transform: rotate(45deg);
    position: absolute;
    cursor: pointer;
}

ul.sub-menu {
    position: absolute;
    top: 100%;
    background: var(--color-white);
    width: 300px;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding-bottom: 10px;
    display: none;
    animation: submenu 0.3s linear;
}

@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%);

    }
}






ul.nav-list li ul.sub-menu li {
    padding: 10px 10px 2px 10px;
}


ul.sub-menu li a {
    display: block;
}


li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
    left: 100%;
    top: 0;
}

li.menu-item-has-children .sub-menu li .sub-menu {
    left: 100%;
    top: 0;
    padding-top: 0px;
}

.no-phone a {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-323D5B);
}

.menu-icon {
    max-width: 35px;
    width: 100%;
    display: none;
}

header.custom-header li.current-menu-item a {
    color: var(--color-golden) !important;
}


/* HEADER END */

/* MENU ICON ANIMATED  */
.bars {
    width: 50px;
    cursor: pointer;
    background: var(--color-black);
}

header.custom-header.inner .bars {
    background: var(--color-white);
}

header.custom-header.inner .grid-header.white .bars {
    background: var(--color-black);
}

header.custom-header.inner .grid-header.white .bars .line {
    stroke: var(--color-white) !important;
}

header.custom-header.inner .bars .line {
    stroke: var(--color-black);
}

header.custom-header.inner .menuicon-grid span {
    color: var(--color-white);
}

.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;
}

.margin-top {
    margin-top: 100px;
}

/* MENU ICON ANIMATED END */


/* HOME VIDEO BANNER SEC  */
.homevideo-sec {
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
    height: 100%;

}

video.video-overlays {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
    /* z-index: -1; */
}

.psoters-images,
.psoters-images img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

ul.socialmedia-banner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socialmedia-holders {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 20px;
}

.lines {
    min-height: 665px;
    width: 1.5px;
    background: var(--color-white);
}

.universal-anchor a {
    color: var(--color-black);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    background: var(--color-white);
    padding: 10px 15px;
    min-width: 160px;
    border-radius: 6px;
    overflow: hidden;

}



.universal-anchor.golden a {
    color: var(--color-black);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Gradient layer for smooth hover */
.universal-anchor.golden a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #D39128 0%,
            #874E01 16.83%,
            #D39128 25.48%,
            #E7E175 34.62%,
            #D39128 73.08%,
            #E7E175 84.62%,
            #D39128 92.31%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 6px;
}

/* Hover effect */
.universal-anchor.golden a:hover::before {
    opacity: 1;
}

.universal-anchor.borderss a {
    background: var(--color-transparent);
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.universal-anchor.borderss a:hover {
    background: var(--color-white);
    color: var(--color-black);
}



.grid-buttonhome {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-holders {
    max-width: 227px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--color-white);
    height: 135px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    position: absolute;
    bottom: 17px;
    right: 0;
}

.video-holders video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

.homebanner-grid {
    min-height: 830px;
    padding: 30px 0px;
    position: relative;

}


.images-mini {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}

/* HOME VIDEO BANNER SEC END */



/* WHAT WE DO MAIN HERE  */
.fs-50 {
    font-size: var(--fs-50);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.center-data .fs-50 {
    color: var(--color-0B0B0B);
    padding-bottom: 20px;
}

.center-data {
    max-width: 67%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.image-holderss {
    height: 390px;
    overflow: hidden;
    border-radius: 10px;
    border: 8px solid var(--color-0B0B0B);
    position: relative;
}

.image-holderss img.main-images {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.family-potraits {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

img.top-icon,
img.bottom-icon {
    max-width: 50px;
}

img.top-icon {
    position: absolute;
    top: 10px;
    left: 10px;
}

img.bottom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.fs-40 {
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lh-50);
    padding-bottom: 20px;
}

.family-potraits p {
    font-weight: 400;
    color: var(--color-3B3B3B);
}

.allabout-wedo {
    padding-top: 35px;
}

.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 98px;
}

.whatwedo-grid .family-potraits:nth-child(even) {
    margin-top: 105px;
}

.whatwedo-sec {
    padding: 60px 0px 120px 0px;
}

/* WHAT WE DO MAIN HERE END */



/* HOME ABOUT MAIN SEC HERE  */



.homeabout-sec {
    background: var(--color-010101);
    position: relative;
    color: var(--color-white);
}


.about-details {
    max-width: 1071px;
    width: 100%;
    /* padding-top: 10%; */
}



.fs-120 {
    font-size: var(--fs-120);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fs-30 {
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.holders-experience {
    max-width: fit-content;
    /* margin: 0 auto; */
    text-align: center;
}

.about-experience {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.about-images {
    max-width: 639px;
    width: 100%;
}

.grid-abouts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 91.4%;
    margin-left: auto;
    gap: 20px;
}

.about-details p {
    font-size: 26px;
    font-style: normal;
    font-weight: 200;
    line-height: 40px;
}

.about-details .fs-50 {
    padding-bottom: 35px;
}

.holders-experience .fs-120 {
    color: var(--color-golden);
}

.grid-aboutbtns {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 84px 0px 106px 0px;
}

.grid-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.fs-180 {
    font-size: var(--fs-180);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.homeabout-sec .fs-180 {
    /* position: absolute;
    top: 0; */
    opacity: 0.1;
}



/* HOME ABOUT MAIN SEC HERE END */


/* HOME COLLECTION MAIN CSS HERE  */

.homecollection-sec {
    padding: 70px 0px;
}

.collection-holders a {
    display: block;
    max-width: 100%;
    width: 100%;
}

.center-data p.view-all {
    font-weight: 500;
}

.center-data p.view-all a {
    text-decoration: underline;
}

.collection-holders {
    max-width: 378px;
    width: 100%;
    border: 3px solid var(--color-black);
    background: var(--color-white);
    padding: 24px;
    margin: 0 auto;
}

.collection-imagess img {
    animation: fadeimage 0.5s ease-in-out;
}

@keyframes fadeimage {
    0% {
        opacity: 0;
        transform: scale(1.1) rotate(1deg);
        /* filter: blur(4px); */
    }

    50% {
        opacity: 0.7;
        transform: scale(1.03) rotate(-1deg);
        /* filter: blur(1px); */
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        /* filter: blur(0); */
    }
}

.collection-holders:hover .last-preview {
    display: block;
}

.collection-holders:hover .main-preview {
    display: none;
}



.last-preview {
    display: none;
}

.collection-imagess {
    height: 496px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.collection-imagess img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.collection-holders p {
    color: var(--color-3B3B3B);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
}

.fs-22 {
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
}

.custom-btns .swiper-button-next::after,
.custom-btns .swiper-button-prev::after {
    display: none;
}

.custom-btns .swiper-button-next,
.custom-btns .swiper-button-prev {
    height: 60px;
    width: 60px;
}



.allcollection-details {
    padding-top: 15px;
}



/* HOME COLLECTION MAIN CSS HERE END */



/* WHY CHOOSE US HOME CSS  */

.whychoose-sec {
    background: var(--color-F2F2F7);
    padding: 80px 0px 35px 0px;
}

.album-imagess {
    max-width: fit-content;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.album-holders {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 638px;
    width: 100%;
}

.album-holders.datagrid-1 .album-imagess:nth-child(1),
.album-holders.datagrid-1 .album-imagess:nth-child(3) {
    grid-row: span 2 / span 2;
}

.album-holders.datagrid-1 .album-imagess:nth-child(5) {
    grid-column: span 2/ span 2;
}

.behindscene-holders {
    max-width: 517px;
    width: 100%;
    text-align: center;
}

.whychoose-grid {
    display: flex;
    align-items: center;
    gap: 45px;
    width: 100%;
    padding: 0px 10px;
}

.title-scene .fs-40 {
    padding-bottom: 0;
    color: var(--color-0B0B0B);
}

.title-scene {
    border-bottom: 1px solid var(--color-0B0B0B);
    padding: 35px 0px;
}

.behindscene-holders .title-scene:last-child {
    border-bottom: none;
}

.album-holders.datagrid-2 .album-imagess:nth-child(1) {
    grid-column: span 2/ span 2;
}

.album-holders.datagrid-2 .album-imagess:nth-child(2) {
    grid-row: span 2 / span 2;
}

.album-holders.datagrid-2 .album-imagess:nth-child(4) {
    grid-row: span 2 / span 2;
}





/* WHY CHOOSE US HOME CSS END */





/* OUR PACKGAGES MAIN HOME SEC  */

.ourpackages-sec {
    padding: 80px 0px;
    color: var(--color-white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.ourpackages-sec .center-data .fs-50 {
    color: var(--color-white);
}

.packages-holders {
    max-width: 256px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.packages-holders .fs-22 {
    font-family: "Karla", sans-serif;
    font-weight: 500;
}

.about-packages {
    padding-top: 15px;
}



.packages-imagess {
    height: 281px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.ourpackages-sec .universal-anchor {
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 60px;
}

.packages-imagess img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.packages-grid {
    display: grid;
    column-gap: 116px;
    row-gap: 40px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bloghome-images {
    max-width: fit-content;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.blog-details {
    max-width: 725px;
    width: 100%;
}

.blog-details .fs-50 {
    padding-bottom: 15px;
}

.blog-details .fs-40 {
    padding-bottom: 10px;
}

.bloglist-images {
    height: 154px;
    max-width: 231px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.bloglist-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.bloglist-holders .fs-22 {
    color: var(--color-010101);
    font-weight: 400;
    padding-bottom: 15px;
}

.bloglist-holders {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 45px 0px;
    border-bottom: 1px solid var(--color-black);
}

.singleblog-holders h1,.singleblog-holders h2,.singleblog-holders h3,.singleblog-holders h4,.singleblog-holders h5,.singleblog-holders h6{
    margin: revert;
    padding: revert;
}

.alldetails-list p {
    color: var(--color-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.gridhomeblog-list .bloglist-holders:last-child {
    border: none;
    padding-bottom: 0;
}

.alldetails-list .dateblogs p {
    /* font-family: "Kalnia", serif; */
    font-weight: 500;
    padding-bottom: 0;
}

.collection-holders .fs-22 {
    font-family: "Karla", sans-serif;
}

.fs-18 {
    font-size: var(--fs-18);
    font-weight: 400;
    line-height: 20px;

}

.alldetails-list .fs-18 {
    font-family: "Kalnia", serif;
    text-decoration: underline;
}

.alldetails-list .fs-18:hover{
    color: var(--color-golden);
}

.grid-linksblogs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.alldetails-list {
    max-width: 452px;
    width: 100%;
}

.only-viewall a {
    text-decoration: underline;
}

.only-viewall a:hover,
.center-data p.view-all a:hover {
    color: var(--color-golden);
}

.allblog-list .only-viewall {
    text-align: right;
    padding-bottom: 10px;
}

.homeblog-sec {
    padding: 90px 0px;
}

.custoblog-row {
    align-items: end;
}

/* OUR PACKGAGES MAIN HOME SEC END */


/* TESTIMONIAL CSS MAIN HERE  */

.teastmonial-sec {
    background: linear-gradient(180deg, #3B3B3B 0%, #1E1E1E 100%) !important;
    color: var(--color-white);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 60px 0px;
}

img.wave-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.teastmonial-sec .center-data .fs-50 {
    color: var(--color-white);
}

.testmonial-details {
    max-width: 389px;
    min-height: 252px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background: var(--color-1E1E1E);
    box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.10);
    padding: 25px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.user-images {
    max-width: 78px;
    width: 100%;
    height: 69px;
    overflow: hidden;
    border-radius: 6px;
}

.user-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.grid-name-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.rating-star {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
}

.grid-name-profile .fs-18 {
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 1px;
    font-weight: 300;
}

.testmonial-details p {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.review-deatils {
    padding-top: 17px;
}

.testimonial-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

ul.rating-star img {
    max-width: 21px;
    width: 100%;
}

/* .testimonial-container .swiper-slide-next {
    margin-top: 115px;
}

.testimonial-container .swiper-slide{
    transition: 0.5s ease-in;
} */




/* TESTIMONIAL CSS MAIN HERE END */




/* GROW UP MAIN SEC HERE  */

.growpersonalbrand-sec {
    padding: 80px 20px;
}

.image-borderss {
    max-width: fit-content;
    width: 100%;
    border-radius: 10px;
    border: 8px solid var(--color-black);
    overflow: hidden;
}

.image-gridsss {
    max-width: 770px;
    width: 100%;
    position: relative;
}

.image-gridsss .image-borderss:nth-child(2) {
    position: absolute;
    top: 22px;
    z-index: 3;
    right: 5%;
}

.image-gridsss .image-borderss:nth-child(3) {
    position: absolute;
    z-index: 3;
    right: 1%;
    bottom: 7%;
}

.universal-anchor.black a {
    background: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-black);
}

.universal-anchor.black a:hover {
    border-color: var(--color-black);
    background: var(--color-white);
    color: var(--color-black);
}

.grow-holders .universal-anchor {
    padding-top: 50px;
}

.growup-row {
    align-items: center;
}

.grow-holders {
    max-width: 875px;
    width: 100%;
}

.certification-image {
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
}

.certification-slidersholders {
    max-width: 1115px;
    width: 100%;
    margin: 0 auto;
}

.certification-slidersholders .swiper-wrapper {
    align-items: center;
}

.certification-sec {
    padding: 60px 0px;
}

.hr-lines {
    height: 1px;
    background: var(--color-black) !important;
    margin: 0;
    opacity: 1;
}

/* GROW UP MAIN SEC HERE END */


/* CUSTOM FOOTER MAIN HERE  */


footer.custom-footer {
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    z-index: 1;
}

footer.custom-footer::after {
    position: absolute;
    content: "";
    background: #000000b0;
    inset: 0;
    z-index: -1;
}

.grid-footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    padding-top: 45px;
}

.footer-logo {
    max-width: 357px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

ul.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.footermiddle-holders {
    text-align: center;
    max-width: fit-content;
    width: 100%;
    /* margin: 0 auto; */
    margin-left: 10%;
}

footer.custom-footer .fs-22 {
    font-weight: 400;
    border-bottom: 1px solid var(--color-white);
    max-width: fit-content;
    margin-bottom: 20px;
}

.footermiddle-holders .fs-22 {
    margin: 0 auto;
}

footer.custom-footer ul li a {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 150% */
}

footer.custom-footer ul li a:hover,
.copyright-holders a:hover {
    color: var(--color-golden);
}

ul.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footercontact-holders .universal-anchor {
    padding-top: 35px;
}

.footercontact-holders,
.footer-navlink {
    max-width: fit-content;
    width: 100%;
}

.foolow-us {
    padding-top: 50px;
}

.copyright-holders {
    padding: 10px 0px;
    border-top: 1px solid var(--color-white);
    text-align: center;
    margin-top: 30px;
}

ul.contact-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

video.overlays-video {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

ul.footer-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright-holders p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.grid-footer a {
    word-wrap: break-word;
    word-break: break-all;
}

/* CUSTOM FOOTER MAIN HERE END */


/* ABOUT PAGE  */

.grow-holders .fs-40 {
    font-family: "Kalnia", serif;
    font-weight: 400;
}

.mymission-sec .grow-holders {
    max-width: 570px;
    width: 100%;
    margin-left: auto;
}

.image-gridsss.aboutss .image-borderss:nth-child(2) {
    top: -7%;
    right: -5%;
    z-index: -1;
}

.image-gridsss.aboutss .image-borderss:nth-child(3) {
    right: -20%;
}

.mymission-sec {
    padding: 130px 0px 90px 0px;
}

.grid-contentonly {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.only-imagebeauty {
    max-width: 931px;
    width: 100%;
}

.only-imagebeauty,
.image-barbarara {
    border-radius: 10px;
    border: 8px solid var(--color-black);
    overflow: hidden;
}

.beuty-content {
    max-width: 535px;
    width: 100%;
    margin-bottom: 60px;
}

.beautifulphotos-sec {
    background: var(--color-black);
    color: var(--color-white);
    padding: 105px 0px;
}

.image-barbarara {
    max-width: 765px;
    width: 100%;
    position: absolute;
    width: 765px;

}

.relative-holders {
    position: relative;
}

.alldetails-adventure {
    min-height: 1095px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.startadventure-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.alldetails-adventure .fs-120 {
    color: var(--color-white);
    font-size: 115px;
    font-style: normal;
    font-weight: 400;
    line-height: 180px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
    opacity: 0.2;
}

img.lines-images {
    position: absolute;
}


img.lines-images.top-lines {
    top: 15%;
    left: 0;
}

img.lines-images.bottom-lines {
    bottom: 15%;
    right: 0;
}

img.lines-images {
    max-width: 337px;
    width: 100%;
}

.alldetails-adventure .universal-anchor {
    padding-top: 35px;
}



/* ABOUT PAGE END */



/* INNER BANNER MAIN SEC  */

.innerbanner-sec {
    min-height: 830px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.innerbanner-sec::after {
    position: absolute;
    inset: 0;
    content: "";
    background: #0000005e;
}

.banner-contents {
    max-width: 69%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


.fs-60 {
    font-size: var(--fs-60);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 25px;
}

.innerbanner-sec img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.centerdata-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: 100%;
    color: var(--color-white);
}


section.bannerinnser-sliders {
    position: relative;
}

.imagebranding {
    height: 466px;
    transition: 0.5s ease-in;
}

.branding-holders,
.imagebranding {
    max-width: 785px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.allabout-branding {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: var(--color-white);
    opacity: 0;
    transition: 0.3s ease-in;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
}

/* .imagebranding::after {
    position: absolute;
    content: "";
    inset: 0;
    background: #0000006e;
} */

.imagebranding .primary-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease-in;
}



.branding-holders:hover .imagebranding {
    padding: 25px;
}

.branding-holders:hover .imagebranding .primary-image {
    filter: brightness(0.5);
}

.branding-holders:hover .allabout-branding {
    opacity: 1;
}

.branding-holders:hover.branding-holders::after,
.branding-holders:hover.branding-holders::before {
    opacity: 1;
}


section.branding-sec.portfolio .branding-holders::after,section.branding-sec.portfolio .branding-holders::before {
    border-color: var(--color-black);
}

.branding-holders::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    /* width: 392px;
    height: 138px; */
    height: 30%;
    width:51%;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    box-sizing: border-box;
    opacity: 0;
}

.branding-holders::before {
    content: "";
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 51%;
    height: 30%;
    border-bottom: 1px solid var(--color-white);
    border-left: 1px solid var(--color-white);
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.branding-holders {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-branding {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
}

section.branding-sec {
    padding: 60px 0px;
    background: var(--color-1E1E1E);
    color: var(--color-white);
}


.breadcramp-holders li a {
    color: var(--color-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.breadcramp-holders li a:hover {
    color: var(--color-golden);
}

.breadcramp-holders li.breadcrumb-item.active a {
    color: var(--color-golden) !important;
}

section.singleportfolio-sec {
    padding: 35px 0px 85px 0px;
}

.gallery-container .jg-caption {
    display: none !important;
}

section.seemorebranding-sec {
    padding: 75px 0px;
    background: var(--color-F2F2F7);
}

.sliders-branding .imagebranding {
    height: 304px;
}

.sliders-branding .branding-holders:hover .imagebranding {
    padding: 15px;
}

.custompagination {
    margin-top: 55px;
}


.custompagination .swiper-pagination-bullet {
    height: 15px;
    width: 15px;
}

.custompagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-golden);
}


/* INNER BANNER MAIN SEC END */




/* COLLECTION MAIN SEC HERE  */


section.collectionall-sec {
    background: var(--color-1E1E1E);
    color: var(--color-white);
    padding: 60px 0px 130px 0px;
}

.imagegallery {
    max-width: fit-content;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.imagegallery img {
    transition: 0.5s ease-in;
}

img.gallery-second {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
}

.imagegallery:hover img.gallery-second {
    opacity: 1;
}

.imagegallery:hover img.gallery-first {
    opacity: 0;
}

/* parent must be positioned so the absolute child can center */
.imagegallery {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

/* initial (hidden, centered) */
.content-collections {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    max-width: 90%;
    /* background: #00000094; */
    z-index: 1;
    padding: 10px;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: 0.3s ease-in;
    opacity: 0;
}

.content-collections::after {
    position: absolute;
    content: "";
    background: #0000008a;
    border-radius: 8px;
    inset: 0;
    z-index: -1;
    scale: 0;
    transition: 0.5s ease-in;
}

.imagegallery:hover .content-collections::after {
    scale: 1;
}


.imagegallery:hover .content-collections {
    /* transform: translate(-50%, -50%) ; */
    opacity: 1;
}


.content-collections a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.imagegallery .fs-30 {
    padding-bottom: 18px;
}

.imagegallery p.view-detailss {
    border-bottom: 1px solid var(--color-white);
    max-width: fit-content;
    margin: 0 auto;
    padding-bottom: 0px;
}

.gridcollection-gallery {
    column-count: 2;
    gap: 15px;
    padding-top: 75px;
}

.gallerycollection-holders {
    max-width: 1225px;
    width: 100%;
    margin: 0 auto;
}

.backto-shop {
    padding-bottom: 45px;
}

.backto-shop a {
    font-family: "Kalnia", serif;
    text-decoration: underline;
    font-weight: 400;
}

.backto-shop a:hover {
    color: var(--color-golden);
}


/* COLLECTION MAIN SEC HERE END */




/* CONTACTR PAGE MAIN CSS HERE  */


.universal-input input {
    height: 45px;

}


.universal-input input,
.universal-input textarea {
    border: 1px solid var(--color-black);
    border-radius: 4px;
    padding: 0px 10px;
}

.universal-input label {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-black);
    padding-bottom: 5px;
    text-transform: capitalize;
}

.universal-input {
    margin-bottom: 20px;
}

.universal-input input.submit-btn {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    border: none;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s ease-in;
}

.universal-input input.submit-btn:hover {
    background: var(--color-golden) !important;
    color: var(--color-white) !important;
}

.contact-row {
    align-items: center;
}

/* CONTACTR PAGE MAIN CSS HERE END */

/* FORM MAIN CSS HERE  */

input.form-fields {
    border: none;
    max-width: 400px;
    width: 100%;
    border-bottom: 1px solid var(--color-black);
}

.form-fileds .form-fields {
    max-width: 100%;
}

.form-fileds {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.form-container p {
    color: var(--color-black);
    padding-bottom: 15px;
}

.form-fileds label {
    max-width: fit-content;
    width: 100%;
}

.form-container strong,
.form-fileds label {
    color: var(--color-black);
    font-weight: 600;
}

section.clientresoursce-sec {
    padding: 60px 0px;
}

.form-container input:disabled {
    background: transparent;
}

/* FORM MAIN CSS HERE END */



/* COLLECTION ALL DATE CSS HERE  */

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
}

section.allcollection-sec{
    padding: 80px 0px;
}

/* COLLECTION ALL DATE CSS HERE END */


.video-overlays::-webkit-media-controls,video.overlays-video::-webkit-media-controls{
  display: none !important;
  -webkit-appearance: none;
}
.video-overlays::-webkit-media-controls-enclosure,video.overlays-video::-webkit-media-controls-enclosure {
  display: none !important;
}
.video-overlays,video.overlays-video{
  pointer-events: none; /* optional - prevent user tap controls */
}

.packages-holders a {
    display: block;
    width: 100%;
    max-width: 100%;
}


section.branding-sec.portfolio{
    background: var(--color-white);
    color: revert;
}