@import "../../css/fonts.css";
*,
*::after,
*::before {
    box-sizing: border-box;
}
a {
    cursor: pointer;
}
/* :root {
	font-size: 12px;
} */

body {
    margin: 0;
    --color-text: #000100;
    --color-bg: #e2d9c7;
    --color-link: #395bb5;
    --color-link-hover: #000100;
    --color-gallery-title: #2c2724;
    --color-gallery-number: #d9d0be;
    --color-gallery-link: #fff;
    --color-gallery-link-bg: #2858d7;
    --color-gallery-link-hover: #fff;
    --color-gallery-link-bg-hover: #d4b77d;
    color: var(--color-text);
    background-color: var(--color-bg);
    --cursor-stroke: 5px;
    --cursor-fill: rgba(255, 255, 255, 0.6);
    --cursor-stroke-width: 10px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body p {
    line-height: 1.3;
    white-space: normal;
    font-family: var(--body-font);
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 300;
}
section {
    position: relative;
}
/* Page Loader */
.js .loading::before,
.js .loading::after {
    content: "";
    position: fixed;
    z-index: 1000;
}

.js .loading::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.js .loading::after {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link);
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

a {
    text-decoration: none;
    color: var(--color-link);
    outline: none;
}

.frame {
    padding: 3rem 5vw;
    text-align: center;
    position: relative;
    z-index: 1000;
    text-transform: uppercase;
}

.frame__title {
    font-size: 1rem;
    margin: 0 0 1rem;
    font-weight: 300;
}

.frame__links {
    display: inline;
}

.frame__links a:not(:last-child) {
    margin-right: 1rem;
}

.frame__demo {
    margin: 0 1rem;
}

.frame__demo--current,
.frame__demo--current:hover {
    color: var(--color-text);
    cursor: default;
}

.content {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 13rem);
    position: relative;
    justify-content: flex-start;
}

.cursor {
    display: none;
}

@media screen and (min-width: 53em) {
    .frame {
        position: fixed;
        text-align: left;
        z-index: 100;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        padding: 1.75rem;
        pointer-events: none;
        grid-template-columns: auto 1fr 1fr auto;
        grid-template-rows: auto;
        grid-template-areas: "title demos demos links";
    }
    .frame__title {
        margin: 0 4rem 0 0;
        grid-area: title;
    }
    .frame__info {
        grid-area: info;
    }
    .frame__demos {
        grid-area: demos;
    }
    .frame__links {
        grid-area: links;
        padding: 0;
        justify-self: end;
    }
    .frame a {
        pointer-events: auto;
    }
    .content {
        height: 100vh;
        justify-content: center;
    }
}

@media (any-pointer: fine) {
    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        pointer-events: none;
        width: unset;
        height: unset;
        z-index: 9999;
    }
    .cursor__inner {
        fill: var(--cursor-fill);
        stroke: var(--cursor-stroke);
        stroke-width: var(--cursor-stroke-width);
        opacity: 0.7;
    }

    .no-js .cursor {
        display: none;
    }
}

/*! locomotive-scroll v4.0.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    white-space: nowrap;
    height: 100vh;
    display: inline-block;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    /* opacity: 0;  */
    background-color: #777575;
    z-index: 999;
}
.c-scrollbar:hover {
    transform: scaleX(1.45);
}
.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1;
}
[data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1);
}
[data-scroll-direction="horizontal"] .c-scrollbar:hover {
    transform: scaleY(1.3);
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-shade-10);
    /* opacity: 0.5; */
    width: 7px;
    /* border-radius: 10px; */
    /* margin: 2px; */
    cursor: -webkit-grab;
    cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0;
}
.modal-bg-content {
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 5px 15px;
    
}
.modal-heading {
    font-size: 130px;
    line-height: 1.5;
    font-family: var(--heading-font);
    text-align: center;
    letter-spacing: 3px;
    color: var(--theme-shade-10);
}
.modal-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 80px;
}
.modal-text-section {
    padding-top: 8%;
}

.modal-bg:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.3)
    );
}
.modal-para {
    font-family: var(--heading-font);
    font-size: 40px;
    margin: 50px 0;
}
.explore-button {
    display: inline-block;
    background: var(--theme-shade-10);
    color: var(--theme-shade-2);
    font-family: var(--body-font);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    padding-top: 40px;
    line-height: 1.5;
    font-weight: 500;
}
.explore-button:hover {
    background: var(--dark-color);
    color: var(--theme-shade-10) !important;
}

.journey_sec {
    padding-left: 4vw;
    /* background-color: var(--theme-shade-9); */
    padding-right: 3vw;
}
.theme-dark-color {
    color: var(--theme-shade-2);
}
.h-md-100 {
    height: 100vh !important;
}

.modal-bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0, 5));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}
.imgzooomin {
    -webkit-animation: zoomin 20s ease-in infinite;
    animation: zoomin 20s ease-in infinite;
    transition: all 3s ease-in-out;
    overflow: hidden;
}
@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
.hero-heading {
    font-size: 35px;
    line-height: 1.3;
    color: var(--theme-shade-10);
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: none;
    margin-bottom: 40px;
}
.hero-subheading {
    font-size: 20px;
    line-height: 1.5;
    color: var(--theme-shade-10);
    font-family: var(--body-font);
    margin-bottom: 20px;
    font-weight: 500;
}
.hero-content {
    font-size: 16px;
    line-height: 1.5;
    color: var(--theme-shade-10);
    font-family: var(--body-font);
    font-weight: 300;
}
.body-heading {
    font-size: 30px;
    line-height: 1.3;
    color: var(--theme-shade-10);
    font-family: var(--body-font);
    font-weight: 500;
    text-transform: none;
    margin-bottom: 40px;
}
.body-subheading {
    font-size: 20px;
    line-height: 1.3;
    color: var(--theme-shade-10);
    font-family: var(--body-font);
    font-weight: 500;
    text-transform: none;
    margin-bottom: 40px;
}
.page-heading {
    font-size: 45px;
    line-height: 1.3;
    color: var(--theme-shade-10);
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: none;
    margin-bottom: 40px;
}
.page-subheading {
    font-size: 25px;
    line-height: 1.5;
    color: var(--theme-shade-10);
    font-family: var(--heading-font-medium);
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}
.page-heading.bigger {
    font-size: 75px;
    margin-bottom: 0px;
    line-height: 1.3;
    margin-top: -6%;
}
.coming-soon-heading {
    font-size: 2.5rem;
    text-transform: uppercase !important;
    line-height: 1.3;
    color: var(--theme-shade-10);
    font-family: var(--heading-font-thin);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: none;
    margin-bottom: 40px;
}
.logo img,
.logo {
    height: 50px;
}
.journey-heading {
    font-size: 20px;
    line-height: 1.2;
    /* color: var(--theme-shade-10) !important; */
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: none;
    /* margin-bottom: 40px; */
    text-transform: capitalize;
    /* writing-mode: vertical-rl;
    text-orientation: sideways-right;
    transform: rotate(180deg); */
    /* border-left: 1px solid var(--theme-shade-9);
    border-right: 1px solid var(--theme-shade-9); */
    /* padding: 15px;
    height: 100%;
    text-align: center; */
}
.journey-heading:hover {
    color: var(--theme-shade-8);
}
.journey-heading .small {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
}
.journey-content {
    padding-left: 20%;
    padding-right: 20%;
}
.home-banner-box {
    height: 524px;
    overflow: hidden;
    transition: all 0.5s ease;
}
.home-banner-box img {
    transition: all 0.5s ease;
    transform: scale(1);
    cursor: pointer;
}
.home-banner-box img:hover {
    transform: scale(1.1);
}
.home-banner-text {
    /* position: absolute;
    bottom: -5%; */
    color: var(--theme-shade-10);
    font-family: var(--heading-font-thin);
    /* font-style: italic !important; */
    font-size: 30px !important;
    padding-bottom: 10px;
    width: 90%;
    /* right: 2%; */
}
.text-bigger {
    font-size: 26px;
    font-family: var(--heading-font-medium);
    font-style: italic;
}
.text-light {
    color: var(--theme-shade-10) !important;
}
.page-heading.small {
    font-size: 30px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}
.benefit-img {
    height: 100vh;
}
.benefit-img-2 {
    height: 70vh;
    border-radius: 20px;
    transition: all 0.5s ease;
}
.banner-box {
    overflow: hidden;
    transition: all 0.5s ease;
    height: 70vh;
    position: relative;
    margin-bottom: 7%;
    top: 10%;
}
.benefit-img-2:hover {
    transform: scale(1.1);
}
.benefits-ul {
    padding-left: 0;
    list-style: none;
}
.benefits-ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* position: relative; */
    padding-bottom: 2vh;
    padding-top: 3.2vh;
    cursor: pointer;
}
.num {
    font-family: var(--body-font);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    /* color: var(--dark-color); */
    margin-right: 30px;
}
.benefits-ul li p {
    font-size: 18px;
    font-family: var(--heading-font);
    /* color: var(--dark-color); */
    padding-bottom: 0;
    letter-spacing: 1px;
    margin-left: 4%;
}
.benefits-ul li p:hover {
    color: var(--theme-shade-8);
}
.list-border {
    width: 100%;
    height: 1px;
    background-color: #c8c8c8;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: center left;
    transition: all 0.35s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition-property: opacity;
    transition-duration: 0.5s;
}
.benefits-ul li:hover .list-border {
    background-color: var(--theme-shade-10);
}
.quote-text {
    font-size: 25px;
    font-family: var(--heading-font-thin);
    /* font-style: italic; */
    color: var(--theme-shade-10);
    line-height: 1.5;
}
.contact-head {
    font-size: 20px;
    font-family: var(--heading-font);
    line-height: 1.5;
    color: #ddd;
    letter-spacing: 1.5px;
    text-transform: capitalize;
}
.contact-head i {
    margin-right: 15px;
}
.contact-text {
    font-size: 18px;
    font-family: var(--body-font);
    letter-spacing: 1.5px;
    color: var(--theme-shade-10);
    padding-left: 38px;
}
.contact-text:hover {
    color: var(--theme-shade-9) !important;
}
@media (max-width: 992px) {
    .modal-heading {
        font-size: 65px;
    }
    .modal-bg img {
        height: 100vh;
        width: auto !important;
        max-width: 250%;
    }
    .modal-para {
        margin-bottom: 10%;
    }
    .benefit-img {
        height: auto;
        width: 100%;
    }
}
/* .gallery-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
} */

.gallery-img {
    display: inline;
    border: 3px solid var(--theme-shade-8);
    padding: 15px 20px;
    margin: 10px;
    border-radius: 4px;
    transition: all 0.5s ease-in-out;
    background: url(../../images/radial-gradiant.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.gallery-img:hover {
    border: 3px solid var(--theme-shade-3);
}

.album {
    display: flex;
    align-items: center;
}
.album .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.album .responsive-container-block.bg {
    margin: 0 0 0 0;
    justify-content: space-between;
    align-items: center;
}

.album .img {
    width: 100%;
    margin: 4% 1% 4% 0%;
    position: relative;
    transition: all 0.5s ease-in-out;
}
.album .img:hover {
    transform: scale(0.7);
    border-radius: 10px;
}

.album .responsive-container-block.img-cont {
    flex-direction: column;
    /* max-width: 33.3%; */
    min-height: auto;
    margin: 0 0 0 0;
    height: 100%;
    padding: 15px;
}

.album .img.img-big {
    /* height: 50%; */
    margin: 0;
}
.album .img-small {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .album .img {
        margin: 0 0 18px 0;
    }
}

@media (max-width: 768px) {
    .album .img {
        max-width: 32.5%;
        margin: 0 0 0 0;
    }

    .album .responsive-container-block.bg {
        flex-direction: column;
    }

    .album .responsive-container-block.img-cont {
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    .album .responsive-container-block.big-block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .album .img.img-big {
        max-width: 49%;
        margin: 0 0 0 0;
    }
}

@media (max-width: 500px) {
    .album .img {
        max-width: 100%;
    }

    .album .responsive-container-block.img-cont {
        align-items: center;
        padding: 10px 10px 10px 10px;
    }

    .album .img.img-big {
        max-width: 100%;
    }
}

.bg-grey-1 {
    background-color: var(--theme-shade-3);
}
.bg-grey-2 {
    background-color: var(--theme-shade-1);
}
.bg-grey-3 {
    background-color: var(--theme-shade-2);
}
.bg-grey-4 {
    background-color: var(--theme-shade-3);
}
.bg-grey-5 {
    background-color: var(--dark-color);
}
.section_img {
    height: 100vh;
    width: 32rem;
    margin-right: 20rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.coming-soon-carousel {
    height: 100%;
}
.coming-soon-carousel .coming-img {
    height: 100vh;
}

.small-block {
    width: 33%;
}
.big-block {
    width: 50%;
}
.benefits-ul li {
    position: relative;
    transition: all 0.6s ease-in-out;
}
.benefit-hover-box {
    position: absolute;
    height: auto;
    width: 280px;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--theme-shade-3);
    opacity: 0;
    transition: all 0.6s ease-in-out;
    z-index: 999;
    background: var(--theme-shade-10);
    right: -60%;
    top: 0;
}
.journey-hover-box {
    height: auto;
    width: 280px;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--theme-shade-3);
    opacity: 1;
    transition: all 0.6s ease-in-out;
    z-index: 999;
    background: var(--theme-shade-10);
    position: absolute;
    display: none;
}
.journey-hover-box p {
    font-family: var(--body-font) !important;
    color: var(--theme-shade-2);
    font-size: 18px !important;
    margin-bottom: 0;
}
.benefit-hover-box p {
    font-family: var(--body-font) !important;
    color: var(--theme-shade-2);
    font-size: 18px !important;
    margin-bottom: 0;
}
.benefits-ul li:hover .benefit-hover-box {
    opacity: 1;
}

.radial-gradient {
    background: url(../../images/radial-gradiant.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 3%;
    height: 600px;
    width: 600px;
    bottom: auto;
    top: -26%;
    z-index: -1;
}
.z-9 {
    z-index: 9;
}
.owl-dots {
    text-align: center;
    padding-top: 15px;
    position: absolute;
    top: 40%;
    right: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: var(--theme-shade-3) !important;
}
.owl-dots .owl-dot {
    border: 2px double var(--theme-shade-3) !important;
    padding: 2px;
    border-radius: 50%;
    margin: 5px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-dots .owl-dot.active {
    border: 2px double var(--theme-shade-6) !important;
}
.owl-dots .owl-dot.active span {
    background: var(--theme-shade-6) !important;
}
.owl-dots .owl-dot:focus {
    outline: none;
}
/* .journey-sec {
    display: flex;
} */
.journey-box {
    height: 100vh;
    /* padding: 120px 25px 125px; */
    width: 20%;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    position: relative;
    align-items: center;
    /* margin-top: 95px;
    margin-bottom: 80px; */
}
.journey-box .page-subheading {
    font-size: 18px !important;
    color: var(--theme-shade-8);
}
/* .journey-box::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    border: 3px solid var(--theme-shade-4);
    border-radius: 20px;
    width: 100%;
} */
/* .border-right-none::after {
    border-right: none !important;
}
.border-top-none::after {
    border-top: none !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 98%;
    top: 2%;
}
.border-bottom-none::after {
    border-bottom: none !important;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    height: 98%;
    bottom: 2%;
} */
.journey-content p {
    font-size: 15px;
}
.journey-box img {
    border-radius: 15px;
    height: 300px;
    width: 100%;
}
.benefit-image {
    width: 700px;
}
.benefit-content-sec {
    height: 55vh;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../../images/hero-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}
@media (max-width: 992px) {
    html,
    body {
        overflow-x: hidden;
    }
    body p {
        font-size: 14px;
    }
    header .top_header {
        top: 0;
    }
    .page-heading {
        font-size: 30px;
    }
    .home-banner-text {
        font-size: 24px;
    }
    /* .home_div .col-md-10 {
        padding: 0;
        margin: 0;
    } */
    .home-banner {
        margin-top: 10%;
    }
    .section_img {
        height: 68vh;
        width: 100%;
        background-position: center;
        background-size: contain;
    }
    .page-heading.bigger {
        font-size: 50px;
    }
    .item_div {
        width: 100% !important;
    }
    .text-bigger {
        font-size: 20px;
        margin-bottom: 70px;
    }
    .service_sec {
        height: auto;
    }
    .radial-gradient {
        height: 300px;
        width: 300px;
        bottom: auto;
        top: 60%;
        z-index: -1;
        left: 10%;
    }
    .scroll_button {
        display: none;
    }
    body main .content .gallery section {
        padding-left: 0;
        padding-right: 0;
    }
    .protfolio_sec {
        padding-top: 0 !important;
    }
    .benefit-img.mob {
        margin-bottom: 20px;
    }
    .content_div {
        padding: 0 15px;
    }
    .benefit-hover-box {
        height: auto;
        width: 100%;
        right: 0;
        bottom: -120%;
        top: auto;
    }
    .benefits-ul li .num {
        margin-right: 20px;
    }
    .blog_sec {
        padding-top: 0 !important;
    }
    .modal-open {
        position: fixed;
    }
    .blog_sec .content_div {
        height: auto;
        padding: 25px 15px;
    }
    .quote-text {
        font-size: 20px;
    }
    .album {
        flex-direction: column;
    }
    .album .responsive-container-block.small-block {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100%;
        padding: 0 10px;
    }
    .gallery-img {
        padding: 10px;
        margin: 0 10px;
    }
    .small-block .gallery-img {
        width: 33.33%;
    }
    .contact_sec .content_div {
        padding: 0;
    }
    .journey-box {
        height: 60vh;
        width: 100%;
        padding: 15px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .contact_sec .journey-sec {
        flex-direction: column;
        height: auto;
    }
    .contact_sec .journey-sec {
        width: 100%;
        padding: 0;
    }
    .journey-box img {
        height: auto;
        width: 100%;
        margin-bottom: 40px;
    }
    .journey-box {
        margin-bottom: 15px;
    }
    .coming_soon_sec .col_item {
        width: 100%;
        height: auto;
    }
    .coming-soon-carousel .coming-img {
        height: auto;
    }
    .coming_soon_sec {
        height: auto;
        width: 100%;
    }
    footer .mob_footer .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .div_item_sdress {
        margin-bottom: 15px;
    }
    .page-heading.small {
        font-size: 25px;
    }
    .home-banner-text {
        font-size: 22px !important;
    }
    .journey-box::after {
        height: 100%;
        top: 0;
        border: 3px solid var(--theme-shade-4) !important;
        border-radius: 15px;
    }
    .what_wedo_sec {
        height: auto !important;
    }
    .benefits-ul li p {
        margin-left: 0;
        font-size: 14px;
    }
    .benefits-ul li p {
        margin-right: 20px;
    }
}
.theme-input {
    background-color: transparent;
    border-radius: 24px;
    border: 2px solid var(--theme-shade-6);
    color: var(--theme-shade-10);
    padding: 10px 0 10px 20px;
    font-family: var(--body-font);
}
.theme-input::placeholder {
    color: var(--theme-shade-10);
}
.theme-input:focus {
    background-color: transparent;
    border: 2px solid var(--theme-shade-8);
}
.theme-btn {
    border: none;
    background-color: var(--theme-shade-4);
    border-radius: 5px;
    padding: 10px 15px;
    font-family: var(--body-font);
    color: var(--theme-shade-10);
}
.theme-btn:hover {
    background-color: var(--theme-shade-10);
    color: var(--dark-color);
}
.position-relative {
    position: relative;
}
.product_details {
    display: none;
    transition: all 0.5s ease-in-out;
    position: absolute;
    bottom: 3%;
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
}
.product_details p {
    font-size: 13px;
    font-family: var(--body-font);
    text-align: center;
    color: var(--theme-shade-10);
    margin-bottom: 0;
}
.gallery-img:hover .product_details,
.gallery-img-box:hover .product_details {
    display: block;
}
.bg-transparent {
    background-color: transparent !important;
}
.small-text {
    font-size: 14px;
}
.cta {
    position: absolute;
    left: 12%;
    bottom: 0;
    z-index: 999;
    width: 410px;
    display: block;
    backdrop-filter: blur(2px);
    background: rgba(46, 34, 19, 0.6);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 15px;
}

.home-menu {
    position: fixed;
    right: 1%;
    top: 40%;
    z-index: 9;
}
.home-menu .nav-icon {
    background-color: var(--theme-shade-1);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin: 5px;
}
.home-menu li a:hover .nav-icon,
.home-menu li a.active .nav-icon {
    background-color: var(--theme-shade-10);
}
.album {
    padding-top: 50px;
    padding-bottom: 30px;
    height: 75vh;
    display: flow-root;
    overflow: hidden;
}
.gallery-img-box {
    background: linear-gradient(
        to right bottom,
        var(--theme-shade-9),
        var(--theme-shade-4)
    );
    /* margin: 0 60px; */
    padding: 25px;
    position: relative;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
}
.gallery-img-box img {
    transition: all 0.5s ease-in;
    /* height: 350px; */
}
/* .gallery-img-box:nth-child(odd){
    margin-top: -100px;
}
.gallery-img-box:nth-child(even){
    margin-top: 100px;
}
.gallery-img-box:hover img{
    transform: scale(0.9);
} */

/* .gallery-img-box:nth-child(odd)::after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 5%;
    left: -8%;
    bottom: -5%;
    background-color: var(--theme-shade-3);
    opacity: 0.5;
    height: 100%;
    width: 100%;
}
.gallery-img-box:nth-child(even)::after{
    content: "";
    position: absolute;
    z-index: -1;
    top: -5%;
    left: -8%;
    bottom: 5%;
    background-color: var(--theme-shade-3);
    opacity: 0.5;
    height: 100%;
    width: 100%;
} */

@media (max-width: 992px) {
    .modal-bg-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
    }
    .cta {
        top: 4%;
        padding: 15px;
        width: 250px;
        left: 32%;
        height: 100px;
    }
    ._link .head-text {
        font-size: 1rem;
    }
    .coming-soon-heading {
        font-size: 2.5rem;
    }
    /* .gallery-img-box:nth-child(odd){
        margin-top: 80px;
    }
    .gallery-img-box:nth-child(even){
        margin-top: 80px;
    } */
}
.header-btn {
    height: 45px;
    width: 45px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--theme-shade-10);
    margin-right: 15px;
    color: var(--theme-shade-10);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover,
.header-btn.active {
    background: var(--theme-shade-10);
    color: var(--theme-shade-2);
}
.xs-small-text {
    font-size: 10px;
}
.subscribe-btn {
    position: absolute;
    right: 2px;
    height: 80%;
    top: 2px;
    height: 43px;
    width: 43px;
    border-radius: 50%;
}
.hidden-content {
    display: none;
}
.height-400 {
    height: 550px;
}
.height-400 img {
    height: 480px;
}
.height-200 {
    height: 275px;
}
.height-200 img {
    height: 180px;
}
/* .gallery-carousel{
    margin-top: 20%;
    margin-bottom: 20%;
} */
.cta-btn {
    background-color: var(--theme-shade-10);
    font-family: var(--heading-font-medium);
    font-weight: 800;
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.5s ease-in-out;
}
.hero-btn {
    background-color: var(--theme-shade-4);
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--theme-shade-10);
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
}
.hero-btn:hover {
    background-color: var(--theme-shade-10);
}
.sm-text {
    font-size: 0.6rem !important;
}
.journey-accordion {
    position: relative;
    margin-top: 15px;
    padding: 5px;
}
.light-dark-bg {
    background: #242323;
}
.exemp-img {
    height: 500px;
    width: 700px;
    border-radius: 10px;
}
.exemp-img-2 {
    height: 500px;
    width: 700px;
    border-radius: 10px;
}
.exemp-content-sec {
    position: relative;
}
.exemp-content {
    /* position: absolute; */
    bottom: 0;
    z-index: 99;
    width: 75%;
    /* background: rgba(0, 0, 0, 0.8); */
    border-radius: 10px;
    padding: 15px;
}
.exemp-content p {
    font-size: 14px;
}
.menu-link {
    position: relative;
}
.menu-link .menu-icon {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 600;
    color: var(--theme-shade-2);
    z-index: 9;
}
.menu-head {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-font);
    margin-bottom: 10px;
    color: var(--theme-shade-3);
}
.close-link {
    color: var(--theme-shade-3);
    border: none;
    background: transparent;
    cursor: pointer;
}
.menu-card {
    position: absolute;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 20px 20px;
    border-radius: 35px;
    display: none;
    transition: 0.5s all ease-in-out;
    top: 50%;
    left: 5%;
    width: 205px;
    z-index: 999;
    white-space: nowrap;
}
.menu-icon-border:after,
.menu-icon-border:before {
    background-color: rgba(46, 34, 19, 0.2);
    border-radius: 50%;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.menu-icon-border:before {
    animation: tipTriggerPulse 3s infinite;
    z-index: 1;
}
.menu-icon-border:after {
    transform: scale(1.4);
    z-index: 2;
}
@keyframes tipTriggerPulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: scale(2);
    }
}
.menu-icon-border {
    /* border: 2px solid #fff;
    padding: 2px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; */
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
    z-index: 1;
    cursor: pointer;
    background: transparent;
    border-radius: 50%;
}
/* .menu-link:hover .menu-card {
    display: inline-block;
} */
.menu-link:hover .menu-icon,
.menu-link.active .menu-icon {
    background-color: var(--theme-shade-8);
}
/* .menu-link:hover .menu-icon-border, .menu-link.active .menu-icon-border {
    border: 2px solid var(--theme-shade-8);
} */
.home-link {
    position: absolute;
    top: 41%;
    left: 24%;
}
.intro-link {
    position: absolute;
    top: 11%;
    left: 29%;
}
.nutshell-link {
    position: absolute;
    top: 52%;
    left: 34%;
}
.core-link {
    position: absolute;
    top: 44%;
    left: 43%;
}
.brand-link {
    position: absolute;
    top: 70%;
    left: 57%;
}
.advance-link {
    position: absolute;
    top: 40%;
    left: 55%;
}
.logo-link {
    position: absolute;
    top: 44%;
    left: 58%;
}
.audience-link {
    position: absolute;
    top: 54%;
    left: 58%;
}
.highlights-link {
    position: absolute;
    top: 47%;
    left: 64%;
}
.contact-link {
    position: absolute;
    top: 54%;
    left: 70%;
}
.gallery-box {
    width: 400px;
}
.gallery-top {
    background-color: var(--theme-shade-10);
    height: 80%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-bottom {
    background: var(--theme-shade-4);
    height: 20%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-bottom:hover{
    background-color: var(--dark-color);
}
.gallery-image {
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
}
.gallery-carousel .owl-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: -5%;
    left: 4%;
    right: 5%;
    width: 90%;
}
.gallery-carousel .owl-nav .owl-prev,
.gallery-carousel .owl-nav .owl-next {
    font-size: 18px !important;
    color: var(--dark-color) !important;
}
.btn-close {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 999;
    color: var(--theme-shade-10) !important;
}
.crafting-body {
    background: var(--theme-shade-2);
}
.crafting-body hr {
    border-top: 1px solid #999;
}
@media (max-width: 992px) {
    .velvet{
        background: linear-gradient(150deg, #000000 30%, #2e2213, #74562d 80%);
    }
    .height-400 img {
        height: 320px;
    }
    .height-400 {
        height: 400px;
    }
    .height-200 {
        height: 200px;
    }
    .album {
        height: auto;
    }
    .mob {
        display: block;
    }
    .desk {
        display: none;
    }
    .mob-journey {
        margin-top: 25px;
    }
    .journey-heading {
        font-size: 17px;
    }
    .journey-heading .small {
        font-size: 13px;
    }
    .num {
        margin-right: 15px;
    }
    .benefit-content-sec {
        width: 100vw;
        height: 40vh;
    }
    .gallery-box {
        width: 340px;
    }
    .gallery-top{
        height: 400px;
    }
    .gallery-image {
        width: 70% !important;
        margin-left: 10%;
        margin-right: 15%;
    }
    .exemp-content-2{
        padding: 25px 10px;
    }
    .exemp-content-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .exemp-img {
        width: 100%;
        height: auto;
    }
    .creative {
        padding: 15px 0 !important;
    }
    .exemp-content {
        width: 100%;
        padding: 10px;
    }
    .menu-card {
        font-size: 14px;
        padding: 12px 12px;
        border-radius: 29px;
        top: 86%;
        left: 5%;
        width: 240px;
    }

}
@media (min-width: 991px) {
    .gallery-img-box {
        border: 5px solid #242323;
    }
    .home_sec {
        padding-top: 4rem;
    }
    .mob {
        display: none;
    }
    .desk {
        display: flex;
    }
    .home-100 {
        height: 100vh;
    }
    .exemp-content-2 {
        width: 50rem;
        padding-left: 4rem;
        padding-right: 4rem;
        height: 100vh;
        margin-top: 10vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
.allure-text{
    font-size: 20px;
    color: var(--theme-shade-10);
    border-top: 2px solid var(--theme-shade-10);
    border-bottom: 2px solid var(--theme-shade-10);
    padding: 15px 0;
    bottom: -15%;
    position: absolute;
    font-weight: 600;
    font-family: var(--body-font);
    letter-spacing: 1px;
}
.hover-button:hover{
    background: var(--theme-shade-4);
    border-radius: 20px;
    padding: 8px 20px;
}
