@import url('../../../css2');

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1F1E1A !important;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
a {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.navbar {
    background-color: #1F1E1A;
    padding: 1% 0 7%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    color: white;
    margin-right: 2rem;
}

.navbar-text {
    color: #B2B3B3;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    margin-right: 1rem;
}

.navbar-text2 {
    color: #B2B3B3;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    text-align: center;
}


.header-btn {
    color: #141515;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    border-radius: 35px;
    padding: 10px 30px;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    margin-right: 1rem;
    text-decoration: none;
}
.header-btn:hover {
    color: #141515;
}

.header-btn2 {
    color: #141515;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    border-radius: 35px;
    padding: 10px 30px;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);

}

.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    padding-right: 0 !important;
}

.navbar-toggler svg {
    fill: #fff;
}

.sidebar {
    width: 0%;
    /* height: 100%; */
    position: absolute;
    top: 100px;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s;
    background-color: #1F1E1A;
    padding-top: 20px;
    z-index: 9;
    text-align: left;
    border-radius: 0;
    padding-bottom: 20px;
}

/* .mob-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
} */
.mob-header {
    position: absolute;
    top: 10px;
    left: 10px;
}

.sidebar a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #fff;
    margin: 0 10px;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.sidebar.open {
    width: 20%;
}

.logo {
    width: 100%;
}

.adjust-logo {
    position: absolute;
    top: -10px;
    z-index: 1;
}

.nav-con {
    position: relative;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.black-nav {
    background-color: #1F1E1A;

}

.nav-right-side {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Add this style to limit the width of the slider container */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


.slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* .slide img {
    width: 100%;
} */

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}


.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 8px;
    cursor: pointer;
}

.dot.active {
    background-color: #DEA638;
}

.mob-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.mob-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mob-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.mob-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.mob-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 8px;
    cursor: pointer;
}

.mob-dot.active {
    background-color: #DEA638;
}

.new-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid white;
    border-radius: 5px;
}

.new-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.new-prev-arrow-container,
.new-next-arrow-container {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #DEA638;
    /* Golden color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin-right: 3%;
    margin-left: 3%;
}

.new-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /* Arrow color */
    font-size: 20px;
    /* Adjust the font size as needed */
}

.new-prev-arrow-container:hover,
.new-next-arrow-container:hover {
    background-color: #DEA638;
    /* Change to desired color on hover */
}

.new-prev-arrow-container:hover path {
    stroke: black;
}

.new-next-arrow-container:hover path {
    stroke: black;
}

.custom-next-arrow-container:hover path {
    stroke: black;
}

.custom-prev-arrow-container:hover path {
    stroke: black;
}

.new-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

.new-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.new-slide img {
    width: 100%;
}

.custom-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid white;
    border-radius: 5px;
}

.custom-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.custom-prev-arrow-container,
.custom-next-arrow-container {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #DEA638;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin-right: 3%;
    margin-left: 3%;
}

.custom-arrow {
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-prev-arrow-container:hover,
.custom-next-arrow-container:hover {
    background-color: #DEA638;
}

.custom-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.custom-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.custom-slide img {
    width: 100%;
}

.slider1 {
    padding-top: 3%;
    width: 90%;
    margin: 0 auto;
}

.border-slide {
    border: 1px solid #DEA638;
    border-radius: 10px;
    padding: 30px 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatever {
    width: 100%;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    position: absolute;
    top: 100px;
}

.slick-slide {
    margin-right: 5px;
    margin-left: 5px;
    /* Adjust the margin value as needed */
}

.video {
    height: 730px;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
}


.video-frame {
    border-radius: 25px;
}

.dsr {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dsr-text {
    color: #B2B3B3;
    text-align: justify;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 250;
    line-height: 20px;
    opacity: 0.8;
}

.contact {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    color: #B2B3B3;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 250;
    line-height: 20px;
}

.address {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2%;
    margin-bottom: 0;
}

.qr-code {
    display: flex;
    align-items: center;
    /* height: 160px; */
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    column-gap: 20px;
}

/* .center-map img {
    height: 100% !important;
} */

.scan {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    /* z-index: 4; */
}

.qr-img img {
    width: 100%;
    z-index: 2;
}


.address2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2%;
    margin-bottom: 0;
    text-align: center;
}

.arrange-footer {
    display: flex;
    align-items: center;
    width: 170px;
}

.arrange-footer2 {
    display: flex;
    flex-direction: column;
    width: 170px;
}

.bottom-text {
    color: #B2B3B3;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-left: 13%;
}

.layout img {
    width: 100%;
}


.golden-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.golden-heading2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10%;
}

.para-text {
    color: #B2B3B3;
    text-align: justify;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    margin-right: 10%;

}

.para-text2 {
    color: #B2B3B3;
    text-align: justify;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    margin-left: 10%;

}

.grains {
    background-image: url("../images/grains.png");
    opacity: 0.8;
    padding-top: 5%;
}

.align-text-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0% 0% 10% 0%;
}

.space {
    padding: 0% 0% 10% 0%;

}

.key-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0 !important;
    padding: 0;

}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.dot-text {
    display: flex;
    align-items: center;
    width: 20%;
    flex-wrap: wrap;
    flex-direction: column;
    border: 1px solid #C8A25C;
    padding: 4%;
}

.icon-text {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 12%;
}

.key-features {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3%;
    margin-top: 5%;
}

.key-features3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.forum-div {
    width: 280px;
    flex-shrink: 0;
    border-radius: 5px;
    background: #1F1E1A;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 120px;
    padding: 2%;
}

.mob-view {
    position: relative;
}

.forum-div-mob {
    width: 350px;
    flex-shrink: 0;
    border-radius: 5px;
    background: #1F1E1A;
    position: absolute;
    z-index: 5;
    margin: 0 auto;
    bottom: 30px;
    padding: 2%;
}

.sidebar-text-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    margin-top: 3%;
    align-items: center;

}

.forum-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-style {
    width: 100%;
    padding: 3% !important;
    border-radius: 5px;
    background: transparent !important;
    border: 1px solid #F7E9A6 !important;
    color: #B2B3B3 !important;
}

.input-style2 {
    width: 100%;
    padding: 4% !important;
    border-radius: 5px;
    background: transparent !important;
    border: 1px solid #F7E9A6 !important;
    color: #B2B3B3 !important;
    resize: none;
}

.input-style::placeholder {
    color: #B2B3B3 !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 250;
}

.input-style2::placeholder {
    color: #B2B3B3 !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 250;
}

.form-btn {
    border-radius: 35px !important;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    color: black !important;
    padding: 2% 8% !important;
    border: none !important;

}

.text-center {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.slick-next,
.slick-prev {
    color: gold;
    background-color: transparent !important;
}

.slick-next:before,
.slick-prev:before {
    border: 2px solid #F7E9A6;
    border-radius: 50%;
    color: black !important;
    background-color: gold;
    display: none;
}

.location {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px;
}

.copyright-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    flex-direction: column;

}

.min-div {
    display: flex;
}

.number {
    color: #B2B3B3;

    text-align: justify;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0;
}

.min {
    color: #B2B3B3;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 5px;
    margin-left: 5px;
    margin-bottom: 0;
}

.rgia {
    color: #B2B3B3;
    margin: 0 0 10px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin: 0 0 10px;
}

.gold-line {
    width: 100%;
    height: 2px;
    background-color: #F7E9A6;
    margin-bottom: 10px;
}

.gold-line-footer {
    width: 100%;
    height: 2px;
    background-color: #F7E9A6;

}

.key-features2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: left;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2%;
}

.spacing {
    padding: 7% 0;
}

.map {
    filter: grayscale(100%) invert(100%);

}

/* Style road lines */
.map img[src*="road"] {
    filter: hue-rotate(#ff9900);
    /* Adjust the hue to get the desired color */
}

.mob-slide img {
    width: 100%;
}

.center-map {
    margin-bottom: 5%;
}
.center-map img {
    margin: 10px 0 0;
}


.border-slide.slick-slide.slick-active {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 150px;
}

.tab-container {
    display: flex;
    color: #B2B3B3;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 4% !important;
}

.tab {
    flex: 1;
    font-size: 20px !important;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s;
}

.tab.active {
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content {
    display: none;
    padding: 20px;
    width: 100%;
}

.content.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content.active img {
    width: 100%;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.gold-line2 {
    width: 40%;
    height: 2px;
    background-color: #F7E9A6;
    margin-bottom: 6%;
    margin-top: 4%;
}

.arrange-footer img {
    width: 100%;
}

.copyright {
    color: #B2B3B3;
    padding: 1.2%;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    margin-bottom: 0;
}

.bowling {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    width: 100%;
    font-style: normal;
    font-weight: 250;
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    margin-top: 4%;
}

#Our-group {
    padding: 0 0 0 15rem;
    margin: 0 0 5rem;
}

#Our-group img {
    margin: -45px 0 0;
}

#Contact {
    padding: 0 15rem 3rem;
}
.slider1 .slick-prev {
    left: -40px;
    top: 55%;
}
.slider1 .slick-prev {
    left: -40px;
    top: 55%;
}
.slider1 .slick-next {
    top: 55%;
    right: -35px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.border-slide.slick-slide img {
    margin: 0 0 10px;
    min-height: 60px;
    max-height: 60px;
}


/* Media query for screens smaller than 768px (e.g., smartphones) */

@media (max-width: 1700px) {
    #Our-group {
        padding: 0 0 0 12rem;
    }
    #Contact {
        padding: 0 12rem 3rem;
    }

}
@media (max-width: 1600px) {
    #Our-group {
        padding: 0 0 0 9rem;
    }
    #Contact {
        padding: 0 9rem 3rem;
    }
    .forum-div {
        top: 50px;
    }
}

@media (max-width: 1500px) {
    #Our-group {
        padding: 0 0 0 6rem;
    }
    #Contact {
        padding: 0 6rem 3rem;
    }
}

@media (max-width: 1400px) {
    .input-style {
        padding: 2% !important;
    }

    .forum-div {
        top: 30px;
    }

    .slides {
        height: 550px;
    }

    .slide img {
        height: 100%;
    }
    #Our-group {
        padding: 0;
        max-width: 1140px;
        margin: 0 auto;
    }
    #Contact {
        padding: 0 0 3rem;
        max-width: 1140px;
        margin: 0 auto;
    }
    #Our-group img {
        margin: 0;
    }
}
@media (max-width: 1199px) {
    #Our-group {
        max-width: 960px;
    }
    #Contact {
        max-width: 960px;
    }
}

@media (max-width: 1150px) {
    .slides {
        height: 500px;
    }

    .video {
        height: 528px;
    }
}

@media (max-width: 992px) {
    .forum-div {
        width: 280px;
    }

    .dot-text {
        width: 33.33%;
    }

    .slider1 .slick-prev {
        left: -34px;
    }

    .map {
        height: 550px;
    }

    .tab {
        font-size: 12px;
    }

    .video {
        height: 394px;
    }
    .border-slide {
        padding: 20px 20px;
    }
    #Our-group {
        max-width: 720px;
    }
    #Contact {
        max-width: 720px;
    }
}


@media (max-width: 767px) {
    .key-list {
        justify-content: center;
    }

    .dot-text {
        width: 45%;
        margin-bottom: 10px;
    }

    .nav-right-side {
        width: -1%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .arrange-footer {
        margin-top: 1%;
        margin-bottom: 1%;
    }

    .golden-heading {
        font-size: 22px;
        margin-left: 0;
    }

    .golden-heading2 {
        margin-left: 0;
        font-size: 22px;
    }

    .key-features {
        font-size: 25px;
    }

    .key-features2 {
        font-size: 25px;
    }

    .tab {
        font-size: 18px;
    }

    .dsr {
        font-size: 25px;
    }

    .contact {
        font-size: 25px;
    }

    .border-slide.slick-slide.slick-active {
        height: 180px !important;
    }

    .border-slide {
        height: 180px !important;
    }

    .arrange-footer {
        width: unset !important;
    }

    .bottom-text {
        margin-left: 0 !important;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 150px;
    }

    .bottom-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .address {
        width: 100%;
    }

    .gold-line2 {
        width: 100%;
    }

    .video {
        height: 290px;
    }

    .forum-div-mob {
        width: 450px;
        margin: -14rem auto 0;
        position: relative;
    }

    .mob-slide img {
        width: 100%;
        margin: 0;
        height: auto;
    }
    .grains {
        padding: 0;
    }

}

/* Media query for screens between 768px and 992px (e.g., tablets) */
@media (min-width: 769px) and (max-width: 992px) {
    .dot-text {
        width: 30%;
        margin-bottom: 10px;
    }
}

/* Media query for screens larger than 992px (e.g., desktops) */
@media (min-width: 993px) {
    .dot-text {
        width: 20%;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .sidebar.open {
        width: 40%;
    }

    .sidebar {
        width: 0%;
        /* height: 100%; */
        position: absolute;
        top: 70px;
        right: 0;
        overflow-x: hidden;
        transition: 0.5s;
        background-color: #1F1E1A;
        padding-top: 20px;
        z-index: 9;
        text-align: center;
        border-radius: 12px;
        padding-bottom: 20px;
    }

    .navbar-text {
        display: none;
    }

    .para-text {
        font-size: 11px;
    }

    .header-btn {
        padding: 1% 3%;
    }

    .logo {
        width: 150px !important;
        height: 75px !important;
        object-fit: contain;
    }

    .social-icons {
        width: 100%;
    }

    .para-text {
        margin-right: 0;
        margin-left: 0;
        font-size: 16px;
    }

    .footer-section {
        margin-top: 2%;
        margin-bottom: 2%;
        width: 100% !important;
    }

    .copyright {
        font-size: 12px;
        padding: 5%;
    }

    .arrange-footer2 {
        width: 50%;
    }


    .para-text2 {
        margin-left: 0;
    }
    .para-text2 {
        font-size: 16px;
    }

    .key-features3 {
        font-size: 22px;
    }

    .key-features2 {
        font-size: 22px;
    }

    .dsr {
        font-size: 22px;
    }

    .contact {
        font-size: 22px;
    }

    .forum-div-mob {
        padding: 4%;
    }

    .sidebar-text {
        font-size: 14px !important;
    }

    .header-btn2 {
        padding: 5% 10%;
        margin-top: 7%;
        font-size: 16px;
    }
    #Our-group {
        max-width: 576px;
        margin: 0 auto 2rem;
    }
    #Contact {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    .mob-carousel {
        display: none;
    }

    .logo {
        width: 230px !important;
    }



    .space {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .layout {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-text2 {
        display: none;
    }

    .header-btn2 {
        display: none;
    }

    .tab {
        text-align: center !important;
    }


}

/* Add styles for mobile responsiveness */
@media (max-width: 600px) {
    .slide {
        min-width: 100%;
    }

    .dsr-text {
        font-size: 16px;
    }

    .map {
        height: 400px;
    }
}

/* Add styles for mobile responsiveness */
@media (max-width: 600px) {
    .mob-slide {
        min-width: 100%;
    }
}

/* Add styles for mobile responsiveness */
@media (max-width: 600px) {
    .new-slide {
        min-width: 100%;
    }
}

@media (max-width: 995px) {
    .tab {
        font-size: 12px;
    }
}

@media (max-width: 1400px) {
    .tab {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {

    .bottom-text {
        font-size: 12px;
    }
}

@media (max-width: 280px) {
    .forum-div-mob {
        width: 250px;
    }

}

@media (max-width: 575px) {
    .mob-slide img {
        width: 100%;
        margin: 0;
        height: auto;
    }

    .forum-div-mob {
        width: 80%;
    }

    .navbar-text2 {
        font-size: 12px;
        line-height: 14px;
    }

    .header-btn2 {
        width: unset;
    }
    .sidebar.open {
        width: 50%;
        border-radius: 0;
    }
    .sidebar a {
        text-align: left;
    }
    .forum-div-mob {
        margin: 3rem auto 0;
        width: 90%;
    }
    .footer-text br {
        display: none;
    }
    #Our-group {
        max-width: 100%;
    }
    #Contact {
        max-width: 100%;
    }
    .icon-text {
        font-size: 12px;
        line-height: 14px;
    }
}

.mob-bottom-sec{
    position: fixed;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    background-color: #231f20;
    padding: 10px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .mob-bottom-sec a{
    background: linear-gradient(282deg, #C8A25C 14.57%, #F7E9A6 53.26%, #E0C681 90.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
  }
  .first-col{
    border-right: 2px dashed #C8A25C;
  }
  .second-col{
    border-left: 2px dashed #F7E9A6;
  }