body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #000;
}

@font-face {
    font-family: 'NHaasGroteskDSPro-65Md';
    src: url("../fonts/NHaasGroteskDSPro-65Md.ttf");
}

@font-face {
    font-family: 'century-gothic';
    src: url("../fonts/centurygothic.ttf");
}

.carousel-indicators {
    bottom: 14%;
}

.carousel-item {
    transition: transform 0.5s ease-in-out;
}

.carousel-item-about {
    transition: transform 0.5s ease-in-out;
}

.carousel-indicators li {
    display: inline-block;
    text-indent: 0;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background-color: #666;
    box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

@media all and (transform-3d),
(-webkit-transform-3d) {

    .carousel-fade .carousel-inner>.item.next,
    .carousel-fade .carousel-inner>.item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner>.item.prev,
    .carousel-fade .carousel-inner>.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner>.item.next.left,
    .carousel-fade .carousel-inner>.item.prev.right,
    .carousel-fade .carousel-inner>.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-inner {
    z-index: 1;
    /* height: 100vh; */
}

.carousel-caption {
    font-family: 'century-gothic';
    font-size: 80px !important;
    font-weight: 300;
    width: 100%;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
    animation-duration: 1.5s;
    line-height: 80px;
    text-align: center;
}

.main-head {
    letter-spacing: -2px;
    animation: slideDown 2s ease-out forwards;
    /* Adjust the duration as needed */
}

@keyframes slideDown {
    0% {
        transform: translateY(-50px);
        /* Adjust the initial position as needed */
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.item.active {
    position: relative;
}

.carousel-caption {
    z-index: 2;
    /* Ensure captions are above the overlay */
}

.top-bar-right-actions {
    display: flex;
    align-items: center;
    gap: 100px;
    margin: 40px 40px 0px 0px;
}

.top-bar-right-actions .search {
    margin: 0;
}

.shop-online-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.shop-online-btn:hover {
    color: #e5a358;
    text-decoration: none !important;
}

@keyframes cartNudge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

.shop-cart-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    animation: cartNudge 1.5s ease-in-out infinite;
}

.shop-online-nav-item {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.shop-online-nav-item .shop-cart-icon {
    width: 20px;
    height: 20px;
}

.shop-online-sidenav {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.search {
    margin: 40px 40px 0px 0px;
    cursor: pointer;
}



/* Off-canvas menu styles */

.img-100 {
    width: 100%;
}

.search-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: all .6s ease-out;
    z-index: 1000;
    opacity: 0;
}

.search-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.search-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close-btn {
    background: none;
    border: none;
    font-size: 55px;
    color: #fff;
    cursor: pointer;
    align-self: flex-end;
}

.search-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#searchInput {
    width: 100%;
    padding: 10px;
    font-size: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: white;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: black;
}

.vertical-text-container {
    position: absolute;
    top: 43%;
    left: 28px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
    z-index: 5;
    font-family: 'century-gothic';
    transition: transform 0.3s ease;
    /* Adjust the space between the arrow and text */
    cursor: pointer;
}

.story {
    transform: rotate(-90deg) translateY(-35%);
    margin-left: 15px;
}

.story a {
    color: white;
}

.uparrow-new {
    margin-bottom: 35px;
    transition: transform 0.3s ease;
    /* Adjust the space between the arrow and text */
}

.vertical-text-container:hover .uparrow-new {
    transform: translateY(-5px);
    /* Move the arrow up by 5px on hover */
}

.nav-link a.active {
    color: white;
}

.nav-link a.active:after {
    content: '';
    position: absolute;
    left: 12px;
    top: 20px;
    width: 19px;
    height: 2px;
    background-color: #E6B00B;
}

/************************************************************** ABOUTUS**********************************************************************/

.text {
    width: 68% !important;
    margin: auto;
}

.text>p>div {
    background: linear-gradient(to right, rgb(255, 255, 255) 50%, rgb(37, 37, 37) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /*   margin-bottom: -250px; */
    margin-left: 50px;
    line-height: 60px;
    /*   outline: 6px dotted teal; */
    font-size: 56px;
    font-family: 'century-gothic';
    text-align: center !important;
    margin: auto;
    text-align: center !important;
}

.text-color-change {
    width: auto !important;
    margin: auto;
    margin-bottom: 100px;
}

@media (max-width:575px) {
    .text {
        width: 100% !important;
        margin: auto;
    }

    .text>p>div {
        font-size: 24px;
        text-align: left !important;
        margin-left: 0;
        line-height: 40px;
        /* Adjust line height for better readability on smaller screens */
    }

    .text-color-change {
        width: 100%;
        margin: auto;
        padding: 0 10px;
        /* Add some padding for better alignment */
    }
}

.about-section {
    background-color: black;
    /* padding: 165px 0px 0px 0px; */
    position: relative;
}

.head-abt {
    font-family: 'century-gothic';
    color: #BEBEBE;
    font-size: 42px;
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 65px;
    position: relative;
    margin: 0;
}

.head-abt::after {
    content: '';
    position: absolute;
    left: 48%;
    top: 57px;
    width: 60px;
    height: 1px;
    background-color: #707070;
}

.abt-content {
    font-family: 'century-gothic';
    color: #fff;
    font-size: 56px;
    width: 63%;
    text-align: center;
    line-height: 62px;
    display: flex;
    justify-content: center;
    margin: auto;
    letter-spacing: 0px;
    padding-bottom: 150px;
}

.bg-img {
    width: 100%;
    position: relative;
    filter: grayscale();
}

.shadow-bg {
    position: absolute;
    width: 100%;
    top: 0;
}

.img-abt-bg {
    position: relative;
}


/************************************************************** END**********************************************************************/


/************************************************************** Businesses**********************************************************************/

.business-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-image: linear-gradient(#F3F3F3, #F4F4F4);
    padding-top: 134px;
    padding-bottom: 110px;
    overflow: hidden;
}

.business-content,
.second-section-content {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.reveal {
    transform: translateY(0);
    opacity: 1;
}

.shadow-img {
    position: absolute;
    left: 0;
    bottom: -20px;
    /* Adjust the distance as needed */
    width: 100%;
    /* Adjust size as needed */
    height: auto;
    z-index: -1;
    /* Make sure it appears behind the text */
    opacity: 0.5;
    /* Adjust opacity for desired effect */
}

.first-section {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.second-section {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
    margin: auto;
    text-align: right;
}

.business-head {
    font-family: 'century-gothic';
    color: #8B8B8B;
    font-size: 42px;
    font-weight: 400;
    position: relative;
    padding-bottom: 35px;
}

.business-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 60px;
    height: 1px;
    background-color: #707070;
    transition: width 0.5s ease;
    /* Smooth transition for the width */
}

.business-head:hover::after {
    width: 30%;
    /* Expand the width on hover */
}

.business-head-two {
    font-family: 'century-gothic';
    color: #8B8B8B;
    font-size: 42px;
    font-weight: 400;
    position: relative;
    padding-bottom: 35px;
}

.business-head-two::after {
    content: '';
    position: absolute;
    left: 0;
    top: 57px;
    width: 60px;
    height: 1px;
    background-color: #707070;
    transition: width 0.5s ease;
    /* Smooth transition for the width */
}

.business-head-two:hover::after {
    width: 15%;
    /* Expand the width on hover */
}

.business-heads {
    font-family: 'century-gothic';
    color: #8B8B8B;
    font-size: 42px;
    font-weight: 400;
    position: relative;
    padding-bottom: 35px;
}

.business-heads::after {
    content: '';
    position: absolute;
    left: 0;
    top: 60px;
    width: 60px;
    height: 1px;
    background-color: #707070;
    transition: width 0.5s ease;
    /* Smooth transition for the width */
}

.business-heads:hover::after {
    width: 15%;
    /* Expand the width on hover */
}

.business-container {
    padding-left: 107px;
}

@media (max-width:1200px) {
    .business-container {
        padding-left: 45px;
    }
}

.business-content {
    font-family: 'century-gothic';
    color: #000;
    font-size: 62px !important;
    font-weight: 400;
    position: relative;
    padding-bottom: 35px;
    line-height: 66px;
    width: 95%;
}

.second-section-content {
    font-family: 'century-gothic';
    color: #000;
    font-size: 18px;
    position: relative;
    padding-bottom: 35px;
    line-height: 24px;
    width: 90%;
}

.j-img {
    position: absolute;
    width: 200px;
    /* Adjust width of the image */
    height: auto;
    /* Maintain aspect ratio */
    right: -9px;
    top: -208px;
}

.discvr {
    position: relative;
    margin-left: 21px;
    color: black;
    font-family: 'century-gothic';
    color: #000;
    font-size: 14px;
    display: inline-block;
}

.discvr a {
    color: black;
    position: relative;
}

.discvr::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    /* Adjust the size of the dot */
    height: 10px;
    /* Adjust the size of the dot */
    background-color: black;
    /* Adjust the color of the dot */
    border-radius: 50%;
    margin-left: -17px;
    transition: width 0.3s ease, height 0.3s ease;
}

.extra-cir::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    /* Adjust the size of the dot */
    height: 10px;
    /* Adjust the size of the dot */
    background-color: rgba(255, 255, 255, 0);
    /* Adjust the color of the dot */
    border-radius: 50%;
    margin-left: -17px;
    transition: width 0.3s ease, height 0.3s ease;
}

.discvr a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    /* Adjust this to position the line closer to the text */
    left: 0;
    background-color: #000;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.discvr a:hover:after {
    transform: scaleX(1);
    text-decoration: none !important;
    color: #000;
    transform-origin: bottom left;
}


/************************************************************** END**********************************************************************/

.carousel {
    position: relative;
    /* z-index: 1; */
}


/**
  Controls - pause/resume, previous, and next buttons
*/


/* Resets for all buttons */

.is-control {
    background: none;
    color: rgba(0, 0, 0, .7);
    border: 0;
    cursor: pointer;
    transition: all .2s linear;
}

.is-control:focus {
    outline: none;
    background-color: rgba(0, 0, 0, .8);
    color: rgba(255, 255, 255, 1);
}


/* Pause/resume button */

.rotation-button {
    position: absolute;
    bottom: 5px;
    left: 5px;
    padding: 10px 15px;
    z-index: 1;
    font-size: 20px;
    border-radius: 5px;
}

.rotation-button .pause-container,
.rotation-button .resume-container {
    display: none;
}

.rotation-button .pause-container.is-visible,
.rotation-button .resume-container.is-visible {
    display: block;
}


/* Previous slide button */

.previous-button {
    position: absolute;
    left: 0;
    top: calc(var(--carousel-height)/2 - 40px);
    padding: 5px 15px;
    z-index: 1;
    font-size: 40px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 0;
}


/* Next slide button */

.next-button {
    position: absolute;
    right: 0;
    top: calc(var(--carousel-height)/2 - 40px);
    padding: 5px 15px;
    z-index: 1;
    font-size: 40px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: 0;
}


/**
  Slides container
*/

.slides {
    /** By default Slick absolutely positions it's slide dots under the slides and adds a bottom margin to prevent overlap with content that follows. Since we're moving the slide dots into the carousel itself, this margin is no longer needed. */
    margin-bottom: 0 !important;
}


/**
  Single slide
*/

.slide {
    position: relative;
    height: var(--carousel-height);
}


/* Make absolutely sure non-visible slides are hidden from all users */

.slide.is-hidden {
    visibility: hidden;
}

.slide .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/**
  Slide 2 content
*/

.slide .content {
    position: absolute;
    top: 20px;
    left: 15%;
    max-width: 400px;
    width: 50%;
    max-height: 70%;
    padding: 15px;
    white-space: normal;
    color: white;
    background-color: royalblue;
    box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
}

.slide .content h2 {
    margin: 0;
    font-size: 1.7rem;
}

.slide .content p {
    margin: 10px 0 20px 0;
}

.slide .content .cta-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: white;
    color: rgba(0, 0, 0, .7);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, .3);
}

.slide .content .cta-link:focus,
.slide .content .cta-link:hover {
    text-decoration: underline;
    color: black;
}

.slide .content .cta-link:focus {
    outline: 3px solid rgba(0, 0, 0, 1);
}


/**
  Restyle the slide dots generated by Slick Slider
*/

.slick-dots {
    bottom: 10px;
}

.slick-dots li {
    margin: 0 2px;
}


/* Create a circle to serve as the slide dot */

.slick-dots li button {
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, .3);
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    opacity: .7;
    transition: transform .2s linear;
}


/* Get rid of the Unicode • character that Slick injects, which screen readers may attempt to read out as "bullet" */

.slick-dots li button:before {
    content: '';
}


/* Give the focused slide dot a nice visible focus indicator */

.slick-dots li button:focus {
    box-shadow: 0 0 0 1px white, 0 0 0 4px hsl(204, 86%, 53%);
    outline: none;
}


/* Fade in on hover */

.slick-dots li button:hover {
    opacity: 1;
}


/* Leverage aria-current for styling to ensure we're using the attribute correctly */

.slick-dots li button[aria-current="true"] {
    background-color: rgba(0, 0, 0, 1);
    transform: scale(1.4);
}


/** Credits at bottom */

.credits {
    margin-top: 20px;
    margin-right: 20px;
    padding: 5px;
    float: right;
    font-size: 14px;
    color: black;
    text-decoration: none;
    opacity: .7;
}

.credits img {
    height: 30px;
    margin-left: 5px;
    margin-top: -2px;
    vertical-align: middle;
}

.credits:hover,
.credits:focus {
    opacity: 1;
}

.background-image {
    filter: grayscale();
}

.carousel-item img {
    filter: grayscale();
}

.carousel-item-about img {
    filter: grayscale();
}

@media (min-width:1920px) {
    .carousel-indicators {
        position: absolute;
        right: -2%;
        bottom: 0;
        left: 0;
        z-index: 5;
        display: flex;
        justify-content: end;
        padding: 0;
        margin-right: 0%;
        margin-bottom: 1rem;
        margin-left: 0%;
        top: -59%;
        transform: translateY(-50%) rotate(90deg);
    }

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 14px;
        height: 14px;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: transparent;
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity .6s ease;
        border-radius: 3px;
        /* border: 1px solid; */
        border: 1px solid white;
    }

    .carousel-indicators .active {
        background-color: rgb(214, 208, 208);
    }
}


/* nav-icon-1 */

.nav-icon-1 {
    width: 30px;
    height: 30px;
    transition: .1s;
    margin: 40px 0px 0px 40px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 0;
}

.nav-icon-1 span {
    width: 5px;
    height: 5px;
    background-color: #E6B00B;
    display: block;
    border-radius: 0;
    position: absolute;
}

.nav-icon-1:hover span {
    transform: scale(1.2);
    transition: 350ms cubic-bezier(.8, .5, .2, 1.4);
}

.nav-icon-1 span:nth-child(1) {
    left: 0;
    top: 0;
}

.nav-icon-1 span:nth-child(2) {
    left: 12px;
    top: 0;
}

.nav-icon-1 span:nth-child(3) {
    right: 0;
    top: 0;
}

.nav-icon-1 span:nth-child(4) {
    left: 0;
    top: 12px;
}

.nav-icon-1 span:nth-child(5) {
    position: absolute;
    left: 12px;
    top: 12px;
}

.nav-icon-1 span:nth-child(6) {
    right: 0px;
    top: 12px;
}

.nav-icon-1 span:nth-child(7) {
    left: 0px;
    bottom: 0px;
}

.nav-icon-1 span:nth-child(8) {
    position: absolute;
    left: 12px;
    bottom: 0px;
}

.nav-icon-1 span:nth-child(9) {
    right: 0px;
    bottom: 0px;
}

.nav-icon-1.open {
    transform: rotate(180deg);
    cursor: pointer;
    transition: .2s cubic-bezier(.8, .5, .2, 1.4);
}

.nav-icon-1.open span {
    border-radius: 0;
    transition-delay: 200ms;
    transition: .5s cubic-bezier(.8, .5, .2, 1.4);
}

.nav-icon-1.open span:nth-child(2) {
    left: 6px;
    top: 6px;
}

.nav-icon-1.open span:nth-child(4) {
    left: 6px;
    top: 18px;
}

.nav-icon-1.open span:nth-child(6) {
    right: 6px;
    top: 6px;
}

.nav-icon-1.open span:nth-child(8) {
    left: 18px;
    bottom: 6px;
}

.fixed-logo {
    position: fixed;
    top: 10px;
    /* Adjust this value to move the logo down if needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    padding: 10px 20px;
    z-index: 1000;
}

.center-logo {
    position: fixed;
    left: 45%;
}

.logo {
    margin-top: 41px;
    transition: margin-top 0.3s ease;
}

.circle-img {
    position: absolute;
    top: -278px;
    left: -55%;
    overflow: hidden;
    display: flex;
}

.icon.nav-icon-1 {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.carousel-item {
    position: relative;
    transition: transform 1.5s ease;
}

.carousel-item-about {
    position: relative;
    transition: transform 1.5s ease;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0), rgb(21 20 20 / 73%), rgb(0, 0, 0));
    z-index: 1;
    /* Ensure the overlay is above the image but below the text */
}

.carousel-item-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0), rgb(21 20 20 / 44%), rgb(0, 0, 0));
    z-index: 1;
    /* Ensure the overlay is above the image but below the text */
}

form,
input,
.caret {
    margin: auto;
}

form {
    position: relative;
    width: 100%;
    max-width: 50em;
}

input,
.caret {
    display: block;
    transition: all calc(var(--dur) * 0.5) linear;
}

input {
    background: transparent;
    border-radius: 50%;
    caret-color: var(--primary);
    width: 19px;
    height: 19px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus,
input:valid {
    background: var(--input);
    border-radius: 0.25em;
    box-shadow: none;
    padding: 0.75em 1em;
    transition-duration: calc(var(--dur) * 0.25);
    transition-delay: calc(var(--dur) * 0.25);
    width: 100%;
    height: 3em;
}

input:focus {
    animation: showCaret var(--dur) steps(1);
    outline: transparent;
}

input:focus+.caret,
input:valid+.caret {
    animation: handleToCaret var(--dur) linear;
    background: transparent;
    width: 1px;
    height: 1.5em;
    transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
}

input::-webkit-search-decoration {
    -webkit-appearance: none;
}

label {
    color: #e3e4e8;
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

.caret {
    background: currentColor;
    border-radius: 0 0 0.125em 0.125em;
    margin-bottom: -0.6em;
    width: 0.25em;
    height: 1em;
    transform: translate(0, -1em) rotate(-45deg) translate(0, 0.875em);
    transform-origin: 50% 0;
}


/* Dark mode */

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #17181c;
        --fg: #e3e4e8;
        --input: #2e3138;
        --primary: #5583f6;
    }
}


/* Animations */

@keyframes showCaret {
    from {
        caret-color: transparent;
    }

    to {
        caret-color: var(--primary);
    }
}

@keyframes handleToCaret {
    from {
        background: currentColor;
        width: 0.25em;
        height: 1em;
        transform: translate(0, -1em) rotate(-45deg) translate(0, 0.875em);
    }

    25% {
        background: currentColor;
        width: 0.25em;
        height: 1em;
        transform: translate(0, -1em) rotate(-180deg) translate(0, 0.875em);
    }

    50%,
    62.5% {
        background: var(--primary);
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(7.5em, 2.5em);
    }

    75%,
    99% {
        background: var(--primary);
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
    }

    87.5% {
        background: var(--primary);
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(7.5em, 0.125em);
    }

    to {
        background: transparent;
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
    }
}

#search {
    color: white;
}

.banner-content {
    font-size: 16px;
    text-align: cenet;
    color: #CFCFCF;
    font-family: 'century-gothic';
    width: 28%;
    line-height: 22px;
    margin: auto;
    padding-top: 22px;
    font-weight: 400;
    padding-bottom: 29px;
    animation: slideDown 2s ease-out forwards;
    /* Adjust the duration as needed */
}

#section05 a span {
    position: absolute;
    top: 1%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -6px;
    border-left: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}

#section05-about a span {
    position: absolute;
    top: 1%;
    left: 56%;
    width: 8px;
    height: 8px;
    margin-left: -6px;
    border-left: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

.demo {
    border-radius: 1px solid white;
}

.scroll-text {
    font-size: 12px;
    color: white;
    font-family: 'century-gothic';
    text-decoration: none;
    text-transform: capitalize;
    position: absolute;
    left: 0;
    margin-left: 18px;
    cursor: default;
}

.scroll-text-about {
    font-size: 11px;
    color: white;
    font-family: 'century-gothic';
    text-decoration: none;
    text-transform: capitalize;
    position: absolute;
    left: 0;
    margin-left: 13px;
    cursor: default;
}

#section05 {
    border: 1px solid #707070;
    border-radius: 50%;
    height: 65px;
    width: 65px;
    margin: auto;
    position: relative;
}

#section05-about {
    border: 1px solid #707070;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    margin: auto;
    position: absolute;
    left: 48%;
    bottom: -179px;
}

.loop-text {
    font-size: 290px;
    white-space: nowrap;
    padding: 0px 30px;
    letter-spacing: 1px;
    animation: move-rtl 55000ms linear infinite;
    opacity: 1;
    font-family: 'NHaasGroteskDSPro-65Md';
    -webkit-text-stroke-width: 1.7px;
    /* Stroke width */
    -webkit-text-stroke-color: rgb(255 255 255 / 15%);
    /* Stroke color */
    text-fill-color: white;
    /* Text color */
    color: transparent;
    z-index: 0;
    text-transform: uppercase;
}

@keyframes move-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.text-wrapper {
    display: flex;
    justify-content: start;
    overflow: hidden;
    position: absolute;
    bottom: -200px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999 !important;
    top: 0;
    left: 0;
    background: #1c1c1c;
    overflow-x: hidden;
    transition: all .6s ease-out;
    padding-top: 60px;
    text-align: center;
}

.sidenav {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 40px;
    display: block;
    color: #fff;
    transition: padding 0.3s, filter 1s, opacity 1s, transform 1s;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(5px);
    text-align: left;
    font-family: 'century-gothic';
}


/* Apply underline effect to links, excluding .closebtn */

.sidenav a:not(.closebtn)::after {
    content: "";
    position: absolute;
    left: 32px;
    bottom: 0;
    width: 100%;
    height: 2px;
    /* Adjust thickness as needed */
    background-color: #E6B00B;
    /* Underline color */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}


/* On hover, animate the underline */

.sidenav a:not(.closebtn):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.sidenav a:hover:before {
    width: 1rem;
    height: 1rem;
}

.sidenav a:before {
    content: "";
    width: 0;
    height: 0;
    background: #E6B00B;
    border-radius: 50%;
    position: relative;
    top: -1.5px;
    margin-right: .875rem;
    transition: all .6s cubic-bezier(.18, .68, .91, .84);
    vertical-align: middle;
    display: inline-block;
}

.sidenav a:hover {
    color: #F1F1F1;
    opacity: 1;
    letter-spacing: .01em;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px !important;
    margin-left: 50px;
    text-decoration: none !important;
}

@keyframes fadeInOpacityAndTranslate {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.sidenav.opened a {
    animation: fadeInOpacityAndTranslate 1s ease forwards;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    position: sticky;
    top: 0px;
    background-color: transparent;
    width: 100%;
    z-index: 11;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(30, 130, 95, 0.5);
}

.container {
    max-width: 100%;
    padding: 0 42px;
    margin: 0 auto;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn {
    /* flex: 3; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    flex: 2;
}

.log-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo {
    color: var(--clr-light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span {
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid var(--clr-light);
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid,
.btn.transparent:hover {
    background-color: var(--clr-light);
    color: var(--clr-btn);
}

.btn.transparent,
.btn.solid:hover {
    background-color: transparent;
    color: var(--clr-light);
}

.nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-link {
    position: relative;
}

.nav-link>a {
    /* line-height: 3rem; */
    color: #BEBEBE;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    /* font-family: 'century-gothic'; */
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'century-gothic';
}

.nav-link>a>i {
    margin-left: .2rem;
}


/* .nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 23px;
  width: 100%;
  height: 2px; 
  background-color: transparent; 
  transition: background-color 0.3s ease;
} */


/* 
.nav-link > a:hover{
content: '';
  position: absolute;
  left: 0%;
  top: 0px;
  width: 19px;
  height: 1px;
  background-color: #E6B00B;
}
*/


/* .nav-link:hover > a {
  transform: scale(1.1);
} */

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 500px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    background-color: #000;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 8px;
}

.dropdown ul {
    position: relative;
    padding-left: 0px;
}

.dropdown-link {
    width: fit-content;
}

.dropdown-link>a {
    display: flex;
    color: white;
    padding: 12px;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    font-family: 'century-gothic';
    width: fit-content;
}

.dropdown-link:hover>a {
    background-color: var(--clr-dropdown);
    color: #9b9494;
}

.dropdown-link.active>a {
    background-color: var(--clr-dropdown-active);
    color: #9b9494;
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
    transform: rotate(-90deg);
}

.arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: var(--clr-light);
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
    background-color: var(--clr-dropdown);
}

.dropdown-link {
    position: relative;
}

.dropdown.second {
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: white;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: white;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .hamburger-menu-container {
        display: flex;
    }

    #check {
        display: block;
        right: 0rem;
        width: 3.5rem;
        height: 3.5rem;
    }

    .nav-btn {
        position: fixed;
        height: calc(100vh - 3rem);
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--clr-btn);
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked~.nav-btn {
        transform: translateX(0);
    }

    #check:checked~.nav-btn .nav-link,
    #check:checked~.nav-btn .log-sign {
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links {
        flex: initial;
        width: 100%;
        background-color: black;
        height: 100%;
    }

    .nav-links>ul {
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link>a {
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover>a {
        transform: scale(1);
        background-color: var(--clr-nav-hover);
    }

    .dropdown,
    .dropdown.second {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: black;
        display: none;
        color: white;
    }

    .nav-link:hover>.dropdown,
    .dropdown-link:hover>.dropdown {
        display: block;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }

    /* .nav-link:hover>a>i,
    .dropdown-link:hover>a>i {
        transform: rotate(358deg);
        transition: transform 0.3s ease-in-out;
    } */
    .dropdown-link>a {
        background-color: transparent;
        color: var(--clr-light);
        padding: 5px 2rem;
        /* line-height: 1; */
    }

    .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)) {
        border-bottom: none;
    }

    .arrow {
        z-index: 1;
        background-color: var(--clr-btn);
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow {
        background-color: var(--clr-nav-hover);
    }

    .dropdown .dropdown .arrow {
        display: none;
    }

    .dropdown-link:hover>a {
        background-color: var(--clr-dropdown-link-hov);
    }

    .dropdown-link:first-child:hover~.arrow {
        background-color: var(--clr-nav-hover);
    }

    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i {
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign {
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}

@media (max-width: 1024px) {
    .nav-link>a {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width:1366px) {
    .carousel-caption {
        font-size: 50px !important;
        line-height: 54px;
    }

    .banner-content {
        width: 39%;
        padding: 10px 0px;
    }

    .loop-text {
        font-size: 190px;
    }

    header {
        padding-top: 50px;
    }
}

@media (max-width:1285px) {
    .loop-text {
        font-size: 150px;
    }

    .text-wrapper {
        bottom: -221px !important;
    }

    .center-logo {
        position: fixed;
        left: 42%;
    }
}

@media (max-width:1200px) {
    .center-logo {
        position: fixed;
        left: 42%;
    }
}

@media (max-width: 1000px) {
    .center-logo {
        position: fixed;
        left: 41%;
    }

    .circle-img {
        display: none;
    }

    header {
        padding-top: 31px;
    }

    .logo {
        margin-bottom: 12px;
    }
}

@media (max-width:991px) {
    .center-logo {
        width: 150px;
        left: 42%;
    }

    .logo {
        width: 100%;
    }
}

@media (max-width:900px) {
    .center-logo {
        width: 140px;
        left: 42%;
    }

    .logo {
        width: 100%;
    }
}

@media (max-width:991px) {
    .top-bar {
        display: none !important;
    }

    .responsive-menu {
        display: flex;
        align-items: center;
        padding: initial;
        position: fixed;
        z-index: 999;
        top: 0;
        background: black;
        justify-content: space-between;
        width: 100%;
        padding: 10px;
    }

    header {
        background-color: transparent;
        padding-top: 0px;
    }

    .logo {
        margin: 0;
    }
}

@media (min-width:991px) {
    .desk-hide {
        display: none;
    }

    .res-menu-hide {
        display: none;
    }
}

@media (max-width:575px) {
    .desk-hide {
        display: none;
    }

    .head-abt {
        text-align: left;
        padding-left: 30px;
        font-size: 42px;
        padding-bottom: 50px;
    }

    .text {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 50px;
        width: 100%;
    }

    .business-section {
        flex-direction: column;
    }

    .business-head {
        font-size: 42px;
        line-height: 45px;
    }

    .business-content {
        font-size: 14px;
    }

    .second-section-content {
        font-size: 14px;
    }

    .business-container {
        flex-direction: column;
    }

    .discvr {
        font-size: 13px;
    }
}

@media (max-width:475px) {
    #section05-about {
        left: 44%;
    }
}

@media (max-width:360px) {
    .desk-hide {
        display: none;
    }

    .head-abt {
        text-align: left;
        padding-left: 30px;
        font-size: 42px;
        padding-bottom: 30px;
    }

    .text {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 50px;
        width: 100%;
    }

    .business-section {
        flex-direction: column;
    }

    .business-head {
        font-size: 42px;
    }

    .business-content {
        font-size: 14px;
        text-align: left;
    }

    .second-section-content {
        font-size: 14px;
    }

    .business-container {
        flex-direction: column;
    }

    .discvr {
        font-size: 13px;
    }

    .business-container {
        padding-left: 30px;
    }
}


/************************************************************** END**********************************************************************/


/************************************************************** firstslider**********************************************************************/

.swiper {
    width: 100%;
    height: 100%;
    z-index: 0 !important;
    cursor: grab;
}

.swiper-slide {
    text-align: center;
    font-size: 20px;
    background-color: linear-gradient(#F3F3F3, #F4F4F4) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute !important;
    bottom: 10px !important;
    /* Adjust as needed */
    z-index: 10 !important;
    /* Ensure buttons are above other elements */
}

.swiper-button-next {
    right: 10px !important;
    /* Adjust as needed */
}

.swiper-button-prev {
    right: 60px !important;
    /* Adjust to position it next to the next button */
}

.arrows-slider {
    display: flex;
    justify-content: end;
    margin-right: 42px;
    gap: 16px;
    cursor: pointer;
}

.arrow-outer {
    border: 1px solid black;
    border-radius: 50%;
    height: 44px !important;
    width: 44px !important;
    align-items: center;
    justify-content: center;
    display: flex;
    transform: scale(1);
    /* Transition for transform property */
    transition: transform 0.89s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.89s cubic-bezier(0.33, 1, 0.68, 1);
}


/* Hover state */

.arrows-slider .arrow-outer:hover {
    /* New background color on hover */
    background-color: #000;
    /* Scale the background */
    transform: scale(1.1);
}

.arrow-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transform: scale(0);
    transition: transform 0.3s ease;
    background: #000;
    border-radius: 50%;
}

.arrow-outer:hover::before {
    transform: scale(1);
}

.arrows-slider .arrow-outer:hover .white-arrow {
    /* Filter to invert the color, making it white */
    filter: invert(1);
}

.arrow-image {
    height: 20px;
    /* Adjust the size of the arrow image as needed */
    width: 20px;
    /* Adjust the size of the arrow image as needed */
}

.slider-title {
    font-size: 20px;
    color: black;
    font-family: 'century-gothic';
    line-height: 65px;
    text-align: left;
}


/* Centering the navigation arrows */

.arrows-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 35px;
    /* Adjust as needed to position relative to the slider */
}


/* Styling for the arrow buttons */

.arrow-outer {
    cursor: pointer;
}


/* Hide default Swiper navigation arrows */

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.swiper-button-prev {
    margin-right: 16px;
}


/* Styling for pagination to ensure horizontal line is visible */

.swiper-pagination-new {
    position: absolute !important;
    bottom: -18px !important;
    left: 41% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: end;
}

.swiper-pagination-separator {
    color: black;
    /* Adjust the color as needed */
    margin: 0 5px;
    /* Adjust the spacing as needed */
    display: inline-block;
    width: 64px;
    height: 2px;
    background-color: #000;
    /* or any color you prefer */
    margin: 0 10px;
    /* adjust the margin as needed */
    vertical-align: middle;
}

.swiper-pagination-one {
    display: flex;
    align-items: center;
    justify-content: right;
    position: absolute;
    top: 0 !important;
    margin-right: 0;
    margin-left: -146px;
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    /* Adjust as needed */
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: auto !important;
}

.swiper-pagination-separator {
    border: 1px solid black;
    width: 64px;
}

.slider-part {
    padding: 0px 0px 80px 0px;
}

.slider-part.swiper-pagination-new {
    justify-content: end !important;
    top: 0 !important;
    left: -150px !important;
}

.swiper-pagination-current,
.swiper-pagination-total {
    color: black;
    font-family: 'century-gothic';
    font-size: 20px;
}

.slider-iimg {
    position: relative;
}

.view-more {
    position: absolute;
    top: 50%;
    left: 50%;
}

.centered-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 138px;
    /* Adjust size as needed */
    height: 138px;
    /* Adjust size as needed */
    background-color: transparent;
    /* Adjust background color as needed */
    color: white;
    /* Adjust text color as needed */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    /* Adjust font size as needed */
    border: 1px solid white;
    font-family: 'century-gothic';
    text-transform: capitalize;
}

.swiper-slide {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust color and opacity as needed */
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Smooth transition for overlay */
}

.swiper-slide:hover .overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.centered-circle {
    position: absolute;
    /* Adjust position if needed */
    z-index: 1;
    /* Ensure text is above the overlay */
}

.bg-right {
    background-image: linear-gradient(#F3F3F3, #F4F4F4);
    padding-bottom: 58px;
    position: relative;
}


/************************************************************** news and evnts**********************************************************************/

.bg-news {
    background-color: black;
    padding: 113px 0px 99px 0px;
}

.head-news {
    color: #BEBEBE;
    text-align: center;
    font-size: 42px;
    line-height: 56px;
    font-family: 'century-gothic';
    position: relative;
    /* z-index: 99; */
}

.head-news:after {
    content: '';
    position: absolute;
    left: 48%;
    bottom: 0;
    width: 60px;
    height: 1px;
    background-color: #707070;
}

.opacity-text {
    color: #060606;
    font-size: 266px;
    font-family: 'century-gothic';
}

.text-wrapper-new {
    display: flex;
    justify-content: start;
    overflow: hidden;
    margin-top: -4px;
}

.loop-text-new {
    font-size: 266px;
    white-space: nowrap;
    padding: 0px 30px;
    letter-spacing: 1px;
    animation: move-rtl 55000ms linear infinite;
    opacity: 1;
    font-family: 'NHaasGroteskDSPro-65Md';
    color: rgb(255 255 255 / 5%);
    z-index: 0;
    text-transform: capitalize;
    margin-bottom: 80px;
    line-height: 220px;
}

.news-section {
    display: flex;
    width: 100%;
    padding: 0px 40px;
    border-bottom: 1px solid #212121;
    padding-bottom: 78px;
}

.section-width {
    width: 33%;
}


/* .filter-img {
    filter: grayscale();
} */

.filter-img img {
    border-radius: 10px;
    transition: transform 1s ease, opacity 1s ease;
    transform: scale(0.9);
    opacity: 0;
}

.filter-img img.in-view {
    transform: scale(1);
    opacity: 1;
}

.nws-img {
    transition: transform 1s ease, opacity 1s ease;
    transform: scale(0.9);
    opacity: 0;
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.nws-img.in-view {
    transform: scale(1);
    opacity: 1;
}

.news-content,
.news-content-second {
    transition: opacity 2s ease, transform 2s ease;
    opacity: 0;
    transform: translateY(50px);
}

.news-content.in-view,
.news-content-second.in-view {
    opacity: 1;
    transform: translateY(0);
}

.news-content {
    font-size: 34px;
    color: #BEBEBE;
    font-family: 'century-gothic';
    width: 100%;
    line-height: 46px;
    text-align: left;
    letter-spacing: -1px;
}

.news-content-second {
    font-size: 18px;
    color: #fff;
    font-family: 'century-gothic';
    width: 100%;
    line-height: 26px;
    text-align: left;
}

.section-margin {
    margin-left: 128px;
}

.view {
    position: relative;
    margin-left: 21px;
    color: #BEBEBE;
    font-family: 'century-gothic';
    text-transform: capitalize;
    display: inline-block;
    font-size: 14px;
}

.view a {
    color: #BEBEBE;
    position: relative;
}

.view::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #BEBEBE;
    border-radius: 50%;
    margin-left: -17px;
    transition: width 0.3s ease, height 0.3s ease, margin-left 0.3s ease;
}

.view a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #E6B00B;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.view a:hover:after {
    transform: scaleX(1);
    text-decoration: none !important;
    color: #E6B00B;
    transform-origin: bottom left;
}

.news-sec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.news-content {
    flex-grow: 1;
    padding-bottom: 20px;
}

.arrow-outer-news {
    border: 1px solid #474747;
    border-radius: 50%;
    height: 44px !important;
    width: 44px !important;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-left: auto;
    transition: border 0.3s ease;
}

.news-content-second {
    flex-grow: 1;
}

.arrow-outer-news:hover {
    border: 1px solid #E6B00B;
}

.arrow-outer-news img {
    height: auto;
    transition: filter 0.3s ease;
}

.arrow-outer-news:hover img {
    filter: brightness(100%) sepia(100%) saturate(500%);
}

.secnd-news {
    padding-top: 70px;
}

.main-top {
    margin-top: -64px;
}


/************************************************************** end**********************************************************************/


/************************************************************** Activities**********************************************************************/

.activity-bg {
    background: linear-gradient(#F3F3F3, #F4F4F4),
        /* Gradient background */
        url('./assets/images/home/shadow-right.png');
    /* Path to your image */
    background-size: cover;
    /* Adjust size as needed, or use 'contain' or specific dimensions */
    background-position: center;
    /* Adjust position as needed */
    background-repeat: no-repeat;
    /* Prevent repeating */
    background-position: center, left;
    /* Position gradient to cover, image to the left */
    background-repeat: no-repeat, no-repeat;
    /* Prevent repeating */
}

.csr-head {
    font-family: 'century-gothic';
    color: #8B8B8B;
    font-size: 42px;
    font-weight: 400;
    position: relative;
    padding-bottom: 35px;
}

.csr-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 60px;
    height: 1px;
    background-color: #707070;
    transition: width 0.5s ease;
    /* Smooth transition for the width */
}

.csr-head:hover::after {
    width: 15%;
    /* Expand the width on hover */
}

.csr-padding {
    padding-left: 107px;
    padding-right: 40px;
}

.tb-padding {
    padding-top: 100px;
    padding-bottom: 93px;
}

.csr-content {
    font-family: 'century-gothic';
    color: #000;
    font-size: 52px;
    position: relative;
    line-height: 62px;
    opacity: 0;
    /* Initial state: hidden */
    transform: translateX(-60px);
    /* Initial state: slightly moved down */
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* Smooth transition */
    margin: 0;
    letter-spacing: -1px;
}

.csr-content.visible {
    opacity: 1;
    /* Final state: visible */
    transform: translateX(0);
    /* Final state: normal position */
}

.slider-img-sec-outer {
    display: flex;
    justify-content: space-between;
}

.slider-img-sec {
    width: 50%;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 0 !important;
}

.swiper-pagination-two {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    /* Adjust the height as needed */
    background-color: #ddd;
    /* Background color for the progress bar */
}

.slider-img-sec-2 {
    width: 50%;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    object-fit: cover;
}

.slider-content-sec {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 100px 104px 52px 73px;
    background-color: white;
}

#slider-two .swiper-slide {
    width: 70% !important;
    height: auto;
}

#slider-two .swiper-slide .slider-img-sec-outer {
    height: 100%;
}

.csr {
    padding-bottom: 80px;
}

.head-slider {
    font-family: 'century-gothic';
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 76px;
    text-align: left;
}

.news-sec-slider {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: black;
    box-sizing: border-box;
    text-align: left;
    font-family: 'century-gothic';
    line-height: 32px;
}

.news-content-slider {
    flex-grow: 1;
    padding-bottom: 20px;
    /* margin-bottom: 350px; */
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #E6B00B !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 63% !important;
    height: var(--swiper-pagination-progressbar-size, 5px) !important;
    left: 39% !important;
}

.swiper-pagination-progressbar {
    background-color: #E6E6E6 !important;
}


/************************************************************** end**********************************************************************/


/*===============FOOTER===============*/

.tops {
    width: 50%;
    color: white;
    margin-top: 18px;
}

#button {
    display: inline-block;
    background-color: transparent;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: 1px solid #707070;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.toparrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.whtsapp-icon-landing {
    position: fixed;
    right: 15px;
    bottom: 90px;
    /* width: 50px; */
    height: 50px;
    z-index: 9999999;
}

.whts-icon {
    /* width: 50px; */
    height: auto;
}

#footer {
    background: #000 url(../images/home/indian-01.png);
    background-repeat: no-repeat;
    color: #fff;
    font-size: 14px;
    border-bottom: 5px solid #FFC513;
    background-position: 25%;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffb03b;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 20px 0;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #46423b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #91cd43;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}

.footer-sec {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 60px 100px;
    justify-content: space-between;
}

.footer-sec {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 60px 60px;
    justify-content: space-between;
}

.logo-area {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 46px;
}

.logo-imgs {
    margin-bottom: 40px;
}

.logo-content {
    font-family: 'century-gothic';
    font-size: 32px;
    font-weight: 400;
    color: #E5E5E5;
    line-height: 34px;
    width: 78%;
}

.address-area {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px 59px;
}

.address-head {
    color: white;
    font-family: 'century-gothic';
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 40px;
    position: relative;
    width: fit-content;
}

.address-head:after {
    content: "";
    position: absolute;
    right: -20px;
    top: 19px;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #E6B00B;
    border-radius: 50%;
    margin-left: -17px;
}

.address-head-bs::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 19px;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #E6B00B;
    border-radius: 50%;
    margin-left: -17px;
}

.address-head-nav::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 19px;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #E6B00B;
    border-radius: 50%;
    margin-left: -17px;
}

.address-content {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 26px;
    margin-bottom: 25px;
}

.address-no {
    font-family: Poppins;
    font-weight: 400;
    color: #919191;
    line-height: 26px;
}

.address-logo {
    margin-top: 120px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.address-icon {
    width: 40px;
    height: 40px;
    background-color: #4A4A4A;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all ease-in-out .5s;
}

.address-icon:hover {
    background-color: rgb(63, 63, 63);
}

.fb {
    display: flex;
}

.phone-sec {
    font-family: 'century-gothic';
    color: white;
    font-size: 16px;
}

.phone-sec a {
    color: white;
}

.sadhya-ftr-sec {
    width: 20%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px 72px;
    /* margin-top: 57px; */
}

.location-icon {
    display: flex;
    flex-direction: column;
}

.map-icon {
    margin-right: 15px;
    margin-top: 5px;
}


/* .address-head {
color: white;
font-family: Poppins;
font-weight: 500;
font-size: 18px;
margin-bottom: 40px;
} */

.sadhya-sec {
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    color: #919191;
    margin-bottom: 15px;
}

.info-icon {
    display: flex;
}

.footer-icon {
    margin-right: 15px;
    margin-top: 5pxs;
}

.ftr-link {
    font-family: 'century-gothic';
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    text-transform: capitalize;
}

.ftr-link:hover {
    color: #ffffff;
}

.ftr-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    /* Position the underline at the bottom of the link */
    width: 0;
    /* Start with zero width */
    height: 2px;
    /* Line height */
    background-color: #bb8d05;
    /* Underline color */
    transition: all .6s ease-out;
}

.premium-sec:hover .ftr-link::before {
    width: 100%;
    /* Expand underline width to 100% on hover */
}

.premium-sec:hover .ftr-link {
    color: #BEBEBE;
    /* Change text color on hover (optional) */
}

.navigation-ftr {
    width: 20%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px 75px;
}

.premium-sec {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #919191;
    margin-bottom: 15px;
}

.copy-right {
    width: 100%;
    display: flex;
    background-color: white;
    padding: 30px 0px;
    justify-content: center;
}

.rights {
    display: flex;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #474747;
}

.gl-name {
    display: flex;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #7E7E7E;
    margin-left: 5px;
    cursor: pointer;
}

.gl-name:hover {
    color: #474747;
}

.call-link {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #919191;
}

.call-link:hover {
    color: #ffffff;
}


/* 
.line {
margin-left: 10px;
margin-right: 10px;
} */

@media (max-width:1700px) {
    .address-area {
        padding: 0px 40px;
    }
}

@media (max-width:1600px) {
    .address-head:after {
        right: -20px !important;
        top: 14px !important;
    }

    .address-head-bs::after {
        right: -20px !important;
        top: 15px !important;
    }

    .address-head-nav::after {
        margin-left: -52px !important;
    }
}

@media (max-width:1500px) {
    .logo-content {
        font-size: 22px;
        line-height: 32px;
    }

    .address-area {
        padding: 0px 18px
    }

    .address-head {
        font-size: 14px;
    }

    .address-content {
        font-size: 13px;
    }

    /* .address-head {
    font-size: 14px;
} */
    .ftr-link {
        font-size: 13px;
    }

    .call-link {
        font-size: 13px;
    }

    .address-head:after {
        right: -20px !important;
        top: 11px !important;
    }
}

@media (max-width: 1366px) {
    .logo-content {
        font-size: 20px;
        line-height: 30px;
        width: 80%;
    }
}

@media (max-width:1200px) {
    .footer-sec {
        padding: 90px 25px
    }

    .logo-imgs img {
        width: 100px;
    }

    .logo-content {
        font-size: 17px;
        line-height: 27px;
    }

    .address-content {
        font-size: 12px;
    }

    .sadhya-ftr-sec {
        padding: 0px 18px;
    }

    .ftr-link {
        font-size: 12px;
    }

    .call-link {
        font-size: 12px;
    }
}

@media (max-width:1024px) {
    .address-area {
        padding: 0px 5px;
    }
}

@media (max-width:991px) {
    .logo-area {
        padding-left: 0px;
    }

    .footer-sec {
        flex-direction: column;
    }

    .footer-sec {
        padding: 100px 100px !important;
    }

    .logo-imgs {
        padding-top: 100px;
    }

    .logo-area {
        width: 100%;
        border-right: none;
        margin-bottom: 40px
    }

    .logo-imgs img {
        width: auto;
    }

    .logo-content {
        font-size: 28px;
        line-height: 40px;
    }

    .address-area {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 40px
    }

    .address-head {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .address-content {
        font-size: 16px;
    }

    .sadhya-ftr-sec {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 40px;
    }

    /* .address-head {
    font-size: 18px;
    margin-bottom: 20px;
} */
    .ftr-link {
        font-size: 14px;
    }

    .navigation-ftr {
        padding: 0;
    }

    .call-link {
        font-size: 16px;
    }
}

@media (max-width:768px) {
    .footer-sec {
        flex-direction: column;
    }

    .footer-sec {
        padding: 60px 100px;
    }

    .logo-area {
        width: 100%;
        border-right: none;
        margin-bottom: 40px
    }

    .logo-imgs img {
        width: auto;
    }

    .logo-content {
        font-size: 28px;
        line-height: 40px;
    }

    .address-area {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 40px
    }

    .address-head {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .address-content {
        font-size: 16px;
    }

    .sadhya-ftr-sec {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 40px;
    }

    /* .address-head {
    font-size: 18px;
    margin-bottom: 20px;
} */
    .ftr-link {
        font-size: 14px;
    }

    .navigation-ftr {
        padding: 0;
    }

    .call-link {
        font-size: 16px;
    }
}

@media (max-width:576px) {
    .copy-right {
        width: 100%;
        display: flex;
        background-color: white;
        padding: 30px 0px;
        justify-content: center;
        /* margin-bottom: 40px !important; */
    }
}

@media (max-width:560px) {
    .footer-sec {
        padding: 60px 15px;
    }

    .rights {
        font-size: 11px;
    }

    .gl-name {
        font-size: 10px;
    }
}

.contact-bg-home {
    position: relative;
}

.contact-bg-home img {
    width: 100%;
}

.bottom-shadow {
    position: absolute;
    bottom: 0;
}

.top-shadow {
    position: absolute;
    top: 0;
}

.left-shadow {
    position: absolute;
    left: 0;
}

.showroom-content {
    position: absolute;
    top: 34%;
    left: 0;
    padding-left: 100px;
}

.short-title {
    font-family: 'century-gothic';
    color: white;
    font-size: 18px;
    padding-bottom: 17px;
}

.big-title {
    font-family: 'century-gothic';
    font-size: 82px;
    color: white;
    line-height: 78px;
    overflow: hidden;
    letter-spacing: -2px;
}

.link-title {
    font-family: 'century-gothic';
    font-size: 16px;
    color: white;
    padding-top: 79px;
    position: relative;
    display: inline-block;
    /* Adjust as needed */
    cursor: pointer;
}

.link-title a {
    color: white;
}

.arrow-bg img {
    width: auto;
}

.link-title {
    display: flex;
    gap: 15px;
}

.arrow-bg {
    display: inline-block;
    margin-left: 10px;
    /* Adjust spacing as needed */
    transition: transform 0.3s ease;
    /* Smooth transition for transform */
}

.link-title:hover .arrow-bg {
    transform: translateX(10px);
    /* Move the arrow 10px to the right */
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: Add shadow for visual effect */
    z-index: 10005 !important;
    background: black;
    padding: 27px;
}

#header {
    transition: all 0.3s ease;
    /* Smooth transition for all properties */
}

.hide {
    display: none;
}


/* .viewport {
overflow: hidden;
position: fixed;
height: 100%;
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
} */

.about_text {
    font-size: 1.2em;
    line-height: 1.5;
    opacity: 0;
    /* Start with hidden */
}


/* .scroll-container{
margin-top: 50%;
} */

.split-parent {
    overflow: hidden;
}

.split-child {
    display: inline-block;
}

.business-content>div {
    position: relative;
    margin: 0;
}

.split-parent {
    overflow: hidden;
}

.split-child {
    display: inline-block;
}

main {
    height: fit-content;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

#parallaxHeader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.reveal-text-new {
    margin: 0 !important;
    font-family: 'century-gothic';
    color: #000;
    font-size: 58px !important;
    font-weight: 400;
    position: relative;
    padding-bottom: 35px;
    line-height: 66px;
    width: 95%;
    letter-spacing: -2px;
}

.line {
    position: relative;
    overflow: hidden;
    display: flex;
}

@keyframes showTopText {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    40%,
    60% {
        transform: translate3d(0, 50%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes showBottomText {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.animated-title {
    color: #222;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vmin;
}

.animated-title>div {
    height: 50%;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.animated-title>div div {
    font-size: 12vmin;
    padding: 2vmin 0;
    position: absolute;
}

.animated-title>div div span {
    display: block;
}

.animated-title>div.text-top {
    border-bottom: 1vmin solid #000;
    top: 0;
}

.animated-title>div.text-top div {
    animation: showTopText 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    bottom: 0;
    transform: translate(0, 100%);
}

.animated-title>div.text-top div span:first-child {
    color: #767676;
}

.animated-title>div.text-bottom {
    bottom: 0;
}

.animated-title>div.text-bottom div {
    animation: showBottomText 0.5s;
    animation-delay: 1.75s;
    animation-fill-mode: forwards;
    top: 0;
    transform: translate(0, -100%);
}

.big {
    line-height: 70px;
    font-size: 50px;
    font-family: 'century-gothic';
    margin: auto;
    text-align: center !important;
    width: 75%;
    margin-bottom: 110px;
}

.has-text-reveal-effect .letter {
    opacity: 0.3;
    transition: opacity linear 1s, color linear 1s;
    /* Increased duration to 1 second */
    will-change: opacity;
    /* display: inline-block; */
    color: transparent;
}

.has-text-reveal-effect .letter.active {
    opacity: 1;
    color: white;
}

.has-text-reveal-effect .gap {
    display: inline-block;
    width: 0.3ch;
}

@media (max-width:1500px) {
    .big {
        width: 80%;
    }
}

body {
    overscroll-behavior: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#smooth-content {
    overflow: visible;
    width: 100%;
    /* set a height because the contents are position: absolute, thus natively there's no height */
    height: 100%;
}

.blog-wrapper-imgs {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.blg-img {
    width: 100%;
    /* Adjust as needed */
    transition: transform 0.4s ease;
    /* Smooth zoom transition */
    display: block;
    width: 100%;
    height: auto;
    transition: transform .3s ease-in-out;
    border-radius: 10px;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.blog-wrapper-imgs:hover .blg-img {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.blog-wrapper-imgs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
    transition: opacity 0.4s ease;
    /* Smooth transition for overlay */
    opacity: 0;
    /* Initially hidden */
    pointer-events: none;
    /* Ensure the overlay does not interfere with clicks */
}

.short-title,
.big-title {
    transition: transform 1.5s ease-in-out;
}

.showroom-content.in-view .short-title {
    transform: translateY(30px);
    /* Adjust as needed */
}

.showroom-content.in-view .big-title {
    transform: translateY(30px);
    /* Adjust as needed */
}

body {
    overscroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#smooth-content {
    overflow: visible;
    width: 100%;
    /* set a height because the contents are position: absolute, thus natively there's no height */
    height: auto;
}

.dot-button {
    position: relative;
    width: 36px;
    height: 43px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 2px;
    padding: 15px 10px;
    overflow: hidden;
    border: 1px solid #525050;
}

.dot-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.dot-button:hover::before {
    transform: scale(1);
}

.dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3px;
}

.dot {
    width: 2px;
    height: 2px;
    background-color: #E6B00B;
    /* Yellow color */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.dot-button:hover .dot {
    transform: scale(1.2);
    background-color: #fff;
    /* Change color on hover */
}

@media (min-width:992px) {
    .swiper-slide {
        width: 47vw !important;
    }
}

@media (min-width:992px) {
    .swiper-seconds {
        width: 27vw !important;
    }
}


/* Style for the scroll to top button */

#scrollToTopBtn {
    display: none;
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    border: 1px solid #E6B00B;
    /* Border color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 6px;
    /* Some padding */
    border-radius: 50%;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
    height: 44px;
    width: 44px;
    background-color: transparent;
    display: flex;
    /* Use flexbox */
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
}

#scrollToTopBtn img {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}


/* Add a hover effect for the button */

#scrollToTopBtn:hover {
    background-color: #E6B00B;
    /* Set a background color */
}

input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    margin: auto;
    background-image: url("../images/home/211651_close_round_icon.svg");
    background-size: contain;
    cursor: pointer;
}

.address-icon {
    transform: scale(1);
    transition: transform 0.89s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.89s cubic-bezier(0.33, 1, 0.68, 1);
}

.address-icon:hover {
    background-color: #E6B00B;
    transform: scale(1.1);
}

@media (min-width:992px) {
    .responsive-menu {
        position: fixed;
        /* top: 0; */
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 99;
    }

    /* .responsive-menu-for-abt-innner {
        bottom: 100px!important;
    } */
}


/* Only necessary with horizontal scrolling */

html.lenis {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

@media (max-width:1366px) {
    .reveal-text-new {
        font-size: 44px !important;
        font-weight: 400;
        position: relative;
        padding-bottom: 35px;
        line-height: 48px;
    }
}


/********************************************************* business-area **********************************************************/

.business-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 310px;
    padding-right: 310px;
    background-color: #000000;
}

.busns-head {
    font-size: 42px;
    font-family: 'century-gothic';
    color: #BEBEBE;
    text-align: center;
    padding-bottom: 100px;
    line-height: 45px;
}

.busns-para {
    font-size: 30px;
    font-family: 'century-gothic';
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    padding-bottom: 200px;
    z-index: 2;
}

.bs-btm {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0px;
}


/****************** business-steps **********************/

.discvrs {
    position: relative;
    margin-left: 21px;
    color: black;
    font-family: 'century-gothic';
    color: #000;
    font-size: 14px;
    display: flex;
}

.secont-btn-box {
    display: flex;
    justify-content: end;
}

.discvrs a {
    color: black;
    position: relative;
}

.discvrs::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    /* Adjust the size of the dot */
    height: 10px;
    /* Adjust the size of the dot */
    background-color: black;
    /* Adjust the color of the dot */
    border-radius: 50%;
    margin-left: -17px;
    transition: width 0.3s ease, height 0.3s ease;
}

.discvrs a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    /* Adjust this to position the line closer to the text */
    left: 0;
    background-color: #000;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.discvrs a:hover:after {
    transform: scaleX(1);
    text-decoration: none !important;
    color: #000;
    transform-origin: bottom left;
}

.business-steps {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 150px;
    padding-right: 150px;
    background-color: #F3F3F3;
    padding-top: 105px;
}

.step-first {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 100px;
}

.image-step {
    width: 45%;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
}

.second-image-step {
    width: 45%;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
}

.content-step {
    width: 45%;
    display: flex;
    flex-direction: column;
    margin: auto 0;
}

.second-content-step {
    width: 45%;
    display: flex;
    flex-direction: column;
    margin: auto 0;
    text-align: right;
}

.steps {
    width: 101%;
    overflow: hidden;
    border-radius: 10px;
    transition: all ease-in-out .5s;
}

.steps:hover {
    transform: scale(1.02);
}

.step-head {
    font-family: 'century-gothic';
    font-size: 20px;
    font-weight: 500;
    display: flex;
    margin-bottom: 20px;
}

.second-step-head {
    font-family: 'century-gothic';
    font-size: 20px;
    font-weight: 500;
    display: flex;
    margin-bottom: 20px;
    justify-content: end;
}

.step-contents {
    font-family: 'century-gothic';
    font-size: 52px;
    line-height: 54px;
    color: #000000;
    margin-bottom: 40px;
}

.second-step-contents {
    font-family: 'century-gothic';
    font-size: 52px;
    line-height: 54px;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

@media (max-width:1600px) {
    .step-contents {
        font-size: 45px;
        line-height: 47px;
    }

    .second-step-contents {
        font-size: 45px;
        line-height: 47px;
    }

    .business-area {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (max-width:1400px) {
    .step-contents {
        font-size: 40px;
        line-height: 42px;
    }

    .second-step-contents {
        font-size: 40px;
        line-height: 42px;
    }

    .busns-head {
        padding-bottom: 100px;
    }
}

@media (max-width:1200px) {
    .business-steps {
        padding-left: 90px;
        padding-right: 90px;
    }

    .step-contents {
        font-size: 30px;
        line-height: 32px;
    }

    .second-step-contents {
        font-size: 30px;
        line-height: 32px;
    }

    .step-head {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .step-contents {
        margin-bottom: 15px;
    }

    .second-step-contents {
        margin-bottom: 15px;
    }

    .busns-para {
        padding-bottom: 60px;
    }

    .business-area {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width:1024px) {
    .step-contents {
        font-size: 25px;
        line-height: 25px;
    }

    .second-step-contents {
        font-size: 25px;
        line-height: 25px;
    }

    .busns-head {
        font-size: 30px;
        line-height: 33px;
    }

    .busns-head {
        padding-bottom: 45px;
    }

    .busns-para {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width:991px) {
    .step-contents {
        font-size: 20px;
        line-height: 21px;
    }

    .second-step-contents {
        font-size: 20px;
        line-height: 21px;
    }

    .step-first {
        margin-bottom: 65px;
    }

    .business-steps {
        padding-left: 60px;
        padding-right: 60px;
    }

    .business-steps {
        padding-top: 50px;
    }
}

@media (max-width:767px) {
    .step-first {
        flex-direction: column;
        gap: 20px;
    }

    .extra-rev {
        flex-direction: column-reverse !important;
    }

    .image-step {
        width: 100%;
    }

    .second-image-step {
        width: 100%;
    }

    .content-step {
        width: 100%;
    }

    .second-content-step {
        width: 100%;
    }

    .second-step-head {
        justify-content: left;
    }

    .second-content-step {
        text-align: left;
    }

    .secont-btn-box {
        justify-content: start;
    }

    .second-step-contents {
        line-height: 26px;
    }

    .step-contents {
        line-height: 26px;
    }

    .business-area {
        padding-left: 35px;
        padding-right: 35px;
    }

    .busns-head {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (max-width:575px) {
    .busns-para {
        font-size: 16px;
        line-height: 23px;
    }

    .business-steps {
        padding-left: 15px;
        padding-right: 15px;
    }

    .business-area {
        padding-left: 15px;
        padding-right: 15px;
    }

    .busns-para {
        padding-bottom: 50px;
    }

    .step-head {
        font-size: 15px;
    }
}


/********************************************************* about-us ******************************************************/

.about-area {
    padding-left: 100px;
    padding-right: 100px;
    width: 100%;
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;

}

.abouts-head {
    display: flex;
    width: 15%;
    font-family: 'century-gothic';
    font-size: 42px;
    font-weight: 400;
    color: #BEBEBE;
    margin: auto 0;
}

.abouts-head-content {
    display: flex;
    width: 85%;
    font-family: 'century-gothic';
    font-size: 26px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 35px;
    text-align: left;
}

.year-section-common {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: space-between;
    background-color: #000000;
    padding-top: 30px;
    padding-bottom: 150px;
}

@media (max-width:1700px) {
    .abouts-head-content {
        font-size: 24px;
    }
}

@media (max-width:1600px) {
    .abouts-head-content {
        font-size: 22px;
    }
}

@media (max-width:1500px) {
    .abouts-head-content {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width:1400px) {
    .about-area {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width:1300px) {
    .abouts-head-content {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width:1250px) {
    .abouts-head-content {
        font-size: 16px;
        line-height: 28px;
    }

    .about-area {
        flex-direction: column;
    }

    .abouts-head-content {
        width: 100%;
    }

    .abouts-head {
        width: 100%;
    }

    .abouts-head {
        font-size: 28px;
    }

    .carousel-caption {
        top: 40% !important;
    }
}

@media (max-width:1150px) {
    .abouts-head-content {
        font-size: 15px;
        line-height: 25px;
    }
}

@media (max-width:1000px) {
    #section05-about {
        bottom: -170px;
    }
}

@media (max-width:991px) {
    .main-res {
        display: none;
    }

    .lap-res {
        display: flex;
    }

    .over-mob {
        display: none;
    }

    .under-mob {
        display: flex;
    }

    #section05-about {
        bottom: -130px;
    }
}

@media (min-width:991px) {
    .main-res {
        display: flex;
    }

    .lap-res {
        display: none;
    }

    .over-mob {
        display: flex;
    }

    .under-mob {
        display: none;
    }
}

@media (max-width:650px) {
    .abouts-head-content {
        font-size: 17px;
        line-height: 28px;
    }

    .abouts-head {
        font-size: 35px;
    }
}

@media (max-width:575px) {
    #section05-about {
        /* bottom: -190px; */
        display: none;
    }
}

.year-sec-img {
    width: 20%;
    position: relative;
    display: flex;
}

.map-width {
    width: 100%;
    margin: auto;
}

.year-sec-contents {
    width: 78%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.first-para {
    font-family: 'century-gothic';
    font-size: 26px;
    font-weight: 500;
    color: #7D7D7D;
    line-height: 40px;
}

.second-para {
    font-family: 'century-gothic';
    font-size: 26px;
    font-weight: 500;
    color: #7D7D7D;
    line-height: 40px;
}

.third-para {
    font-family: 'century-gothic';
    font-size: 26px;
    font-weight: 500;
    color: #7D7D7D;
    line-height: 40px;
}

@media (max-width:1600px) {
    .first-para {
        font-size: 21px;
        line-height: 30px;
    }

    .second-para {
        font-size: 21px;
        line-height: 30px;
    }

    .third-para {
        font-size: 21px;
        line-height: 30px;
    }
}

@media (max-width:1400px) {
    .first-para {
        font-size: 18px;
        line-height: 23px;
    }

    .second-para {
        font-size: 18px;
        line-height: 23px;
    }

    .third-para {
        font-size: 18px;
        line-height: 23px;
    }
}

@media (max-width:1100px) {
    .first-para {
        font-size: 16px;
        line-height: 23px;
    }

    .second-para {
        font-size: 16px;
        line-height: 23px;
    }

    .third-para {
        font-size: 16px;
        line-height: 23px;
    }
}

@media (max-width:991px) {
    .year-section-common {
        flex-direction: column;
        gap: 50px;
        padding-bottom: 75px;
    }

    .year-sec-img {
        width: 35%;
    }

    .year-sec-contents {
        width: 100%;
    }

    .year-section-common {
        padding-top: 60px;
    }
}

@media (max-width:991px) {
    .year-sec-img {
        width: 75%;
    }
}

@media (max-width:575px) {
    .carousel-abt {
        padding-top: 30px;
    }

    .about-area {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-land-page.about-area {
        padding-top: 30px;
        gap: 15px;
    }

    .year-section-common {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.founder-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(#F3F3F3, #e4e4e4);
    padding-top: 130px;
    padding-bottom: 30px;
}

.founder-first-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
}

.founder-img {
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    padding-left: 100px;
}

.founder-content {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

.found-div {
    width: 504px;
    overflow: hidden;
}

.jos-founder {
    width: 100%;
    border-radius: 10px;
}

.founder-name {
    font-family: 'century-gothic';
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    padding-top: 40px;
}

.founder-pos {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 500;
    color: #8B8B8B;
    padding-top: 15px;
    transition: all ease-in-out .5s;
}

@media (max-width:1750px) {
    .founder-first-section {
        justify-content: space-between;
    }

    .founder-content {
        width: 60%;
    }

    .founder-content {
        padding-left: 0px;
        padding-right: 40px;
    }

    .found-div {
        width: 450px;
    }
}

@media (max-width:1600px) {
    .founder-img {
        padding-left: 50px;
    }
}

@media (max-width:1450px) {
    .found-div {
        width: 100%;
    }

    .founder-content {
        width: 60%;
    }

    .founder-para {
        font-size: 25px;
    }
}

@media (max-width:1366px) {
    .founder-area {
        padding-top: 60px;
    }
}

@media (max-width:650px) {
    .founder-first-section {
        flex-direction: column;
    }

    .founder-img {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
}


/* Initial bor-bot styling */

.bor-bot {
    border-bottom: 1px solid #707070;
    width: 50px;
    transition: all ease-in-out .5s;
}


/* Hover effect for .bor-bot when hovering .bor-bot itself */

.bor-bot:hover {
    width: 75px;
}


/* Apply hover effect to .bor-bot when .founder-pos is hovered */

.founder-pos:hover+.bor-bot {
    width: 75px;
}

.founder-para {
    font-family: 'century-gothic';
    font-size: 30px;
    font-weight: 400;
    color: #000000;
    display: flex;
    padding-top: 50px;
    letter-spacing: -1px;
}

.quts {
    width: 100%;
}

.quots {
    width: 132px;
    position: relative;
    padding-top: 80px;
}

.trace {
    width: 100%;
}

.trace-img {
    width: 616px;
    position: absolute;
    right: 0px;
    top: 0px;
}

@media (max-width:1600px) {
    .trace-img {
        width: 400px;
    }
}

@media (max-width:1450px) {
    .founder-para {
        font-size: 25px;
    }

    .quots {
        padding-top: 25px;
    }

    .founder-para {
        padding-top: 15px;
    }
}

@media (max-width:1200px) {
    .quots {
        width: 75px;
    }

    .founder-para {
        font-size: 20px;
    }

    .founder-name {
        padding-top: 20px;
    }

    .founder-pos {
        padding-top: 0px;
    }

    .founder-para {
        letter-spacing: 0px;
    }
}

@media (max-width:991px) {
    .trace-img {
        width: 240px;
    }
}

@media (max-width:850px) {
    .founder-para {
        font-size: 18px;
    }

    .quots {
        width: 50px;
        padding-top: 15px;
    }

    .founder-name {
        font-size: 20px;
    }

    .founder-pos {
        font-size: 14px;
    }
}

@media (max-width:750px) {
    .founder-para {
        font-size: 16px;
        line-height: 22px;
        padding-top: 0px;
    }

    .founder-content {
        width: 62%;
    }
}

@media (max-width:650px) {
    .founder-content {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 40px;
    }

    .trace-img {
        top: 18%;
    }
}

@media (max-width:575px) {
    .founder-img {
        padding-left: 15px;
        padding-right: 15px;
    }

    .founder-content {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
    }
}

.running-text-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    /* Arrange images vertically if needed */
}

.relative-image {
    width: 100%;
    height: auto;
    position: relative;
    /* Keeps the images in the normal flow of the document */
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-320%);
        /* Scrolls two full widths */
    }
}

.horizontal-scrolling-items {
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    overflow: hidden;
    /* Hide the overflowing part */
    font-size: 400px;
    font-family: 'century-gothic';
    font-weight: 500;
    color: #BEBEBE;
    opacity: 25%;
    display: flex;
}

.horizontal-scrolling-items__item {
    white-space: nowrap;
    display: inline-block;
    min-width: 100%;
    /* Ensures each item takes up the full width */
    animation: infiniteScroll 40s linear infinite;
    /* Adjust duration to control speed */
    font-family: 'NHaasGroteskDSPro-65Md';
}

.for-grid {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding-left: 250px;
    padding-right: 250px;
    justify-content: space-between;
}

.for-index {
    z-index: 1;
}

.for-index-two {
    z-index: 0;
}

.image-name {
    display: flex;
    flex-direction: column;
}

.pro-name {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 400;
    display: flex;
    margin: auto;
    padding-top: 20px;
    color: #000000;
}

.alukka-img {
    width: 100%;
}

.pro-btn {
    font-family: 'century-gothic';
    font-size: 14px;
    font-weight: 500;
    display: flex;
    margin: auto;
    padding-top: 20px;
    position: relative;
    padding-right: 20px;
    color: #000000;
    cursor: pointer;
}

.pro-btn::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 73%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #707070;
    border-radius: 50%;
    transition: all ease-in-out .5s;
}

.pro-btn:hover::before {
    background-color: #FFB500;
    /* Replace with your desired color */
}

@media (max-width:1400px) {
    .for-grid {
        padding-left: 200px;
        padding-right: 200px;
    }
}

@media (max-width:1250px) {
    .for-grid {
        padding-left: 170px;
        padding-right: 170px;
    }
}

@media (max-width:1100px) {
    .for-grid {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (max-width:1050px) {
    .for-grid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width:850px) {
    .for-grid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width:767px) {
    .for-grid {
        flex-wrap: wrap;
    }

    .running-text-area {
        padding-top: 60px;
    }

    .pro-name {
        margin: unset;
    }

    .pro-btn {
        margin: unset;
        padding-left: 15px;
    }

    .pro-btn::before {
        left: 0px;
    }

    .for-grid {
        gap: 50px;
    }

    .image-name {
        width: 100%;
    }

    .horizontal-scrolling-items {
        position: relative;
        top: 22%;
        font-size: 132px;
        line-height: 145px;
    }
}


/*********************************************** mile-stone-area **********************************************/

.mile-stone-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 120px;
}

.two-sec-div {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.trust-area {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: row;
}

.trust-text {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.trust-img {
    width: 50%;
    position: relative;
    display: flex;
    padding-top: 60px;
}

.trust-over-div {
    width: 508px;
}

.trust-four {
    font-family: 'century-gothic';
    font-size: 65px;
    line-height: 50px;
    color: #646464;
    letter-spacing: -1px;
}

.trust-four::before {
    content: "";
    position: absolute;
    left: 93px;
    top: 13%;
    transform: translateY(0%);
    width: 7%;
    height: 2px;
    background-color: #FFB500;
    z-index: -1;
}

.extra-clr {
    color: #A8A8A8;
}

.trust-purity-content {
    font-family: 'century-gothic';
    font-size: 16px;
    color: #7D7D7D;
    line-height: 24px;
    width: 80%;
}

.spread-area {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding-top: 100px;
}

.spread-text {
    width: 50%;
    position: relative;
    display: flex;
}

.spread-text::before {
    content: "";
    position: absolute;
    right: 71px;
    top: 9%;
    transform: translateY(0%);
    width: 7%;
    height: 2px;
    background-color: #FFB500;
    z-index: -1;
}

.spread-image-sec {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 65px;
    gap: 70px;
}

.spread-div {
    width: 372px;
}

.spread-contents {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 500;
    color: #7D7D7D;
}

.spread-col {
    font-family: 'century-gothic';
    font-size: 65px;
    line-height: 50px;
    color: #646464;
    margin-left: 130px;
}

.our-milstone-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: -260px;
}

.milstone-big {
    font-family: 'century-gothic';
    font-size: 220px;
    line-height: 180px;
    font-weight: 400;
    color: #BEBEBE;
    opacity: 25%;
    letter-spacing: -3px;
}

.milstone-big-head-content {
    width: 20%;
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 500;
    color: #7D7D7D;
    padding-top: 60px;
}

.procedure-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
}

@media (max-width:1850px) {
    .spread-area {
        width: 45%;
    }

    .milstone-big {
        font-size: 180px;
        line-height: 145px;
    }
}

@media (max-width:1650px) {
    .spread-area {
        width: 48%;
    }

    .milstone-big {
        font-size: 144px;
        line-height: 119px;
    }
}

@media (max-width:1600px) {
    .spread-col {
        margin-left: 90px;
    }
}

@media (max-width:1400px) {
    .spread-area {
        width: 50%;
    }

    .spread-div {
        width: 320px;
    }
}

@media (max-width:1350px) {
    .spread-col {
        margin-left: 80px;
    }

    .milstone-big {
        font-size: 100px;
        line-height: 90px;
    }
}

@media (max-width:1300px) {
    .spread-text::before {
        right: 55px;
    }
}

@media (max-width:1200px) {
    .spread-text::before {
        left: 11%;
    }

    .spread-text::before {
        top: 48%;
        width: 4%;
    }
}

@media (max-width:1250px) {
    .trust-four {
        font-size: 52px;
        line-height: 45px;
    }

    .spread-div {
        width: 295px;
    }

    .spread-col {
        font-size: 52px;
        line-height: 45px;
    }

    .milstone-big-head-content {
        width: 40%;
    }
}

@media (max-width:1200px) {
    .our-milstone-head {
        margin-top: 0px;
    }

    .two-sec-div {
        flex-direction: column;
    }

    .trust-area {
        width: 100%;
        flex-direction: column;
    }

    .trust-text {
        width: 100%;
    }

    .trust-purity-content {
        width: 100%;
    }

    .spread-col {
        margin-left: 0px;
    }

    .spread-area {
        flex-direction: column;
    }

    .spread-area {
        width: 100%;
    }

    .spread-text {
        width: 100%;
    }

    .spread-image-sec {
        width: 100%;
    }

    .spread-image-sec {
        flex-direction: column-reverse;
    }

    .milstone-big-head-content {
        width: 100%;
    }

    .milstone-big {
        margin-top: 100px;
    }

    .trust-four::before {
        left: 76px;
        top: 36%;
        width: 4%;
        height: 2px;
    }
}

@media (max-width:1050px) {
    .spread-text::before {
        left: 13%;
    }
}

@media (max-width:945px) {
    .trust-four::before {
        left: 76px;
        top: 33%;
        width: 4%;
        height: 2px;
    }
}

@media (max-width:900px) {
    .spread-text::before {
        left: 16%;
    }
}

@media (max-width:767px) {
    .milstone-big {
        font-size: 73px;
        line-height: 65px;
    }

    .milstone-big {
        margin-top: 50px;
    }

    .milstone-big-head-content {
        padding-top: 20px;
    }
}

@media (max-width:720px) {
    .trust-four::before {
        top: 31%;
        width: 10%;
    }

    .spread-text::before {
        left: 19%;
    }
}

@media (max-width:650px) {
    .spread-text::before {
        left: 23%;
    }
}

@media (max-width:575px) {
    .mile-stone-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .trust-text {
        gap: 25px;
    }

    .spread-image-sec {
        padding-top: 25px;
    }

    .trust-img {
        width: 100%;
    }

    .spread-div {
        width: 100%;
    }

    .milstone-big {
        font-size: 50px;
        line-height: 49px;
    }
}

@media (max-width:500px) {
    .spread-text::before {
        left: 26%;
    }
}

@media (max-width:445px) {
    .spread-text::before {
        left: 28%;
        width: 7%;
    }
}

@media (max-width:470px) {
    .trust-four::before {
        top: 29%;
    }
}

@media (max-width:410px) {
    .trust-four::before {
        top: 27%;
    }
}

@media (max-width:400px) {
    .spread-text::before {
        left: 33%;
        width: 7%;
    }
}

.work-content-service {
    display: flex;
    flex-direction: row;
    display: grid;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
}

.col5_col4lg_col3-ser {
    grid-auto-flow: row;
    gap: 0px 0px;
    grid-template-columns: repeat(4, 1fr);

    .spanItem {
        grid-column: span 2;
    }

    @media (max-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);

        .spanItem {
            grid-column: span 2;
        }
    }

    @media (max-width: 991px) {
        grid-template-columns: repeat(4, 1fr);
    }

    @media (max-width: 850px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 575px) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.logo-grid {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #3E3E3E;
    border-bottom: 1px solid #3E3E3E;
    border-left: 1px solid #3E3E3E;
    border-right: 1px solid #3E3E3E;
    padding-top: 80px;
    padding-bottom: 80px;
    transition: all ease-in-out .5s;
}

.logo-grid:hover {
    border-bottom: 1px solid #FFB500;
}

.logo-width {
    width: 74px;
}

@media (max-width:991px) {
    .logo-width {
        width: 50px;
        margin: auto 0;
    }
}

@media (max-width:400px) {
    .logo-width {
        width: 35px;
        margin: auto 0;
    }
}

.logo-sml-cont {
    font-family: 'century-gothic';
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
    display: flex;
    margin: auto 0;
    color: #7D7D7D;
    transition: all ease-in-out.5s;
    text-align: center;
}

.logo-grid:hover .logo-sml-cont {
    color: #C8C8C8;
    /* Change this color to whatever you prefer */
}


/* <!------------------------------------------Face-of-josalukkas-section-----------------------------------------> */

.face-jos-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    background-color: #ffffff;
}

.face-head {
    display: flex;
    position: relative;
    justify-content: center;
    font-family: 'century-gothic';
    font-size: 42px;
    font-weight: 400;
    background-color: #ffffff;
    color: #8B8B8B;
    padding-bottom: 60px;
}

.face-head::after {
    content: '';
    position: absolute;
    left: 49%;
    top: 60px;
    width: 48px;
    height: 2px;
    background-color: #8B8B8B;
}


/**************************************** scroller *******************************************/

.scroller {
    max-width: 100%;
    overflow: hidden;
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.scroller__inner img {
    border-radius: 15px;
}

.scroller[data-animated="true"] {
    overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


/**************************************** scroller *******************************************/

.img-border {
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    padding: 5px;
}

.collection-section {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.collection-head {
    font-family: 'century-gothic';
    font-size: 30px;
    font-weight: 400;
    color: #575757;
    width: fit-content;
    display: flex;
    border: 1px solid #FFB500;
    border-radius: 50px;
    padding: 20px 70px;
    margin: auto;
    background-color: #ffffff;
    z-index: 1;
}

.collection-box {
    width: 100%;
    position: relative;
    display: flex;
    border: 1px solid #FFB500;
    border-radius: 10px;
    margin-top: -40px;
}


/********************************* logo-animation *****************************************/

.scrollers {
    max-width: 100%;
}

.scroller__inners {
    padding-block: 120px;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
}

.scrollers[data-animated="true"] {
    overflow: hidden;
}

.scrollers[data-animated="true"] .scroller__inners {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scrollers[data-direction="right"] {
    --_animation-direction: reverse;
}

.scrollers[data-direction="left"] {
    --_animation-direction: forwards;
}

.scrollers[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scrollers[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


/* general styles */

:root {
    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-primary-100: hsl(205, 15%, 58%);
    --clr-primary-400: hsl(215, 25%, 27%);
    --clr-primary-800: hsl(217, 33%, 17%);
    --clr-primary-900: hsl(218, 33%, 9%);
}

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.tag-list li {
    padding: 1rem;
    background: var(--clr-primary-400);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
}


/* for testing purposed to ensure the animation lined up correctly */

.test {
    background: red !important;
}

.log-slider {
    width: 175px;
}

@media (max-width:700px) {
    .collection-head {
        font-size: 18px;
    }

    .scroller__inners {
        padding-block: 58px;
        gap: 4rem;
    }
}

@media (max-width:575px) {
    .face-jos-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .face-jos-section {
        padding-top: 30px;
    }
}

@media (max-width:450px) {
    .collection-head {
        padding: 20px 30px;
    }

    .face-head {
        font-size: 35px;
    }
}


/************************************************ business-jewellery-section ************************************/

.jewellery-new img {
    filter: unset !important;
}

.jewellery-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 42%), rgb(21 20 20 / 15%), rgb(0 0 0 / 15%)) !important;
    z-index: 1;
}

.business-jewellery-content {
    display: flex;
    flex-direction: row;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: space-between;
    padding-bottom: 29%;
}

.jew-ban-head {
    width: 30%;
    font-family: 'century-gothic';
    font-size: 66px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: left;
    line-height: 60px;
}

.jew-ban-content {
    width: 25%;
    font-family: 'century-gothic';
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: right;
    line-height: 25px;
}

@media (max-width:1500px) {
    .jew-ban-head {
        font-size: 55px;
        line-height: 50px;
    }

    .jew-ban-content {
        font-size: 16px;
    }
}

@media (max-width:1400px) {
    .business-jewellery-content {
        padding-bottom: 25%;
    }
}

@media (max-width:1200px) {
    .jew-ban-head {
        font-size: 40px;
        line-height: 36px;
    }

    .jew-ban-content {
        font-size: 13px;
        line-height: 18px;
    }
}

.gold-industry-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 350px;
    padding-right: 350px;
    background-color: #000000;
}

.gold-industry-head {
    width: 70%;
    display: flex;
    margin: auto;
    font-family: 'century-gothic';
    font-size: 62px;
    line-height: 62px;
    font-weight: 400;
    color: #BEBEBE;
    text-align: center;
    padding-bottom: 100px;
}

.gold-industry-content {
    font-family: 'century-gothic';
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 120px;
}

@media (max-width:1800px) {
    .gold-industry-section {
        padding-left: 250px;
        padding-right: 250px;
    }

    .gold-industry-head {
        width: 100%;
        padding-bottom: 50px;
        justify-content: center;
    }
}

@media (max-width:1600px) {
    .gold-industry-section {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (max-width:1300px) {
    .gold-industry-head {
        font-size: 45px;
        line-height: 55px;
    }

    .gold-industry-content {
        font-size: 23px;
        line-height: 30px;
    }

    .business-jewellery-content {
        padding-bottom: 23%;
    }
}

@media (max-width:1200px) {
    .gold-industry-section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width:991px) {
    .gold-industry-head {
        font-size: 35px;
        line-height: 40px;
    }

    .gold-industry-head {
        padding-bottom: 25px;
    }

    .gold-industry-content {
        font-size: 18px;
        line-height: 25px;
    }

    .business-jewellery-content {
        padding-bottom: 22%;
    }
}

@media (max-width:850px) {
    .jewellery-new::before {
        background: linear-gradient(rgb(0 0 0 / 77%), rgb(21 20 20 / 71%), rgb(0 0 0 / 55%)) !important;
        z-index: 1;
    }

    .business-jewellery-content {
        flex-direction: column;
    }

    .jew-ban-head {
        width: 100%;
        text-align: center;
    }

    .jew-ban-content {
        width: 85%;
        text-align: center;
        margin: auto;
    }

    .jew-ban-content {
        font-size: 16px;
        line-height: 24px;
        padding-top: 25px;
    }

    .business-jewellery-content {
        padding-bottom: 17%;
    }
}

@media (max-width:775px) {
    .business-jewellery-content {
        padding-bottom: 12%;
    }
}

@media (max-width:575px) {
    .gold-industry-section {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }

    .gold-industry-head {
        font-size: 25px;
        line-height: 30px;
    }

    .gold-industry-content {
        font-size: 16px;
        line-height: 24px;
    }

    .jew-ban-content {
        font-size: 14px;
        line-height: 21px;
    }

    .jew-ban-content {
        width: 100%;
    }

    .business-jewellery-content {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
    }

    .gold-industry-content {
        padding-bottom: 50px;
    }
}

.bus-sli-text {
    color: #ffffff !important;
}

.new-sli {
    color: #ffffff !important;
}

.arrows-slider .arrow-outer {
    background-color: rgb(255, 255, 255);
    /* Changes the background color to black */
}


/* New class styles */

.new-style-class .swiper-pagination-current,
.new-style-class .swiper-pagination-total,
.new-style-class .swiper-pagination-separator {
    color: #5D5D5D;
    /* Change this to the color you want */
}


/* Separator specific style */

.new-style-class .swiper-pagination-separator {
    border: 1px solid #5D5D5D;
}

.for-pad-top {
    padding-top: 130px;
}

.logo-font {
    font-family: 'century-gothic';
    font-size: 80px;
    font-weight: 400;
    color: #B4B4B4;
}

.swiper-paginations {
    display: flex;
    align-items: center;
    justify-content: right;
    position: absolute;
    top: 0 !important;
    margin-right: 0;
    margin-left: -146px;
}

@media (max-width:1450px) {
    .logo-font {
        font-size: 50px;
    }

    .logo-sml-cont {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width:1110px) {
    .logo-sml-cont {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width:1110px) {
    .logo-sml-cont {
        font-size: 16px;
        line-height: 20px;
    }

    .logo-grid {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .logo-font {
        font-size: 35px;
    }
}

@media (max-width:575px) {
    .for-pad-top {
        padding-top: 50px;
    }
    
    .logo-grid{ 
        flex-direction: row;
        gap: 20px;
    }
    .logo-sml-cont{
        text-align: left;
    }

}

@media (max-width:450px) {
    .logo-font {
        font-size: 35px;
    }

    .logo-sml-cont {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width:400px) {
    .logo-font {
        font-size: 30px;
    }

    .logo-sml-cont {
        font-size: 14px;
        line-height: 20px;
    }
}


/********************************************************* about-us-jos-alukkas ******************************************************/

.abt-text-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 226px;
}

.abt-text-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about-detail/bg.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 1;
    opacity: 0.5;
}

.abt-text-area>* {
    position: relative;
    z-index: 2;
    /* Ensures content appears above the image */
}

.relative-image-new {
    width: 100%;
    height: auto;
    position: relative;
    /* Keeps the images in the normal flow of the document */
}

.for-grid-new {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding-left: 250px;
    padding-right: 250px;
    justify-content: space-between;
}

.for-abt {
    z-index: 1;
}

.for-index-two-new {
    z-index: 0;
}

.image-name-new {
    display: flex;
    flex-direction: column;
}

.pro-name-new {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 400;
    display: flex;
    margin: auto;
    padding-top: 20px;
    color: #fff;
    text-transform: uppercase;
}

.alukka-img-new {
    width: 100%;
}

.pro-btn-new {
    font-family: 'century-gothic';
    font-size: 14px;
    font-weight: 500;
    display: flex;
    margin: auto;
    padding-top: 20px;
    position: relative;
    /* padding-right: 20px; */
    color: #9E9E9E;
    cursor: pointer;
    position: relative;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.pro-btn-new::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 77%;
    height: 2px;
    /* Adjust the thickness of the underline */
    background-color: #FFB500;
    /* Change the color as needed */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.pro-btn-new:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.pro-btn-new::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 73%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #FFB500;
    border-radius: 50%;
    transition: all ease-in-out .5s;
}

.pro-btn-new:hover::before {
    background-color: #FFB500;
    /* Replace with your desired color */
}

.director-head {
    text-align: center;
    font-size: 80px;
    color: #CECECE;
    font-family: 'century-gothic';
    opacity: 30%;
    line-height: 76px;
    padding-bottom: 112px;
    letter-spacing: -2px;
}

.jos-img {
    filter: none !important;
}

#jos-inner.carousel-item::before {
    background: none !important;
}

.jos-dec {
    font-size: 26px;
    line-height: 40px;
    float: right;
    text-align: left;
    color: #BCBCBC;
    max-width: 55%;
    font-family: 'century-gothic';
    padding-right: 150px;
    letter-spacing: -1px;
}

.content-under-section {
    display: flex;
    gap: 44px;
    margin-top: 33px;
}

.name-founder {
    font-size: 28px;
    color: #fff;
    font-family: 'century-gothic';
}

.founder {
    color: #8B8B8B;
    font-size: 16px;
    font-family: 'century-gothic';
    position: relative;
    display: inline-block;
}

.quots-img {
    height: 70px;
}

.img-quots {
    height: 100%;
}

.name-section {
    line-height: 32px;
    /* padding-top: 33px; */
    text-align: left;
}

.bor-bott {
    border-bottom: 1px solid #707070;
    width: 35px;
    transition: all ease-in-out .5s;
}

.bor-bott:hover {
    width: 75px;
}

.carousel-abt::before {
    background: unset !important;
}

.reveal-new-width {
    width: 85% !important;
}

.award-head {
    font-size: 160px;
    color: #8B8B8B;
    font-family: 'century-gothic';
    text-align: left;
    line-height: 138px;
    padding-bottom: 58px;
}

.awradbg-container {
    padding-left: 80px;
    padding-right: 80px;
}

.awrad-bg {
    background-image: linear-gradient(#F3F3F3, #F4F4F4);
    padding-bottom: 158px;
}

.award-content {
    font-size: 16px;
    font-family: 'century-gothic';
    color: black;
    line-height: 36px;
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid #BEBEBE;
}

.pb-top {
    padding-top: 0px
}

.qts-dark {
    position: absolute;
    right: 1px;
    top: -34px;
    margin-right: 40px;
}

.non-filter-img {
    filter: none;
}

@media (max-width:1885px) {
    .award-head {
        font-size: 140px;
    }

    .business-head-abt {
        font-size: 38px;
    }
}

@media (max-width:1864px) {
    .jos-dec {
        font-size: 25px;
        line-height: 35px;
    }
}

@media (max-width:1885px) {
    .award-head {
        font-size: 120px;
        line-height: 100px;
    }

    .business-head-abt {
        font-size: 30px;
    }
}

@media (max-width:1500px) {
    .jos-dec {
        font-size: 18px;
        line-height: 28px;
    }

    .award-head {
        font-size: 115px;
        line-height: 100px;
    }
}

@media (max-width:1400px) {
    .award-head {
        font-size: 100px;
    }

    .business-head-abt {
        font-size: 28px;
    }
}

@media (max-width:1238px) {
    .award-head {
        font-size: 80px;
        line-height: 85px;
    }
}

@media (max-width:1200px) {
    .jos-dec {
        padding-right: 50px;
    }

    .name-section {
        line-height: 21px;
        /* padding-top: 18px; */
    }

    .name-founder {
        font-size: 18px;
    }

    .founder {
        font-size: 14px
    }

    .quots-img {
        height: 50px;
    }

    .jos-dec {
        font-size: 16px;
        line-height: 26px;
    }

    .for-grid-new {
        padding-left: 100px;
        padding-right: 100px;
    }

    .demo-new {
        bottom: -118px !important;
    }
}

@media (min-width:1201px) and (max-width:1349px) {
    .quots-img {
        height: 50px;
    }

    .name-founder {
        font-size: 18px;
    }

    .founder {
        font-size: 14px;
    }

    .jos-dec {
        font-size: 16px;
        line-height: 26px;
    }

    .jos-dec {
        padding-right: 50px;
    }
}

@media (min-width:991px) and (max-width:1285px) {
    .business-head-abt {
        font-size: 28px;
        line-height: 29px;
    }
}

@media (max-width:1024px) {
    .award-head {
        font-size: 75px;
        line-height: 70px;
    }
}

@media (max-width:967px) {
    .award-head {
        font-size: 55px;
        line-height: 57px;
    }
}

@media (max-width:992px) {
    .jos-dec {
        font-size: 16px;
        line-height: 23px;
        padding-right: 40px;
    }

    .name-founder {
        font-size: 15px;
    }

    .quots-img {
        height: 30px;
    }

    .founder {
        font-size: 13px;
    }

    .name-section {
        line-height: 15px;
        /* padding-top: 16px; */
    }
}

@media (max-width:991px) {
    .director-head {
        font-size: 63px;
        line-height: 55px;
    }

    .for-grid-new {
        padding-left: 60px;
        padding-right: 60px;
        gap: 50px;
    }

    .demo-new {
        bottom: -137px !important;
    }
}

@media (min-width:821px) and (max-width:921px) {
    .name-founder {
        font-size: 14px;
    }

    .founder {
        font-size: 12px;
    }

    .jos-dec {
        font-size: 15px;
        line-height: 19px;
    }

    .demo-new {
        bottom: -133px !important;
    }
}

@media (min-width:992px) and (max-width:1191px) {
    .jos-dec {
        font-size: 15px;
        line-height: 22px;
    }

    .name-founder {
        font-size: 16px;
    }

    .founder {
        font-size: 12px;
    }

    .quots-img {
        height: 40px;
    }

    .qts-dark {
        height: 30px;
    }
}

@media (max-width:820px) {
    .jos-dec {
        font-size: 15px;
        line-height: 18px;
    }
}

@media (max-width:768px) {
    .right-banner-content {
        display: none;
    }

    .jos-dec {
        width: 100%;
        padding-top: 100px;
        padding-bottom: 100px;
        font-size: 25px;
        float: unset;
        padding-right: 0px;
        margin: auto;
        text-align: center;
        max-width: 85%;
        line-height: 30px;
    }

    .content-under-section {
        justify-content: center;
    }

    .founder {
        text-align: left;
    }

    .director-head {
        font-size: 42px;
        line-height: 52px;
    }

    .abt-text-area {
        padding-top: 0;
    }

    .pro-name-new {
        font-size: 14px;
    }

    .award-head {
        font-size: 45px;
        line-height: 47px;
    }

    .hide-desk-quot {
        float: right;
        position: absolute;
        right: 40px;
    }

    .text-wrapper-new {
        bottom: -80px !important;
    }

    .demo-new {
        bottom: -126px !important;
    }
}

@media (min-width:769px) {
    .hide-section-desk {
        display: none;
    }
}

@media (min-width:769px) and (max-width:772px) {
    .pro-name-new {
        font-size: 15px !important;
    }
}

@media (max-width:675px) {
    .awradbg-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width:575px) {
    .jos-dec {
        padding-bottom: 80px;
    }

    .content-under-section {
        justify-content: left;
    }

    .for-grid-new {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
    }

    .image-name {
        padding-bottom: 30px;
    }

    .pro-btn-new::before {
        top: 60%;
    }

    .pro-btn-new {
        padding-top: 8px;
    }

    .abt-text-area {
        padding-bottom: 50px;
    }

    .director-head {
        padding-bottom: 50px;
        font-size: 29px;
        line-height: 36px;
    }

    .award-content {
        font-size: 15px;
        line-height: 26px;
    }

    .award-head {
        font-size: 29px;
        line-height: 32px;
    }

    .business-head::after {
        display: none;
    }

    .business-head-abt {
        font-size: 28px;
        line-height: 38px;
    }

    .reveal-new-width {
        width: 100% !important;
    }

    .awrad-bg {
        padding-bottom: 50px;
    }

    .hide-desk-quot {
        right: 11px;
        margin-top: -11px;
    }

    .non-filter-img {
        height: 450px !important;
    }

    .text-wrapper-new {
        bottom: -120px !important;
    }

    .award-head {
        padding-bottom: 25px;
    }
}

@media (max-width:450px) {
    .business-head-abt {
        font-size: 26px;
        line-height: 36px;
    }

    .award-head {
        font-size: 30px;
        line-height: 34px;
    }

    .reveal-text-new {
        font-size: 25px !important;
        line-height: 35px;
    }
}

.non-filter-img {
    filter: none !important
}

.blog-wrapper-imgs-new {
    overflow: hidden;
    border-radius: 10px;
}

.blg-img-new {
    /* transition: transform .3s ease-in-out; */
    border-radius: 10px;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.blg-img-new:hover {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    border-radius: 10px;
}

@media (max-width:575px) {
    .demo-new {
        bottom: -125px !important;
    }
}

@media (min-width:576px) {
    .swiper-button-prev-new {
        display: none !important;
    }

    .swiper-button-next-new {
        display: none !important;
    }
}

.ser-img-sec {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-bottom: 38px;
}

.csr-list {
    padding: 0 40px 0 107px;
}

.content-sec {
    width: 70%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 100px 104px 52px 100px;
    background-color: white;
}

.csr-list .head-slider,
.mySwipertwo .head-slider {
    line-height: 1.7;
    padding-bottom: 30px;
}

.content-img {
    width: 30%;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.content-img div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-img div img {
    max-height: 500px;
}

.image-four {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-content-slider-new {
    line-height: 34px;
    font-size: 24px;
}

@media (max-width:1500px) {
    .news-content-slider-new {
        line-height: 34px;
        font-size: 20px;
    }
}

@media (max-width:1200px) {
    .news-content-slider-new {
        padding-bottom: 120px;
    }
}

@media (min-width:1201px) and (max-width:1300px) {
    .news-content-slider-new {
        padding-bottom: 120px;
    }
}

@media (max-width:1024px) {
    .news-content-slider-new {
        width: 100%;
    }
}

@media (max-width:768px) {}

@media (max-width:768px) {
    .content-sec {
        padding: 25px;
    }

    .news-content-slider-new {
        line-height: 26px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width:600px) {
    .ser-img-sec {
        flex-direction: column;
    }

    .content-img {
        width: 100%;
    }

    .content-sec {
        width: 100%;
    }

    .news-content-slider-new {
        padding-bottom: 0px;
    }
}


/************************************************************** fixed-new-header*********************************************************************/

.bg-dark {
    background: black !important;
}

@media (min-width:992px) and(max-width:1399px) {
    .responsive-menu-for-abt-innner {
        bottom: 100px !important;
    }
}


/*********************************************** john-profile-section ********************************************/

.son-bsns-cntnr {
    padding-left: 80px !important;
    padding-right: 80px !important;
    padding-bottom: 50px !important;
}

.for-john {
    padding-top: 80px;
}

.personal-sec {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 80px;
    padding-right: 80px;
    background-image: linear-gradient(#F3F3F3, #F4F4F4);
}

.for-margin {
    margin: auto 0;
}

.persnl-sub-content {
    width: 35%;
    font-size: 18px;
    font-family: 'century-gothic';
    font-weight: 500;
    color: #000000;
    text-align: left;
    padding-bottom: 120px;
}


/****************************** early-life-section *********************************/

.early-life-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    padding-left: 250px;
    padding-right: 250px;
}

.early-life-para {
    font-family: 'century-gothic';
    color: #BCBCBC;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}

.early-life-head {
    font-family: 'century-gothic';
    font-size: 80px;
    color: #CECECE;
    opacity: 25%;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
    line-height: 76px;
    padding-top: 120px;
    padding-bottom: 50px;
    letter-spacing: -2px;
}

.early-life-content {
    width: 80%;
    font-family: 'century-gothic';
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: auto;
}

.bg-line {
    width: 100%;
}

.bg-line-img {
    padding-bottom: 50px;
    margin-top: -65px;
}

@media (max-width:1800px) {
    .business-heads::after {
        top: 45px;
    }

    .business-head-two {
        font-size: 30px;
    }
}

@media (max-width:1600px) {
    .early-life-section {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (max-width:1500px) {
    .early-life-para {
        font-size: 25px;
    }

    .early-life-content {
        font-size: 25px;
    }
}

@media (max-width:1200px) {
    .early-life-section {
        padding-left: 80px;
        padding-right: 80px;
    }

    .early-life-content {
        font-size: 20px;
    }

    .early-life-head {
        font-size: 60px;
        line-height: 58px;
    }

    .for-john {
        padding-top: 0px;
    }
}

@media (max-width:991px) {
    .early-life-para {
        font-size: 20px;
    }

    .early-life-head {
        padding-top: 60px;
    }

    .early-life-head {
        padding-bottom: 25px;
    }

    .bg-line-img {
        margin-top: 0px;
    }

    .early-life-content {
        font-size: 17px;
    }

    .for-margin {
        padding-top: 0px !important;
    }

    .persnl-sub-content {
        width: 100%;
    }

    .pt-991 {
        padding-top: 40px !important;
    }

    .reveal-new-width {
        padding-bottom: 0px !important;
    }

    .pt-991 {
        padding-bottom: 0px !important;
    }

    .persnl-sub-content {
        padding-bottom: 50px;
    }

    .awrad-bg {
        padding-bottom: 75px;
    }

    .business-heads::after {
        top: 39px;
    }
}

@media (max-width:767px) {
    .early-life-section {
        padding-left: 35px;
        padding-right: 35px;
    }

    .early-life-content {
        width: 90%;
    }

    .early-life-head {
        font-size: 40px;
        line-height: 35px;
    }

    .content-under-section {
        margin-top: 33px !important;
    }

    .son-bsns-cntnr {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .personal-sec {
        padding-left: 35px;
        padding-right: 35px;
    }

    .awradbg-container {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (max-width:600px) {
    .jos-dec {
        font-size: 19px;
        padding-top: 0;
        line-height: 22px;
    }

    .early-life-content {
        width: 100%;
    }
}

@media (max-width:575px) {
    .early-life-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .son-bsns-cntnr {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .personal-sec {
        padding-left: 15px;
        padding-right: 15px;
    }

    .awradbg-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width:450px) {
    .early-life-head {
        font-size: 32px;
        line-height: 31px;
    }
}

.navbar-fixed-top {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: black;
}

.navlinks-right {
    justify-content: end;
}

.header-padding {
    padding: 25px 42px
}


/********************************************** showroom-area *******************************************************/

.showroom-page {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 180px;
    padding-left: 50px;
    padding-right: 50px;
}

.showroom-page-head {
    font-family: 'century-gothic';
    font-size: 42px;
    color: #BEBEBE;
    font-weight: 400;
    display: flex;
    justify-content: center;
    position: relative;
}

.showroom-accordions {
    width: 100%;
    position: relative;
}

.accordion-button {
    position: relative;
    cursor: pointer;
    padding-right: 30px;
    /* Adjust padding to make room for the icon */
}

.accordion-button::after {
    content: '';
    /* Use a down arrow or any other symbol */
    position: absolute;
    right: 10px;
    /* Position it to the right */
    transition: transform 0.3s ease-in-out;
    transform: rotate(0deg) !important;
    /* Initial state (closed) */
    color: white !important;
    display: none;
}

.accordion-button.open::after {
    transform: rotate(180deg) !important;
    /* Rotated state (opened) */
}

.accordion-collapse {
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    /* Smooth transition for height */
    height: 0;
    /* Start collapsed */
}

.accordion-collapse.show {
    height: auto;
    /* Ensure correct height when opened */
}

.accordion-collapse.open {
    background-color: #f8f9fa;
    /* Example style for the additional class */
}

.color-extras {
    background-color: #000000 !important;
    color: #ffffff !important;
    box-shadow: none;
    border-bottom: 1px solid #272727 !important;
    padding-top: 50px !important;
}

.color-extras-two {
    background-color: #000000 !important;
    box-shadow: none;
    border-bottom: 1px solid #272727;
    color: #ffffff;
}

.extra-border {
    border: unset;
}

.border-color {
    border-color: #272727 !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 #272727 !important;
}

.accordion-button::after path {
    fill: #ffffff;
    /* Change this to your desired color */
}

.font-sec {
    font-family: 'century-gothic';
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 500;
}

.work-content-service {
    display: flex;
    flex-direction: row;
    display: grid;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.col5_col4lg_col3-ser {
    grid-auto-flow: row;
    gap: 20px 40px;
    grid-template-columns: repeat(4, 1fr);

    .spanItem {
        grid-column: span 2;
    }

    @media (max-width: 1200px) {
        grid-template-columns: repeat(3, 1fr);

        .spanItem {
            grid-column: span 2;
        }
    }

    @media (max-width: 991px) {
        grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 850px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }

    @media (max-width: 575px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.show-room-address {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.district {
    width: fit-content;
    font-family: 'century-gothic';
    font-size: 22px;
    line-height: 22px;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.district::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E6B00B;
    position: absolute;
    top: 52%;
    right: -20px;
    transform: translateY(-50%);
}

.district-address {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.district-address a{color: #fff;}

.view-map {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
    margin-top: auto;
    position: relative;
}

.map-text {
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-right: 20px;
}

.show-arw {
    width: 100%;
}

.arrow-point {
    width: 64px;
}

.show-arw {
    transition: margin-left 1s ease-in-out;
    /* Smooth transition for the margin change */
}

.view-map:hover .show-arw {
    margin-left: 20px;
    /* Move the image 30px to the left on hover */
}

.showroom-page-head:after {
    content: '';
    position: absolute;
    left: 48%;
    top: 57px;
    width: 60px;
    height: 1px;
    background-color: #707070;
}

@media (max-width:1850px) {
    .district-address {
        font-size: 14px;
    }
}

@media (max-width:1450px) {
    .district-address {
        font-size: 13px;
    }
}

@media (max-width:1366px) {
    .showroom-page {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width:991px) {
    .showroom-page {
        padding-top: 90px;
    }

    .showroom-page-head {
        font-size: 35px;
    }
}

@media (max-width:575px) {
    .showroom-page {
        padding-left: 15px;
        padding-right: 15px;
    }

    .showroom-page {
        padding-bottom: 60px;
    }

    .font-sec {
        font-size: 16px;
    }

    .view-map {
        padding-bottom: 0px;
        padding-top: 25px;
    }
}


/************************************************* news-events-detail ************************************************/

.news-events-detail {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 300px;
    padding-right: 300px;
    padding-top: 150px;
}

.new-eve {
    width: 100%;
    /* filter: grayscale(1); */
    transition: all ease-in-out .5s;
    overflow: hidden;
    border-radius: 10px;
}


/* .new-eve:hover {
    filter: grayscale(0);
} */

.news-detail-img {
    overflow: hidden;
}

.new-eve-text {
    font-family: 'century-gothic';
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: #BEBEBE;
    padding-top: 40px;
}

.new-eve-content {
    font-family: 'century-gothic';
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
    color: #ffffff;
    padding-top: 25px;
}

@media (max-width:1600px) {
    .news-events-detail {
        padding-left: 200px;
        padding-right: 200px;
    }
}

@media (max-width:1300px) {
    .news-events-detail {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width:991px) {
    .new-eve-text {
        font-size: 30px;
        line-height: 36px;
    }

    .new-eve-content {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width:767px) {
    .new-eve-text {
        font-size: 24px;
        line-height: 30px;
    }

    .new-eve-content {
        font-size: 16px;
        line-height: 30px;
    }

    .news-events-detail {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 90px;
    }
}

@media (max-width:575px) {
    .new-eve-text {
        font-size: 20px;
        line-height: 27px;
    }

    .new-eve-content {
        font-size: 14px;
        line-height: 24px;
    }

    .news-events-detail {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/****************************************************************** detailed-csr *****************************************************/

.csr-detail {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 300px;
    padding-right: 300px;
    padding-top: 150px;
    background-color: white;
    padding-bottom: 50px;
}

.csr-detail-pad {
    padding-bottom: 0px !important;
}

.new-csr {
    width: 100%;
    filter: grayscale(1);
    transition: all ease-in-out .5s;
}

.new-csr:hover {
    filter: grayscale(0);
}

.csr-detail-img {
    overflow: hidden;
}

.csr-eve-text {
    font-family: 'century-gothic';
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: #000000;
    padding-top: 40px;
}

.csr-eve-content {
    font-family: 'century-gothic';
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
    color: #000000;
    padding-top: 25px;
}

@media (max-width:1600px) {
    .csr-detail {
        padding-left: 200px;
        padding-right: 200px;
    }
}

@media (max-width:1300px) {
    .csr-detail {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width:991px) {
    .csr-eve-text {
        font-size: 30px;
        line-height: 36px;
    }

    .csr-eve-content {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width:767px) {
    .csr-eve-text {
        font-size: 24px;
        line-height: 30px;
    }

    .csr-eve-content {
        font-size: 16px;
        line-height: 30px;
    }

    .csr-detail {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 90px;
    }
}

@media (max-width:575px) {
    .csr-eve-text {
        font-size: 20px;
        line-height: 27px;
    }

    .csr-eve-content {
        font-size: 14px;
        line-height: 24px;
    }

    .csr-detail {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/**********************************************contact******************************************************/

.bg-news-gap {
    padding-top: 149px !important;
}

.contact-head {
    color: #BEBEBE;
    text-align: center;
    font-size: 42px;
    font-family: 'century-gothic';
    position: relative;
}

.contact-head:after {
    content: '';
    position: absolute;
    left: 48%;
    top: 57px;
    width: 60px;
    height: 1px;
    background-color: #707070;
}

.addres-area-contact {
    display: flex;
    width: 100%;
    padding: 0px 106px;
    padding-bottom: 78px;
    justify-content: space-between;
    border: none;
    margin-bottom: 95px;
}

.contact-head-sub {
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-family: 'century-gothic';
    position: relative;
    font-weight: 400;
    text-align: left;
    position: relative;
    letter-spacing: -1px;
}

.contact-head-sub:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    width: 20px;
    height: 1px;
    background-color: #E6B00B;
}

.contact-section-add {
    font-size: 18px;
    font-family: 'century-gothic';
    color: white;
    line-height: 26px;
    padding-top: 25px;
    padding-bottom: 50px;
}

.area-one {
    display: flex;
    flex-direction: column;
    width: 25%;
    position: relative;
}

.center-space {
    width: 33% !important;
}

.area-one:first-child,
.area-one:nth-child(2) {
    border-right: 1px solid #E6B00B;
}

.area-one:first-child:before,
.area-one:nth-child(2):before {
    content: '';
    position: absolute;
    top: 13px;
    /* Adjust to position the triangle */
    right: -11px;
    /* Position the triangle horizontally */
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #E6B00B;
    transform: rotate(2deg)
}

.last-sub-head {
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-family: 'century-gothic';
    position: relative;
    font-weight: 400;
    text-align: left;
    position: relative;
}

.last-area-phone {
    font-size: 18px;
    font-family: 'century-gothic';
    color: white !important;
    line-height: 26px;
}

.last-area-mail {
    font-size: 18px;
    font-family: 'century-gothic';
    color: white !important;
    line-height: 26px;
}

.form-area {
    background-image: url("../images/contact/bg-contact.webp");
    height: 921px;
    background-repeat: no-repeat;
}

.contact-head-form {
    font-size: 72px;
    font-family: 'century-gothic';
    color: #fff;
    padding-bottom: 15px;
}

.form-align {
    float: right;
    margin-right: 200px;
    padding-top: 118px;
    width: 30%;
}

.form-inputs {
    background-color: #343434 !important;
    font-family: 'century-gothic';
    border-radius: 5px !important;
    padding: 18px 24px !important;
    margin-bottom: 16px;
    border: none;
    color: white;
}

.form-inputs::placeholder {
    color: #CBCBCB !important;
    opacity: 100% !important;
    text-transform: capitalize;
}

.contact-btn-form {
    font-family: 'century-gothic';
    color: white;
    font-size: 16px;
    text-transform: capitalize;
    background: none;
    border: none;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.submit-area {
    display: flex;
    gap: 5px;
    cursor: pointer;
}

.botm-sec {
    margin-top: auto;
}

.arrow-white {
    display: inline-block;
    transition: transform 0.3s ease;
}

.submit-area:hover .arrow-white {
    transform: translateX(10px);
}

.form-inputs-text {
    height: 138px;
    max-height: 250px;
}

.contact-section-add a {
    color: white;
}

@media (max-width: 1877px) {
    .contact-head-sub {
        font-size: 30px;
    }
}

@media (max-width: 1599px) {
    .contact-head-sub {
        font-size: 25px;
    }
}

@media (max-width: 1500px) {
    .contact-section-add {
        font-size: 15px;
    }

    .last-sub-head {
        font-size: 20px;
    }

    .last-area-phone {
        font-size: 15px;
    }

    .last-area-mail {
        font-size: 15px;
    }

    .form-align {
        float: right;
        margin-right: 180px;
    }
}

@media (max-width: 1368px) {
    .contact-head-sub {
        font-size: 22px;
    }

    .form-align {
        margin-right: 90px;
    }
}

@media (max-width: 1300px) {
    .contact-section-add {
        font-size: 14px;
    }

    .last-area-phone {
        font-size: 15px;
    }

    .last-area-mail {
        font-size: 15px;
    }

    .contact-head-form {
        font-size: 65px;
    }
}

@media (max-width: 1200px) {
    .addres-area-contact {
        padding: 0px 40px;
    }

    .contact-head-form {
        font-size: 50px;
    }
}

@media (max-width: 1096px) {
    .addres-area-contact {
        padding: 0px 40px;
    }

    .contact-head-sub {
        font-size: 20px;
    }

    .contact-section-add {
        font-size: 13px;
    }

    .last-area-phone {
        font-size: 13px;
    }

    .last-area-mail {
        font-size: 13px;
    }
}

@media (max-width: 1010px) {
    .addres-area-contact {
        padding: 0 40px;
    }

    .addres-area-contact {
        justify-content: normal;
    }

    .first-sec {
        padding-right: 25px;
    }

    .third-sec {
        padding-left: 20px;
    }

    .secnd-sec {
        padding-left: 20px;
        padding-right: 20px;
    }

    .area-one {
        width: 33%;
    }

    .contact-head-sub {
        font-size: 18px;
    }

    .botm-sec {
        margin-top: auto;
    }
}

@media (max-width:991px) {
    .addres-area-contact {
        display: flex;
        flex-wrap: wrap;
        /* Allows items to wrap to the next line */
        padding: 0px 40px;
        justify-content: space-between;
        border: none;
        margin-bottom: 95px;
    }

    .area-one {
        flex: 1 1 30%;
        /* Grow to 30% of the container width and shrink if necessary */
        box-sizing: border-box;
        position: relative;
        margin-right: 1%;
        /* Space between columns */
    }

    .area-one:last-child {
        margin-right: 0;
        /* Remove margin from the last item */
    }

    .center-space {
        width: 33% !important;
        /* Overrides flex basis for this item */
    }

    .third-sec {
        flex: 1 1 100%;
        padding-left: 0;
        /* Full width for the third section */
    }

    .contact-head-sub:after {
        content: '';
        position: absolute;
        left: 0;
        top: 45px;
        width: 20px;
        height: 1px;
        background-color: #E6B00B;
    }

    .botm-sec {
        margin-top: auto;
    }

    /* .addres-area-contact{
            gap: 35px;
        } */
    .third-sec {
        margin-top: 35px;
    }

    .secnd-sec {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-align {
        width: 100%;
        margin-right: 0px;
        padding: 40px;
    }
}

@media (max-width: 845px) {
    .area-one {
        width: 50% !important;
    }

    .center-space {
        width: 50% !important;
    }

    .third-sec {
        width: 100% !important;
    }
}

@media (max-width:675px) {

    .area-one:first-child,
    .area-one:nth-child(2) {
        border: none;
    }

    .area-one:first-child:before,
    .area-one:nth-child(2):before {
        display: none;
    }
}

@media (max-width:575px) {
    .area-one {
        width: 100% !important;
    }

    .center-space {
        width: 100% !important;
    }

    .third-sec {
        width: 100% !important;
    }

    .addres-area-contact {
        flex-direction: column;
    }

    .area-one:first-child,
    .area-one:nth-child(2) {
        border: none;
    }

    .area-one:first-child:before,
    .area-one:nth-child(2):before {
        display: none;
    }

    .addres-area-contact {
        padding: 0 15px;
    }

    .contact-head-sub {
        font-size: 26px;
    }

    .secnd-sec {
        padding-left: 0px;
        padding-right: 0px;
    }

    .third-sec {
        padding-left: 0px;
    }

    .contact-section-add {
        padding-bottom: 25px;
    }

    .addres-area-contact {
        gap: 35px;
    }

    .contact-section-add {
        font-size: 16px;
    }

    .last-sub-head {
        font-size: 26px;
    }

    .last-area-phone {
        font-size: 16px;
    }

    .last-area-mail {
        font-size: 16px;
    }

    .bg-news-gap {
        padding-top: 100px !important;
    }

    .form-align {
        padding: 40px 15px;
    }

    .form-area {
        height: 570px;
    }
}

@media (max-width:575px) {
    .res-for-jewellery {
        font-size: 39px;
        line-height: 35px;
    }

    .res-for-jewellery::after {
        top: 50px;
    }

    .work-content-service {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mile-stone-section {
        padding-bottom: 45px;
    }

    .procedure-section {
        margin-bottom: 15px;
    }

    .footer-sec {
        padding: 25px 15px !important;
    }

    .csr-for-res {
        padding-top: 100px !important;
    }

    .showroom-page-head:after {
        left: 46%;
    }
}

@media (max-width:395px) {
    .res-for-jewellery::after {
        top: 80px;
    }
}

.arrowIcon {
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.arrow-align {
    justify-content: space-between;
    align-items: center;
}

.for-color-arrow {
    color: #8A8A8A !important;
}

.dropdown-link {
    position: relative;
    list-style: none;
}

@media (min-width:992px) {
    .dropdown-link a.active:after {
        content: '';
        position: absolute;
        left: 8px;
        top: 32px;
        width: 19px;
        height: 2px;
        background-color: #E6B00B;
    }
}

.absolute-shadow {
    position: absolute;
    z-index: 1;
}

@media (max-width:1200px) {
    .absolute-shadow {
        display: none;
    }
}

@media (max-width:820px) {
    .showroom-page-head:after {
        left: 45%;
    }
}


/* Initially, the dropdown is hidden */


/* Icon starts rotated to the right */

@media (max-width:991px) {
    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: transform 0.5s ease;
    }

    /* Rotate the icon downward when the dropdown is open */
    .nav-link>a>i.rotate-arrow {
        transform: rotate(0deg);
        /* Rotates to the default downwards position */
    }

    /* Initially, the dropdown is hidden */
    .dropdown {
        display: none;
    }

    /* Show the dropdown when active */
    .show-dropdown {
        display: block;
    }
}

.view-all-btns {
    width: fit-content;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    padding: 7px 25px;
    transition: all ease-in-out .5S;
}

.view-all-btns:hover {
    color: #E6B00B !important;
    border: 1px solid #E6B00B;
}

.view-all-btns-two {
    width: fit-content;
    color: #000000 !important;
    border: 1px solid #000000;
    padding: 7px 25px;
    transition: all ease-in-out .5S;
}

.view-all-btns-two:hover {
    color: #E6B00B !important;
    border: 1px solid #E6B00B;
}

.center-btn-view {
    padding-top: 70px;
    display: flex;
    justify-content: center;
}

@media (max-width:575px) {
    .center-btn-view {
        justify-content: left;
        padding-left: 15px;
        padding-top: 30px;
    }

    .addres-area-contact {
        margin-bottom: 20px;
    }
}

@media (max-width:767px) {
    .main-views {
        display: none;
    }

    .res-views {
        display: block;
    }

    .res-img-border {
        border-radius: 10px;
    }
}

@media (min-width:767px) {
    .main-views {
        display: block;
    }

    .res-views {
        display: none;
    }
}

@media (max-width:1200px) {
    .main-head {
        letter-spacing: 0px;
    }

    .news-content {
        letter-spacing: 0px;
    }

    .csr-content {
        letter-spacing: 0px;
    }

    .big-title {
        letter-spacing: 0px;
    }

    .reveal-text-new {
        letter-spacing: 0px;
    }

    .second-step-contents {
        letter-spacing: 0px;
    }

    .founder-para {
        letter-spacing: 0px;
    }
}


.dq-collab-section {
    padding: 100px 40px;
    border-bottom: 1px solid #212121;
    text-align: center;
}

.dq-collab-section div {
    max-width: 1500px;
    margin: 0 auto;
}

.dq-collab-section img {
    border-radius: 10px;
}

.dq-collab-section p {
    max-width: 800px;
    font-family: 'century-gothic';
    font-size: 16px;
    font-weight: 500;
    color: #BEBEBE;
    padding: 30px 0 50px;
    margin: 0 auto;
}